Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GlobalShortcut.h « mumble « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07c748cfda84c89f76ca2bda97fd9da9d09977c8 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// Copyright 2007-2021 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.

#ifndef MUMBLE_MUMBLE_GLOBALSHORTCUT_H_
#define MUMBLE_MUMBLE_GLOBALSHORTCUT_H_

#include <QtCore/QThread>
#include <QtCore/QtGlobal>
#include <QtWidgets/QStyledItemDelegate>
#include <QtWidgets/QToolButton>

#include "ConfigDialog.h"
#include "MUComboBox.h"
#include "Timer.h"

#include "ui_GlobalShortcut.h"
#include "ui_GlobalShortcutTarget.h"

class GlobalShortcut : public QObject {
	friend class GlobalShortcutEngine;
	friend class GlobalShortcutConfig;

private:
	Q_OBJECT
	Q_DISABLE_COPY(GlobalShortcut)
protected:
	QList< QVariant > qlActive;
signals:
	void down(QVariant);
	void triggered(bool, QVariant);

public:
	QString qsToolTip;
	QString qsWhatsThis;
	QString name;
	QVariant qvDefault;
	int idx;

	GlobalShortcut(QObject *parent, int index, QString qsName, QVariant def = QVariant());
	~GlobalShortcut() Q_DECL_OVERRIDE;

	bool active() const { return !qlActive.isEmpty(); }
};

/**
 * Combo box widget used to define the kind of action a shortcut triggers. Then
 * entries get auto-generated from the GlobalShortcutEngine::qmShortcuts store.
 *
 * @see GlobalShortcutEngine
 */
class ShortcutActionWidget : public MUComboBox {
private:
	Q_OBJECT
	Q_DISABLE_COPY(ShortcutActionWidget)
	Q_PROPERTY(unsigned int index READ index WRITE setIndex USER true)
public:
	ShortcutActionWidget(QWidget *p = nullptr);
	unsigned int index() const;
	void setIndex(int);
};

class ShortcutToggleWidget : public MUComboBox {
private:
	Q_OBJECT
	Q_DISABLE_COPY(ShortcutToggleWidget)
	Q_PROPERTY(int index READ index WRITE setIndex USER true)
public:
	ShortcutToggleWidget(QWidget *p = nullptr);
	int index() const;
	void setIndex(int);
};

/**
 * Dialog which is used to select the targets of a targeted shortcut like Whisper.
 */
class ShortcutTargetDialog : public QDialog, public Ui::GlobalShortcutTarget {
private:
	Q_OBJECT
	Q_DISABLE_COPY(ShortcutTargetDialog)

	enum Target { SELECTION = 0, USERLIST = 1, CHANNEL = 2 };

protected:
	QMap< QString, QString > qmHashNames;
	ShortcutTarget stTarget;

public:
	ShortcutTargetDialog(const ShortcutTarget &, QWidget *p = nullptr);
	ShortcutTarget target() const;
public slots:
	void accept() Q_DECL_OVERRIDE;
	void on_qcbTarget_currentIndexChanged(int index);
	void on_qpbAdd_clicked();
	void on_qpbRemove_clicked();
};

enum ShortcutTargetTypes {
	SHORTCUT_TARGET_ROOT              = -1,
	SHORTCUT_TARGET_PARENT            = -2,
	SHORTCUT_TARGET_CURRENT           = -3,
	SHORTCUT_TARGET_SUBCHANNEL        = -4,
	SHORTCUT_TARGET_PARENT_SUBCHANNEL = -12
};

/**
 * Widget used to display and change a ShortcutTarget. The widget displays a textual representation
 * of a ShortcutTarget and enable its editing with a ShortCutTargetDialog.
 */
class ShortcutTargetWidget : public QFrame {
private:
	Q_OBJECT
	Q_DISABLE_COPY(ShortcutTargetWidget)
	Q_PROPERTY(ShortcutTarget target READ target WRITE setTarget USER true)
protected:
	ShortcutTarget stTarget;
	QLineEdit *qleTarget;
	QToolButton *qtbEdit;

public:
	ShortcutTargetWidget(QWidget *p = nullptr);
	ShortcutTarget target() const;
	void setTarget(const ShortcutTarget &);
	static QString targetString(const ShortcutTarget &);
public slots:
	void on_qtbEdit_clicked();
};

