/* 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" namespace Settings { class AbstractSection; } // namespace Settings namespace Info { namespace Settings { using Type = Section::SettingsType; struct Tag; struct SectionCustomTopBarData { rpl::producer<> backButtonEnables; rpl::producer wrapValue; }; class Memento final : public ContentMemento { public: Memento(not_null self, Type type); object_ptr createWidget( QWidget *parent, not_null controller, const QRect &geometry) override; Section section() const override; Type type() const { return _type; } not_null self() const { return settingsSelf(); } ~Memento(); private: Type _type = Type(); }; class Widget final : public ContentWidget { public: Widget( QWidget *parent, not_null controller); ~Widget(); not_null self() const; bool showInternal( not_null memento) override; void setInternalState( const QRect &geometry, not_null memento); void saveChanges(FnMut done) override; void showFinished() override; void setInnerFocus() override; const Ui::RoundRect *bottomSkipRounding() const override; rpl::producer desiredShadowVisibility() const override; rpl::producer title() override; void enableBackButton() override; private: void saveState(not_null memento); void restoreState(not_null memento); std::shared_ptr doCreateMemento() override; not_null _self; Type _type = Type(); struct { rpl::event_stream contentHeightValue; rpl::event_stream fillerWidthValue; rpl::event_stream<> backButtonEnables; } _flexibleScroll; not_null<::Settings::AbstractSection*> _inner; QPointer _pinnedToTop; QPointer _pinnedToBottom; rpl::event_stream> _removesFromStack; }; } // namespace Settings } // namespace Info