2018-09-05 19:05:49 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
|
2023-11-14 21:54:32 +00:00
|
|
|
#include "settings/settings_common_session.h"
|
2021-07-31 14:11:53 +00:00
|
|
|
#include "api/api_user_privacy.h"
|
2019-05-21 12:51:24 +00:00
|
|
|
|
|
|
|
class EditPrivacyController;
|
2019-09-18 11:19:05 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
2019-09-13 06:06:02 +00:00
|
|
|
class BoxContent;
|
2019-09-18 11:19:05 +00:00
|
|
|
} // namespace Ui
|
2018-09-05 19:05:49 +00:00
|
|
|
|
|
|
|
namespace Settings {
|
|
|
|
|
2019-05-20 18:40:53 +00:00
|
|
|
int ExceptionUsersCount(const std::vector<not_null<PeerData*>> &exceptions);
|
|
|
|
|
2019-07-24 14:00:30 +00:00
|
|
|
bool CheckEditCloudPassword(not_null<::Main::Session*> session);
|
2019-09-18 11:19:05 +00:00
|
|
|
object_ptr<Ui::BoxContent> EditCloudPasswordBox(
|
2019-07-24 11:45:24 +00:00
|
|
|
not_null<::Main::Session*> session);
|
2021-06-13 07:37:52 +00:00
|
|
|
void RemoveCloudPassword(not_null<Window::SessionController*> session);
|
2019-09-18 11:19:05 +00:00
|
|
|
object_ptr<Ui::BoxContent> CloudPasswordAppOutdatedBox();
|
2019-06-14 12:01:35 +00:00
|
|
|
|
2024-03-07 16:07:05 +00:00
|
|
|
not_null<Ui::SettingsButton*> AddPrivacyButton(
|
2019-07-24 14:00:30 +00:00
|
|
|
not_null<Window::SessionController*> controller,
|
2019-05-21 12:51:24 +00:00
|
|
|
not_null<Ui::VerticalLayout*> container,
|
2019-06-18 12:16:43 +00:00
|
|
|
rpl::producer<QString> label,
|
2022-02-13 13:30:43 +00:00
|
|
|
IconDescriptor &&descriptor,
|
2021-07-31 14:11:53 +00:00
|
|
|
Api::UserPrivacy::Key key,
|
2023-07-18 18:38:28 +00:00
|
|
|
Fn<std::unique_ptr<EditPrivacyController>()> controllerFactory,
|
|
|
|
const style::SettingsButton *stOverride = nullptr);
|
2019-05-21 12:51:24 +00:00
|
|
|
|
2023-08-11 14:20:38 +00:00
|
|
|
void SetupArchiveAndMute(
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<Ui::VerticalLayout*> container);
|
|
|
|
|
2022-04-01 11:53:23 +00:00
|
|
|
class PrivacySecurity : public Section<PrivacySecurity> {
|
2018-09-05 19:05:49 +00:00
|
|
|
public:
|
2019-07-24 14:00:30 +00:00
|
|
|
PrivacySecurity(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::SessionController*> controller);
|
2018-09-05 19:05:49 +00:00
|
|
|
|
2022-04-13 08:05:10 +00:00
|
|
|
[[nodiscard]] rpl::producer<QString> title() override;
|
2022-04-01 11:53:23 +00:00
|
|
|
|
2018-09-05 19:05:49 +00:00
|
|
|
private:
|
2019-07-24 14:00:30 +00:00
|
|
|
void setupContent(not_null<Window::SessionController*> controller);
|
2018-09-05 19:05:49 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Settings
|