summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (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
@@ -182,22 +182,6 @@ void MainWindow::initUI() {
182 this, SLOT(slotOpenKeb(bool))); 182 this, SLOT(slotOpenKeb(bool)));
183 m_openKeys->addTo(m_icons); 183 m_openKeys->addTo(m_icons);
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 */
202 m_console->insertItem(tr("New from Profile"), m_sessionsPop, 186 m_console->insertItem(tr("New from Profile"), m_sessionsPop,
203 -1, 0); 187 -1, 0);
@@ -352,6 +336,7 @@ void MainWindow::slotConnect() {
352 else { 336 else {
353 m_connect->setEnabled( false ); 337 m_connect->setEnabled( false );
354 m_disconnect->setEnabled( true ); 338 m_disconnect->setEnabled( true );
339 m_transfer->setEnabled( true );
355 } 340 }
356 } 341 }
357} 342}
@@ -361,6 +346,7 @@ void MainWindow::slotDisconnect() {
361 currentSession()->layer()->close(); 346 currentSession()->layer()->close();
362 m_connect->setEnabled( true ); 347 m_connect->setEnabled( true );
363 m_disconnect->setEnabled( false ); 348 m_disconnect->setEnabled( false );
349 m_transfer->setEnabled( false );
364 } 350 }
365} 351}
366 352
@@ -447,13 +433,12 @@ void MainWindow::create( const Profile& prof ) {
447 m_connect->setEnabled( true ); 433 m_connect->setEnabled( true );
448 m_disconnect->setEnabled( false ); 434 m_disconnect->setEnabled( false );
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 );
452 m_saveScript->setEnabled( true ); 437 m_saveScript->setEnabled( true );
453 m_runScript->setEnabled( true ); 438 m_runScript->setEnabled( true );
454 m_fullscreen->setEnabled( true ); 439 m_fullscreen->setEnabled( true );
455 m_closewindow->setEnabled( true ); 440 m_closewindow->setEnabled( true );
456 441 m_transfer->setEnabled( false );
457 442
458 // is io_layer wants direct connection, then autoconnect 443 // is io_layer wants direct connection, then autoconnect
459 //if ( ( m_curSession->layer() )->supports()[0] == 1 ) { 444 //if ( ( m_curSession->layer() )->supports()[0] == 1 ) {
@@ -461,6 +446,8 @@ void MainWindow::create( const Profile& prof ) {
461 slotConnect(); 446 slotConnect();
462 } 447 }
463 448
449
450
464 QWidget *w = currentSession()->widget(); 451 QWidget *w = currentSession()->widget();
465 if(w) w->setFocus(); 452 if(w) w->setFocus();
466} 453}
@@ -508,6 +495,12 @@ void MainWindow::slotSessionChanged( Session* ses ) {
508 m_disconnect->setEnabled( false ); 495 m_disconnect->setEnabled( false );
509 } 496 }
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();
512 if(w) w->setFocus(); 505 if(w) w->setFocus();
513 } 506 }