SolidModules
kcmsolid.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KCMSOLID_H
00022 #define KCMSOLID_H
00023
00024 #include <kcmodule.h>
00025
00026 class BackendChooser;
00027
00028 class KcmSolid : public KCModule
00029 {
00030 Q_OBJECT
00031 public:
00032 KcmSolid(QWidget *parent, const QVariantList &);
00033
00034 virtual void load();
00035 virtual void save();
00036 virtual void defaults();
00037
00038 private Q_SLOTS:
00039 void slotChooserChanged(bool state);
00040
00041 private:
00042 int m_changedChooser;
00043
00044 BackendChooser *m_powerChooser;
00045 BackendChooser *m_networkChooser;
00046 BackendChooser *m_bluetoothChooser;
00047 };
00048
00049 #endif