mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-10-15 14:26:04 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
/*
|
|
This file is part of Kotatogram Desktop,
|
|
the unofficial app based on Telegram Desktop.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/kotatogram/kotatogram-desktop/blob/dev/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#include "settings/settings_common.h"
|
|
|
|
class BoxContent;
|
|
|
|
namespace Settings {
|
|
|
|
void SetupKotatoChats(not_null<Ui::VerticalLayout*> container);
|
|
void SetupKotatoMessages(not_null<Ui::VerticalLayout*> container);
|
|
void SetupKotatoForward(not_null<Ui::VerticalLayout*> container);
|
|
void SetupKotatoNetwork(not_null<Ui::VerticalLayout*> container);
|
|
void SetupKotatoFolders(
|
|
not_null<Window::SessionController*> controller,
|
|
not_null<Ui::VerticalLayout*> container);
|
|
void SetupKotatoSystem(
|
|
not_null<Window::SessionController*> controller,
|
|
not_null<Ui::VerticalLayout*> container);
|
|
void SetupKotatoOther(not_null<Ui::VerticalLayout*> container);
|
|
|
|
class Kotato : public Section {
|
|
public:
|
|
Kotato(
|
|
QWidget *parent,
|
|
not_null<Window::SessionController*> controller);
|
|
|
|
private:
|
|
void setupContent(not_null<Window::SessionController*> controller);
|
|
|
|
};
|
|
|
|
} // namespace Settings
|