mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 23:30:05 +00:00
Add unit settings to settings dialog
This commit is contained in:
parent
3bfcaede96
commit
a29256d77e
7 changed files with 224 additions and 5 deletions
29
scwx-qt/source/scwx/qt/ui/settings/unit_settings_widget.hpp
Normal file
29
scwx-qt/source/scwx/qt/ui/settings/unit_settings_widget.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue