tdesktop/Telegram/SourceFiles/iv/iv_instance.h

46 lines
809 B
C
Raw Normal View History

/*
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 Main {
class Session;
class SessionShow;
} // namespace Main
namespace Iv {
class Data;
class Shown;
class Instance final {
public:
Instance();
~Instance();
void show(
std::shared_ptr<Main::SessionShow> show,
not_null<Data*> data,
bool local);
[[nodiscard]] bool hasActiveWindow(
not_null<Main::Session*> session) const;
void closeAll();
[[nodiscard]] rpl::lifetime &lifetime();
private:
std::unique_ptr<Shown> _shown;
base::flat_set<not_null<Main::Session*>> _tracking;
rpl::lifetime _lifetime;
};
} // namespace Iv