2021-01-15 12:57:42 +00:00
|
|
|
/*
|
|
|
|
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 Ui {
|
|
|
|
|
2021-01-15 15:27:34 +00:00
|
|
|
class AbstractButton;
|
2021-01-15 12:57:42 +00:00
|
|
|
class VerticalLayout;
|
|
|
|
|
|
|
|
void AddCopyShareLinkButtons(
|
|
|
|
not_null<VerticalLayout*> container,
|
|
|
|
Fn<void()> copyLink,
|
|
|
|
Fn<void()> shareLink);
|
|
|
|
|
2021-01-15 15:27:34 +00:00
|
|
|
struct JoinedCountContent {
|
|
|
|
int count = 0;
|
|
|
|
QImage userpics;
|
|
|
|
};
|
|
|
|
|
|
|
|
not_null<AbstractButton*> AddJoinedCountButton(
|
|
|
|
not_null<VerticalLayout*> container,
|
|
|
|
rpl::producer<JoinedCountContent> content,
|
|
|
|
style::margins padding);
|
|
|
|
|
2021-01-15 12:57:42 +00:00
|
|
|
} // namespace Ui
|