/* 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 "boxes/peer_list_box.h" #include "boxes/peers/edit_participants_box.h" namespace Dialogs { void ShowSearchFromBox( not_null navigation, not_null peer, Fn)> callback, Fn closedCallback); class SearchFromController : public ParticipantsBoxController { public: SearchFromController( not_null navigation, not_null peer, Fn)> callback); void prepare() override; void rowClicked(not_null row) override; protected: std::unique_ptr createRow(not_null user) const override; private: Fn)> _callback; }; } // namespace Dialogs