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

31 lines
659 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 AyuChats : public Section<AyuChats> {
public:
AyuChats(QWidget *parent, not_null<Window::SessionController*> controller);
[[nodiscard]] rpl::producer<QString> title() override;
private:
void setupContent();
};
[[nodiscard]] Type AyuChatsId();
} // namespace Settings