/* 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 "ui/wrap/padding_wrap.h" #include "ui/widgets/checkbox.h" #include "base/timer.h" namespace Window { class SessionController; } // namespace Window namespace style { struct InfoToggle; } // namespace style namespace Ui { class UserpicButton; class FlatLabel; template class SlideWrap; } // namespace Ui namespace Info { class Controller; class Section; } // namespace Info namespace Info { namespace Profile { enum class Badge; class Cover : public Ui::FixedHeightWidget { public: Cover( QWidget *parent, not_null peer, not_null controller); Cover( QWidget *parent, not_null peer, not_null controller, rpl::producer title); Cover *setOnlineCount(rpl::producer &&count); rpl::producer
showSection() const { return _showSection.events(); } ~Cover(); private: void setupChildGeometry(); void initViewers(rpl::producer title); void refreshStatusText(); void refreshNameGeometry(int newWidth); void refreshStatusGeometry(int newWidth); void refreshUploadPhotoOverlay(); void setBadge(Badge badge); not_null _peer; int _onlineCount = 0; Badge _badge = Badge(); object_ptr _userpic; object_ptr _name = { nullptr }; object_ptr _verifiedCheck = { nullptr }; object_ptr _scamFakeBadge = { nullptr }; object_ptr _status = { nullptr }; //object_ptr _dropArea = { nullptr }; base::Timer _refreshStatusTimer; rpl::event_stream
_showSection; }; } // namespace Profile } // namespace Info