mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
57 lines
2.6 KiB
C++
57 lines
2.6 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2009 by Ben Cooksley <ben@eclipse.endoftheinternet.org> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA *
|
|
***************************************************************************/
|
|
|
|
#ifndef SOLIDACTIONDATA_H
|
|
#define SOLIDACTIONDATA_H
|
|
|
|
#include <QObject>
|
|
#include <QMap>
|
|
#include <QString>
|
|
|
|
#include <Solid/DeviceInterface>
|
|
|
|
class SolidActionData : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QList<QString> propertyList( Solid::DeviceInterface::Type devInterface );
|
|
QList<QString> propertyInternalList( Solid::DeviceInterface::Type devInterface );
|
|
QString propertyInternal( Solid::DeviceInterface::Type devInterface, QString property );
|
|
QString propertyName( Solid::DeviceInterface::Type devInterface, QString property );
|
|
int propertyPosition( Solid::DeviceInterface::Type devInterface, QString property );
|
|
|
|
QList<QString> interfaceList();
|
|
QList<Solid::DeviceInterface::Type> interfaceTypeList();
|
|
Solid::DeviceInterface::Type interfaceFromName( const QString& name );
|
|
QString nameFromInterface( Solid::DeviceInterface::Type devInterface );
|
|
int interfacePosition( Solid::DeviceInterface::Type devInterface );
|
|
|
|
static SolidActionData * instance();
|
|
|
|
private:
|
|
SolidActionData(bool includeFiles);
|
|
QString generateUserString(QString className);
|
|
QList<QMetaObject> fillInterfaceList();
|
|
|
|
QMap<Solid::DeviceInterface::Type, QMap<QString,QString> > values;
|
|
QMap<Solid::DeviceInterface::Type, QString> types;
|
|
};
|
|
|
|
#endif
|