author | llornkcor <llornkcor> | 2002-04-28 15:08:04 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-28 15:08:04 (UTC) |
commit | d9a38221ea876cae8ef8b015968e14af75e202bb (patch) (unidiff) | |
tree | 624d057fa2ee702140aee1ef061713af878d92b1 | |
parent | c55ffe32ced1ecbac991ca2e85c6993cf8a04ee0 (diff) | |
download | opie-d9a38221ea876cae8ef8b015968e14af75e202bb.zip opie-d9a38221ea876cae8ef8b015968e14af75e202bb.tar.gz opie-d9a38221ea876cae8ef8b015968e14af75e202bb.tar.bz2 |
harcoded Shift & Key_Tab to emit a '\' character
-rw-r--r-- | core/apps/embeddedkonsole/TEWidget.cpp | 8 | ||||
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 3 |
2 files changed, 8 insertions, 3 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp index dab0ea3..350ab3a 100644 --- a/core/apps/embeddedkonsole/TEWidget.cpp +++ b/core/apps/embeddedkonsole/TEWidget.cpp | |||
@@ -987,13 +987,13 @@ bool TEWidget::eventFilter( QObject *obj, QEvent *e ) | |||
987 | QApplication::sendEvent(scrollbar, e); | 987 | QApplication::sendEvent(scrollbar, e); |
988 | } | 988 | } |
989 | 989 | ||
990 | #ifdef FAKE_CTRL_AND_ALT | 990 | #ifdef FAKE_CTRL_AND_ALT |
991 | static bool control = FALSE; | 991 | static bool control = FALSE; |
992 | static bool alt = FALSE; | 992 | static bool alt = FALSE; |
993 | // Has a keyboard with no CTRL and ALT keys, but we fake it: | 993 | qDebug(" Has a keyboard with no CTRL and ALT keys, but we fake it:"); |
994 | bool dele=FALSE; | 994 | bool dele=FALSE; |
995 | if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { | 995 | if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) { |
996 | QKeyEvent* ke = (QKeyEvent*)e; | 996 | QKeyEvent* ke = (QKeyEvent*)e; |
997 | bool keydown = e->type() == QEvent::KeyPress || ke->isAutoRepeat(); | 997 | bool keydown = e->type() == QEvent::KeyPress || ke->isAutoRepeat(); |
998 | switch (ke->key()) { | 998 | switch (ke->key()) { |
999 | case Key_F9: // let this be "Control" | 999 | case Key_F9: // let this be "Control" |
@@ -1024,16 +1024,20 @@ bool TEWidget::eventFilter( QObject *obj, QEvent *e ) | |||
1024 | } | 1024 | } |
1025 | #endif | 1025 | #endif |
1026 | 1026 | ||
1027 | if ( e->type() == QEvent::KeyPress ) | 1027 | if ( e->type() == QEvent::KeyPress ) |
1028 | { | 1028 | { |
1029 | QKeyEvent* ke = (QKeyEvent*)e; | 1029 | QKeyEvent* ke = (QKeyEvent*)e; |
1030 | |||
1031 | actSel=0; // Key stroke implies a screen update, so TEWidget won't | 1030 | actSel=0; // Key stroke implies a screen update, so TEWidget won't |
1032 | // know where the current selection is. | 1031 | // know where the current selection is. |
1033 | 1032 | ||
1033 | // qDebug("key pressed is 0x%x",ke->key()); | ||
1034 | if( ke->state() == ShiftButton && ke->key() == Key_Tab) { //lets hardcode this sucker | ||
1035 | // qDebug("key pressed 2 is 0x%x",ke->key()); | ||
1036 | emitText("\\"); // expose | ||
1037 | } else | ||
1034 | emit keyPressedSignal(ke); // expose | 1038 | emit keyPressedSignal(ke); // expose |
1035 | ke->accept(); | 1039 | ke->accept(); |
1036 | #ifdef FAKE_CTRL_AND_ALT | 1040 | #ifdef FAKE_CTRL_AND_ALT |
1037 | if ( dele ) delete e; | 1041 | if ( dele ) delete e; |
1038 | #endif | 1042 | #endif |
1039 | return true; // stop the event | 1043 | return true; // stop the event |
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index f13d0c9..adcfb7f 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp | |||
@@ -165,13 +165,14 @@ static const char *commonCmds[] = | |||
165 | 165 | ||
166 | 166 | ||
167 | Konsole::Konsole(QWidget* parent, const char* name, WFlags fl) : | 167 | Konsole::Konsole(QWidget* parent, const char* name, WFlags fl) : |
168 | QMainWindow(parent, name, fl) | 168 | QMainWindow(parent, name, fl) |
169 | { | 169 | { |
170 | QStrList args; | 170 | QStrList args; |
171 | init("/bin/sh",args); | 171 | init("/bin/ash",args); |
172 | // init("/bin/sh",args); | ||
172 | } | 173 | } |
173 | 174 | ||
174 | Konsole::Konsole(const char* name, const char* _pgm, QStrList & _args, int) | 175 | Konsole::Konsole(const char* name, const char* _pgm, QStrList & _args, int) |
175 | : QMainWindow(0, name) | 176 | : QMainWindow(0, name) |
176 | { | 177 | { |
177 | init(_pgm,_args); | 178 | init(_pgm,_args); |