summaryrefslogtreecommitdiffstats
path: root/application/setupwizard/AnalyticsWizardPage.h
blob: 03de9cb09bf9477e977e10fd9b4d0bae4bbeb456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include "BaseWizardPage.h"

class QVBoxLayout;
class QTextBrowser;
class QCheckBox;

class AnalyticsWizardPage : public BaseWizardPage
{
	Q_OBJECT;
public:
	explicit AnalyticsWizardPage(QWidget *parent = Q_NULLPTR);
	virtual ~AnalyticsWizardPage();

	bool validatePage() override;

protected:
	void retranslate() override;

private:
	QVBoxLayout *verticalLayout_3 = nullptr;
	QTextBrowser *textBrowser = nullptr;
	QCheckBox *checkBox = nullptr;
};