author | llornkcor <llornkcor> | 2004-09-25 04:51:30 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-09-25 04:51:30 (UTC) |
commit | 688bd5382ab60c2146050fc2ff36850ef08a79b9 (patch) (side-by-side diff) | |
tree | f75ea4fa42dadffcae08cc9d2e73ceca710c6feb | |
parent | 4eab17fb1381c938188e13ec5025b8302b159c9e (diff) | |
download | opie-688bd5382ab60c2146050fc2ff36850ef08a79b9.zip opie-688bd5382ab60c2146050fc2ff36850ef08a79b9.tar.gz opie-688bd5382ab60c2146050fc2ff36850ef08a79b9.tar.bz2 |
move kerypress to keyrelease
-rw-r--r-- | noncore/apps/advancedfm/advancedfm.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/noncore/apps/advancedfm/advancedfm.cpp b/noncore/apps/advancedfm/advancedfm.cpp index 73d0d57..48332b7 100644 --- a/noncore/apps/advancedfm/advancedfm.cpp +++ b/noncore/apps/advancedfm/advancedfm.cpp @@ -369,16 +369,23 @@ void AdvancedFm::CFButtonPushed() { } void AdvancedFm::doAbout() { QMessageBox::message("AdvancedFm",tr("<P>Advanced FileManager is copyright 2002-2003 by L.J.Potter<llornkcor@handhelds.org> and is licensed by the GPL</P>")); } void AdvancedFm::keyPressEvent( QKeyEvent *e) { + qDebug("keypressevent"); +} + +void AdvancedFm::keyReleaseEvent( QKeyEvent *e) { + qDebug("key release"); + if( CurrentView()->hasFocus() ) + e->ignore(); if( e->key() == Key_Left ) upDir(); else if( e->key() == Key_Return || e->key() == Key_Enter) navigateToSelected(); else if( e->key() == Key_Tab) setOtherTabCurrent(); else if( e->key() == Key_Delete ) del(); @@ -415,21 +422,16 @@ void AdvancedFm::keyPressEvent( QKeyEvent *e) { else if( e->key() == Key_5 ) homeButtonPushed(); else if( e->key() == Key_6 ) docButtonPushed(); else e->accept(); } -void AdvancedFm::keyReleaseEvent( QKeyEvent *e) { - if( CurrentView()->hasFocus() ) - e->ignore(); -} - void AdvancedFm::QPEButtonPushed() { QString current = QPEApplication::qpeDir(); chdir( current.latin1() ); CurrentDir()->cd( current, TRUE); populateView(); update(); } |