/* 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 "base/timer.h" #include "base/object_ptr.h" #include "base/binary_guard.h" #include "ui/rp_widget.h" #include "ui/layers/layer_widget.h" namespace Ui { class IconButton; class FlatLabel; class Menu; class UserpicButton; class PopupMenu; class ScrollArea; class VerticalLayout; class RippleButton; class PlainShadow; template class SlideWrap; } // namespace Ui namespace Main { class Account; } // namespace Main namespace Window { class SessionController; class MainMenu : public Ui::LayerWidget, private base::Subscriber { public: MainMenu(QWidget *parent, not_null controller); void parentResized() override; protected: void paintEvent(QPaintEvent *e) override; void resizeEvent(QResizeEvent *e) override; void doSetInnerFocus() override { setFocus(); } private: class AccountButton; class ToggleAccountsButton; class ResetScaleButton; void setupArchiveButton(); void setupCloudButton(); void setupUserpicButton(); void setupAccounts(); void setupAccountsToggle(); [[nodiscard]] not_null*> setupAddAccount( not_null container); void rebuildAccounts(); void updateControlsGeometry(); void updateInnerControlsGeometry(); void updatePhone(); void initResetScaleButton(); void refreshMenu(); void refreshBackground(); void toggleAccounts(); const not_null _controller; object_ptr _userpicButton; object_ptr _toggleAccounts; object_ptr _archiveButton; object_ptr _cloudButton; object_ptr _resetScaleButton = { nullptr }; object_ptr _scroll; not_null _inner; base::flat_map< not_null, base::unique_qptr> _watched; not_null*> _accounts; Ui::SlideWrap *_addAccount = nullptr; not_null*> _shadow; not_null _menu; not_null _footer; not_null _telegram; not_null _version; std::shared_ptr> _nightThemeAction; base::Timer _nightThemeSwitch; base::unique_qptr _contextMenu; base::binary_guard _accountSwitchGuard; QString _phoneText; QImage _background; }; struct OthersUnreadState { int count = 0; bool allMuted = false; }; [[nodiscard]] OthersUnreadState OtherAccountsUnreadStateCurrent(); [[nodiscard]] rpl::producer OtherAccountsUnreadState(); } // namespace Window