author | harlekin <harlekin> | 2002-10-17 17:56:30 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-17 17:56:30 (UTC) |
commit | 08e9fcbbaf57383fd65fe4eb197d97a51abe0f26 (patch) (unidiff) | |
tree | 5d7fc6d46ae5721481e1f8f98a7872416f720993 | |
parent | eb70c5c231b80d1e925b0098ad3c951917900071 (diff) | |
download | opie-08e9fcbbaf57383fd65fe4eb197d97a51abe0f26.zip opie-08e9fcbbaf57383fd65fe4eb197d97a51abe0f26.tar.gz opie-08e9fcbbaf57383fd65fe4eb197d97a51abe0f26.tar.bz2 |
autologin if profiles io layer offers it
-rw-r--r-- | noncore/apps/opie-console/MyPty.cpp | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/MyPty.cpp b/noncore/apps/opie-console/MyPty.cpp index 565d03f..a2373bf 100644 --- a/noncore/apps/opie-console/MyPty.cpp +++ b/noncore/apps/opie-console/MyPty.cpp | |||
@@ -307,18 +307,20 @@ void MyPty::readPty() | |||
307 | 307 | ||
308 | #ifdef VERBOSE_DEBUG | 308 | #ifdef VERBOSE_DEBUG |
309 | // verbose debug | 309 | // verbose debug |
310 | printf("read bytes:\n"); | 310 | printf("read bytes:\n"); |
311 | for (uint i = 0; i < buf.count(); i++) | 311 | for (uint i = 0; i < buf.count(); i++) |
312 | printf("%c", buf[i]); | 312 | printf("%c", buf[i]); |
313 | printf("\n"); | 313 | printf("\n"); |
314 | #endif | 314 | #endif |
315 | 315 | ||
316 | } | 316 | } |
317 | QBitArray MyPty::supports()const { | 317 | QBitArray MyPty::supports()const { |
318 | QBitArray ar(3); | 318 | QBitArray ar(3); |
319 | //autoconnect | ||
319 | ar[0] = 1; | 320 | ar[0] = 1; |
321 | // | ||
320 | ar[1] = 0; | 322 | ar[1] = 0; |
321 | ar[2] = 0; | 323 | ar[2] = 0; |
322 | 324 | ||
323 | return ar; | 325 | return ar; |
324 | } | 326 | } |
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 3066b35..fdb0452 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -389,24 +389,29 @@ void MainWindow::create( const Profile& prof ) { | |||
389 | { | 389 | { |
390 | QMessageBox::warning(this, | 390 | QMessageBox::warning(this, |
391 | QObject::tr("Session failed"), | 391 | QObject::tr("Session failed"), |
392 | QObject::tr("<qt>Cannot open session: Not all components were found.</qt>")); | 392 | QObject::tr("<qt>Cannot open session: Not all components were found.</qt>")); |
393 | //if(ses) delete ses; | 393 | //if(ses) delete ses; |
394 | return; | 394 | return; |
395 | } | 395 | } |
396 | 396 | ||
397 | m_sessions.append( ses ); | 397 | m_sessions.append( ses ); |
398 | tabWidget()->add( ses ); | 398 | tabWidget()->add( ses ); |
399 | m_curSession = ses; | 399 | m_curSession = ses; |
400 | 400 | ||
401 | // is io_layer wants direct connection, then autoconnect | ||
402 | if ( ( m_curSession->layer() )->supports()[0] = 1 ) { | ||
403 | slotConnect(); | ||
404 | } | ||
405 | |||
401 | // dicide if its a local term ( then no connction and no tranfer), maybe make a wrapper method out of it | 406 | // dicide if its a local term ( then no connction and no tranfer), maybe make a wrapper method out of it |
402 | m_connect->setEnabled( true ); | 407 | m_connect->setEnabled( true ); |
403 | m_disconnect->setEnabled( false ); | 408 | m_disconnect->setEnabled( false ); |
404 | m_terminate->setEnabled( true ); | 409 | m_terminate->setEnabled( true ); |
405 | m_transfer->setEnabled( true ); | 410 | m_transfer->setEnabled( true ); |
406 | m_recordScript->setEnabled( true ); | 411 | m_recordScript->setEnabled( true ); |
407 | m_saveScript->setEnabled( true ); | 412 | m_saveScript->setEnabled( true ); |
408 | m_runScript->setEnabled( true ); | 413 | m_runScript->setEnabled( true ); |
409 | m_fullscreen->setEnabled( true ); | 414 | m_fullscreen->setEnabled( true ); |
410 | m_closewindow->setEnabled( true ); | 415 | m_closewindow->setEnabled( true ); |
411 | } | 416 | } |
412 | 417 | ||