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