lib_ui/ui/platform/linux/ui_linux_wayland_integration.h
Ilya Fedin a714fb0070 Refactor all ui_platform_utility functions to accept QWidget
Also let ShowWindowMenu accept the point and remove unused return data
2022-06-13 14:04:17 +04:00

35 lines
885 B
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
class QWindow;
namespace Ui {
namespace Platform {
class WaylandIntegration {
public:
[[nodiscard]] static WaylandIntegration *Instance();
void waitForInterfaceAnnounce();
[[nodiscard]] bool xdgDecorationSupported();
[[nodiscard]] bool windowExtentsSupported();
void setWindowExtents(not_null<QWidget*> widget, const QMargins &extents);
void unsetWindowExtents(not_null<QWidget*> widget);
void showWindowMenu(not_null<QWidget*> widget, const QPoint &point);
private:
WaylandIntegration();
~WaylandIntegration();
struct Private;
const std::unique_ptr<Private> _private;
};
} // namespace Platform
} // namespace Ui