225 lines
		
	
	
	
		
			6.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			225 lines
		
	
	
	
		
			6.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/peer_list_box.h"
 | |
| #include "boxes/edit_privacy_box.h"
 | |
| #include "history/view/history_view_element.h"
 | |
| #include "mtproto/sender.h"
 | |
| 
 | |
| namespace Window {
 | |
| class SessionController;
 | |
| } // namespace Window
 | |
| 
 | |
| namespace Settings {
 | |
| 
 | |
| class BlockedBoxController
 | |
| 	: public PeerListController
 | |
| 	, private base::Subscriber {
 | |
| public:
 | |
| 	explicit BlockedBoxController(
 | |
| 		not_null<Window::SessionController*> window);
 | |
| 
 | |
| 	Main::Session &session() const override;
 | |
| 	void prepare() override;
 | |
| 	void rowClicked(not_null<PeerListRow*> row) override;
 | |
| 	void rowActionClicked(not_null<PeerListRow*> row) override;
 | |
| 	void loadMoreRows() override;
 | |
| 
 | |
| 	static void BlockNewPeer(not_null<Window::SessionController*> window);
 | |
| 
 | |
| private:
 | |
| 	void receivedPeers(const QVector<MTPPeerBlocked> &result);
 | |
| 	void handleBlockedEvent(not_null<PeerData*> peer);
 | |
| 
 | |
| 	bool appendRow(not_null<PeerData*> peer);
 | |
| 	bool prependRow(not_null<PeerData*> peer);
 | |
| 	std::unique_ptr<PeerListRow> createRow(not_null<PeerData*> peer) const;
 | |
| 
 | |
| 	const not_null<Window::SessionController*> _window;
 | |
| 	MTP::Sender _api;
 | |
| 
 | |
| 	int _offset = 0;
 | |
| 	mtpRequestId _loadRequestId = 0;
 | |
| 	bool _allLoaded = false;
 | |
| 
 | |
| };
 | |
| 
 | |
| class PhoneNumberPrivacyController : public EditPrivacyController {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	rpl::producer<QString> warning() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| 	object_ptr<Ui::RpWidget> setupMiddleWidget(
 | |
| 		not_null<Window::SessionController*> controller,
 | |
| 		not_null<QWidget*> parent,
 | |
| 		rpl::producer<Option> optionValue) override;
 | |
| 
 | |
| 	void saveAdditional() override;
 | |
| 
 | |
| private:
 | |
| 	rpl::variable<Option> _phoneNumberOption = { Option::Contacts };
 | |
| 	rpl::variable<Option> _addedByPhone = { Option::Everyone };
 | |
| 	Fn<void()> _saveAdditional;
 | |
| 
 | |
| };
 | |
| 
 | |
| class LastSeenPrivacyController : public EditPrivacyController {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	explicit LastSeenPrivacyController(not_null<::Main::Session*> session);
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	rpl::producer<QString> warning() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| 	void confirmSave(
 | |
| 		bool someAreDisallowed,
 | |
| 		FnMut<void()> saveCallback) override;
 | |
| 
 | |
| private:
 | |
| 	const not_null<::Main::Session*> _session;
 | |
| 
 | |
| };
 | |
| 
 | |
| class GroupsInvitePrivacyController : public EditPrivacyController {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	bool hasOption(Option option) override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| };
 | |
| 
 | |
| class CallsPrivacyController : public EditPrivacyController {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| 	object_ptr<Ui::RpWidget> setupBelowWidget(
 | |
| 		not_null<Window::SessionController*> controller,
 | |
| 		not_null<QWidget*> parent) override;
 | |
| 
 | |
| };
 | |
| 
 | |
| class CallsPeer2PeerPrivacyController : public EditPrivacyController {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	QString optionLabel(EditPrivacyBox::Option option) override;
 | |
| 	rpl::producer<QString> warning() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| };
 | |
| 
 | |
| class ForwardsPrivacyController
 | |
| 	: public EditPrivacyController
 | |
| 	, private HistoryView::SimpleElementDelegate {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	explicit ForwardsPrivacyController(
 | |
| 		not_null<Window::SessionController*> controller);
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	rpl::producer<QString> warning() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| 	object_ptr<Ui::RpWidget> setupAboveWidget(
 | |
| 		not_null<QWidget*> parent,
 | |
| 		rpl::producer<Option> optionValue) override;
 | |
| 
 | |
| private:
 | |
| 	using Element = HistoryView::Element;
 | |
| 	not_null<HistoryView::ElementDelegate*> delegate();
 | |
| 	HistoryView::Context elementContext() override;
 | |
| 
 | |
| 	static void PaintForwardedTooltip(
 | |
| 		Painter &p,
 | |
| 		not_null<HistoryView::Element*> view,
 | |
| 		Option value);
 | |
| 
 | |
| 	const not_null<Window::SessionController*> _controller;
 | |
| 
 | |
| };
 | |
| 
 | |
| class ProfilePhotoPrivacyController : public EditPrivacyController {
 | |
| public:
 | |
| 	using Option = EditPrivacyBox::Option;
 | |
| 	using Exception = EditPrivacyBox::Exception;
 | |
| 
 | |
| 	Key key() override;
 | |
| 	MTPInputPrivacyKey apiKey() override;
 | |
| 
 | |
| 	rpl::producer<QString> title() override;
 | |
| 	bool hasOption(Option option) override;
 | |
| 	rpl::producer<QString> optionsTitleKey() override;
 | |
| 	rpl::producer<QString> exceptionButtonTextKey(
 | |
| 		Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionBoxTitle(Exception exception) override;
 | |
| 	rpl::producer<QString> exceptionsDescription() override;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace Settings
 | 
