Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / nsplugins / viewer / xtevents.h
blobab5d0a7a5a308a701683c2c20a15f40fe192765f
1 /*
2 Copyright (c) 2007 Lubos Lunak <l.lunak@suse.cz>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
20 #ifndef XTEVENTS_H
21 #define XTEVENTS_H
23 #include <QWidget>
24 #include <QTimer>
26 #include <X11/Intrinsic.h>
28 class XtEvents
29 : public QWidget
31 Q_OBJECT
32 public:
33 XtEvents();
34 virtual ~XtEvents();
35 virtual bool x11Event( XEvent* );
36 private slots:
37 void idleProcess();
38 private:
39 XtAppContext context;
40 QTimer timer;
43 #endif