tdesktop/Telegram/SourceFiles/platform/linux/linux_wayland_integration.h

31 lines
701 B
C
Raw Normal View History

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