summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console
authorharlekin <harlekin>2002-10-24 12:49:24 (UTC)
committer harlekin <harlekin>2002-10-24 12:49:24 (UTC)
commit263b907b4f3bd3be7725d234ff42be86cff39ab7 (patch) (unidiff)
tree2c5edaf127210e80030af54122c55ab836dac4d2 /noncore/apps/opie-console
parentc2a6bda0c89ee3ac97323108f0eec80b658a3995 (diff)
downloadopie-263b907b4f3bd3be7725d234ff42be86cff39ab7.zip
opie-263b907b4f3bd3be7725d234ff42be86cff39ab7.tar.gz
opie-263b907b4f3bd3be7725d234ff42be86cff39ab7.tar.bz2
de- /activate file transfer menu entry according to layer capabilities
Diffstat (limited to 'noncore/apps/opie-console') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp29
1 files changed, 11 insertions, 18 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index ddaaf1b..c7750be 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -184,18 +184,2 @@ void MainWindow::initUI() {
184 184
185
186 /*
187 * action that open/closes the keyboard
188
189 m_openButtons = new QAction ( tr( "Open Buttons..." ),
190 Resource::loadPixmap( "" ),
191 QString::null, 0, this, 0 );
192
193 m_openButtons->setToggleAction( true );
194
195 connect ( m_openButtons, SIGNAL( toggled( bool ) ),
196 this, SLOT( slotOpenButtons( bool ) ) );
197 m_openButtons->addTo( m_icons );
198
199 */
200
201 /* insert the submenu */ 185 /* insert the submenu */
@@ -354,2 +338,3 @@ void MainWindow::slotConnect() {
354 m_disconnect->setEnabled( true ); 338 m_disconnect->setEnabled( true );
339 m_transfer->setEnabled( true );
355 } 340 }
@@ -363,2 +348,3 @@ void MainWindow::slotDisconnect() {
363 m_disconnect->setEnabled( false ); 348 m_disconnect->setEnabled( false );
349 m_transfer->setEnabled( false );
364 } 350 }
@@ -449,3 +435,2 @@ void MainWindow::create( const Profile& prof ) {
449 m_terminate->setEnabled( true ); 435 m_terminate->setEnabled( true );
450 m_transfer->setEnabled( true );
451 m_recordScript->setEnabled( true ); 436 m_recordScript->setEnabled( true );
@@ -455,3 +440,3 @@ void MainWindow::create( const Profile& prof ) {
455 m_closewindow->setEnabled( true ); 440 m_closewindow->setEnabled( true );
456 441 m_transfer->setEnabled( false );
457 442
@@ -463,2 +448,4 @@ void MainWindow::create( const Profile& prof ) {
463 448
449
450
464 QWidget *w = currentSession()->widget(); 451 QWidget *w = currentSession()->widget();
@@ -510,2 +497,8 @@ void MainWindow::slotSessionChanged( Session* ses ) {
510 497
498 if ( ( m_curSession->layer() )->supports()[1] == 0 ) {
499 m_transfer->setEnabled( false );
500 } else {
501 m_transfer->setEnabled( true );
502 }
503
511 QWidget *w = m_curSession->widget(); 504 QWidget *w = m_curSession->widget();