klaptopdaemon
pcmcia.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
00022
00023
00024
00025 #ifndef __PCMCIACONFIG_H__
00026 #define __PCMCIACONFIG_H__
00027
00028 #include <qdialog.h>
00029 #include <QPushButton>
00030 #include <QLabel>
00031 #include <qlcdnumber.h>
00032 #include <qradiobutton.h>
00033 #include <q3buttongroup.h>
00034
00035 #include <kapplication.h>
00036 #include <knuminput.h>
00037
00038 #include <kcmodule.h>
00039 #include <kaboutdata.h>
00040
00041 class PcmciaConfig : public KCModule
00042 {
00043 Q_OBJECT
00044 public:
00045 PcmciaConfig( const KComponentData &inst,QWidget *parent=0);
00046
00047 void save( void );
00048 void load();
00049 void defaults();
00050
00051 virtual QString quickHelp() const;
00052
00053 private slots:
00054
00055 void changed();
00056
00057
00058 private:
00059 void GetSettings( void );
00060
00061 QLabel *label0;
00062 QLabel *label1;
00063 QLabel *label0_text;
00064 QLabel *label1_text;
00065
00066
00067 };
00068
00069 #endif
00070