-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 | |||
@@ -9,5 +9,7 @@ | |||
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 | ||
@@ -169,2 +171,12 @@ void MainWindow::initUI() { | |||
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 | /* |
@@ -342,2 +354,12 @@ void MainWindow::create( const Profile& prof ) { | |||
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 | } |
@@ -366 +388,16 @@ void MainWindow::slotSessionChanged( Session* ses ) { | |||
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 | |||
@@ -64,2 +64,3 @@ private slots: | |||
64 | void slotRunScript(); | 64 | void slotRunScript(); |
65 | void setOn(); | ||
65 | void slotSessionChanged( Session* ); | 66 | void slotSessionChanged( Session* ); |
@@ -97,3 +98,3 @@ private: | |||
97 | QAction* m_terminate; | 98 | QAction* m_terminate; |
98 | QAction* m_transfer; | 99 | QAction* m_transfer; |
99 | QAction* m_setProfiles; | 100 | QAction* m_setProfiles; |