125 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			125 lines
		
	
	
	
		
			2.9 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 "mtproto/sender.h"
 | |
| #include "apiwrap.h"
 | |
| 
 | |
| enum LangKey : int;
 | |
| 
 | |
| namespace Ui {
 | |
| class VerticalLayout;
 | |
| class FlatLabel;
 | |
| class LinkButton;
 | |
| template <typename Enum>
 | |
| class RadioenumGroup;
 | |
| template <typename Enum>
 | |
| class Radioenum;
 | |
| template <typename Widget>
 | |
| class SlideWrap;
 | |
| } // namespace Ui
 | |
| 
 | |
| class EditPrivacyBox;
 | |
| 
 | |
| class EditPrivacyController {
 | |
| public:
 | |
| 	using Key = ApiWrap::Privacy::Key;
 | |
| 	using Option = ApiWrap::Privacy::Option;
 | |
| 	enum class Exception {
 | |
| 		Always,
 | |
| 		Never,
 | |
| 	};
 | |
| 
 | |
| 	[[nodiscard]] virtual Key key() = 0;
 | |
| 	[[nodiscard]] virtual MTPInputPrivacyKey apiKey() = 0;
 | |
| 
 | |
| 	[[nodiscard]] virtual QString title() = 0;
 | |
| 	[[nodiscard]] virtual bool hasOption(Option option) {
 | |
| 		return true;
 | |
| 	}
 | |
| 	[[nodiscard]] virtual LangKey optionsTitleKey() = 0;
 | |
| 	[[nodiscard]] virtual LangKey optionLabelKey(Option option);
 | |
| 	[[nodiscard]] virtual rpl::producer<QString> warning() {
 | |
| 		return rpl::never<QString>();
 | |
| 	}
 | |
| 	[[nodiscard]] virtual LangKey exceptionButtonTextKey(
 | |
| 		Exception exception) = 0;
 | |
| 	[[nodiscard]] virtual QString exceptionBoxTitle(
 | |
| 		Exception exception) = 0;
 | |
| 	[[nodiscard]] virtual auto exceptionsDescription()
 | |
| 		-> rpl::producer<QString> = 0;
 | |
| 
 | |
| 	[[nodiscard]] virtual object_ptr<Ui::RpWidget> setupAboveWidget(
 | |
| 			not_null<QWidget*> parent,
 | |
| 			rpl::producer<Option> option) {
 | |
| 		return { nullptr };
 | |
| 	}
 | |
| 	[[nodiscard]] virtual object_ptr<Ui::RpWidget> setupBelowWidget(
 | |
| 			not_null<QWidget*> parent) {
 | |
| 		return { nullptr };
 | |
| 	}
 | |
| 
 | |
| 	virtual void confirmSave(
 | |
| 			bool someAreDisallowed,
 | |
| 			FnMut<void()> saveCallback) {
 | |
| 		saveCallback();
 | |
| 	}
 | |
| 
 | |
| 	virtual ~EditPrivacyController() = default;
 | |
| 
 | |
| protected:
 | |
| 	EditPrivacyBox *view() const {
 | |
| 		return _view;
 | |
| 	}
 | |
| 
 | |
| private:
 | |
| 	void setView(EditPrivacyBox *box) {
 | |
| 		_view = box;
 | |
| 	}
 | |
| 
 | |
| 	EditPrivacyBox *_view = nullptr;
 | |
| 
 | |
| 	friend class EditPrivacyBox;
 | |
| 
 | |
| };
 | |
| 
 | |
| class EditPrivacyBox : public BoxContent, private MTP::Sender {
 | |
| public:
 | |
| 	using Value = ApiWrap::Privacy;
 | |
| 	using Option = Value::Option;
 | |
| 	using Exception = EditPrivacyController::Exception;
 | |
| 
 | |
| 	EditPrivacyBox(
 | |
| 		QWidget*,
 | |
| 		std::unique_ptr<EditPrivacyController> controller,
 | |
| 		const Value &value);
 | |
| 
 | |
| protected:
 | |
| 	void prepare() override;
 | |
| 
 | |
| private:
 | |
| 	bool showExceptionLink(Exception exception) const;
 | |
| 	void setupContent();
 | |
| 	QVector<MTPInputPrivacyRule> collectResult();
 | |
| 
 | |
| 	Ui::Radioenum<Option> *addOption(
 | |
| 		not_null<Ui::VerticalLayout*> container,
 | |
| 		const std::shared_ptr<Ui::RadioenumGroup<Option>> &group,
 | |
| 		Option option);
 | |
| 	Ui::FlatLabel *addLabel(
 | |
| 		not_null<Ui::VerticalLayout*> container,
 | |
| 		rpl::producer<QString> text);
 | |
| 
 | |
| 	void editExceptions(Exception exception, Fn<void()> done);
 | |
| 	std::vector<not_null<PeerData*>> &exceptions(Exception exception);
 | |
| 
 | |
| 	std::unique_ptr<EditPrivacyController> _controller;
 | |
| 	Value _value;
 | |
| 
 | |
| };
 | 
