mirror of
https://github.com/vale981/tdesktop
synced 2025-03-10 04:56:43 -04:00
75 lines
1.4 KiB
C
75 lines
1.4 KiB
C
![]() |
/*
|
||
|
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 "info/info_content_widget.h"
|
||
|
#include "info/info_controller.h"
|
||
|
|
||
|
namespace Info {
|
||
|
namespace Settings {
|
||
|
|
||
|
using Type = Section::SettingsType;
|
||
|
|
||
|
struct Tag;
|
||
|
class InnerWidget;
|
||
|
|
||
|
class Memento final : public ContentMemento {
|
||
|
public:
|
||
|
Memento(not_null<UserData*> self, Type type);
|
||
|
|
||
|
object_ptr<ContentWidget> createWidget(
|
||
|
QWidget *parent,
|
||
|
not_null<Controller*> controller,
|
||
|
const QRect &geometry) override;
|
||
|
|
||
|
Section section() const override;
|
||
|
|
||
|
Type type() const {
|
||
|
return _type;
|
||
|
}
|
||
|
|
||
|
not_null<UserData*> self() const {
|
||
|
return settingsSelf();
|
||
|
}
|
||
|
|
||
|
~Memento();
|
||
|
|
||
|
private:
|
||
|
Type _type = Type();
|
||
|
|
||
|
};
|
||
|
|
||
|
class Widget final : public ContentWidget {
|
||
|
public:
|
||
|
Widget(
|
||
|
QWidget *parent,
|
||
|
not_null<Controller*> controller);
|
||
|
|
||
|
not_null<UserData*> self() const;
|
||
|
|
||
|
bool showInternal(
|
||
|
not_null<ContentMemento*> memento) override;
|
||
|
|
||
|
void setInternalState(
|
||
|
const QRect &geometry,
|
||
|
not_null<Memento*> memento);
|
||
|
|
||
|
private:
|
||
|
void saveState(not_null<Memento*> memento);
|
||
|
void restoreState(not_null<Memento*> memento);
|
||
|
|
||
|
std::unique_ptr<ContentMemento> doCreateMemento() override;
|
||
|
|
||
|
not_null<UserData*> _self;
|
||
|
Type _type = Type();
|
||
|
|
||
|
};
|
||
|
|
||
|
} // namespace Settings
|
||
|
} // namespace Info
|