/* 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 "menu/menu_ttl.h" class PeerData; namespace Ui { class Show; class RpWidget; } // namespace Ui namespace TTLMenu { class TTLValidator final { public: TTLValidator( std::shared_ptr show, not_null peer); void showBox() const; [[nodiscard]] bool can() const; [[nodiscard]] Args createArgs() const; void showToast() const; const style::icon *icon() const; private: const not_null _peer; const std::shared_ptr _show; }; } // namespace TTLMenu