tdesktop/Telegram/SourceFiles/settings/settings_advanced.h

67 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.h"
2020-06-10 14:52:44 +00:00
namespace Main {
class Account;
2023-08-11 14:20:38 +00:00
class Session;
2020-06-10 14:52:44 +00:00
} // namespace Main
2023-08-11 14:20:38 +00:00
namespace Ui {
class GenericBox;
} // namespace Ui
namespace Window {
class Controller;
2023-08-11 14:20:38 +00:00
class SessionController;
} // namespace Window
2018-09-05 19:05:49 +00:00
namespace Settings {
2020-06-10 14:52:44 +00:00
void SetupConnectionType(
not_null<Window::Controller*> controller,
not_null<::Main::Account*> account,
2020-06-10 14:52:44 +00:00
not_null<Ui::VerticalLayout*> container);
2018-09-11 18:07:04 +00:00
bool HasUpdate();
void SetupUpdate(not_null<Ui::VerticalLayout*> container);
void SetupWindowTitleContent(
Window::SessionController *controller,
not_null<Ui::VerticalLayout*> container);
void SetupSystemIntegrationContent(
Window::SessionController *controller,
not_null<Ui::VerticalLayout*> container);
2023-02-21 12:31:55 +00:00
void SetupAnimations(
not_null<Window::Controller*> window,
not_null<Ui::VerticalLayout*> container);
2018-09-11 18:07:04 +00:00
2023-08-11 14:20:38 +00:00
void ArchiveSettingsBox(
not_null<Ui::GenericBox*> box,
not_null<Window::SessionController*> controller);
void PreloadArchiveSettings(not_null<::Main::Session*> session);
class Advanced : public Section<Advanced> {
2018-09-05 19:05:49 +00:00
public:
2019-07-24 14:00:30 +00:00
Advanced(
QWidget *parent,
not_null<Window::SessionController*> controller);
2018-09-05 19:05:49 +00:00
[[nodiscard]] rpl::producer<QString> title() override;
rpl::producer<Type> sectionShowOther() 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
rpl::event_stream<Type> _showOther;
2018-09-05 19:05:49 +00:00
};
} // namespace Settings