/* 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 "ui/widgets/menu/menu_action.h" namespace Ui { class CheckView; } // namespace Ui namespace Menu { class ItemWithCheck final : public Ui::Menu::Action { public: using Ui::Menu::Action::Action; void init(bool checked); not_null checkView() const; private: std::unique_ptr _checkView; }; } // namespace Menu