/* 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 "ui/rp_widget.h" namespace Ui { class IconButton; class FlatLabel; class Menu; class UserpicButton; class PopupMenu; } // namespace Ui namespace Window { class SessionController; class MainMenu : public Ui::RpWidget, private base::Subscriber { public: MainMenu(QWidget *parent, not_null controller); void setInnerFocus() { setFocus(); } protected: void paintEvent(QPaintEvent *e) override; void resizeEvent(QResizeEvent *e) override; private: void updateControlsGeometry(); void updatePhone(); void initResetScaleButton(); void refreshMenu(); void refreshBackground(); class ResetScaleButton; not_null _controller; object_ptr _userpicButton = { nullptr }; object_ptr _cloudButton = { nullptr }; object_ptr _archiveButton = { nullptr }; object_ptr _resetScaleButton = { nullptr }; object_ptr _menu; object_ptr _telegram; object_ptr _version; std::shared_ptr> _nightThemeAction; base::Timer _nightThemeSwitch; base::unique_qptr _contextMenu; QString _phoneText; QImage _background; }; } // namespace Window