2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 10:47:11 +00:00
tdesktop/Telegram/SourceFiles/settings/settings_privacy_security.h

61 lines
1.7 KiB
C
Raw Normal View History

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