Add hotkey settings page

This commit is contained in:
Dan Paulat 2024-04-13 00:24:04 -05:00
parent 589eff9882
commit 81f44add42
6 changed files with 299 additions and 35 deletions

View file

@ -0,0 +1,29 @@
#pragma once
#include <scwx/qt/ui/settings/settings_page_widget.hpp>
#include <QWidget>
namespace scwx
{
namespace qt
{
namespace ui
{
class HotkeySettingsWidget : public SettingsPageWidget
{
Q_OBJECT
public:
explicit HotkeySettingsWidget(QWidget* parent = nullptr);
~HotkeySettingsWidget();
private:
class Impl;
std::shared_ptr<Impl> p;
};
} // namespace ui
} // namespace qt
} // namespace scwx