1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#pragma once
#include <QWidget>
#include <QElapsedTimer>
#include <QThread>
#include <QMessageBox>
#include <QCheckBox>
#include <QComboBox>
#include <QSettings>
#include "ui_ftnoir_keyboardshortcuts.h"
class FaceTrackNoIR;
class KeyboardShortcutDialog: public QWidget
{
Q_OBJECT
public:
KeyboardShortcutDialog( FaceTrackNoIR *ftnoir, QWidget *parent );
private:
Ui::UICKeyboardShortcutDialog ui;
FaceTrackNoIR *mainApp;
private slots:
void doOK();
void doCancel();
};
extern QList<QString> global_key_sequences;
#if defined(_WIN32)
extern QList<int> global_windows_key_sequences;
# undef DIRECTINPUT_VERSION
# define DIRECTINPUT_VERSION 0x0800
# include <windows.h>
# include <dinput.h>
struct Key {
BYTE keycode;
bool shift;
bool ctrl;
bool alt;
bool ever_pressed;
QElapsedTimer timer;
public:
Key() : keycode(0), shift(false), ctrl(false), alt(false), ever_pressed(false)
{
}
};
#else
typedef unsigned char BYTE;
struct Key { int foo; };
#endif
#if defined(_WIN32)
class KeybindingWorkerImpl {
private:
LPDIRECTINPUT8 din;
LPDIRECTINPUTDEVICE8 dinkeyboard;
Key kCenter;
Key kToggle;
FaceTrackNoIR& window;
public:
volatile bool should_quit;
~KeybindingWorkerImpl();
KeybindingWorkerImpl(FaceTrackNoIR& w, Key keyCenter, Key keyToggle);
void run();
};
#else
class KeybindingWorkerImpl {
public:
KeybindingWorkerImpl(FaceTrackNoIR& w, Key keyCenter, Key keyToggle);
void run() {}
};
#endif
class KeybindingWorker : public QThread, public KeybindingWorkerImpl {
Q_OBJECT
public:
KeybindingWorker(FaceTrackNoIR& w, Key keyCenter, Key keyToggle) : KeybindingWorkerImpl(w, keyCenter, keyToggle)
{
}
void run() {
KeybindingWorkerImpl::run();
}
};
|