/* 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 "settings/settings_common.h" namespace Ui { struct UnreadBadgeStyle; } // namespace Ui namespace Main { class Account; } // namespace Main namespace Settings { class Information : public Section { public: Information( QWidget *parent, not_null controller); [[nodiscard]] rpl::producer title() override; private: void setupContent(not_null controller); }; struct AccountsEvents { rpl::producer<> closeRequests; }; AccountsEvents SetupAccounts( not_null container, not_null controller); void UpdatePhotoLocally(not_null user, const QImage &image); namespace Badge { [[nodiscard]] Ui::UnreadBadgeStyle Style(); struct UnreadBadge { int count = 0; bool muted = false; }; [[nodiscard]] not_null AddRight( not_null button); [[nodiscard]] not_null CreateUnread( not_null container, rpl::producer value); void AddUnread( not_null button, rpl::producer value); } // namespace Badge } // namespace Settings