tdesktop/Telegram/SourceFiles/settings/settings_privacy_security.h

56 lines
1.6 KiB
C
Raw Normal View History

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
#include "settings/settings_common_session.h"
#include "api/api_user_privacy.h"
class EditPrivacyController;
2019-09-18 11:19:05 +00:00
namespace Ui {
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);
void RemoveCloudPassword(not_null<Window::SessionController*> session);
2019-09-18 11:19:05 +00:00
object_ptr<Ui::BoxContent> CloudPasswordAppOutdatedBox();
not_null<Ui::SettingsButton*> AddPrivacyButton(
2019-07-24 14:00:30 +00:00
not_null<Window::SessionController*> controller,
not_null<Ui::VerticalLayout*> container,
2019-06-18 12:16:43 +00: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 14:20:38 +00:00
void SetupArchiveAndMute(
not_null<Window::SessionController*> controller,
not_null<Ui::VerticalLayout*> container);
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
[[nodiscard]] rpl::producer<QString> title() override;
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