summaryrefslogtreecommitdiffstats
path: root/application/setupwizard/AnalyticsWizardPage.h
blob: 88fbed011952f8d08a3eab65182113621e70f43a (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
26
#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;
	static bool isRequired();

protected:
	void retranslate() override;

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