/* 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 "storage/storage_shared_media.h" #include "data/data_search_controller.h" namespace Data { class ForumTopic; } // namespace Data namespace Info::Media { using Type = Storage::SharedMediaType; std::optional TypeToTabIndex(Type type); Type TabIndexToType(int index); class InnerWidget; class Memento final : public ContentMemento { public: explicit Memento(not_null controller); Memento(not_null peer, PeerId migratedPeerId, Type type); Memento(not_null topic, Type type); using SearchState = Api::DelayedSearchController::SavedState; object_ptr createWidget( QWidget *parent, not_null controller, const QRect &geometry) override; [[nodiscard]] Section section() const override; [[nodiscard]] Type type() const { return _type; } // Only for media, not for downloads. void setAroundId(FullMsgId aroundId) { _aroundId = aroundId; } [[nodiscard]] FullMsgId aroundId() const { return _aroundId; } void setIdsLimit(int limit) { _idsLimit = limit; } [[nodiscard]] int idsLimit() const { return _idsLimit; } void setScrollTopItem(GlobalMsgId item) { _scrollTopItem = item; } [[nodiscard]] GlobalMsgId scrollTopItem() const { return _scrollTopItem; } void setScrollTopItemPosition(int64 position) { _scrollTopItemPosition = position; } [[nodiscard]] int64 scrollTopItemPosition() const { return _scrollTopItemPosition; } void setScrollTopShift(int shift) { _scrollTopShift = shift; } [[nodiscard]] int scrollTopShift() const { return _scrollTopShift; } void setSearchState(SearchState &&state) { _searchState = std::move(state); } [[nodiscard]] SearchState searchState() { return std::move(_searchState); } private: Memento( not_null peer, Data::ForumTopic *topic, PeerId migratedPeerId, Type type); Type _type = Type::Photo; FullMsgId _aroundId; int _idsLimit = 0; int64 _scrollTopItemPosition = 0; GlobalMsgId _scrollTopItem; int _scrollTopShift = 0; SearchState _searchState; }; 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); rpl::producer selectedListValue() const override; void selectionAction(SelectionAction action) override; rpl::producer title() override; private: void saveState(not_null memento); void restoreState(not_null memento); std::shared_ptr doCreateMemento() override; InnerWidget *_inner = nullptr; }; } // namespace Info::Media