mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-24 03:07:20 +00:00
34 lines
654 B
C
34 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
|
||
|
|
||
|
namespace tr {
|
||
|
template <typename ...>
|
||
|
struct phrase;
|
||
|
} // namespace tr
|
||
|
|
||
|
enum lngtag_count : int;
|
||
|
|
||
|
namespace Ui {
|
||
|
|
||
|
class VerticalLayout;
|
||
|
|
||
|
namespace Premium {
|
||
|
|
||
|
void AddBubbleRow(
|
||
|
not_null<Ui::VerticalLayout*> parent,
|
||
|
rpl::producer<> showFinishes,
|
||
|
int min,
|
||
|
int current,
|
||
|
int max,
|
||
|
std::optional<tr::phrase<lngtag_count>> phrase,
|
||
|
const style::icon *icon);
|
||
|
|
||
|
} // namespace Premium
|
||
|
} // namespace Ui
|