tdesktop/Telegram/SourceFiles/intro/introstart.h

33 lines
654 B
C++

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "intro/introwidget.h"
namespace Ui {
class FlatLabel;
class LinkButton;
class RoundButton;
} // namespace Ui
namespace Intro {
class StartWidget : public Widget::Step {
public:
StartWidget(
QWidget *parent,
not_null<Main::Account*> account,
not_null<Widget::Data*> data);
void submit() override;
rpl::producer<QString> nextButtonText() const override;
};
} // namespace Intro