summaryrefslogtreecommitdiff
authorgroucho <groucho>2003-03-22 09:21:03 (UTC)
committer groucho <groucho>2003-03-22 09:21:03 (UTC)
commitf462ccd5ad11da7bddfa627d4773e3b02f18e2b8 (patch) (side-by-side diff)
treeba1250690fe416d01802059117107391fecb0d88
parent32458f9d70e8b13a7e8ff46c06af17860c218f23 (diff)
downloadopie-f462ccd5ad11da7bddfa627d4773e3b02f18e2b8.zip
opie-f462ccd5ad11da7bddfa627d4773e3b02f18e2b8.tar.gz
opie-f462ccd5ad11da7bddfa627d4773e3b02f18e2b8.tar.bz2
Bug fix- Key presess are now routed up to the QPEApplication event queue if ignore is defined for a certain key
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/desktop.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp
index fbcce7c..86527f6 100644
--- a/core/launcher/desktop.cpp
+++ b/core/launcher/desktop.cpp
@@ -352,6 +352,9 @@ bool DesktopApplication::checkButtonAction ( const ODeviceButton *db, int /*keyc
{
+
if ( db-> pressedAction ( ). channel ( )!="ignore") {
+
db-> pressedAction ( ). send ( );
}
- else return false;
+ else
+ return false;
}
@@ -376,2 +379,3 @@ bool DesktopApplication::eventFilter ( QObject *o, QEvent *e )
{
+
if ( e-> type ( ) == QEvent::KeyPress || e-> type ( ) == QEvent::KeyRelease ) {
@@ -382,3 +386,4 @@ bool DesktopApplication::eventFilter ( QObject *o, QEvent *e )
if ( db ) {
- return checkButtonAction ( db, ke-> key ( ), e-> type ( ) == QEvent::KeyPress, ke-> isAutoRepeat ( ));
+ if (checkButtonAction ( db, ke-> key ( ), e-> type ( ) == QEvent::KeyPress, ke-> isAutoRepeat ( )))
+ return true; //checkButtonAction retrune false if events should be routed through
}
@@ -667,4 +672,2 @@ void Desktop::togglePower()
- qDebug ( "togglePower (locked == %d)", excllock ? 1 : 0 );
-
if ( excllock )