add mp3 and ogg torrent url info to JamendoAlbum
[amarok.git] / src / MediaDeviceCache.h
blob3841a9e2b19dcf2930864f46de792d26b42284c3
1 /*
2 * Copyright (c) 2007 Jeff Mitchell <kde-dev@emailgoeshere.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 #ifndef AMAROK_MEDIADEVICECACHE_H
19 #define AMAROK_MEDIADEVICECACHE_H
21 #include "amarok_export.h"
23 #include <QObject>
24 #include <QMap>
25 #include <QString>
27 namespace Solid {
28 class Device;
31 class MediaDeviceCache : public QObject
33 Q_OBJECT
35 public:
37 enum DeviceType { SolidType, ManualType, InvalidType };
39 static MediaDeviceCache* instance() { return s_instance ? s_instance : new MediaDeviceCache(); }
41 /**
42 * Creates a new MediaDeviceCache.
45 MediaDeviceCache();
46 ~MediaDeviceCache();
48 void refreshCache();
49 MediaDeviceCache::DeviceType deviceType( const QString &udi );
50 QStringList getAll() { return m_type.keys(); }
52 signals:
53 void deviceAdded( const QString &udi );
54 void deviceRemoved( const QString &udi );
56 public slots:
57 void addSolidDevice( const QString &udi );
58 void removeSolidDevice( const QString &udi );
60 private:
61 QMap<QString, MediaDeviceCache::DeviceType> m_type;
62 static MediaDeviceCache* s_instance;
65 #endif /* AMAROK_MEDIADEVICECACHE_H */