~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to kioslave/media/mediamanager/medialist.h

  • Committer: Bazaar Package Importer
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2009-04-05 05:22:13 UTC
  • mfrom: (0.4.2 experimental) (0.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 235.
  • Revision ID: james.westby@ubuntu.com-20090405052213-39thr4l6p2ss07uj
Tags: 4:4.2.2-1
* New upstream release:
  - khtml fixes. (Closes: #290285, #359680)
  - Default konsole sessions can be deleted. (Closes: #286342)
  - Tag widget uses standard application palette. (Closes: #444800)
  - ... and surely many more but we have lost track...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE Project
2
 
   Copyright (c) 2004 K�vin Ottens <ervin ipsquad net>
3
 
 
4
 
   This library is free software; you can redistribute it and/or
5
 
   modify it under the terms of the GNU Library General Public
6
 
   License version 2 as published by the Free Software Foundation.
7
 
 
8
 
   This library is distributed in the hope that it will be useful,
9
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
   Library General Public License for more details.
12
 
 
13
 
   You should have received a copy of the GNU Library General Public License
14
 
   along with this library; see the file COPYING.LIB.  If not, write to
15
 
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16
 
   Boston, MA 02110-1301, USA.
17
 
*/
18
 
 
19
 
#ifndef _MEDIALIST_H_
20
 
#define _MEDIALIST_H_
21
 
 
22
 
#include <qobject.h>
23
 
 
24
 
#include "medium.h"
25
 
 
26
 
class MediaList : public QObject
27
 
{
28
 
Q_OBJECT
29
 
 
30
 
public:
31
 
        MediaList();
32
 
 
33
 
        // FIXME: should be <const Medium> or something similar...
34
 
        const QPtrList<Medium> list() const;
35
 
        const Medium *findById(const QString &id) const;
36
 
        const Medium *findByName(const QString &name) const;
37
 
 
38
 
public:
39
 
        QString addMedium(Medium *medium, bool allowNotification = true);
40
 
        bool removeMedium(const QString &id, bool allowNotification = true);
41
 
 
42
 
        bool changeMediumState(const Medium &medium, bool allowNotification);
43
 
        bool changeMediumState(const QString &id,
44
 
                               const QString &baseURL,
45
 
                               bool allowNotification = true,
46
 
                               const QString &mimeType = QString::null,
47
 
                               const QString &iconName = QString::null,
48
 
                               const QString &label = QString::null);
49
 
        bool changeMediumState(const QString &id,
50
 
                               const QString &deviceNode,
51
 
                               const QString &mountPoint,
52
 
                               const QString &fsType, bool mounted,
53
 
                               bool allowNotification = true,
54
 
                               const QString &mimeType = QString::null,
55
 
                               const QString &iconName = QString::null,
56
 
                               const QString &label = QString::null);
57
 
        bool changeMediumState(const QString &id, bool mounted,
58
 
                               bool allowNotification = true,
59
 
                               const QString &mimeType = QString::null,
60
 
                               const QString &iconName = QString::null,
61
 
                               const QString &label = QString::null);
62
 
 
63
 
        bool setUserLabel(const QString &name, const QString &label);
64
 
 
65
 
signals:
66
 
        void mediumAdded(const QString &id, const QString &name,
67
 
                         bool allowNotification);
68
 
        void mediumRemoved(const QString &id, const QString &name,
69
 
                           bool allowNotification);
70
 
        void mediumStateChanged(const QString &id, const QString &name,
71
 
                                bool mounted, bool allowNotification);
72
 
 
73
 
private:
74
 
        QPtrList<Medium> m_media;
75
 
        QMap<QString,Medium*> m_nameMap;
76
 
        QMap<QString,Medium*> m_idMap;
77
 
};
78
 
 
79
 
#endif