author | llornkcor <llornkcor> | 2004-04-25 11:17:38 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-04-25 11:17:38 (UTC) |
commit | 84466242f91283378aec1b1ecda0bb27eb4f6097 (patch) (unidiff) | |
tree | 55fd40bfa6dbfbd3cccdb9de51551d7861603b0c | |
parent | ab09b0ec3c7fb83d6438af1e4f9cebedaeab71df (diff) | |
download | opie-84466242f91283378aec1b1ecda0bb27eb4f6097.zip opie-84466242f91283378aec1b1ecda0bb27eb4f6097.tar.gz opie-84466242f91283378aec1b1ecda0bb27eb4f6097.tar.bz2 |
remove commented
-rw-r--r-- | library/qpeapplication.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index c875ff2..86dbe85 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1036,32 +1036,24 @@ void QPEApplication::mapToDefaultAction( QWSKeyEvent * ke, int key ) | |||
1036 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) | 1036 | && activePopupWidget() ->parentWidget() ->inherits( "QComboBox" ) ) |
1037 | key = Qt::Key_Return; | 1037 | key = Qt::Key_Return; |
1038 | 1038 | ||
1039 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QPopupMenu" ) ) | 1039 | if ( activePopupWidget() && activePopupWidget() ->inherits( "QPopupMenu" ) ) |
1040 | key = Qt::Key_Return; | 1040 | key = Qt::Key_Return; |
1041 | 1041 | ||
1042 | #ifdef QWS | 1042 | #ifdef QWS |
1043 | 1043 | ||
1044 | ke->simpleData.keycode = key; | 1044 | ke->simpleData.keycode = key; |
1045 | #endif | 1045 | #endif |
1046 | } | 1046 | } |
1047 | 1047 | ||
1048 | // class HackWidget : public QWidget | ||
1049 | // { | ||
1050 | // public: | ||
1051 | // bool needsOk() | ||
1052 | // { | ||
1053 | // return ( getWState() & WState_Reserved1 ); | ||
1054 | // } | ||
1055 | // }; | ||
1056 | 1048 | ||
1057 | /*! | 1049 | /*! |
1058 | \internal | 1050 | \internal |
1059 | */ | 1051 | */ |
1060 | 1052 | ||
1061 | #ifdef QWS | 1053 | #ifdef QWS |
1062 | bool QPEApplication::qwsEventFilter( QWSEvent * e ) | 1054 | bool QPEApplication::qwsEventFilter( QWSEvent * e ) |
1063 | { | 1055 | { |
1064 | if ( !d->notbusysent && e->type == QWSEvent::Focus ) { | 1056 | if ( !d->notbusysent && e->type == QWSEvent::Focus ) { |
1065 | if ( qApp->type() != QApplication::GuiServer ) { | 1057 | if ( qApp->type() != QApplication::GuiServer ) { |
1066 | QCopEnvelope e( "QPE/System", "notBusy(QString)" ); | 1058 | QCopEnvelope e( "QPE/System", "notBusy(QString)" ); |
1067 | e << d->appName; | 1059 | e << d->appName; |
@@ -1113,24 +1105,25 @@ bool QPEApplication::qwsEventFilter( QWSEvent * e ) | |||
1113 | else if ( ke->simpleData.keycode == Qt::Key_F30 ) { | 1105 | else if ( ke->simpleData.keycode == Qt::Key_F30 ) { |
1114 | // Use special "select" key to do whatever default action a widget has | 1106 | // Use special "select" key to do whatever default action a widget has |
1115 | mapToDefaultAction( ke, Qt::Key_Space ); | 1107 | mapToDefaultAction( ke, Qt::Key_Space ); |
1116 | } | 1108 | } |
1117 | else if ( ke->simpleData.keycode == Qt::Key_Escape && | 1109 | else if ( ke->simpleData.keycode == Qt::Key_Escape && |
1118 | ke->simpleData.is_press ) { | 1110 | ke->simpleData.is_press ) { |
1119 | // Escape key closes app if focus on toplevel | 1111 | // Escape key closes app if focus on toplevel |
1120 | QWidget * active = activeWindow(); | 1112 | QWidget * active = activeWindow(); |
1121 | if ( active && active->testWFlags( WType_TopLevel ) && | 1113 | if ( active && active->testWFlags( WType_TopLevel ) && |
1122 | ( int ) active->winId() == ke->simpleData.window && | 1114 | ( int ) active->winId() == ke->simpleData.window && |
1123 | !active->testWFlags( WStyle_Dialog | WStyle_Customize | WType_Popup | WType_Desktop ) ) { | 1115 | !active->testWFlags( WStyle_Dialog | WStyle_Customize | WType_Popup | WType_Desktop ) ) { |
1124 | if ( active->inherits( "QDialog" ) ) { | 1116 | if ( active->inherits( "QDialog" ) ) { |
1117 | qDebug("dialog hack"); | ||
1125 | HackDialog * d = ( HackDialog * ) active; | 1118 | HackDialog * d = ( HackDialog * ) active; |
1126 | d->rejectIt(); | 1119 | d->rejectIt(); |
1127 | return TRUE; | 1120 | return TRUE; |
1128 | } | 1121 | } |
1129 | } | 1122 | } |
1130 | } | 1123 | } |
1131 | else if ( ke->simpleData.keycode >= Qt::Key_F1 && ke->simpleData.keycode <= Qt::Key_F29 ) { | 1124 | else if ( ke->simpleData.keycode >= Qt::Key_F1 && ke->simpleData.keycode <= Qt::Key_F29 ) { |
1132 | // this should be if ( ODevice::inst ( )-> buttonForKeycode ( ... )) | 1125 | // this should be if ( ODevice::inst ( )-> buttonForKeycode ( ... )) |
1133 | // but we cannot access libopie function within libqpe :( | 1126 | // but we cannot access libopie function within libqpe :( |
1134 | 1127 | ||
1135 | QWidget * active = activeWindow ( ); | 1128 | QWidget * active = activeWindow ( ); |
1136 | if ( active && ((int) active-> winId ( ) == ke-> simpleData.window )) { | 1129 | if ( active && ((int) active-> winId ( ) == ke-> simpleData.window )) { |