#pragma once #include "installerpage.h" class QComboBox; class QLineEdit; class PageConfiguration : public InstallerPage { Q_OBJECT public: explicit PageConfiguration(const QString& title); bool validate(); public slots: private: QLineEdit* m_Hostname; QComboBox* m_Language; QComboBox* m_Format; QComboBox* m_Timezone; QComboBox* m_Composite; };