2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00
tdesktop/Telegram/SourceFiles/settings/settings_advanced.h

53 lines
1.2 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.h"
2020-06-10 18:52:44 +04:00
namespace Main {
class Account;
} // namespace Main
namespace Window {
class Controller;
} // namespace Window
2018-09-05 22:05:49 +03:00
namespace Settings {
2020-06-10 18:52:44 +04:00
void SetupConnectionType(
not_null<Window::Controller*> controller,
not_null<::Main::Account*> account,
2020-06-10 18:52:44 +04:00
not_null<Ui::VerticalLayout*> container);
2018-09-11 21:07:04 +03:00
bool HasUpdate();
void SetupUpdate(
not_null<Ui::VerticalLayout*> container,
Fn<void(Type)> showOther);
void SetupSystemIntegrationContent(
Window::SessionController *controller,
not_null<Ui::VerticalLayout*> container);
void SetupAnimations(not_null<Ui::VerticalLayout*> container);
2018-09-11 21:07:04 +03:00
class Advanced : public Section<Advanced> {
2018-09-05 22:05:49 +03:00
public:
2019-07-24 16:00:30 +02:00
Advanced(
QWidget *parent,
not_null<Window::SessionController*> controller);
2018-09-05 22:05:49 +03:00
[[nodiscard]] rpl::producer<QString> title() override;
rpl::producer<Type> sectionShowOther() 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
rpl::event_stream<Type> _showOther;
2018-09-05 22:05:49 +03:00
};
} // namespace Settings