summaryrefslogtreecommitdiffstats
path: root/application/setupwizard/AnalyticsWizardPage.h
blob: 0234f02a25cd946db8fc214ac47967e7d567f52e (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;
};