/**
 * Used to get custom display and edit behaviour for the model used in GlobalShortcutConfig::qtwShortcuts.
 * It registers custom handlers which link specific types to custom ShortcutXWidget editors and also
 * provides a basic textual representation for them when they are not edited.
 *
 * @see GlobalShortcutConfig
 * @see ShortcutKeyWidget
 * @see ShortcutActionWidget
 * @see ShortcutTargetWidget
 */
class ShortcutDelegate : public QStyledItemDelegate {
	Q_OBJECT
	Q_DISABLE_COPY(ShortcutDelegate)
public:
	ShortcutDelegate(QObject *);
	~ShortcutDelegate() Q_DECL_OVERRIDE;
	QString displayText(const QVariant &, const QLocale &) const Q_DECL_OVERRIDE;
	bool helpEvent(QHelpEvent *, QAbstractItemView *, const QStyleOptionViewItem &,
				   const QModelIndex &) Q_DECL_OVERRIDE;
};

/**
 * Contains the Shortcut tab from the settings. This ConfigWidget provides
 * the user with the interface to add/edit/delete global shortcuts in Mumble.
 */
class GlobalShortcutConfig : public ConfigWidget, public Ui::GlobalShortcut {
	friend class ShortcutActionWidget;

private:
	Q_OBJECT
	Q_DISABLE_COPY(GlobalShortcutConfig)
protected:
	QList< Shortcut > qlShortcuts;
	QTreeWidgetItem *itemForShortcut(const Shortcut &) const;
	bool showWarning() const;
	bool eventFilter(QObject *, QEvent *) Q_DECL_OVERRIDE;

public:
	/// The unique name of this ConfigWidget
	static const QString name;
	GlobalShortcutConfig(Settings &st);
	virtual QString title() const Q_DECL_OVERRIDE;
	virtual const QString &getName() const Q_DECL_OVERRIDE;
	virtual QIcon icon() const Q_DECL_OVERRIDE;
public slots:
	void accept() const Q_DECL_OVERRIDE;
	void save() const Q_DECL_OVERRIDE;
	void load(const Settings &r) Q_DECL_OVERRIDE;
	void reload();
	void commit();
	void on_qcbEnableGlobalShortcuts_stateChanged(int);
	void on_qpbAdd_clicked(bool);
	void on_qpbRemove_clicked(bool);
	void on_qtwShortcuts_currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *);
	void on_qtwShortcuts_itemChanged(QTreeWidgetItem *, int);
	void on_qpbOpenAccessibilityPrefs_clicked();
	void on_qpbSkipWarning_clicked();
};

struct ShortcutKey {
	Shortcut s;
	int iNumUp;
	GlobalShortcut *gs;
};

/**
 * Creates a background thread which handles global shortcut behaviour. This class inherits
 * a system unspecific interface and basic functionality to the actually used native backend
 * classes (GlobalShortcutPlatform).
 *
 * @see GlobalShortcutX
 * @see GlobalShortcutMac
 * @see GlobalShortcutWin
 */
class GlobalShortcutEngine : public QThread {
private:
	Q_OBJECT
	Q_DISABLE_COPY(GlobalShortcutEngine)
public:
	struct ButtonInfo {
		QString device;
		QString devicePrefix;
		QString name;

		ButtonInfo() : device(tr("Unknown")), name(tr("Unknown")) {}
	};

	bool bNeedRemap;
	Timer tReset;

	static GlobalShortcutEngine *engine;
	static GlobalShortcutEngine *platformInit();

	QHash< int, GlobalShortcut * > qmShortcuts;
	QList< QVariant > qlActiveButtons;
	QList< QVariant > qlDownButtons;
	QList< QVariant > qlSuppressed;

	QList< QVariant > qlButtonList;
	QList< QList< ShortcutKey * > > qlShortcutList;

	GlobalShortcutEngine(QObject *p = nullptr);
	~GlobalShortcutEngine() Q_DECL_OVERRIDE;
	void resetMap();
	void remap();
	virtual void needRemap();
	void run() Q_DECL_OVERRIDE;

	bool handleButton(const QVariant &, bool);
	static void add(GlobalShortcut *);
	static void remove(GlobalShortcut *);

	virtual bool canDisable();
	virtual bool canSuppress();
	virtual bool enabled();
	virtual void setEnabled(bool b);

	virtual ButtonInfo buttonInfo(const QVariant &) = 0;
signals:
	void buttonPressed(bool last);
};

#endif