-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindowManager.cpp
332 lines (269 loc) · 5.84 KB
/
WindowManager.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
* Copyright (C) 2010 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: Neil Jagdish Patel <neil.patel@canonical.com>
*/
#include "WindowManager.h"
static WindowManager* window_manager = NULL;
class WindowManagerDummy : public WindowManager
{
guint32 GetActiveWindow() const
{
return 0;
}
unsigned long long GetWindowActiveNumber (guint32 xid) const
{
return 0;
}
bool IsScreenGrabbed() const
{
return false;
}
bool IsViewPortSwitchStarted() const
{
return false;
}
void ShowDesktop()
{
g_debug("%s", G_STRFUNC);
}
bool InShowDesktop() const
{
return false;
}
bool IsWindowMaximized(guint32 xid) const
{
return false;
}
bool IsWindowDecorated(guint32 xid)
{
return true;
}
bool IsWindowOnCurrentDesktop(guint32 xid) const
{
return true;
}
bool IsWindowObscured(guint32 xid) const
{
return false;
}
bool IsWindowMapped(guint32 xid) const
{
return true;
}
bool IsWindowVisible(guint32 xid) const
{
return true;
}
bool IsWindowOnTop(guint32 xid) const
{
return false;
}
bool IsWindowClosable(guint32 xid) const
{
return true;
}
bool IsWindowMinimizable(guint32 xid) const
{
return true;
}
bool IsWindowMaximizable(guint32 xid) const
{
return true;
}
void Restore(guint32 xid)
{
g_debug("%s", G_STRFUNC);
}
void RestoreAt(guint32 xid, int x, int y)
{
g_debug("%s", G_STRFUNC);
}
void Minimize(guint32 xid)
{
g_debug("%s", G_STRFUNC);
}
void Close(guint32 xid)
{
g_debug("%s", G_STRFUNC);
}
void Activate(guint32 xid)
{
g_debug("%s", G_STRFUNC);
}
void Raise(guint32 xid)
{
g_debug("%s", G_STRFUNC);
}
void Lower(guint32 xid)
{
g_debug("%s", G_STRFUNC);
}
void FocusWindowGroup(std::vector<Window> windows, FocusVisibility, int monitor, bool only_top_win)
{
g_debug("%s", G_STRFUNC);
}
bool ScaleWindowGroup(std::vector<Window> windows, int state, bool force)
{
g_debug("%s", G_STRFUNC);
return false;
}
int GetWindowMonitor(guint32 xid) const
{
return -1;
}
nux::Geometry GetWindowGeometry(guint xid) const
{
int width = (guint32)xid >> 16;
int height = (guint32)xid & 0x0000FFFF;
return nux::Geometry(0, 0, width, height);
}
nux::Geometry GetWindowSavedGeometry(guint xid) const
{
return nux::Geometry(0, 0, 1, 1);
}
nux::Geometry GetScreenGeometry() const
{
return nux::Geometry(0, 0, 1, 1);
}
nux::Geometry GetWorkAreaGeometry(guint32 xid) const
{
return nux::Geometry(0, 0, 1, 1);
}
void SetWindowIconGeometry(Window window, nux::Geometry const& geo)
{
g_debug("%s", G_STRFUNC);
}
void CheckWindowIntersections (nux::Geometry const& region, bool &active, bool &any)
{
active = false;
any = false;
}
int WorkspaceCount () const
{
return 1;
}
void TerminateScale()
{
g_debug("%s", G_STRFUNC);
}
bool IsScaleActive() const
{
g_debug("%s", G_STRFUNC);
return false;
}
bool IsScaleActiveForGroup() const
{
g_debug("%s", G_STRFUNC);
return false;
}
void InitiateExpo()
{
g_debug("%s", G_STRFUNC);
}
bool IsExpoActive() const
{
g_debug("%s", G_STRFUNC);
return false;
}
bool IsWallActive() const
{
g_debug("%s", G_STRFUNC);
return false;
}
void MoveResizeWindow(guint32 xid, nux::Geometry geometry)
{
g_debug("%s", G_STRFUNC);
}
bool saveInputFocus()
{
return false;
}
bool restoreInputFocus()
{
return false;
}
void AddProperties(GVariantBuilder* builder)
{
}
std::string GetWindowName(guint32 xid) const
{
return "unknown";
}
};
WindowManager*
WindowManager::Default()
{
if (!window_manager)
window_manager = new WindowManagerDummy();
return window_manager;
}
void
WindowManager::SetDefault(WindowManager* manager)
{
window_manager = manager;
}
std::string WindowManager::GetName() const
{
return "WindowManager";
}
#define NET_WM_MOVERESIZE_MOVE 8
void WindowManager::StartMove(guint32 xid, int x, int y)
{
if (x < 0 || y < 0)
return;
XEvent ev;
Display* d = nux::GetGraphicsDisplay()->GetX11Display();
/* We first need to ungrab the pointer. FIXME: Evil */
XUngrabPointer(d, CurrentTime);
// --------------------------------------------------------------------------
// FIXME: This is a workaround until the non-paired events issue is fixed in
// nux
XButtonEvent bev =
{
ButtonRelease,
0,
False,
d,
0,
0,
0,
CurrentTime,
x, y,
x, y,
0,
Button1,
True
};
XEvent* e = (XEvent*)&bev;
nux::GetWindowThread()->ProcessForeignEvent(e, NULL);
ev.xclient.type = ClientMessage;
ev.xclient.display = d;
ev.xclient.serial = 0;
ev.xclient.send_event = true;
ev.xclient.window = xid;
ev.xclient.message_type = m_MoveResizeAtom;
ev.xclient.format = 32;
ev.xclient.data.l[0] = x; // x_root
ev.xclient.data.l[1] = y; // y_root
ev.xclient.data.l[2] = NET_WM_MOVERESIZE_MOVE; //direction
ev.xclient.data.l[3] = 1; // button
ev.xclient.data.l[4] = 2; // source
XSendEvent(d, DefaultRootWindow(d), FALSE,
SubstructureRedirectMask | SubstructureNotifyMask,
&ev);
XSync(d, FALSE);
}