/* 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 "ui/rp_widget.h" #include "base/unique_qptr.h" namespace style { struct SearchFieldRow; struct InputField; } // namespace style namespace Ui { class CrossButton; class InputField; class SearchFieldController { public: SearchFieldController(const QString &query); base::unique_qptr createField( QWidget *parent, const style::InputField &st); struct RowView { base::unique_qptr wrap; QPointer field; }; RowView createRowView( QWidget *parent, const style::SearchFieldRow &st); QString query() const; rpl::producer queryValue() const; rpl::producer queryChanges() const; rpl::lifetime &lifetime() { return _lifetime; } private: base::unique_qptr _view; rpl::variable _query; rpl::lifetime _lifetime; }; } // namespace Ui