krfb
kcm_krfb.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 #ifndef _KCM_KRFB_H_
00020 #define _KCM_KRFB_H_
00021
00022 #include <qobject.h>
00023 #include <qdatetime.h>
00024 #define KDE3_SUPPORT
00025 #include <kcmodule.h>
00026 #undef KDE3_SUPPORT
00027 #include "configurationwidget.h"
00028 #include "../krfb/configuration.h"
00029
00030 class KcmKRfb : public KCModule {
00031 Q_OBJECT
00032 private:
00033 Configuration m_configuration;
00034 ConfigurationWidget *m_confWidget;
00035 void checkKInetd(bool&, bool&);
00036 public:
00037 KcmKRfb(QWidget *p, const QStringList &);
00038
00039 void load();
00040 void save();
00041 void defaults();
00042 QString quickHelp() const;
00043 private slots:
00044 void setInvitationNum(int num);
00045 void configChanged();
00046 };
00047
00048
00049 #endif