2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 18:57:12 +00:00
tdesktop/Telegram/SourceFiles/platform/linux/linux_wayland_integration.h

35 lines
803 B
C
Raw Normal View History

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]] QString nativeHandle(QWindow *window);
[[nodiscard]] bool skipTaskbarSupported();
void skipTaskbar(QWindow *window, bool skip);
void registerAppMenu(
QWindow *window,
const QString &serviceName,
const QString &objectPath);
2020-11-12 00:18:18 +01:00
private:
WaylandIntegration();
~WaylandIntegration();
2021-07-26 01:30:56 +04:00
struct Private;
const std::unique_ptr<Private> _private;
2020-11-12 00:18:18 +01:00
};
} // namespace internal
} // namespace Platform