tdesktop/Telegram/SourceFiles/settings/settings_common.h

120 lines
2.8 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 "ui/rp_widget.h"
2019-09-13 12:22:54 +00:00
#include "base/object_ptr.h"
2018-09-05 19:05:49 +00:00
2019-07-24 14:00:30 +00:00
namespace Main {
class Session;
} // namespace Main
namespace Ui {
class VerticalLayout;
2019-09-04 15:59:43 +00:00
class FlatLabel;
class SettingsButton;
class AbstractButton;
} // namespace Ui
2018-09-05 19:39:35 +00:00
namespace Window {
class SessionController;
2018-09-05 19:39:35 +00:00
} // namespace Window
2018-09-07 09:40:25 +00:00
namespace style {
struct SettingsButton;
2018-09-07 09:40:25 +00:00
} // namespace style
2018-09-05 19:05:49 +00:00
namespace Settings {
enum class Type {
Main,
Information,
Notifications,
PrivacySecurity,
Sessions,
2018-09-20 16:47:02 +00:00
Advanced,
2018-09-05 19:05:49 +00:00
Chat,
2020-03-18 10:07:11 +00:00
Folders,
2019-01-05 11:08:02 +00:00
Calls,
2018-09-05 19:05:49 +00:00
};
using Button = Ui::SettingsButton;
2018-09-05 19:05:49 +00:00
class Section : public Ui::RpWidget {
public:
using RpWidget::RpWidget;
virtual rpl::producer<Type> sectionShowOther() {
return nullptr;
2018-09-05 19:05:49 +00:00
}
virtual rpl::producer<bool> sectionCanSaveChanges() {
return rpl::single(false);
}
virtual void sectionSaveChanges(FnMut<void()> done) {
done();
}
2018-09-05 19:05:49 +00:00
};
object_ptr<Section> CreateSection(
Type type,
not_null<QWidget*> parent,
2019-07-24 14:00:30 +00:00
not_null<Window::SessionController*> controller);
2018-09-05 19:05:49 +00:00
void AddSkip(not_null<Ui::VerticalLayout*> container);
2018-09-07 12:19:56 +00:00
void AddSkip(not_null<Ui::VerticalLayout*> container, int skip);
void AddDivider(not_null<Ui::VerticalLayout*> container);
void AddDividerText(
not_null<Ui::VerticalLayout*> container,
rpl::producer<QString> text);
not_null<Ui::RpWidget*> AddButtonIcon(
not_null<Ui::AbstractButton*> button,
const style::icon *leftIcon,
int iconLeft,
const style::color *leftIconOver);
2020-03-24 07:26:08 +00:00
object_ptr<Button> CreateButton(
not_null<QWidget*> parent,
rpl::producer<QString> text,
const style::SettingsButton &st,
const style::icon *leftIcon = nullptr,
int iconLeft = 0,
const style::color *leftIconOver = nullptr);
2018-09-13 20:09:26 +00:00
not_null<Button*> AddButton(
not_null<Ui::VerticalLayout*> container,
rpl::producer<QString> text,
const style::SettingsButton &st,
2018-09-28 11:20:36 +00:00
const style::icon *leftIcon = nullptr,
int iconLeft = 0);
2018-09-07 09:40:25 +00:00
not_null<Button*> AddButtonWithLabel(
not_null<Ui::VerticalLayout*> container,
2019-06-18 12:16:43 +00:00
rpl::producer<QString> text,
2018-09-07 09:40:25 +00:00
rpl::producer<QString> label,
const style::SettingsButton &st,
2018-09-28 11:20:36 +00:00
const style::icon *leftIcon = nullptr,
int iconLeft = 0);
void CreateRightLabel(
not_null<Button*> button,
rpl::producer<QString> label,
const style::SettingsButton &st,
2019-06-18 12:16:43 +00:00
rpl::producer<QString> buttonText);
2019-09-04 15:59:43 +00:00
not_null<Ui::FlatLabel*> AddSubsectionTitle(
not_null<Ui::VerticalLayout*> container,
rpl::producer<QString> text);
using MenuCallback = Fn<QAction*(
const QString &text,
Fn<void()> handler)>;
void FillMenu(
not_null<Window::SessionController*> controller,
Type type,
Fn<void(Type)> showOther,
MenuCallback addAction);
2018-09-05 19:05:49 +00:00
} // namespace Settings