mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-05-16 07:01:20 +00:00
61 lines
1.1 KiB
C++
61 lines
1.1 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
|
|
|
|
namespace Webview {
|
|
struct DataRequest;
|
|
class Window;
|
|
} // namespace Webview
|
|
|
|
namespace Ui {
|
|
class RpWindow;
|
|
} // namespace Ui
|
|
|
|
namespace Iv {
|
|
|
|
struct Prepared;
|
|
|
|
class Controller final {
|
|
public:
|
|
Controller();
|
|
~Controller();
|
|
|
|
enum class Event {
|
|
Close,
|
|
Quit,
|
|
};
|
|
|
|
void show(const QString &dataPath, Prepared page);
|
|
[[nodiscard]] bool active() const;
|
|
void minimize();
|
|
|
|
[[nodiscard]] rpl::producer<Webview::DataRequest> dataRequests() const {
|
|
return _dataRequests.events();
|
|
}
|
|
|
|
[[nodiscard]] rpl::producer<Event> events() const {
|
|
return _events.events();
|
|
}
|
|
|
|
[[nodiscard]] rpl::lifetime &lifetime();
|
|
|
|
private:
|
|
void escape();
|
|
void close();
|
|
void quit();
|
|
|
|
std::unique_ptr<Ui::RpWindow> _window;
|
|
std::unique_ptr<Webview::Window> _webview;
|
|
rpl::event_stream<Webview::DataRequest> _dataRequests;
|
|
rpl::event_stream<Event> _events;
|
|
rpl::lifetime _lifetime;
|
|
|
|
};
|
|
|
|
} // namespace Iv
|