/* 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 "base/object_ptr.h" namespace Ui { class RpWidget; class GenericBox; enum class ShowOrPremium : uchar { LastSeen, ReadTime, }; void ShowOrPremiumBox( not_null box, ShowOrPremium type, QString shortName, Fn justShow, Fn toPremium); [[nodiscard]] object_ptr MakeShowOrLabel( not_null parent, rpl::producer text); } // namespace Ui