summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.h
authorzecke <zecke>2002-09-28 18:29:02 (UTC)
committer zecke <zecke>2002-09-28 18:29:02 (UTC)
commitbc88219d0a9cf935d90c88fe75e238e86c675937 (patch) (unidiff)
tree0121d1d3d881cf69948f3faf420a71d894dd6832 /noncore/apps/opie-console/mainwindow.h
parent18d575d0ee47a0700091de81bc3e8c54be4eae18 (diff)
downloadopie-bc88219d0a9cf935d90c88fe75e238e86c675937.zip
opie-bc88219d0a9cf935d90c88fe75e238e86c675937.tar.gz
opie-bc88219d0a9cf935d90c88fe75e238e86c675937.tar.bz2
io_layer take Profile instead of Config
Profile added including some Config like stuff io_serial getBaud -> baud a default for gcc3 later tabdwidget will be our central widget profileconfig I needed groups() and clearAll that's pretty much it
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h
index db3a653..b6a8419 100644
--- a/noncore/apps/opie-console/mainwindow.h
+++ b/noncore/apps/opie-console/mainwindow.h
@@ -38,9 +38,14 @@ public:
38 * the session list 38 * the session list
39 */ 39 */
40 QList<Session> sessions(); 40 QList<Session> sessions();
41protected slots: 41
42private slots:
42 void slotNew(); 43 void slotNew();
43 void slotConnect(); 44 void slotConnect();
45 void slotDisconnect();
46 void slotTerminate();
47 void slotConfigure();
48
44private: 49private:
45 void initUI(); 50 void initUI();
46 /** 51 /**
@@ -62,11 +67,11 @@ private:
62 QMenuBar* m_bar; 67 QMenuBar* m_bar;
63 QPopupMenu* m_console; 68 QPopupMenu* m_console;
64 QPopupMenu* m_settings; 69 QPopupMenu* m_settings;
65 QPopupMenu* m_newsession; 70 QPopupMenu* m_sessionsPop;
66 QAction* m_connect; 71 QAction* m_connect;
67 QAction* m_disconnect; 72 QAction* m_disconnect;
68 QAction* m_terminate; 73 QAction* m_terminate;
69 QAction* m_set; 74 QAction* m_setProfiles;
70 75
71}; 76};
72 77