mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 04:10:04 +00:00
Split out map page into map provider and map layout, provider initial content
This commit is contained in:
parent
411d2a3832
commit
7aa5190476
7 changed files with 254 additions and 14 deletions
28
scwx-qt/source/scwx/qt/ui/setup/map_provider_page.hpp
Normal file
28
scwx-qt/source/scwx/qt/ui/setup/map_provider_page.hpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#pragma once
|
||||
|
||||
#include <QWizardPage>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace qt
|
||||
{
|
||||
namespace ui
|
||||
{
|
||||
namespace setup
|
||||
{
|
||||
|
||||
class MapProviderPage : public QWizardPage
|
||||
{
|
||||
public:
|
||||
explicit MapProviderPage(QWidget* parent = nullptr);
|
||||
~MapProviderPage();
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::shared_ptr<Impl> p;
|
||||
};
|
||||
|
||||
} // namespace setup
|
||||
} // namespace ui
|
||||
} // namespace qt
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue