controlpanelui/src/cpcategorymodel/tsrc/testpluginsforcpcategorymodel/firstpluginforcpcategorymodel/src/firstpluginforcpcategorymodel.h
branchRCL_3
changeset 14 5f281e37a2f5
parent 13 90fe62538f66
equal deleted inserted replaced
13:90fe62538f66 14:5f281e37a2f5
     1 #ifndef FIRSTPLUGINFORCPCATEGORYMODEL_H
       
     2 #define FIRSTPLUGINFORCPCATEGORYMODEL_H
       
     3 
       
     4 #include <qobject.h>
       
     5 #include <cpplugininterface.h>
       
     6 #include <cplauncherinterface.h>
       
     7 
       
     8 class FirstPluginForCpCategoryModel : public QObject, public CpPluginInterface, public CpLauncherInterface
       
     9 {
       
    10     Q_OBJECT
       
    11     Q_INTERFACES(CpPluginInterface)
       
    12     Q_INTERFACES(CpLauncherInterface)
       
    13 public:
       
    14     FirstPluginForCpCategoryModel();
       
    15     virtual ~FirstPluginForCpCategoryModel();
       
    16     virtual QList<CpSettingFormItemData*> createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    17     virtual CpBaseSettingView *createSettingView(const QVariant &hint) const;
       
    18 };
       
    19 
       
    20 #endif