2020-11-12 00:18:18 +01: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
|
|
|
|
|
|
|
|
namespace Platform {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
class WaylandIntegration {
|
|
|
|
public:
|
2021-05-13 14:02:53 +04:00
|
|
|
[[nodiscard]] static WaylandIntegration *Instance();
|
2021-07-26 01:30:56 +04:00
|
|
|
|
2021-05-13 14:02:53 +04:00
|
|
|
[[nodiscard]] bool skipTaskbarSupported();
|
2021-05-13 06:38:30 +04:00
|
|
|
void skipTaskbar(QWindow *window, bool skip);
|
2020-11-12 00:18:18 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
WaylandIntegration();
|
2021-01-02 05:06:11 +04:00
|
|
|
~WaylandIntegration();
|
|
|
|
|
2021-07-26 01:30:56 +04:00
|
|
|
struct Private;
|
2021-01-02 05:06:11 +04:00
|
|
|
const std::unique_ptr<Private> _private;
|
2020-11-12 00:18:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace Platform
|