Files
AyuGramDesktop/Telegram/SourceFiles/ayu/ui/settings/settings_general.h
T

31 lines
667 B
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, 2026
#pragma once
#include "settings/settings_common.h"
#include "settings/settings_common_session.h"
namespace Window {
class SessionController;
} // namespace Window
namespace Settings {
class AyuGeneral : public Section<AyuGeneral> {
public:
AyuGeneral(QWidget *parent, not_null<Window::SessionController*> controller);
[[nodiscard]] rpl::producer<QString> title() override;
private:
void setupContent();
};
[[nodiscard]] Type AyuGeneralId();
} // namespace Settings