File: settingskeycapturedialog.h

package info (click to toggle)
chiaki 2.2.0-1.2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 5,312 kB
  • sloc: ansic: 17,616; cpp: 7,901; xml: 2,691; sh: 395; python: 96; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: LicenseRef-AGPL-3.0-only-OpenSSL

#ifndef CHIAKI_SETTINGSKEYCAPTUREDIALOG_H
#define CHIAKI_SETTINGSKEYCAPTUREDIALOG_H

#include <QDialog>

class SettingsKeyCaptureDialog : public QDialog
{
	Q_OBJECT

	signals:
		void KeyCaptured(Qt::Key);

	protected:
		void keyReleaseEvent(QKeyEvent *event) override;

	public:
		explicit SettingsKeyCaptureDialog(QWidget *parent = nullptr);
};

#endif // CHIAKI_SETTINGSKEYCAPTUREDIALOG_H