2020-01-15 11:53:42 +00:00
|
|
|
/*
|
|
|
|
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"
|
|
|
|
|
2020-01-15 18:16:49 +00:00
|
|
|
struct PeerListState;
|
|
|
|
|
2020-01-15 11:53:42 +00:00
|
|
|
namespace Info {
|
|
|
|
namespace Polls {
|
|
|
|
|
|
|
|
class InnerWidget;
|
|
|
|
|
|
|
|
class Memento final : public ContentMemento {
|
|
|
|
public:
|
|
|
|
Memento(not_null<PollData*> poll, FullMsgId contextId);
|
2020-01-15 18:16:49 +00:00
|
|
|
~Memento();
|
2020-01-15 11:53:42 +00:00
|
|
|
|
|
|
|
object_ptr<ContentWidget> createWidget(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Controller*> controller,
|
|
|
|
const QRect &geometry) override;
|
|
|
|
|
|
|
|
Section section() const override;
|
|
|
|
|
2020-01-15 18:16:49 +00:00
|
|
|
void setListStates(base::flat_map<
|
|
|
|
QByteArray,
|
|
|
|
std::unique_ptr<PeerListState>> states);
|
|
|
|
auto listStates()
|
|
|
|
-> base::flat_map<QByteArray, std::unique_ptr<PeerListState>>;
|
|
|
|
|
|
|
|
private:
|
|
|
|
base::flat_map<
|
|
|
|
QByteArray,
|
|
|
|
std::unique_ptr<PeerListState>> _listStates;
|
2020-01-15 11:53:42 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class Widget final : public ContentWidget {
|
|
|
|
public:
|
|
|
|
Widget(QWidget *parent, not_null<Controller*> controller);
|
|
|
|
|
|
|
|
[[nodiscard]] not_null<PollData*> poll() const;
|
|
|
|
[[nodiscard]] FullMsgId contextId() 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);
|
|
|
|
|
2020-12-14 14:48:10 +00:00
|
|
|
std::shared_ptr<ContentMemento> doCreateMemento() override;
|
2020-01-15 11:53:42 +00:00
|
|
|
|
|
|
|
not_null<InnerWidget*> _inner;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Settings
|
|
|
|
} // namespace Info
|