Refine button handling. Change key mappings.
[qzeecontrol] / xtstadapter.h
1 /*
2  *  Copyright 2012 Ruediger Gad
3  *
4  *  This file is part of QZeeControl.
5  *
6  *  QZeeControl is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  QZeeControl is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with QZeeControl.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef XTSTADAPTER_H
21 #define XTSTADAPTER_H
22
23 #include <QObject>
24
25 #include <X11/extensions/XTest.h>
26 #include <X11/Xlib.h>
27
28 class XtstAdapter : public QObject
29 {
30     Q_OBJECT
31 public:
32     explicit XtstAdapter(QObject *parent = 0)
33         : QObject(parent){
34         display = XOpenDisplay(0);
35     }
36     
37 signals:
38     
39 public slots:
40     void sendKeyPress(QString key);
41     void sendKey(QString key, bool down);
42
43 private:
44     Display *display;
45
46     
47 };
48
49 #endif // XTSTADAPTER_H