PrismLauncher/application/setupwizard/AnalyticsWizardPage.h

25 lines
485 B
C
Raw Normal View History

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