mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
23 lines
453 B
C++
23 lines
453 B
C++
// 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
|