remove unuseful cmake stuff
[kdenetwork.git] / krfb / kcm_krfb / kcm_krfb.h
blob90c9c8c41a3a7a46c3f2542d45625292cdd9dbcb
2 /***************************************************************************
3 kcm_krfb.h
4 ------------
5 begin : Sat Mar 02 2002
6 copyright : (C) 2002 by Tim Jansen
7 email : tim@tjansen.de
8 ***************************************************************************/
10 /***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
19 #ifndef _KCM_KRFB_H_
20 #define _KCM_KRFB_H_
22 #include <qobject.h>
23 #include <qdatetime.h>
24 #define KDE3_SUPPORT
25 #include <kcmodule.h>
26 #undef KDE3_SUPPORT
27 #include "configurationwidget.h"
28 #include "../krfb/configuration.h"
30 class KcmKRfb : public KCModule {
31 Q_OBJECT
32 private:
33 Configuration m_configuration;
34 ConfigurationWidget *m_confWidget;
35 void checkKInetd(bool&, bool&);
36 public:
37 KcmKRfb(QWidget *p, const QStringList &);
39 void load();
40 void save();
41 void defaults();
42 QString quickHelp() const;
43 private slots:
44 void setInvitationNum(int num);
45 void configChanged();
49 #endif