mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-13 12:47:08 +02:00
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
// This is the source code of AyuGram for Desktop.
|
|
//
|
|
// We do not and cannot prevent the use of our code,
|
|
// but be respectful and credit the original author.
|
|
//
|
|
// Copyright @Radolyn, 2023
|
|
|
|
#pragma once
|
|
|
|
#include "settings/settings_common.h"
|
|
|
|
class BoxContent;
|
|
|
|
namespace Window {
|
|
class Controller;
|
|
|
|
class SessionController;
|
|
} // namespace Window
|
|
|
|
namespace Settings {
|
|
class Ayu : public Section<Ayu> {
|
|
public:
|
|
Ayu(QWidget *parent, not_null<Window::SessionController *> controller);
|
|
|
|
[[nodiscard]] rpl::producer<QString> title() override;
|
|
|
|
private:
|
|
void SetupGhostEssentials(not_null<Ui::VerticalLayout *> container);
|
|
void SetupSpyEssentials(not_null<Ui::VerticalLayout *> container);
|
|
void SetupQoLToggles(not_null<Ui::VerticalLayout *> container);
|
|
void SetupCustomization(not_null<Ui::VerticalLayout *> container, not_null<Window::SessionController *> controller);
|
|
|
|
void SetupShowPeerId(not_null<Ui::VerticalLayout *> container, not_null<Window::SessionController *> controller);
|
|
void SetupRecentStickersLimitSlider(not_null<Ui::VerticalLayout *> container);
|
|
|
|
void SetupBetaFunctions(not_null<Ui::VerticalLayout *> container);
|
|
|
|
void SetupAyuGramSettings(not_null<Ui::VerticalLayout *> container, not_null<Window::SessionController *> null);
|
|
void setupContent(not_null<Window::SessionController *> controller);
|
|
};
|
|
|
|
} // namespace Settings
|