summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/configdlg.h
Unidiff
Diffstat (limited to 'noncore/apps/odict/configdlg.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/odict/configdlg.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/noncore/apps/odict/configdlg.h b/noncore/apps/odict/configdlg.h
index 47f66bd..e59b875 100644
--- a/noncore/apps/odict/configdlg.h
+++ b/noncore/apps/odict/configdlg.h
@@ -7,6 +7,11 @@
7 * * 7 * *
8 **************************************************************************/ 8 **************************************************************************/
9 9
10class QWidget;
11class OTabWidget;
12class QListView;
13class QPushButton;
14
10#include <qdialog.h> 15#include <qdialog.h>
11 16
12 17
@@ -15,5 +20,18 @@ class ConfigDlg : public QDialog
15 Q_OBJECT 20 Q_OBJECT
16 21
17 public: 22 public:
18 ConfigDlg(QWidget *parent, const char *name); 23 ConfigDlg(QWidget *parent, const char *name, bool modal=FALSE );
24
25 void writeEntries();
26
27 private:
28 OTabWidget *tab;
29 QWidget *settings_tab, *search_tab;
30 QListView *list;
31 QPushButton *new_button, *change_button, *delete_button;
32
33 private slots:
34 void slotNewMethod();
35 void slotChangeMethod();
36 void slotDeleteMethod();
19}; 37};