You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-2.2-install.../src/pageconfiguration.h

30 lines
434 B

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