summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.h
authorzecke <zecke>2002-09-26 21:22:18 (UTC)
committer zecke <zecke>2002-09-26 21:22:18 (UTC)
commit80471c46265182afccfa832750abd1f4f7fbfaa9 (patch) (unidiff)
tree73b174abc34fcd23abe2d865365726d85db312b3 /noncore/apps/opie-console/mainwindow.h
parent48b3a7159c613b59ca3f838517373620b8afd1d5 (diff)
downloadopie-80471c46265182afccfa832750abd1f4f7fbfaa9.zip
opie-80471c46265182afccfa832750abd1f4f7fbfaa9.tar.gz
opie-80471c46265182afccfa832750abd1f4f7fbfaa9.tar.bz2
main /s/setMainWindow/showMainWindow
First implementation of the gui
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h
index 7786c95..3d1e1c8 100644
--- a/noncore/apps/opie-console/mainwindow.h
+++ b/noncore/apps/opie-console/mainwindow.h
@@ -12,4 +12,7 @@
12 * actions supported by the gui 12 * actions supported by the gui
13 */ 13 */
14class QToolBar;
15class QMenuBar;
16class QAction;
14class MetaFactory; 17class MetaFactory;
15class MainWindow : public QMainWindow { 18class MainWindow : public QMainWindow {
@@ -37,4 +40,5 @@ public:
37 40
38private: 41private:
42 void initUI();
39 /** 43 /**
40 * the current session 44 * the current session
@@ -52,4 +56,14 @@ private:
52 MetaFactory* m_factory; 56 MetaFactory* m_factory;
53 57
58 QToolBar* m_tool;
59 QMenuBar* m_bar;
60 QPopupMenu* m_console;
61 QPopupMenu* m_settings;
62 QPopupMenu* m_newsession;
63 QAction* m_connect;
64 QAction* m_disconnect;
65 QAction* m_terminate;
66 QAction* m_set;
67
54}; 68};
55 69