WvDBusMsg::is_reply() had an unnecessary hack for message #1.
[wvapps.git] / unikonf / unikonf.h
blobaf076c9054783bde83e982f9476f94fd6856496c
1 #ifndef UNIKONF_H
2 #define UNIKONF_H
4 #ifdef HAVE_CONFIG_H
5 #include <config.h>
6 #endif
8 #include <kmainwindow.h>
9 #include <ksimpleconfig.h>
11 #include "uniconfroot.h"
12 #include "ukmainwin.h"
13 #include "ukconfig.h"
14 #include "wvlog.h"
16 #define VERSION " v0.1"
18 class UniKonf;
19 class KComboBox;
20 class KPopupMenu;
21 class WvIStreamList;
24 class UniKonf : public KMainWindow
26 Q_OBJECT
28 UniConfRoot root;
29 UniConf cfg;
31 public:
32 UniKonf(QWidget *parent = 0, const char *name = 0);
33 virtual ~UniKonf();
34 void populate();
36 KSimpleConfig *config;
38 // Public so that others can change it.
39 KStatusBar *status;
41 public slots:
43 protected slots:
44 void settings();
45 void startConn();
46 void stopConn();
47 void notdone();
48 void saveConfig();
49 void showToolB();
50 void showStatB();
51 void undo();
52 void redo();
53 void exportslot();
55 private:
56 WvLog log;
57 UkMainWin *mw;
58 KToolBar *toolbar;
59 KPopupMenu *file_menu, *edit_menu, *settings_menu;
62 #endif // UNIKONF_H