summaryrefslogtreecommitdiff
authorjosef <josef>2002-10-26 11:56:08 (UTC)
committer josef <josef>2002-10-26 11:56:08 (UTC)
commit0d58e14f2bcfa2a1f5c9a197d5bb544571824207 (patch) (unidiff)
tree86a60a7b02f5458263982a77d2d05f3b49672ced
parent88504fa6ed3e4ec1c11d3e1cde13c821b1a9b846 (diff)
downloadopie-0d58e14f2bcfa2a1f5c9a197d5bb544571824207.zip
opie-0d58e14f2bcfa2a1f5c9a197d5bb544571824207.tar.gz
opie-0d58e14f2bcfa2a1f5c9a197d5bb544571824207.tar.bz2
- Ah! That's how to use the widget stack
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index e3c3c38..936b1b2 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -399,328 +399,329 @@ void MainWindow::slotNew() {
399} 399}
400 400
401void MainWindow::slotRecordScript() { 401void MainWindow::slotRecordScript() {
402 if (currentSession()) { 402 if (currentSession()) {
403 currentSession()->emulationHandler()->startRecording(); 403 currentSession()->emulationHandler()->startRecording();
404 m_saveScript->setEnabled(true); 404 m_saveScript->setEnabled(true);
405 m_recordScript->setEnabled(false); 405 m_recordScript->setEnabled(false);
406 } 406 }
407} 407}
408 408
409void MainWindow::slotSaveScript() { 409void MainWindow::slotSaveScript() {
410 if (currentSession() && currentSession()->emulationHandler()->isRecording()) { 410 if (currentSession() && currentSession()->emulationHandler()->isRecording()) {
411 QMap<QString, QStringList> map; 411 QMap<QString, QStringList> map;
412 QStringList text; 412 QStringList text;
413 text << "text/plain"; 413 text << "text/plain";
414 map.insert(tr("Script"), text ); 414 map.insert(tr("Script"), text );
415 QString filename = OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map); 415 QString filename = OFileDialog::getSaveFileName(2, QPEApplication::documentDir(), QString::null, map);
416 if (!filename.isEmpty()) { 416 if (!filename.isEmpty()) {
417 QFileInfo info(filename); 417 QFileInfo info(filename);
418 if (info.extension(FALSE) != "script") 418 if (info.extension(FALSE) != "script")
419 filename += ".script"; 419 filename += ".script";
420 DocLnk nf; 420 DocLnk nf;
421 nf.setType("text/plain"); 421 nf.setType("text/plain");
422 nf.setFile(filename); 422 nf.setFile(filename);
423 nf.setName(info.fileName()); 423 nf.setName(info.fileName());
424 FileManager fm; 424 FileManager fm;
425 fm.saveFile(nf, currentSession()->emulationHandler()->script()->script()); 425 fm.saveFile(nf, currentSession()->emulationHandler()->script()->script());
426 currentSession()->emulationHandler()->clearScript(); 426 currentSession()->emulationHandler()->clearScript();
427 m_saveScript->setEnabled(false); 427 m_saveScript->setEnabled(false);
428 m_recordScript->setEnabled(true); 428 m_recordScript->setEnabled(true);
429 populateScripts(); 429 populateScripts();
430 } 430 }
431 } 431 }
432} 432}
433 433
434void MainWindow::slotRunScript(int id) { 434void MainWindow::slotRunScript(int id) {
435 if (currentSession()) { 435 if (currentSession()) {
436 int index = m_scriptsPop->indexOf(id); 436 int index = m_scriptsPop->indexOf(id);
437 DocLnk *lnk = m_scriptsData.at(index); 437 DocLnk *lnk = m_scriptsData.at(index);
438 QString filePath = lnk->file(); 438 QString filePath = lnk->file();
439 Script script(filePath); 439 Script script(filePath);
440 currentSession()->emulationHandler()->runScript(&script); 440 currentSession()->emulationHandler()->runScript(&script);
441 } 441 }
442} 442}
443 443
444void MainWindow::slotConnect() { 444void MainWindow::slotConnect() {
445 if ( currentSession() ) { 445 if ( currentSession() ) {
446 bool ret = currentSession()->layer()->open(); 446 bool ret = currentSession()->layer()->open();
447 if(!ret) QMessageBox::warning(currentSession()->widgetStack(), 447 if(!ret) QMessageBox::warning(currentSession()->widgetStack(),
448 QObject::tr("Failed"), 448 QObject::tr("Failed"),
449 QObject::tr("Connecting failed for this session.")); 449 QObject::tr("Connecting failed for this session."));
450 else { 450 else {
451 m_connect->setEnabled( false ); 451 m_connect->setEnabled( false );
452 m_disconnect->setEnabled( true ); 452 m_disconnect->setEnabled( true );
453 453
454 // if it does not support file transfer, disable the menu entry 454 // if it does not support file transfer, disable the menu entry
455 if ( ( m_curSession->layer() )->supports()[1] == 0 ) { 455 if ( ( m_curSession->layer() )->supports()[1] == 0 ) {
456 m_transfer->setEnabled( false ); 456 m_transfer->setEnabled( false );
457 } else { 457 } else {
458 m_transfer->setEnabled( true ); 458 m_transfer->setEnabled( true );
459 } 459 }
460 460
461 m_recordScript->setEnabled( true ); 461 m_recordScript->setEnabled( true );
462 m_scripts->setItemEnabled(m_runScript_id, true); 462 m_scripts->setItemEnabled(m_runScript_id, true);
463 } 463 }
464 } 464 }
465} 465}
466 466
467void MainWindow::slotDisconnect() { 467void MainWindow::slotDisconnect() {
468 if ( currentSession() ) { 468 if ( currentSession() ) {
469 currentSession()->layer()->close(); 469 currentSession()->layer()->close();
470 m_connect->setEnabled( true ); 470 m_connect->setEnabled( true );
471 m_disconnect->setEnabled( false ); 471 m_disconnect->setEnabled( false );
472 m_transfer->setEnabled( false ); 472 m_transfer->setEnabled( false );
473 m_recordScript->setEnabled( false); 473 m_recordScript->setEnabled( false);
474 m_saveScript->setEnabled( false ); 474 m_saveScript->setEnabled( false );
475 m_scripts->setItemEnabled(m_runScript_id, false); 475 m_scripts->setItemEnabled(m_runScript_id, false);
476 } 476 }
477} 477}
478 478
479void MainWindow::slotTerminate() { 479void MainWindow::slotTerminate() {
480 if ( currentSession() ) 480 if ( currentSession() )
481 currentSession()->layer()->close(); 481 currentSession()->layer()->close();
482 482
483 slotClose(); 483 slotClose();
484 /* FIXME move to the next session */ 484 /* FIXME move to the next session */
485} 485}
486 486
487void MainWindow::slotConfigure() { 487void MainWindow::slotConfigure() {
488 ConfigDialog conf( manager()->all(), factory() ); 488 ConfigDialog conf( manager()->all(), factory() );
489 conf.showMaximized(); 489 conf.showMaximized();
490 490
491 int ret = conf.exec(); 491 int ret = conf.exec();
492 492
493 if ( QDialog::Accepted == ret ) { 493 if ( QDialog::Accepted == ret ) {
494 manager()->setProfiles( conf.list() ); 494 manager()->setProfiles( conf.list() );
495 manager()->save(); 495 manager()->save();
496 populateProfiles(); 496 populateProfiles();
497 } 497 }
498} 498}
499/* 499/*
500 * we will remove 500 * we will remove
501 * this window from the tabwidget 501 * this window from the tabwidget
502 * remove it from the list 502 * remove it from the list
503 * delete it 503 * delete it
504 * and set the currentSession() 504 * and set the currentSession()
505 */ 505 */
506void MainWindow::slotClose() { 506void MainWindow::slotClose() {
507 if (!currentSession() ) 507 if (!currentSession() )
508 return; 508 return;
509 509
510 Session* ses = currentSession(); 510 Session* ses = currentSession();
511 qWarning("removing! currentSession %s", currentSession()->name().latin1() ); 511 qWarning("removing! currentSession %s", currentSession()->name().latin1() );
512 /* set to NULL to be safe, if its needed slotSessionChanged resets it automatically */ 512 /* set to NULL to be safe, if its needed slotSessionChanged resets it automatically */
513 m_curSession = NULL; 513 m_curSession = NULL;
514 tabWidget()->remove( /*currentSession()*/ses ); 514 tabWidget()->remove( /*currentSession()*/ses );
515 /*it's autodelete */ 515 /*it's autodelete */
516 m_sessions.remove( ses ); 516 m_sessions.remove( ses );
517 qWarning("after remove!!"); 517 qWarning("after remove!!");
518 518
519 if (!currentSession() ) { 519 if (!currentSession() ) {
520 m_connect->setEnabled( false ); 520 m_connect->setEnabled( false );
521 m_disconnect->setEnabled( false ); 521 m_disconnect->setEnabled( false );
522 m_terminate->setEnabled( false ); 522 m_terminate->setEnabled( false );
523 m_transfer->setEnabled( false ); 523 m_transfer->setEnabled( false );
524 m_recordScript->setEnabled( false ); 524 m_recordScript->setEnabled( false );
525 m_saveScript->setEnabled( false ); 525 m_saveScript->setEnabled( false );
526 m_scripts->setItemEnabled(m_runScript_id, false); 526 m_scripts->setItemEnabled(m_runScript_id, false);
527 m_fullscreen->setEnabled( false ); 527 m_fullscreen->setEnabled( false );
528 m_closewindow->setEnabled( false ); 528 m_closewindow->setEnabled( false );
529 } 529 }
530 530
531 m_kb->loadDefaults(); 531 m_kb->loadDefaults();
532} 532}
533 533
534/* 534/*
535 * We will get the name 535 * We will get the name
536 * Then the profile 536 * Then the profile
537 * and then we will make a profile 537 * and then we will make a profile
538 */ 538 */
539void MainWindow::slotProfile( int id) { 539void MainWindow::slotProfile( int id) {
540 Profile prof = manager()->profile( m_sessionsPop->text( id) ); 540 Profile prof = manager()->profile( m_sessionsPop->text( id) );
541 create( prof ); 541 create( prof );
542} 542}
543void MainWindow::create( const Profile& prof ) { 543void MainWindow::create( const Profile& prof ) {
544 if(m_curSession) 544 if(m_curSession)
545 if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide(); 545 if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide();
546 546
547 Session *ses = manager()->fromProfile( prof, tabWidget() ); 547 Session *ses = manager()->fromProfile( prof, tabWidget() );
548 548
549 if((!ses) || (!ses->layer()) || (!ses->widgetStack())) 549 if((!ses) || (!ses->layer()) || (!ses->widgetStack()))
550 { 550 {
551 QMessageBox::warning(this, 551 QMessageBox::warning(this,
552 QObject::tr("Session failed"), 552 QObject::tr("Session failed"),
553 QObject::tr("<qt>Cannot open session: Not all components were found.</qt>")); 553 QObject::tr("<qt>Cannot open session: Not all components were found.</qt>"));
554 //if(ses) delete ses; 554 //if(ses) delete ses;
555 return; 555 return;
556 } 556 }
557 557
558 m_sessions.append( ses ); 558 m_sessions.append( ses );
559 tabWidget()->add( ses ); 559 tabWidget()->add( ses );
560 tabWidget()->repaint(); 560 tabWidget()->repaint();
561 m_curSession = ses; 561 m_curSession = ses;
562 562
563 // dicide if its a local term ( then no connction and no tranfer), maybe make a wrapper method out of it 563 // dicide if its a local term ( then no connction and no tranfer), maybe make a wrapper method out of it
564 m_connect->setEnabled( true ); 564 m_connect->setEnabled( true );
565 m_disconnect->setEnabled( false ); 565 m_disconnect->setEnabled( false );
566 m_terminate->setEnabled( true ); 566 m_terminate->setEnabled( true );
567 m_fullscreen->setEnabled( true ); 567 m_fullscreen->setEnabled( true );
568 m_closewindow->setEnabled( true ); 568 m_closewindow->setEnabled( true );
569 m_transfer->setEnabled( false ); 569 m_transfer->setEnabled( false );
570 m_recordScript->setEnabled( false ); 570 m_recordScript->setEnabled( false );
571 m_saveScript->setEnabled( false ); 571 m_saveScript->setEnabled( false );
572 m_scripts->setItemEnabled(m_runScript_id, false); 572 m_scripts->setItemEnabled(m_runScript_id, false);
573 573
574 // is io_layer wants direct connection, then autoconnect 574 // is io_layer wants direct connection, then autoconnect
575 //if ( ( m_curSession->layer() )->supports()[0] == 1 ) { 575 //if ( ( m_curSession->layer() )->supports()[0] == 1 ) {
576 if (prof.autoConnect()) { 576 if (prof.autoConnect()) {
577 slotConnect(); 577 slotConnect();
578 } 578 }
579 579
580 580
581 QWidget *w = currentSession()->widget(); 581 QWidget *w = currentSession()->widget();
582 if(w) w->setFocus(); 582 if(w) w->setFocus();
583 583
584 m_kb->load(currentSession()->profile()); 584 m_kb->load(currentSession()->profile());
585} 585}
586 586
587void MainWindow::slotTransfer() 587void MainWindow::slotTransfer()
588{ 588{
589 if ( currentSession() ) { 589 if ( currentSession() ) {
590 Session *mysession = currentSession(); 590 Session *mysession = currentSession();
591 TransferDialog dlg(mysession->widgetStack(), this); 591 TransferDialog dlg(/*mysession->widgetStack()*/this, this);
592 mysession->setTransferDialog(&dlg); 592 mysession->setTransferDialog(&dlg);
593 dlg.show(); 593 //dlg.reparent(mysession->widgetStack(), QPoint(0, 0));
594 //dlg.showMaximized(); 594 //dlg.showMaximized();
595 //currentSession()->widgetStack()->add(dlg); 595 currentSession()->widgetStack()->addWidget(&dlg, -1);
596 dlg.show();
596 //dlg.exec(); 597 //dlg.exec();
597 while(dlg.isRunning()) qApp->processEvents(); 598 while(dlg.isRunning()) qApp->processEvents();
598 mysession->setTransferDialog(0l); 599 mysession->setTransferDialog(0l);
599 } 600 }
600} 601}
601 602
602 603
603void MainWindow::slotOpenKeb(bool state) { 604void MainWindow::slotOpenKeb(bool state) {
604 605
605 if (state) m_keyBar->show(); 606 if (state) m_keyBar->show();
606 else m_keyBar->hide(); 607 else m_keyBar->hide();
607 608
608} 609}
609 610
610 611
611void MainWindow::slotOpenButtons( bool state ) { 612void MainWindow::slotOpenButtons( bool state ) {
612 613
613 if ( state ) { 614 if ( state ) {
614 m_buttonBar->show(); 615 m_buttonBar->show();
615 } else { 616 } else {
616 m_buttonBar->hide(); 617 m_buttonBar->hide();
617 } 618 }
618} 619}
619 620
620 621
621 622
622void MainWindow::slotSessionChanged( Session* ses ) { 623void MainWindow::slotSessionChanged( Session* ses ) {
623 qWarning("changed!"); 624 qWarning("changed!");
624 625
625 if(m_curSession) 626 if(m_curSession)
626 if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide(); 627 if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide();
627 if(ses) 628 if(ses)
628 if(ses->transferDialog()) ses->transferDialog()->show(); 629 if(ses->transferDialog()) ses->transferDialog()->show();
629 630
630 if ( ses ) { 631 if ( ses ) {
631 m_curSession = ses; 632 m_curSession = ses;
632 qDebug(QString("is connected : %1").arg( m_curSession->layer()->isConnected() ) ); 633 qDebug(QString("is connected : %1").arg( m_curSession->layer()->isConnected() ) );
633 if ( m_curSession->layer()->isConnected() ) { 634 if ( m_curSession->layer()->isConnected() ) {
634 m_connect->setEnabled( false ); 635 m_connect->setEnabled( false );
635 m_disconnect->setEnabled( true ); 636 m_disconnect->setEnabled( true );
636 m_recordScript->setEnabled(!m_curSession->emulationHandler()->isRecording()); 637 m_recordScript->setEnabled(!m_curSession->emulationHandler()->isRecording());
637 m_saveScript->setEnabled(m_curSession->emulationHandler()->isRecording()); 638 m_saveScript->setEnabled(m_curSession->emulationHandler()->isRecording());
638 m_scripts->setItemEnabled(m_runScript_id, true); 639 m_scripts->setItemEnabled(m_runScript_id, true);
639 } else { 640 } else {
640 m_connect->setEnabled( true ); 641 m_connect->setEnabled( true );
641 m_disconnect->setEnabled( false ); 642 m_disconnect->setEnabled( false );
642 m_recordScript->setEnabled( false ); 643 m_recordScript->setEnabled( false );
643 m_saveScript->setEnabled( false ); 644 m_saveScript->setEnabled( false );
644 m_scripts->setItemEnabled(m_runScript_id, false); 645 m_scripts->setItemEnabled(m_runScript_id, false);
645 } 646 }
646 647
647 if ( ( m_curSession->layer() )->supports()[1] == 0 ) { 648 if ( ( m_curSession->layer() )->supports()[1] == 0 ) {
648 m_transfer->setEnabled( false ); 649 m_transfer->setEnabled( false );
649 } else { 650 } else {
650 m_transfer->setEnabled( true ); 651 m_transfer->setEnabled( true );
651 } 652 }
652 653
653 QWidget *w = m_curSession->widget(); 654 QWidget *w = m_curSession->widget();
654 if(w) w->setFocus(); 655 if(w) w->setFocus();
655 656
656 m_kb->load(currentSession()->profile()); 657 m_kb->load(currentSession()->profile());
657 } 658 }
658} 659}
659 660
660void MainWindow::slotFullscreen() { 661void MainWindow::slotFullscreen() {
661 662
662 663
663 664
664 if ( m_isFullscreen ) { 665 if ( m_isFullscreen ) {
665 ( m_curSession->widgetStack() )->reparent( savedParentFullscreen, 0, QPoint(0,0), true ); 666 ( m_curSession->widgetStack() )->reparent( savedParentFullscreen, 0, QPoint(0,0), true );
666 ( m_curSession->widgetStack() )->resize( savedParentFullscreen->width(), savedParentFullscreen->height() ); 667 ( m_curSession->widgetStack() )->resize( savedParentFullscreen->width(), savedParentFullscreen->height() );
667 ( m_curSession->emulationHandler() )->cornerButton()->hide(); 668 ( m_curSession->emulationHandler() )->cornerButton()->hide();
668 disconnect( ( m_curSession->emulationHandler() )->cornerButton(), SIGNAL( pressed() ), this, SLOT( slotFullscreen() ) ); 669 disconnect( ( m_curSession->emulationHandler() )->cornerButton(), SIGNAL( pressed() ), this, SLOT( slotFullscreen() ) );
669 670
670 } else { 671 } else {
671 savedParentFullscreen = ( m_curSession->widgetStack() )->parentWidget(); 672 savedParentFullscreen = ( m_curSession->widgetStack() )->parentWidget();
672 ( m_curSession->widgetStack() )->setFrameStyle( QFrame::NoFrame ); 673 ( m_curSession->widgetStack() )->setFrameStyle( QFrame::NoFrame );
673 ( m_curSession->widgetStack() )->reparent( 0, WStyle_Tool | WStyle_Customize | WStyle_StaysOnTop 674 ( m_curSession->widgetStack() )->reparent( 0, WStyle_Tool | WStyle_Customize | WStyle_StaysOnTop
674 , QPoint(0,0), false ); 675 , QPoint(0,0), false );
675 ( m_curSession->widgetStack() )->resize( qApp->desktop()->width(), qApp->desktop()->height() ); 676 ( m_curSession->widgetStack() )->resize( qApp->desktop()->width(), qApp->desktop()->height() );
676 ( m_curSession->widgetStack() )->setFocus(); 677 ( m_curSession->widgetStack() )->setFocus();
677 ( m_curSession->widgetStack() )->show(); 678 ( m_curSession->widgetStack() )->show();
678 679
679 ( ( m_curSession->emulationHandler() )->cornerButton() )->show(); 680 ( ( m_curSession->emulationHandler() )->cornerButton() )->show();
680 681
681 connect( ( m_curSession->emulationHandler() )->cornerButton(), SIGNAL( pressed() ), this, SLOT( slotFullscreen() ) ); 682 connect( ( m_curSession->emulationHandler() )->cornerButton(), SIGNAL( pressed() ), this, SLOT( slotFullscreen() ) );
682 } 683 }
683 684
684 m_isFullscreen = !m_isFullscreen; 685 m_isFullscreen = !m_isFullscreen;
685} 686}
686 687
687 688
688void MainWindow::slotKeyReceived(FKey k, ushort, ushort, bool pressed) { 689void MainWindow::slotKeyReceived(FKey k, ushort, ushort, bool pressed) {
689 690
690 if ( m_curSession ) { 691 if ( m_curSession ) {
691 692
692 QEvent::Type state; 693 QEvent::Type state;
693 694
694 if (pressed) state = QEvent::KeyPress; 695 if (pressed) state = QEvent::KeyPress;
695 else state = QEvent::KeyRelease; 696 else state = QEvent::KeyRelease;
696 697
697 QKeyEvent ke(state, k.qcode, k.unicode, 0, QString(QChar(k.unicode))); 698 QKeyEvent ke(state, k.qcode, k.unicode, 0, QString(QChar(k.unicode)));
698 699
699 // is this the best way to do this? cant figure out any other way to work 700 // is this the best way to do this? cant figure out any other way to work
700 QApplication::sendEvent((QObject *)m_curSession->widget(), &ke); 701 QApplication::sendEvent((QObject *)m_curSession->widget(), &ke);
701 ke.ignore(); 702 ke.ignore();
702 } 703 }
703} 704}
704void MainWindow::slotCopy() { 705void MainWindow::slotCopy() {
705 if (!currentSession() ) return; 706 if (!currentSession() ) return;
706 currentSession()->emulationHandler()->copy(); 707 currentSession()->emulationHandler()->copy();
707} 708}
708void MainWindow::slotPaste() { 709void MainWindow::slotPaste() {
709 if (!currentSession() ) return; 710 if (!currentSession() ) return;
710 currentSession()->emulationHandler()->paste(); 711 currentSession()->emulationHandler()->paste();
711} 712}
712 713
713/* 714/*
714 * Save the session 715 * Save the session
715 */ 716 */
716 717
717void MainWindow::slotSaveSession() { 718void MainWindow::slotSaveSession() {
718 if (!currentSession() ) { 719 if (!currentSession() ) {
719 QMessageBox::information(this, tr("Save Connection"), 720 QMessageBox::information(this, tr("Save Connection"),
720 tr("<qt>There is no Connection.</qt>"), 1 ); 721 tr("<qt>There is no Connection.</qt>"), 1 );
721 return; 722 return;
722 } 723 }
723 manager()->add( currentSession()->profile() ); 724 manager()->add( currentSession()->profile() );
724 manager()->save(); 725 manager()->save();
725 populateProfiles(); 726 populateProfiles();
726} 727}