summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/desktop.cpp23
-rw-r--r--core/launcher/desktop.h1
2 files changed, 20 insertions, 4 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index 9863187..387650b 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -447,68 +447,68 @@ bool DesktopApplication::qwsEventFilter( QWSEvent *e )
447// qDebug("<<<<<<<<<<<<<keycode %d", ke->simpleData.keycode); 447// qDebug("<<<<<<<<<<<<<keycode %d", ke->simpleData.keycode);
448 KeyRegisterList::Iterator it; 448 KeyRegisterList::Iterator it;
449 for ( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) { 449 for ( it = keyRegisterList.begin(); it != keyRegisterList.end(); ++it ) {
450 if ( ( *it ).getKeyCode() == ke->simpleData.keycode && !autoRepeat && !keyboardGrabbed() ) { 450 if ( ( *it ).getKeyCode() == ke->simpleData.keycode && !autoRepeat && !keyboardGrabbed() ) {
451 if ( press ) 451 if ( press )
452 qDebug( "press" ); 452 qDebug( "press" );
453 else 453 else
454 qDebug( "release" ); 454 qDebug( "release" );
455 QCopEnvelope( ( *it ).getChannel().utf8(), ( *it ).getMessage().utf8() ); 455 QCopEnvelope( ( *it ).getChannel().utf8(), ( *it ).getMessage().utf8() );
456 } 456 }
457 } 457 }
458 } 458 }
459 459
460 if ( !keyboardGrabbed() ) { 460 if ( !keyboardGrabbed() ) {
461 if ( ke->simpleData.keycode == Key_F9 ) { 461 if ( ke->simpleData.keycode == Key_F9 ) {
462 if ( press ) 462 if ( press )
463 emit datebook(); 463 emit datebook();
464 return TRUE; 464 return TRUE;
465 } 465 }
466 if ( ke->simpleData.keycode == Key_F10 ) { 466 if ( ke->simpleData.keycode == Key_F10 ) {
467 if ( !press && cardSendTimer ) { 467 if ( !press && cardSendTimer ) {
468 emit contacts(); 468 emit contacts();
469 delete cardSendTimer; 469 delete cardSendTimer;
470 } 470 }
471 else if ( press ) { 471 else if ( press ) {
472 cardSendTimer = new QTimer(); 472 cardSendTimer = new QTimer();
473 cardSendTimer->start( 2000, TRUE ); 473 cardSendTimer->start( 2000, TRUE );
474 connect( cardSendTimer, SIGNAL( timeout() ), this, SLOT( sendCard() ) ); 474 connect( cardSendTimer, SIGNAL( timeout() ), this, SLOT( sendCard() ) );
475 } 475 }
476 return TRUE; 476 return TRUE;
477 } 477 }
478// menu key now opens application menu/toolbar 478// menu key now opens application menu/toolbar
479 if ( ke->simpleData.keycode == Key_F11 ) { 479// if ( ke->simpleData.keycode == Key_F11 ) {
480 if ( press ) emit menu(); 480// if ( press ) emit menu();
481 return TRUE; 481// return TRUE;
482 } 482// }
483 483
484 if ( ke->simpleData.keycode == Key_F12 ) { 484 if ( ke->simpleData.keycode == Key_F12 ) {
485 while ( activePopupWidget() ) 485 while ( activePopupWidget() )
486 activePopupWidget() ->close(); 486 activePopupWidget() ->close();
487 if ( press ) 487 if ( press )
488 emit launch(); 488 emit launch();
489 return TRUE; 489 return TRUE;
490 } 490 }
491 if ( ke->simpleData.keycode == Key_F13 ) { 491 if ( ke->simpleData.keycode == Key_F13 ) {
492 if ( press ) 492 if ( press )
493 emit email(); 493 emit email();
494 return TRUE; 494 return TRUE;
495 } 495 }
496 } 496 }
497 497
498 if ( ke->simpleData.keycode == Key_F34 ) { 498 if ( ke->simpleData.keycode == Key_F34 ) {
499 if ( press ) 499 if ( press )
500 emit power(); 500 emit power();
501 return TRUE; 501 return TRUE;
502 } 502 }
503 // This was used for the iPAQ PowerButton 503 // This was used for the iPAQ PowerButton
504 // See main.cpp for new KeyboardFilter 504 // See main.cpp for new KeyboardFilter
505 // 505 //
506 // if ( ke->simpleData.keycode == Key_SysReq ) { 506 // if ( ke->simpleData.keycode == Key_SysReq ) {
507 // if ( press ) emit power(); 507 // if ( press ) emit power();
508 // return TRUE; 508 // return TRUE;
509 // } 509 // }
510 if ( ke->simpleData.keycode == Key_F35 ) { 510 if ( ke->simpleData.keycode == Key_F35 ) {
511 if ( press ) 511 if ( press )
512 emit backlight(); 512 emit backlight();
513 return TRUE; 513 return TRUE;
514 } 514 }
@@ -1018,32 +1018,47 @@ void Desktop::terminateServers()
1018 delete qcopBridge; 1018 delete qcopBridge;
1019 transferServer = 0; 1019 transferServer = 0;
1020 qcopBridge = 0; 1020 qcopBridge = 0;
1021} 1021}
1022 1022
1023void Desktop::rereadVolumes() 1023void Desktop::rereadVolumes()
1024{ 1024{
1025 Config cfg( "qpe" ); 1025 Config cfg( "qpe" );
1026 cfg.setGroup( "Volume" ); 1026 cfg.setGroup( "Volume" );
1027 touchclick = cfg.readBoolEntry( "TouchSound" ); 1027 touchclick = cfg.readBoolEntry( "TouchSound" );
1028 keyclick = cfg.readBoolEntry( "KeySound" ); 1028 keyclick = cfg.readBoolEntry( "KeySound" );
1029 alarmsound = cfg.readBoolEntry( "AlarmSound" ); 1029 alarmsound = cfg.readBoolEntry( "AlarmSound" );
1030} 1030}
1031 1031
1032void Desktop::keyClick() 1032void Desktop::keyClick()
1033{ 1033{
1034 if ( keyclick ) 1034 if ( keyclick )
1035 ODevice::inst ( ) -> keySound ( ); 1035 ODevice::inst ( ) -> keySound ( );
1036} 1036}
1037 1037
1038void Desktop::screenClick() 1038void Desktop::screenClick()
1039{ 1039{
1040 if ( touchclick ) 1040 if ( touchclick )
1041 ODevice::inst ( ) -> touchSound ( ); 1041 ODevice::inst ( ) -> touchSound ( );
1042} 1042}
1043 1043
1044void Desktop::soundAlarm() 1044void Desktop::soundAlarm()
1045{ 1045{
1046 if ( qpedesktop-> alarmsound ) 1046 if ( qpedesktop-> alarmsound )
1047 ODevice::inst ( ) -> alarmSound ( ); 1047 ODevice::inst ( ) -> alarmSound ( );
1048} 1048}
1049 1049
1050bool Desktop::eventFilter( QObject *, QEvent *ev )
1051{
1052 if ( ev->type() == QEvent::KeyPress ) {
1053 QKeyEvent *ke = (QKeyEvent *)ev;
1054 if ( ke->key() == Qt::Key_F11 ) { // menu key
1055 QWidget *active = qApp->activeWindow();
1056 if ( active && active->isPopup() ) {
1057 active->close();
1058 }
1059 raiseMenu();
1060 return TRUE;
1061 }
1062 }
1063 return FALSE;
1064}
diff --git a/core/launcher/desktop.h b/core/launcher/desktop.h
index 5de85f4..04c2f61 100644
--- a/core/launcher/desktop.h
+++ b/core/launcher/desktop.h
@@ -96,52 +96,53 @@ public:
96 ~Desktop(); 96 ~Desktop();
97 97
98 static bool screenLocked(); 98 static bool screenLocked();
99 99
100 void show(); 100 void show();
101 void checkMemory(); 101 void checkMemory();
102 102
103 void keyClick(); 103 void keyClick();
104 void screenClick(); 104 void screenClick();
105 static void soundAlarm(); 105 static void soundAlarm();
106 106
107public slots: 107public slots:
108 void raiseDatebook(); 108 void raiseDatebook();
109 void raiseContacts(); 109 void raiseContacts();
110 void raiseMenu(); 110 void raiseMenu();
111 void raiseLauncher(); 111 void raiseLauncher();
112 void raiseEmail(); 112 void raiseEmail();
113 void execAutoStart(); 113 void execAutoStart();
114 void togglePower(); 114 void togglePower();
115 void toggleLight(); 115 void toggleLight();
116 void toggleNumLockState(); 116 void toggleNumLockState();
117 void toggleCapsLockState(); 117 void toggleCapsLockState();
118 void toggleSymbolInput(); 118 void toggleSymbolInput();
119 void terminateServers(); 119 void terminateServers();
120 void rereadVolumes(); 120 void rereadVolumes();
121 121
122 void home ( ); 122 void home ( );
123 123
124protected: 124protected:
125 void executeOrModify( const QString& appLnkFile ); 125 void executeOrModify( const QString& appLnkFile );
126 void styleChange( QStyle & ); 126 void styleChange( QStyle & );
127 void timerEvent( QTimerEvent *e ); 127 void timerEvent( QTimerEvent *e );
128 bool eventFilter( QObject *, QEvent * );
128 129
129 QWidget *bg; 130 QWidget *bg;
130 Launcher *launcher; 131 Launcher *launcher;
131 TaskBar *tb; 132 TaskBar *tb;
132 133
133private: 134private:
134 void startTransferServer(); 135 void startTransferServer();
135 bool recoverMemory(); 136 bool recoverMemory();
136 137
137 QCopBridge *qcopBridge; 138 QCopBridge *qcopBridge;
138 TransferServer *transferServer; 139 TransferServer *transferServer;
139 PackageSlave *packageSlave; 140 PackageSlave *packageSlave;
140 141
141 QDateTime suspendTime; 142 QDateTime suspendTime;
142 bool keyclick, touchclick, alarmsound; 143 bool keyclick, touchclick, alarmsound;
143}; 144};
144 145
145 146
146#endif // __DESKTOP_H__ 147#endif // __DESKTOP_H__
147 148