-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 39 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.h | 3 |
2 files changed, 40 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index b143361..89cdf51 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -7,9 +7,11 @@ | |||
7 | #include <qlabel.h> | 7 | #include <qlabel.h> |
8 | #include <qpopupmenu.h> | 8 | #include <qpopupmenu.h> |
9 | #include <qtoolbar.h> | 9 | #include <qtoolbar.h> |
10 | #include <qmessagebox.h> | ||
11 | |||
10 | #include <qpe/resource.h> | 12 | #include <qpe/resource.h> |
11 | #include <opie/ofiledialog.h> | 13 | #include <opie/ofiledialog.h> |
12 | #include <qmessagebox.h> | 14 | |
13 | 15 | ||
14 | #include "keytrans.h" | 16 | #include "keytrans.h" |
15 | #include "profileeditordialog.h" | 17 | #include "profileeditordialog.h" |
@@ -167,6 +169,16 @@ void MainWindow::initUI() { | |||
167 | 169 | ||
168 | m_kb = new FunctionKeyboard(m_keyBar); | 170 | m_kb = new FunctionKeyboard(m_keyBar); |
169 | 171 | ||
172 | |||
173 | |||
174 | m_connect->setEnabled( false ); | ||
175 | m_disconnect->setEnabled( false ); | ||
176 | m_terminate->setEnabled( false ); | ||
177 | m_transfer->setEnabled( false ); | ||
178 | m_recordScript->setEnabled( false ); | ||
179 | m_saveScript->setEnabled( false ); | ||
180 | m_runScript->setEnabled( false ); | ||
181 | |||
170 | /* | 182 | /* |
171 | * connect to the menu activation | 183 | * connect to the menu activation |
172 | */ | 184 | */ |
@@ -340,6 +352,16 @@ void MainWindow::create( const Profile& prof ) { | |||
340 | tabWidget()->add( ses ); | 352 | tabWidget()->add( ses ); |
341 | m_curSession = ses; | 353 | m_curSession = ses; |
342 | 354 | ||
355 | // dicide if its a local term ( then no connction and no tranfer) | ||
356 | m_connect->setEnabled( true ); | ||
357 | m_disconnect->setEnabled( true ); | ||
358 | m_terminate->setEnabled( true ); | ||
359 | m_transfer->setEnabled( true ); | ||
360 | m_recordScript->setEnabled( true ); | ||
361 | m_saveScript->setEnabled( true ); | ||
362 | m_runScript->setEnabled( true ); | ||
363 | |||
364 | |||
343 | } | 365 | } |
344 | 366 | ||
345 | void MainWindow::slotTransfer() | 367 | void MainWindow::slotTransfer() |
@@ -364,3 +386,18 @@ void MainWindow::slotSessionChanged( Session* ses ) { | |||
364 | m_curSession = ses; | 386 | m_curSession = ses; |
365 | } | 387 | } |
366 | } | 388 | } |
389 | |||
390 | void MainWindow::setOn() { | ||
391 | |||
392 | /* | ||
393 | m_connect | ||
394 | m_disconnect | ||
395 | m_terminate | ||
396 | m_transfer | ||
397 | m_recordScript | ||
398 | m_saveScript | ||
399 | m_runScript | ||
400 | */ | ||
401 | |||
402 | |||
403 | } | ||
diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h index d16d6af..378870a 100644 --- a/noncore/apps/opie-console/mainwindow.h +++ b/noncore/apps/opie-console/mainwindow.h | |||
@@ -62,6 +62,7 @@ private slots: | |||
62 | void slotRecordScript(); | 62 | void slotRecordScript(); |
63 | void slotSaveScript(); | 63 | void slotSaveScript(); |
64 | void slotRunScript(); | 64 | void slotRunScript(); |
65 | void setOn(); | ||
65 | void slotSessionChanged( Session* ); | 66 | void slotSessionChanged( Session* ); |
66 | private: | 67 | private: |
67 | void initUI(); | 68 | void initUI(); |
@@ -95,7 +96,7 @@ private: | |||
95 | QAction* m_connect; | 96 | QAction* m_connect; |
96 | QAction* m_disconnect; | 97 | QAction* m_disconnect; |
97 | QAction* m_terminate; | 98 | QAction* m_terminate; |
98 | QAction* m_transfer; | 99 | QAction* m_transfer; |
99 | QAction* m_setProfiles; | 100 | QAction* m_setProfiles; |
100 | QAction* m_openKeys; | 101 | QAction* m_openKeys; |
101 | QAction* m_recordScript; | 102 | QAction* m_recordScript; |