pollymc/launcher/setupwizard/AnalyticsWizardPage.h

25 lines
485 B
C
Raw Normal View History

2017-01-05 08:35:08 +05:30
#pragma once
#include "BaseWizardPage.h"
class QVBoxLayout;
class QTextBrowser;
class QCheckBox;
class AnalyticsWizardPage : public BaseWizardPage
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
2017-01-05 08:35:08 +05:30
public:
2018-07-15 18:21:05 +05:30
explicit AnalyticsWizardPage(QWidget *parent = Q_NULLPTR);
virtual ~AnalyticsWizardPage();
2017-01-05 08:35:08 +05:30
2018-07-15 18:21:05 +05:30
bool validatePage() override;
2017-01-05 08:35:08 +05:30
protected:
2018-07-15 18:21:05 +05:30
void retranslate() override;
2017-01-05 08:35:08 +05:30
private:
2018-07-15 18:21:05 +05:30
QVBoxLayout *verticalLayout_3 = nullptr;
QTextBrowser *textBrowser = nullptr;
QCheckBox *checkBox = nullptr;
2017-01-05 08:35:08 +05:30
};