/* 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 namespace Ui { class PopupMenu; } // namespace Ui namespace Menu { struct MenuCallback final { public: struct Args { QString text; Fn handler; const style::icon *icon; Fn)> fillSubmenu; bool isSeparator = false; bool isAttention = false; }; using Callback = Fn; explicit MenuCallback(Callback callback); QAction *operator()(Args &&args) const; QAction *operator()( const QString &text, Fn handler, const style::icon *icon) const; private: Callback _callback; }; } // namespace Menu