2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-03-14 19:59:18 +03:00
|
|
|
#include "intro/introwidget.h"
|
2016-11-11 16:46:04 +03:00
|
|
|
|
2016-11-04 22:50:35 +03:00
|
|
|
namespace Ui {
|
2016-11-16 13:44:06 +03:00
|
|
|
class FlatLabel;
|
2016-11-11 16:46:04 +03:00
|
|
|
class LinkButton;
|
2016-11-04 22:50:35 +03:00
|
|
|
class RoundButton;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
namespace Intro {
|
2016-11-04 22:50:35 +03:00
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
class StartWidget : public Widget::Step {
|
|
|
|
public:
|
|
|
|
StartWidget(QWidget *parent, Widget::Data *data);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
void submit() override;
|
|
|
|
QString nextButtonText() const override;
|
2014-12-20 00:20:30 +03:00
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
};
|
2016-11-24 22:28:23 +03:00
|
|
|
|
|
|
|
} // namespace Intro
|