/* 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 "info/info_content_widget.h" #include "info/info_controller.h" struct PeerListState; namespace Info { namespace Polls { class InnerWidget; class Memento final : public ContentMemento { public: Memento(not_null poll, FullMsgId contextId); ~Memento(); object_ptr createWidget( QWidget *parent, not_null controller, const QRect &geometry) override; Section section() const override; void setListStates(base::flat_map< QByteArray, std::unique_ptr> states); auto listStates() -> base::flat_map>; private: base::flat_map< QByteArray, std::unique_ptr> _listStates; }; class Widget final : public ContentWidget { public: Widget(QWidget *parent, not_null controller); [[nodiscard]] not_null poll() const; [[nodiscard]] FullMsgId contextId() const; bool showInternal( not_null memento) override; void setInternalState( const QRect &geometry, not_null memento); private: void saveState(not_null memento); void restoreState(not_null memento); std::unique_ptr doCreateMemento() override; not_null _inner; }; } // namespace Settings } // namespace Info