/* 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" struct PeerListState; namespace Data { class Feed; } // namespace Data namespace Info { namespace FeedProfile { class Channels; struct ChannelsState; } // namespace FeedProfile namespace Channels { using SavedState = FeedProfile::ChannelsState; class Memento final : public ContentMemento { public: explicit Memento(not_null controller); explicit Memento(not_null feed); object_ptr createWidget( QWidget *parent, not_null controller, const QRect &geometry) override; Section section() const override; void setState(std::unique_ptr state); std::unique_ptr state(); ~Memento(); private: std::unique_ptr _state; }; class Widget final : public ContentWidget { public: Widget( QWidget *parent, not_null controller); 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; FeedProfile::Channels *_inner = nullptr; }; } // namespace Channels } // namespace Info