/* 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" namespace Info::Statistics { class Memento final : public ContentMemento { public: Memento(not_null controller); Memento(not_null peer, FullMsgId contextId); ~Memento(); object_ptr createWidget( QWidget *parent, not_null controller, const QRect &geometry) override; Section section() const override; }; class Widget final : public ContentWidget { public: Widget(QWidget *parent, not_null controller); bool showInternal(not_null memento) override; rpl::producer title() override; rpl::producer desiredShadowVisibility() const override; void showFinished() override; private: std::shared_ptr doCreateMemento() override; rpl::event_stream<> _showFinished; }; [[nodiscard]] std::shared_ptr Make( not_null peer, FullMsgId contextId); } // namespace Info::Statistics