/* 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 #include "boxes/abstract_box.h" namespace style { struct InfoProfileCountButton; } // namespace style namespace Ui { class VerticalLayout; } // namespace Ui namespace Info { namespace Profile { class Button; } // namespace Profile } // namespace Info class EditPeerInfoBox : public BoxContent { public: EditPeerInfoBox(QWidget*, not_null peer); void setInnerFocus() override { _focusRequests.fire({}); } static bool Available(not_null peer); [[nodiscard]] static object_ptr CreateButton( not_null parent, rpl::producer &&text, rpl::producer &&count, Fn callback, const style::InfoProfileCountButton &st, const style::icon *icon = nullptr); protected: void prepare() override; private: rpl::event_stream<> _focusRequests; not_null _peer; };