summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-06-23 20:25:42 (UTC)
committer llornkcor <llornkcor>2002-06-23 20:25:42 (UTC)
commit682c35bee3ea3012ce0dfe70c531b87231d4fcf4 (patch) (unidiff)
treee450d9196fa4985c3f5aa2939725e148058e3e8c
parente611ad323de0bc155d52704545378c948bdbadfa (diff)
downloadopie-682c35bee3ea3012ce0dfe70c531b87231d4fcf4.zip
opie-682c35bee3ea3012ce0dfe70c531b87231d4fcf4.tar.gz
opie-682c35bee3ea3012ce0dfe70c531b87231d4fcf4.tar.bz2
be a meanie and grab all keyboard inputs
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/main.cpp9
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
@@ -9,17 +9,17 @@
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
@@ -34,12 +34,15 @@
34int main(int argc, char* argv[]) 34int 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;