Add unit settings to settings dialog

This commit is contained in:
Dan Paulat 2024-04-27 00:28:07 -05:00
parent 3bfcaede96
commit a29256d77e
7 changed files with 224 additions and 5 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 UnitSettingsWidget : public SettingsPageWidget
{
Q_OBJECT
public:
explicit UnitSettingsWidget(QWidget* parent = nullptr);
~UnitSettingsWidget();
private:
class Impl;
std::shared_ptr<Impl> p;
};
} // namespace ui
} // namespace qt
} // namespace scwx