-rw-r--r-- | core/apps/embeddedkonsole/main.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp index b3c0453..3ebe4c7 100644 --- a/core/apps/embeddedkonsole/main.cpp +++ b/core/apps/embeddedkonsole/main.cpp | |||
@@ -1,61 +1,64 @@ | |||
1 | /* ---------------------------------------------------------------------- */ | 1 | /* ---------------------------------------------------------------------- */ |
2 | /* */ | 2 | /* */ |
3 | /* [main.C] Konsole */ | 3 | /* [main.C] Konsole */ |
4 | /* */ | 4 | /* */ |
5 | /* ---------------------------------------------------------------------- */ | 5 | /* ---------------------------------------------------------------------- */ |
6 | /* */ | 6 | /* */ |
7 | /* Copyright (c) 1997,1998 by Lars Doelle <lars.doelle@on-line.de> */ | 7 | /* Copyright (c) 1997,1998 by Lars Doelle <lars.doelle@on-line.de> */ |
8 | /* */ | 8 | /* */ |
9 | /* This file is part of Konsole, an X terminal. */ | 9 | /* This file is part of Konsole, an X terminal. */ |
10 | /* */ | 10 | /* */ |
11 | /* The material contained in here more or less directly orginates from */ | 11 | /* The material contained in here more or less directly orginates from */ |
12 | /* kvt, which is copyright (c) 1996 by Matthias Ettrich <ettrich@kde.org> */ | 12 | /* kvt, which is copyright (c) 1996 by Matthias Ettrich <ettrich@kde.org> */ |
13 | /* */ | 13 | /* */ |
14 | /* ---------------------------------------------------------------------- */ | 14 | /* ---------------------------------------------------------------------- */ |
15 | /* */ | 15 | /* */ |
16 | /* Ported Konsole to Qt/Embedded */ | 16 | /* Ported Konsole to Qt/Embedded */ |
17 | /* */ | 17 | /* */ |
18 | /* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */ | 18 | /* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */ |
19 | /* */ | 19 | /* */ |
20 | /* -------------------------------------------------------------------------- */ | 20 | /* -------------------------------------------------------------------------- */ |
21 | 21 | ||
22 | #include "konsole.h" | 22 | #include "konsole.h" |
23 | 23 | ||
24 | #include <qpe/qpeapplication.h> | 24 | #include <qpe/qpeapplication.h> |
25 | 25 | ||
26 | #include <qfile.h> | 26 | #include <qfile.h> |
27 | 27 | ||
28 | #include <unistd.h> | 28 | #include <unistd.h> |
29 | #include <stdio.h> | 29 | #include <stdio.h> |
30 | #include <stdlib.h> | 30 | #include <stdlib.h> |
31 | 31 | ||
32 | 32 | ||
33 | /* --| main |------------------------------------------------------ */ | 33 | /* --| main |------------------------------------------------------ */ |
34 | int main(int argc, char* argv[]) | 34 | int main(int argc, char* argv[]) |
35 | { | 35 | { |
36 | setuid(getuid()); setgid(getgid()); // drop privileges | 36 | setuid(getuid()); setgid(getgid()); // drop privileges |
37 | 37 | ||
38 | QPEApplication a( argc, argv ); | 38 | QPEApplication a( argc, argv ); |
39 | 39 | ||
40 | QPEApplication::grabKeyboard(); // for CTRL and ALT | ||
41 | |||
42 | qDebug("keyboard grabbed"); | ||
40 | #ifdef FAKE_CTRL_AND_ALT | 43 | #ifdef FAKE_CTRL_AND_ALT |
41 | qDebug("Fake Ctrl and Alt defined"); | 44 | qDebug("Fake Ctrl and Alt defined"); |
42 | QPEApplication::grabKeyboard(); // for CTRL and ALT | 45 | QPEApplication::grabKeyboard(); // for CTRL and ALT |
43 | #endif | 46 | #endif |
44 | 47 | ||
45 | QStrList tmp; | 48 | QStrList tmp; |
46 | const char* shell = getenv("SHELL"); | 49 | const char* shell = getenv("SHELL"); |
47 | if (shell == NULL || *shell == '\0') | 50 | if (shell == NULL || *shell == '\0') |
48 | shell = "/bin/sh"; | 51 | shell = "/bin/sh"; |
49 | 52 | ||
50 | // sh is completely broken on familiar. Let's try to get something better | 53 | // sh is completely broken on familiar. Let's try to get something better |
51 | if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) ) | 54 | if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) ) |
52 | shell = "/bin/bash"; | 55 | shell = "/bin/bash"; |
53 | 56 | ||
54 | putenv((char*)"COLORTERM="); // to trigger mc's color detection | 57 | putenv((char*)"COLORTERM="); // to trigger mc's color detection |
55 | 58 | ||
56 | Konsole m( "test", shell, tmp, TRUE ); | 59 | Konsole m( "test", shell, tmp, TRUE ); |
57 | m.setCaption( Konsole::tr("Terminal") ); | 60 | m.setCaption( Konsole::tr("Terminal") ); |
58 | a.showMainWidget( &m ); | 61 | a.showMainWidget( &m ); |
59 | 62 | ||
60 | return a.exec(); | 63 | return a.exec(); |
61 | } | 64 | } |