#pragma once #include namespace scwx { namespace qt { namespace ui { namespace setup { class SetupWizard : public QWizard { public: enum class Page : int { Welcome = 0, MapProvider, MapLayout, AudioCodec, Finish }; explicit SetupWizard(QWidget* parent = nullptr); ~SetupWizard(); int nextId() const override; static bool IsSetupRequired(); private: class Impl; std::shared_ptr p; }; } // namespace setup } // namespace ui } // namespace qt } // namespace scwx