summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/odict.h
Unidiff
Diffstat (limited to 'noncore/apps/odict/odict.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/noncore/apps/odict/odict.h b/noncore/apps/odict/odict.h
new file mode 100644
index 0000000..98db25e
--- a/dev/null
+++ b/noncore/apps/odict/odict.h
@@ -0,0 +1,45 @@
1/***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * ( at your option ) any later version. *
7 * *
8 **************************************************************************/
9
10#include <qmainwindow.h>
11
12class QPopupMenu;
13class QMenuBar;
14class QHBox;
15class QPushButton;
16class QLineEdit;
17class QAction;
18class QActionGroup;
19
20class ODict : public QMainWindow
21{
22 Q_OBJECT
23
24 public:
25 ODict();
26
27 private:
28 QPopupMenu *help, *settings, *parameter, *error_tol_menu;
29 QMenuBar *menu;
30 QHBox *hbox;
31 QLineEdit *query_le;
32 QPushButton *ok_button;
33
34 QAction *setting_a, *setting_b;
35
36 void setupMenus();
37
38 private slots:
39 void slotDisplayAbout();
40 void slotStartQuery();
41 void slotSetErrorcount( int );
42 void slotSettings();
43 void slotSetParameter( int );
44 void slotSearchMethods();
45};