/
diev
/
stelegramdesktop-tdesktop
Обзор
Документация
Войти
/
diev
/
stelegramdesktop-tdesktop
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
Telegram/SourceFiles/ui/effects/loading_element.h
33 строки
719 B
23rd
Added new loading element animation for peer list.
01 дек 2022, 05:49
01 дек 2022, 05:49
1cc3440
Код
Авторство
О чём код?
/* 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 template <typename Object> class object_ptr; namespace style { struct FlatLabel; struct PeerListItem; } // namespace style namespace Ui { class RpWidget; object_ptr<Ui::RpWidget> CreateLoadingTextWidget( not_null<Ui::RpWidget*> parent, const style::FlatLabel &st, int lines, rpl::producer<bool> rtl); object_ptr<Ui::RpWidget> CreateLoadingPeerListItemWidget( not_null<Ui::RpWidget*> parent, const style::PeerListItem &st, int lines); } // namespace Ui