/* 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; } // namespace Ui namespace Data { class ForumTopic; } // namespace Data namespace Info { class Controller; } // namespace Info namespace Info::Profile { extern const char kOptionShowPeerIdBelowAbout[]; struct Origin; object_ptr SetupDetails( not_null controller, not_null parent, not_null peer, Origin origin); object_ptr SetupDetails( not_null controller, not_null parent, not_null topic); object_ptr SetupActions( not_null controller, not_null parent, not_null peer); object_ptr SetupChannelMembers( not_null controller, not_null parent, not_null peer); } // namespace Info::Profile