/* 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 ChatHelpers { class Show; } // namespace ChatHelpers namespace Ui { class BoxContent; } // namespace Ui namespace Media::Stories { [[nodiscard]] object_ptr PrepareShareBox( std::shared_ptr show, FullStoryId id, bool viewerStyle = false); [[nodiscard]] QString FormatShareAtTime(TimeId seconds); [[nodiscard]] object_ptr PrepareShareAtTimeBox( std::shared_ptr show, not_null item, TimeId videoTimestamp); } // namespace Media::Stories