97 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
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 "boxes/abstract_box.h"
 | 
						|
#include "data/data_chat_participant_status.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class RoundButton;
 | 
						|
class VerticalLayout;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
namespace Window {
 | 
						|
class SessionController;
 | 
						|
class SessionNavigation;
 | 
						|
} // namespace Window
 | 
						|
 | 
						|
class EditPeerPermissionsBox : public Ui::BoxContent {
 | 
						|
public:
 | 
						|
	EditPeerPermissionsBox(
 | 
						|
		QWidget*,
 | 
						|
		not_null<Window::SessionNavigation*> navigation,
 | 
						|
		not_null<PeerData*> peer);
 | 
						|
 | 
						|
	struct Result {
 | 
						|
		ChatRestrictions rights;
 | 
						|
		int slowmodeSeconds = 0;
 | 
						|
	};
 | 
						|
 | 
						|
	rpl::producer<Result> saveEvents() const;
 | 
						|
 | 
						|
protected:
 | 
						|
	void prepare() override;
 | 
						|
 | 
						|
private:
 | 
						|
	Fn<int()> addSlowmodeSlider(not_null<Ui::VerticalLayout*> container);
 | 
						|
	void addSlowmodeLabels(not_null<Ui::VerticalLayout*> container);
 | 
						|
	void addSuggestGigagroup(not_null<Ui::VerticalLayout*> container);
 | 
						|
	void addBannedButtons(not_null<Ui::VerticalLayout*> container);
 | 
						|
 | 
						|
	const not_null<Window::SessionNavigation*> _navigation;
 | 
						|
	const not_null<PeerData*> _peer;
 | 
						|
	Ui::RoundButton *_save = nullptr;
 | 
						|
	Fn<Result()> _value;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
[[nodiscard]] Fn<void()> AboutGigagroupCallback(
 | 
						|
	not_null<ChannelData*> channel,
 | 
						|
	not_null<Window::SessionController*> controller);
 | 
						|
 | 
						|
struct RestrictionLabel {
 | 
						|
	ChatRestrictions flags;
 | 
						|
	QString label;
 | 
						|
};
 | 
						|
[[nodiscard]] std::vector<RestrictionLabel> RestrictionLabels(
 | 
						|
	Data::RestrictionsSetOptions options);
 | 
						|
 | 
						|
struct AdminRightLabel {
 | 
						|
	ChatAdminRights flags;
 | 
						|
	QString label;
 | 
						|
};
 | 
						|
[[nodiscard]] std::vector<AdminRightLabel> AdminRightLabels(
 | 
						|
	Data::AdminRightsSetOptions options);
 | 
						|
 | 
						|
template <typename Flags>
 | 
						|
struct EditFlagsControl {
 | 
						|
	object_ptr<Ui::RpWidget> widget;
 | 
						|
	Fn<Flags()> value;
 | 
						|
	rpl::producer<Flags> changes;
 | 
						|
};
 | 
						|
 | 
						|
[[nodiscard]] EditFlagsControl<ChatRestrictions> CreateEditRestrictions(
 | 
						|
	QWidget *parent,
 | 
						|
	rpl::producer<QString> header,
 | 
						|
	ChatRestrictions restrictions,
 | 
						|
	std::map<ChatRestrictions, QString> disabledMessages,
 | 
						|
	Data::RestrictionsSetOptions options);
 | 
						|
 | 
						|
[[nodiscard]] EditFlagsControl<ChatAdminRights> CreateEditAdminRights(
 | 
						|
	QWidget *parent,
 | 
						|
	rpl::producer<QString> header,
 | 
						|
	ChatAdminRights rights,
 | 
						|
	std::map<ChatAdminRights, QString> disabledMessages,
 | 
						|
	Data::AdminRightsSetOptions options);
 | 
						|
 | 
						|
[[nodiscard]] ChatAdminRights DisabledByDefaultRestrictions(
 | 
						|
	not_null<PeerData*> peer);
 | 
						|
[[nodiscard]] ChatRestrictions FixDependentRestrictions(
 | 
						|
	ChatRestrictions restrictions);
 | 
						|
[[nodiscard]] ChatAdminRights AdminRightsForOwnershipTransfer(
 | 
						|
	Data::AdminRightsSetOptions options);
 |