tdesktop/Telegram/SourceFiles/info/profile/info_profile_actions.h

46 lines
1012 B
C
Raw Normal View History

2017-11-07 11:53:05 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2017-11-07 11:53:05 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2017-11-07 11:53:05 +00:00
*/
#pragma once
namespace Data {
class Feed;
} // namespace Data
2017-11-07 11:53:05 +00:00
namespace Ui {
class RpWidget;
} // namespace Ui
2017-11-07 11:53:05 +00:00
namespace Info {
class Controller;
namespace Profile {
object_ptr<Ui::RpWidget> SetupDetails(
not_null<Controller*> controller,
not_null<Ui::RpWidget*> parent,
not_null<PeerData*> peer);
object_ptr<Ui::RpWidget> SetupActions(
not_null<Controller*> controller,
not_null<Ui::RpWidget*> parent,
not_null<PeerData*> peer);
object_ptr<Ui::RpWidget> SetupChannelMembers(
not_null<Controller*> controller,
not_null<Ui::RpWidget*> parent,
not_null<PeerData*> peer);
object_ptr<Ui::RpWidget> SetupFeedDetails(
not_null<Controller*> controller,
not_null<Ui::RpWidget*> parent,
not_null<Data::Feed*> feed);
2017-11-07 11:53:05 +00:00
} // namespace Profile
} // namespace Info