chiaki/gui/include/settingskeycapturedialog.h
2020-12-27 16:46:09 +01:00

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