From 51642177e370f4cf902d15494f700c27a9961b9c Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Fri, 22 Dec 2023 14:44:09 +0200 Subject: [PATCH] Add Window.clientGeometry property --- src/window.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/window.h b/src/window.h index 25e1324cf1..60c6acce34 100644 --- a/src/window.h +++ b/src/window.h @@ -68,6 +68,11 @@ class KWIN_EXPORT Window : public QObject */ Q_PROPERTY(QRectF bufferGeometry READ bufferGeometry) + /** + * The geometry of the Window without frame borders. + */ + Q_PROPERTY(QRectF clientGeometry READ clientGeometry) + /** * This property holds the position of the Window's frame geometry. */