summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.h') (more/less context) (show 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
@@ -11,6 +11,9 @@
11 * it's also the dispatcher between the different 11 * it's also the dispatcher between the different
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 {
16 Q_OBJECT 19 Q_OBJECT
@@ -36,6 +39,7 @@ public:
36 QList<Session> sessions(); 39 QList<Session> sessions();
37 40
38private: 41private:
42 void initUI();
39 /** 43 /**
40 * the current session 44 * the current session
41 */ 45 */
@@ -51,6 +55,16 @@ private:
51 */ 55 */
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
56 70