Split out map page into map provider and map layout, provider initial content

This commit is contained in:
Dan Paulat 2023-11-08 06:56:09 -06:00
parent 411d2a3832
commit 7aa5190476
7 changed files with 254 additions and 14 deletions

View file

@ -1,31 +0,0 @@
#include <scwx/qt/ui/setup/map_page.hpp>
namespace scwx
{
namespace qt
{
namespace ui
{
namespace setup
{
class MapPage::Impl
{
public:
explicit Impl() = default;
~Impl() = default;
};
MapPage::MapPage(QWidget* parent) :
QWizardPage(parent), p {std::make_shared<Impl>()}
{
setTitle(tr("Map Configuration"));
setSubTitle(tr("Configure the Supercell Wx map provider and basic layout."));
}
MapPage::~MapPage() = default;
} // namespace setup
} // namespace ui
} // namespace qt
} // namespace scwx