/* 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 #include "info/info_content_widget.h" namespace Info { namespace Profile { class InnerWidget; struct MembersState; class Memento final : public ContentMemento { public: Memento(not_null controller); Memento(not_null peer, PeerId migratedPeerId); object_ptr createWidget( QWidget *parent, not_null controller, const QRect &geometry) override; Section section() const override; void setInfoExpanded(bool expanded) { _infoExpanded = expanded; } bool infoExpanded() const { return _infoExpanded; } void setMembersState(std::unique_ptr state); std::unique_ptr membersState(); ~Memento(); private: bool _infoExpanded = true; std::unique_ptr _membersState; }; class Widget final : public ContentWidget { public: Widget( QWidget *parent, not_null controller); void setIsStackBottom(bool isStackBottom) override; bool showInternal( not_null memento) override; void setInternalState( const QRect &geometry, not_null memento); void setInnerFocus() override; private: void saveState(not_null memento); void restoreState(not_null memento); std::shared_ptr doCreateMemento() override; InnerWidget *_inner = nullptr; }; } // namespace Profile } // namespace Info