hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
From 5ea02d4e006ff5833cff9c3a9cb3abb3bdc283ba Mon Sep 17 00:00:00 2001
From: Jeffy Chen <jeffy.chen@rock-chips.com>
Date: Wed, 27 Feb 2019 16:52:15 +0800
Subject: [PATCH 05/15] qwaylandxdgshell: Support setting window position
 
Support setting window position.
Note:
1/ (0,0) initial position(default position) would be ignored.
2/ The decoration would be ignored when the space not enough.
3/ QT would not aware of the wayland position.
 
Change-Id: Ifb1433b3902d44c1b2e43036bc1805a6e00128fb
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---
 .../xdg-shell/qwaylandxdgshell.cpp                 | 14 ++++++++++++++
 .../xdg-shell/qwaylandxdgshell_p.h                 |  2 ++
 2 files changed, 16 insertions(+)
 
diff --git a/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell.cpp b/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell.cpp
index b6d23ac..692e799 100644
--- a/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell.cpp
+++ b/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell.cpp
@@ -359,6 +359,20 @@ void QWaylandXdgSurface::propagateSizeHints()
 void QWaylandXdgSurface::setWindowGeometry(const QRect &rect)
 {
     set_window_geometry(rect.x(), rect.y(), rect.width(), rect.height());
+
+    if (m_window) {
+        QPoint position = m_window->geometry().topLeft();
+
+        // Also avoid initial position (0,0).
+        // What if we do want to be at (0,0)?
+        if (m_position == position)
+            return;
+        m_position = position;
+
+        // HACK: Set window position through .set_window_geometry(x, y, 0, 0)
+        set_window_geometry(position.x() > 0 ? position.x() : 0,
+                            position.y() > 0 ? position.y() : 0, 0, 0);
+    }
 }
 
 void QWaylandXdgSurface::setSizeHints()
diff --git a/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h b/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h
index 0c98be3..27d4a2e 100644
--- a/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h
+++ b/src/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h
@@ -154,6 +154,8 @@ private:
     QRegion m_exposeRegion;
     uint m_pendingConfigureSerial = 0;
 
+    QPoint m_position;
+
     friend class QWaylandXdgShell;
 };
 
-- 
2.20.1