-rw-r--r-- | core/launcher/desktop.cpp | 31 | ||||
-rw-r--r-- | core/launcher/desktop.h | 2 | ||||
-rw-r--r-- | core/launcher/taskbar.h | 3 |
3 files changed, 28 insertions, 8 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 86527f6..6def126 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp | |||
@@ -462,113 +462,114 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e ) | |||
462 | 462 | ||
463 | if ( me-> simpleData. state & LeftButton ) { | 463 | if ( me-> simpleData. state & LeftButton ) { |
464 | if ( up ) { | 464 | if ( up ) { |
465 | up = false; | 465 | up = false; |
466 | if ( m_screentap_sound ) | 466 | if ( m_screentap_sound ) |
467 | ODevice::inst ( ) -> touchSound ( ); | 467 | ODevice::inst ( ) -> touchSound ( ); |
468 | } | 468 | } |
469 | } | 469 | } |
470 | else { | 470 | else { |
471 | up = true; | 471 | up = true; |
472 | } | 472 | } |
473 | } | 473 | } |
474 | 474 | ||
475 | return QPEApplication::qwsEventFilter ( e ); | 475 | return QPEApplication::qwsEventFilter ( e ); |
476 | } | 476 | } |
477 | #endif | 477 | #endif |
478 | 478 | ||
479 | 479 | ||
480 | 480 | ||
481 | #if defined(QPE_HAVE_MEMALERTER) | 481 | #if defined(QPE_HAVE_MEMALERTER) |
482 | QPE_MEMALERTER_IMPL | 482 | QPE_MEMALERTER_IMPL |
483 | #endif | 483 | #endif |
484 | 484 | ||
485 | //=========================================================================== | 485 | //=========================================================================== |
486 | 486 | ||
487 | Desktop::Desktop() : | 487 | Desktop::Desktop() : |
488 | QWidget( 0, 0, WStyle_Tool | WStyle_Customize ), | 488 | QWidget( 0, 0, WStyle_Tool | WStyle_Customize ), |
489 | qcopBridge( 0 ), | 489 | qcopBridge( 0 ), |
490 | transferServer( 0 ), | 490 | transferServer( 0 ), |
491 | packageSlave( 0 ) | 491 | packageSlave( 0 ) |
492 | { | 492 | { |
493 | qpedesktop = this; | 493 | qpedesktop = this; |
494 | 494 | ||
495 | // bg = new Info( this ); | 495 | // bg = new Info( this ); |
496 | tb = new TaskBar; | 496 | tb = new TaskBar; |
497 | 497 | ||
498 | launcher = new Launcher( 0, 0, WStyle_Customize | QWidget::WGroupLeader ); | 498 | launcher = new Launcher( 0, 0, WStyle_Customize | QWidget::WGroupLeader ); |
499 | 499 | ||
500 | connect( launcher, SIGNAL( busy() ), tb, SLOT( startWait() ) ); | 500 | connect( launcher, SIGNAL( busy() ), tb, SLOT( startWait() ) ); |
501 | connect( launcher, SIGNAL( notBusy( const QString& ) ), tb, SLOT( stopWait( const QString& ) ) ); | 501 | connect( launcher, SIGNAL( notBusy( const QString& ) ), tb, SLOT( stopWait( const QString& ) ) ); |
502 | 502 | ||
503 | int displayw = qApp->desktop() ->width(); | 503 | int displayw = qApp->desktop() ->width(); |
504 | int displayh = qApp->desktop() ->height(); | 504 | int displayh = qApp->desktop() ->height(); |
505 | 505 | ||
506 | 506 | ||
507 | QSize sz = tb->sizeHint(); | 507 | QSize sz = tb->sizeHint(); |
508 | 508 | ||
509 | setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); | 509 | setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); |
510 | tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); | 510 | layout(); |
511 | 511 | ||
512 | tb->show(); | 512 | tb->show(); |
513 | launcher->showMaximized(); | 513 | launcher->showMaximized(); |
514 | launcher->show(); | 514 | launcher->show(); |
515 | launcher->raise(); | 515 | launcher->raise(); |
516 | #if defined(QPE_HAVE_MEMALERTER) | 516 | #if defined(QPE_HAVE_MEMALERTER) |
517 | 517 | ||
518 | initMemalerter(); | 518 | initMemalerter(); |
519 | #endif | 519 | #endif |
520 | // start services | 520 | // start services |
521 | startTransferServer(); | 521 | startTransferServer(); |
522 | ( void ) new IrServer( this ); | 522 | ( void ) new IrServer( this ); |
523 | 523 | ||
524 | packageSlave = new PackageSlave( this ); | 524 | packageSlave = new PackageSlave( this ); |
525 | 525 | ||
526 | qApp->installEventFilter( this ); | 526 | qApp->installEventFilter( this ); |
527 | qApp->desktop()->installEventFilter( this ); | ||
527 | 528 | ||
528 | qApp-> setMainWidget ( launcher ); | 529 | qApp-> setMainWidget ( launcher ); |
529 | } | 530 | } |
530 | 531 | ||
531 | void Desktop::show() | 532 | void Desktop::show() |
532 | { | 533 | { |
533 | login( TRUE ); | 534 | login( TRUE ); |
534 | QWidget::show(); | 535 | QWidget::show(); |
535 | } | 536 | } |
536 | 537 | ||
537 | Desktop::~Desktop() | 538 | Desktop::~Desktop() |
538 | { | 539 | { |
539 | delete launcher; | 540 | delete launcher; |
540 | delete tb; | 541 | delete tb; |
541 | delete qcopBridge; | 542 | delete qcopBridge; |
542 | delete transferServer; | 543 | delete transferServer; |
543 | } | 544 | } |
544 | 545 | ||
545 | bool Desktop::recoverMemory() | 546 | bool Desktop::recoverMemory() |
546 | { | 547 | { |
547 | return tb->recoverMemory(); | 548 | return tb->recoverMemory(); |
548 | } | 549 | } |
549 | 550 | ||
550 | void Desktop::checkMemory() | 551 | void Desktop::checkMemory() |
551 | { | 552 | { |
552 | #if defined(QPE_HAVE_MEMALERTER) | 553 | #if defined(QPE_HAVE_MEMALERTER) |
553 | static bool ignoreNormal = FALSE; | 554 | static bool ignoreNormal = FALSE; |
554 | static bool existingMessage = FALSE; | 555 | static bool existingMessage = FALSE; |
555 | 556 | ||
556 | if ( existingMessage ) | 557 | if ( existingMessage ) |
557 | return ; // don't show a second message while still on first | 558 | return ; // don't show a second message while still on first |
558 | 559 | ||
559 | existingMessage = TRUE; | 560 | existingMessage = TRUE; |
560 | switch ( memstate ) { | 561 | switch ( memstate ) { |
561 | case Unknown: | 562 | case Unknown: |
562 | break; | 563 | break; |
563 | case Low: | 564 | case Low: |
564 | memstate = Unknown; | 565 | memstate = Unknown; |
565 | if ( recoverMemory() ) | 566 | if ( recoverMemory() ) |
566 | ignoreNormal = TRUE; | 567 | ignoreNormal = TRUE; |
567 | else | 568 | else |
568 | QMessageBox::warning( 0 , "Memory Status", | 569 | QMessageBox::warning( 0 , "Memory Status", |
569 | "The memory smacks of shortage. \n" | 570 | "The memory smacks of shortage. \n" |
570 | "Please save data. " ); | 571 | "Please save data. " ); |
571 | break; | 572 | break; |
572 | case Normal: | 573 | case Normal: |
573 | memstate = Unknown; | 574 | memstate = Unknown; |
574 | if ( ignoreNormal ) | 575 | if ( ignoreNormal ) |
@@ -687,175 +688,191 @@ void Desktop::togglePower() | |||
687 | QGfx *g = qt_screen-> screenGfx ( ); | 688 | QGfx *g = qt_screen-> screenGfx ( ); |
688 | g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); | 689 | g-> fillRect ( 0, 0, qt_screen-> width ( ), qt_screen-> height ( )); |
689 | delete g; | 690 | delete g; |
690 | } | 691 | } |
691 | #endif | 692 | #endif |
692 | 693 | ||
693 | ODevice::inst ( )-> suspend ( ); | 694 | ODevice::inst ( )-> suspend ( ); |
694 | 695 | ||
695 | DesktopApplication::switchLCD ( true ); // force LCD on without slow qcop call | 696 | DesktopApplication::switchLCD ( true ); // force LCD on without slow qcop call |
696 | QWSServer::screenSaverActivate ( false ); | 697 | QWSServer::screenSaverActivate ( false ); |
697 | 698 | ||
698 | { | 699 | { |
699 | QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep | 700 | QCopEnvelope( "QPE/Card", "mtabChanged()" ); // might have changed while asleep |
700 | } | 701 | } |
701 | 702 | ||
702 | if ( wasloggedin ) | 703 | if ( wasloggedin ) |
703 | login ( true ); | 704 | login ( true ); |
704 | 705 | ||
705 | execAutoStart(); | 706 | execAutoStart(); |
706 | //qcopBridge->closeOpenConnections(); | 707 | //qcopBridge->closeOpenConnections(); |
707 | 708 | ||
708 | excllock = false; | 709 | excllock = false; |
709 | } | 710 | } |
710 | 711 | ||
711 | void Desktop::toggleLight() | 712 | void Desktop::toggleLight() |
712 | { | 713 | { |
713 | QCopEnvelope e( "QPE/System", "setBacklight(int)" ); | 714 | QCopEnvelope e( "QPE/System", "setBacklight(int)" ); |
714 | e << -2; // toggle | 715 | e << -2; // toggle |
715 | } | 716 | } |
716 | 717 | ||
717 | void Desktop::toggleSymbolInput() | 718 | void Desktop::toggleSymbolInput() |
718 | { | 719 | { |
719 | tb->toggleSymbolInput(); | 720 | tb->toggleSymbolInput(); |
720 | } | 721 | } |
721 | 722 | ||
722 | void Desktop::toggleNumLockState() | 723 | void Desktop::toggleNumLockState() |
723 | { | 724 | { |
724 | tb->toggleNumLockState(); | 725 | tb->toggleNumLockState(); |
725 | } | 726 | } |
726 | 727 | ||
727 | void Desktop::toggleCapsLockState() | 728 | void Desktop::toggleCapsLockState() |
728 | { | 729 | { |
729 | tb->toggleCapsLockState(); | 730 | tb->toggleCapsLockState(); |
730 | } | 731 | } |
731 | 732 | ||
732 | void Desktop::styleChange( QStyle &s ) | 733 | void Desktop::styleChange( QStyle &s ) |
733 | { | 734 | { |
734 | QWidget::styleChange( s ); | 735 | QWidget::styleChange( s ); |
735 | int displayw = qApp->desktop() ->width(); | 736 | layout(); |
736 | int displayh = qApp->desktop() ->height(); | ||
737 | |||
738 | QSize sz = tb->sizeHint(); | ||
739 | |||
740 | tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); | ||
741 | } | 737 | } |
742 | 738 | ||
743 | void DesktopApplication::shutdown() | 739 | void DesktopApplication::shutdown() |
744 | { | 740 | { |
745 | if ( type() != GuiServer ) | 741 | if ( type() != GuiServer ) |
746 | return ; | 742 | return ; |
747 | ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); | 743 | ShutdownImpl *sd = new ShutdownImpl( 0, 0, WDestructiveClose ); |
748 | connect( sd, SIGNAL( shutdown( ShutdownImpl::Type ) ), | 744 | connect( sd, SIGNAL( shutdown( ShutdownImpl::Type ) ), |
749 | this, SLOT( shutdown( ShutdownImpl::Type ) ) ); | 745 | this, SLOT( shutdown( ShutdownImpl::Type ) ) ); |
750 | sd->showMaximized(); | 746 | sd->showMaximized(); |
751 | } | 747 | } |
752 | 748 | ||
753 | void DesktopApplication::shutdown( ShutdownImpl::Type t ) | 749 | void DesktopApplication::shutdown( ShutdownImpl::Type t ) |
754 | { | 750 | { |
755 | char *opt = 0; | 751 | char *opt = 0; |
756 | 752 | ||
757 | switch ( t ) { | 753 | switch ( t ) { |
758 | case ShutdownImpl::ShutdownSystem: | 754 | case ShutdownImpl::ShutdownSystem: |
759 | opt = "-h"; | 755 | opt = "-h"; |
760 | // fall through | 756 | // fall through |
761 | case ShutdownImpl::RebootSystem: | 757 | case ShutdownImpl::RebootSystem: |
762 | if ( opt == 0 ) | 758 | if ( opt == 0 ) |
763 | opt = "-r"; | 759 | opt = "-r"; |
764 | 760 | ||
765 | if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 ) | 761 | if ( execl( "/sbin/shutdown", "shutdown", opt, "now", ( void* ) 0) < 0 ) |
766 | perror("shutdown"); | 762 | perror("shutdown"); |
767 | // ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); | 763 | // ::syslog ( LOG_ERR, "Erroring execing shutdown\n" ); |
768 | 764 | ||
769 | break; | 765 | break; |
770 | case ShutdownImpl::RestartDesktop: | 766 | case ShutdownImpl::RestartDesktop: |
771 | restart(); | 767 | restart(); |
772 | break; | 768 | break; |
773 | case ShutdownImpl::TerminateDesktop: | 769 | case ShutdownImpl::TerminateDesktop: |
774 | prepareForTermination( FALSE ); | 770 | prepareForTermination( FALSE ); |
775 | 771 | ||
776 | // This is a workaround for a Qt bug | 772 | // This is a workaround for a Qt bug |
777 | // clipboard applet has to stop its poll timer, or Qt/E | 773 | // clipboard applet has to stop its poll timer, or Qt/E |
778 | // will hang on quit() right before it emits aboutToQuit() | 774 | // will hang on quit() right before it emits aboutToQuit() |
779 | emit aboutToQuit ( ); | 775 | emit aboutToQuit ( ); |
780 | 776 | ||
781 | quit(); | 777 | quit(); |
782 | break; | 778 | break; |
783 | } | 779 | } |
784 | } | 780 | } |
785 | 781 | ||
786 | void DesktopApplication::restart() | 782 | void DesktopApplication::restart() |
787 | { | 783 | { |
788 | prepareForTermination( TRUE ); | 784 | prepareForTermination( TRUE ); |
789 | 785 | ||
790 | #ifdef Q_WS_QWS | 786 | #ifdef Q_WS_QWS |
791 | 787 | ||
792 | for ( int fd = 3; fd < 100; fd++ ) | 788 | for ( int fd = 3; fd < 100; fd++ ) |
793 | close( fd ); | 789 | close( fd ); |
794 | #if defined(QT_DEMO_SINGLE_FLOPPY) | 790 | #if defined(QT_DEMO_SINGLE_FLOPPY) |
795 | 791 | ||
796 | execl( "/sbin/init", "qpe", 0 ); | 792 | execl( "/sbin/init", "qpe", 0 ); |
797 | #elif defined(QT_QWS_CASSIOPEIA) | 793 | #elif defined(QT_QWS_CASSIOPEIA) |
798 | 794 | ||
799 | execl( "/bin/sh", "sh", 0 ); | 795 | execl( "/bin/sh", "sh", 0 ); |
800 | #else | 796 | #else |
801 | 797 | ||
802 | execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 ); | 798 | execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 ); |
803 | #endif | 799 | #endif |
804 | 800 | ||
805 | exit( 1 ); | 801 | exit( 1 ); |
806 | #endif | 802 | #endif |
807 | } | 803 | } |
808 | 804 | ||
805 | void Desktop::layout() | ||
806 | { | ||
807 | int displayw = qApp->desktop() ->width(); | ||
808 | int displayh = qApp->desktop() ->height(); | ||
809 | |||
810 | QSize sz = tb->sizeHint(); | ||
811 | |||
812 | tb->setGeometry( 0, displayh - sz.height(), displayw, sz.height() ); | ||
813 | tb->calcMaxWindowRect(); | ||
814 | } | ||
815 | |||
809 | void Desktop::startTransferServer() | 816 | void Desktop::startTransferServer() |
810 | { | 817 | { |
811 | // start qcop bridge server | 818 | // start qcop bridge server |
812 | qcopBridge = new QCopBridge( 4243 ); | 819 | qcopBridge = new QCopBridge( 4243 ); |
813 | if ( !qcopBridge->ok() ) { | 820 | if ( !qcopBridge->ok() ) { |
814 | delete qcopBridge; | 821 | delete qcopBridge; |
815 | qcopBridge = 0; | 822 | qcopBridge = 0; |
816 | } | 823 | } |
817 | // start transfer server | 824 | // start transfer server |
818 | transferServer = new TransferServer( 4242 ); | 825 | transferServer = new TransferServer( 4242 ); |
819 | if ( !transferServer->ok() ) { | 826 | if ( !transferServer->ok() ) { |
820 | delete transferServer; | 827 | delete transferServer; |
821 | transferServer = 0; | 828 | transferServer = 0; |
822 | } | 829 | } |
823 | if ( !transferServer || !qcopBridge ) | 830 | if ( !transferServer || !qcopBridge ) |
824 | startTimer( 2000 ); | 831 | startTimer( 2000 ); |
825 | } | 832 | } |
826 | 833 | ||
827 | void Desktop::timerEvent( QTimerEvent *e ) | 834 | void Desktop::timerEvent( QTimerEvent *e ) |
828 | { | 835 | { |
829 | killTimer( e->timerId() ); | 836 | killTimer( e->timerId() ); |
830 | startTransferServer(); | 837 | startTransferServer(); |
831 | } | 838 | } |
832 | 839 | ||
840 | bool Desktop::eventFilter( QObject *o, QEvent *ev ) | ||
841 | { | ||
842 | if ( o != qApp->desktop() || ev->type() != QEvent::Resize ) | ||
843 | return QWidget::eventFilter( o, ev ); | ||
844 | |||
845 | layout(); | ||
846 | |||
847 | return QWidget::eventFilter( o, ev ); | ||
848 | } | ||
849 | |||
833 | void Desktop::terminateServers() | 850 | void Desktop::terminateServers() |
834 | { | 851 | { |
835 | delete transferServer; | 852 | delete transferServer; |
836 | delete qcopBridge; | 853 | delete qcopBridge; |
837 | transferServer = 0; | 854 | transferServer = 0; |
838 | qcopBridge = 0; | 855 | qcopBridge = 0; |
839 | } | 856 | } |
840 | 857 | ||
841 | void DesktopApplication::rereadVolumes() | 858 | void DesktopApplication::rereadVolumes() |
842 | { | 859 | { |
843 | Config cfg( "qpe" ); | 860 | Config cfg( "qpe" ); |
844 | cfg. setGroup ( "Volume" ); | 861 | cfg. setGroup ( "Volume" ); |
845 | 862 | ||
846 | m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); | 863 | m_screentap_sound = cfg. readBoolEntry ( "TouchSound" ); |
847 | m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); | 864 | m_keyclick_sound = cfg. readBoolEntry ( "KeySound" ); |
848 | m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); | 865 | m_alarm_sound = cfg. readBoolEntry ( "AlarmSound" ); |
849 | } | 866 | } |
850 | 867 | ||
851 | void DesktopApplication::soundAlarm() | 868 | void DesktopApplication::soundAlarm() |
852 | { | 869 | { |
853 | if ( me ( )-> m_alarm_sound ) | 870 | if ( me ( )-> m_alarm_sound ) |
854 | ODevice::inst ( )-> alarmSound ( ); | 871 | ODevice::inst ( )-> alarmSound ( ); |
855 | } | 872 | } |
856 | 873 | ||
857 | DesktopApplication *DesktopApplication::me ( ) | 874 | DesktopApplication *DesktopApplication::me ( ) |
858 | { | 875 | { |
859 | return (DesktopApplication *) qApp; | 876 | return (DesktopApplication *) qApp; |
860 | } | 877 | } |
861 | 878 | ||
diff --git a/core/launcher/desktop.h b/core/launcher/desktop.h index 4024c38..86d8aa8 100644 --- a/core/launcher/desktop.h +++ b/core/launcher/desktop.h | |||
@@ -89,67 +89,69 @@ private: | |||
89 | static DesktopApplication *me ( ); | 89 | static DesktopApplication *me ( ); |
90 | 90 | ||
91 | private: | 91 | private: |
92 | void reloadPowerWarnSettings(); | 92 | void reloadPowerWarnSettings(); |
93 | DesktopPowerAlerter *pa; | 93 | DesktopPowerAlerter *pa; |
94 | PowerStatus *m_ps, *m_ps_last; | 94 | PowerStatus *m_ps, *m_ps_last; |
95 | QTimer *cardSendTimer; | 95 | QTimer *cardSendTimer; |
96 | QCopChannel *channel; | 96 | QCopChannel *channel; |
97 | OpieScreenSaver *m_screensaver; | 97 | OpieScreenSaver *m_screensaver; |
98 | QTimer * m_apm_timer; | 98 | QTimer * m_apm_timer; |
99 | int m_powerVeryLow; | 99 | int m_powerVeryLow; |
100 | int m_powerCritical; | 100 | int m_powerCritical; |
101 | int m_currentPowerLevel; | 101 | int m_currentPowerLevel; |
102 | 102 | ||
103 | const Opie::ODeviceButton *m_last_button; | 103 | const Opie::ODeviceButton *m_last_button; |
104 | QTimer *m_button_timer; | 104 | QTimer *m_button_timer; |
105 | 105 | ||
106 | bool m_keyclick_sound : 1; | 106 | bool m_keyclick_sound : 1; |
107 | bool m_screentap_sound : 1; | 107 | bool m_screentap_sound : 1; |
108 | bool m_alarm_sound : 1; | 108 | bool m_alarm_sound : 1; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | 111 | ||
112 | class Desktop : public QWidget | 112 | class Desktop : public QWidget |
113 | { | 113 | { |
114 | Q_OBJECT | 114 | Q_OBJECT |
115 | public: | 115 | public: |
116 | Desktop(); | 116 | Desktop(); |
117 | ~Desktop(); | 117 | ~Desktop(); |
118 | 118 | ||
119 | static bool screenLocked(); | 119 | static bool screenLocked(); |
120 | 120 | ||
121 | void show(); | 121 | void show(); |
122 | void checkMemory(); | 122 | void checkMemory(); |
123 | 123 | ||
124 | public slots: | 124 | public slots: |
125 | void execAutoStart(); | 125 | void execAutoStart(); |
126 | void togglePower(); | 126 | void togglePower(); |
127 | void toggleLight(); | 127 | void toggleLight(); |
128 | void toggleNumLockState(); | 128 | void toggleNumLockState(); |
129 | void toggleCapsLockState(); | 129 | void toggleCapsLockState(); |
130 | void toggleSymbolInput(); | 130 | void toggleSymbolInput(); |
131 | void terminateServers(); | 131 | void terminateServers(); |
132 | 132 | ||
133 | protected: | 133 | protected: |
134 | void executeOrModify( const QString& appLnkFile ); | 134 | void executeOrModify( const QString& appLnkFile ); |
135 | void styleChange( QStyle & ); | 135 | void styleChange( QStyle & ); |
136 | void timerEvent( QTimerEvent *e ); | 136 | void timerEvent( QTimerEvent *e ); |
137 | virtual bool eventFilter( QObject *o, QEvent *ev ); | ||
137 | 138 | ||
138 | QWidget *bg; | 139 | QWidget *bg; |
139 | Launcher *launcher; | 140 | Launcher *launcher; |
140 | TaskBar *tb; | 141 | TaskBar *tb; |
141 | 142 | ||
142 | private: | 143 | private: |
144 | void layout(); | ||
143 | void startTransferServer(); | 145 | void startTransferServer(); |
144 | bool recoverMemory(); | 146 | bool recoverMemory(); |
145 | 147 | ||
146 | QCopBridge *qcopBridge; | 148 | QCopBridge *qcopBridge; |
147 | TransferServer *transferServer; | 149 | TransferServer *transferServer; |
148 | PackageSlave *packageSlave; | 150 | PackageSlave *packageSlave; |
149 | 151 | ||
150 | QDateTime suspendTime; | 152 | QDateTime suspendTime; |
151 | }; | 153 | }; |
152 | 154 | ||
153 | 155 | ||
154 | #endif // __DESKTOP_H__ | 156 | #endif // __DESKTOP_H__ |
155 | 157 | ||
diff --git a/core/launcher/taskbar.h b/core/launcher/taskbar.h index cd631ef..a0bf395 100644 --- a/core/launcher/taskbar.h +++ b/core/launcher/taskbar.h | |||
@@ -16,69 +16,70 @@ | |||
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #ifndef __TASKBAR_H__ | 21 | #ifndef __TASKBAR_H__ |
22 | #define __TASKBAR_H__ | 22 | #define __TASKBAR_H__ |
23 | 23 | ||
24 | #include <qhbox.h> | 24 | #include <qhbox.h> |
25 | 25 | ||
26 | class QLabel; | 26 | class QLabel; |
27 | class QTimer; | 27 | class QTimer; |
28 | class InputMethods; | 28 | class InputMethods; |
29 | class Wait; | 29 | class Wait; |
30 | class SysTray; | 30 | class SysTray; |
31 | //class MRUList; | 31 | //class MRUList; |
32 | class RunningAppBar; | 32 | class RunningAppBar; |
33 | class QWidgetStack; | 33 | class QWidgetStack; |
34 | class QTimer; | 34 | class QTimer; |
35 | class QLabel; | 35 | class QLabel; |
36 | class StartMenu; | 36 | class StartMenu; |
37 | class LockKeyState; | 37 | class LockKeyState; |
38 | 38 | ||
39 | class TaskBar : public QHBox { | 39 | class TaskBar : public QHBox { |
40 | Q_OBJECT | 40 | Q_OBJECT |
41 | public: | 41 | public: |
42 | TaskBar(); | 42 | TaskBar(); |
43 | ~TaskBar(); | 43 | ~TaskBar(); |
44 | 44 | ||
45 | static QWidget *calibrate( bool ); | 45 | static QWidget *calibrate( bool ); |
46 | 46 | ||
47 | bool recoverMemory(); | 47 | bool recoverMemory(); |
48 | 48 | ||
49 | StartMenu *startMenu() const { return sm; } | 49 | StartMenu *startMenu() const { return sm; } |
50 | public slots: | 50 | public slots: |
51 | void startWait(); | 51 | void startWait(); |
52 | void stopWait(const QString&); | 52 | void stopWait(const QString&); |
53 | void stopWait(); | 53 | void stopWait(); |
54 | void clearStatusBar(); | 54 | void clearStatusBar(); |
55 | void toggleNumLockState(); | 55 | void toggleNumLockState(); |
56 | void toggleCapsLockState(); | 56 | void toggleCapsLockState(); |
57 | void toggleSymbolInput(); | 57 | void toggleSymbolInput(); |
58 | 58 | ||
59 | protected: | 59 | protected: |
60 | void resizeEvent( QResizeEvent * ); | 60 | void resizeEvent( QResizeEvent * ); |
61 | void styleChange( QStyle & ); | 61 | void styleChange( QStyle & ); |
62 | void setStatusMessage( const QString &text ); | 62 | void setStatusMessage( const QString &text ); |
63 | 63 | ||
64 | private slots: | 64 | public slots: |
65 | void calcMaxWindowRect(); | 65 | void calcMaxWindowRect(); |
66 | private slots: | ||
66 | void receive( const QCString &msg, const QByteArray &data ); | 67 | void receive( const QCString &msg, const QByteArray &data ); |
67 | 68 | ||
68 | private: | 69 | private: |
69 | 70 | ||
70 | QTimer *waitTimer; | 71 | QTimer *waitTimer; |
71 | Wait *waitIcon; | 72 | Wait *waitIcon; |
72 | InputMethods *inputMethods; | 73 | InputMethods *inputMethods; |
73 | SysTray *sysTray; | 74 | SysTray *sysTray; |
74 | // MRUList *mru; | 75 | // MRUList *mru; |
75 | RunningAppBar* runningAppBar; | 76 | RunningAppBar* runningAppBar; |
76 | QWidgetStack *stack; | 77 | QWidgetStack *stack; |
77 | QTimer *clearer; | 78 | QTimer *clearer; |
78 | QLabel *label; | 79 | QLabel *label; |
79 | LockKeyState* lockState; | 80 | LockKeyState* lockState; |
80 | StartMenu *sm; | 81 | StartMenu *sm; |
81 | }; | 82 | }; |
82 | 83 | ||
83 | 84 | ||
84 | #endif // __TASKBAR_H__ | 85 | #endif // __TASKBAR_H__ |