1/***************************************************************************
2 * Copyright (C) 2009 by Ben Cooksley <ben@eclipse.endoftheinternet.org> *
3 * *
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. *
8 * *
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. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA *
18 ***************************************************************************/
19
20#ifndef SOLIDACTIONDATA_H
21#define SOLIDACTIONDATA_H
22
23#include <QObject>
24#include <QMap>
25#include <QString>
26
27#include <Solid/DeviceInterface>
28
29class SolidActionData : public QObject
30{
31 Q_OBJECT
32
33public:
34 QList<QString> propertyList( Solid::DeviceInterface::Type devInterface );
35 QList<QString> propertyInternalList( Solid::DeviceInterface::Type devInterface );
36 QString propertyInternal( Solid::DeviceInterface::Type devInterface, QString property );
37 QString propertyName( Solid::DeviceInterface::Type devInterface, QString property );
38 int propertyPosition( Solid::DeviceInterface::Type devInterface, QString property );
39
40 QList<QString> interfaceList();
41 QList<Solid::DeviceInterface::Type> interfaceTypeList();
42 Solid::DeviceInterface::Type interfaceFromName( const QString& name );
43 QString nameFromInterface( Solid::DeviceInterface::Type devInterface );
44 int interfacePosition( Solid::DeviceInterface::Type devInterface );
45
46 static SolidActionData * instance();
47
48private:
49 SolidActionData(bool includeFiles);
50 QString generateUserString(QString className);
51 QList<QMetaObject> fillInterfaceList();
52
53 QMap<Solid::DeviceInterface::Type, QMap<QString,QString> > values;
54 QMap<Solid::DeviceInterface::Type, QString> types;
55};
56
57#endif
58