summaryrefslogtreecommitdiffhomepage
path: root/opentrack/shortcuts.h
blob: 84231850bf9bddaa5c541d00316209a78dbd3494 (plain)
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
/* Copyright (c) 2014-2015, Stanislaw Halik <sthalik@misaki.pl>

 * Permission to use, copy, modify, and/or distribute this
 * software for any purpose with or without fee is hereby granted,
 * provided that the above copyright notice and this permission
 * notice appear in all copies.
 */

#pragma once
#include <QObject>

#ifdef BUILD_api
#   include "opentrack-compat/export.hpp"
#else
#   include "opentrack-compat/import.hpp"
#endif

#include "qxt-mini/QxtGlobalShortcut"
#include "opentrack-compat/options.hpp"
#include "opentrack/main-settings.hpp"

#ifdef _WIN32
#   include "keybinding-worker.hpp"
#endif

using namespace options;

struct OPENTRACK_EXPORT Shortcuts : public QObject {
    Q_OBJECT

public:
    using K =
#ifndef _WIN32
    mem<QxtGlobalShortcut>
#else
    Key
#endif
    ;

    K keyCenter;
    K keyToggle;
    K keyZero;

    WId handle;
#ifdef _WIN32
    mem<KeybindingWorker> keybindingWorker;
#endif
    
    struct key_opts {
        value<QString> keycode;
    
        key_opts(pbundle b, const QString& name) :
            keycode(b, QString("keycode-%1").arg(name), "")
        {}
    };

    struct settings : opts {
        key_opts center, toggle, zero;
        main_settings s_main;
        settings() :
            opts("keyboard-shortcuts"),
            center(b, "center"),
            toggle(b, "toggle"),
            zero(b, "zero")
        {}
    } s;

    Shortcuts(WId handle) : handle(handle) { reload(); }

    void reload();
private:
    void bind_keyboard_shortcut(K &key, key_opts& k);
#ifdef _WIN32
    void receiver(Key& k);
#endif
signals:
    void center();
    void toggle();
    void zero();
};