Finishing map provider setup page contents

This commit is contained in:
Dan Paulat 2023-11-08 21:37:48 -06:00
parent 7aa5190476
commit b9929db486
2 changed files with 129 additions and 47 deletions

View file

@ -13,10 +13,15 @@ namespace setup
class MapProviderPage : public QWizardPage
{
Q_DISABLE_COPY_MOVE(MapProviderPage)
public:
explicit MapProviderPage(QWidget* parent = nullptr);
~MapProviderPage();
bool isComplete() const override;
bool validatePage() override;
private:
class Impl;
std::shared_ptr<Impl> p;