forked from linuxmint/cinnamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cinnamon-plugin.c
448 lines (379 loc) · 16.5 KB
/
cinnamon-plugin.c
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/*
* Copyright (c) 2008 Red Hat, Inc.
* Copyright (c) 2008 Intel Corp.
*
* Based on plugin skeleton by:
* Author: Tomas Frydrych <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA
* 02110-1335, USA.
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <clutter/clutter.h>
#include <clutter/x11/clutter-x11.h>
#if defined (__arm__)
#else
#include <GL/glx.h>
#include <GL/glxext.h>
#endif
#include <cjs/gjs.h>
#include <meta/display.h>
#include <meta/meta-plugin.h>
#include "cinnamon-global-private.h"
#include "cinnamon-perf-log.h"
#include "cinnamon-wm-private.h"
static void gnome_cinnamon_plugin_dispose (GObject *object);
static void gnome_cinnamon_plugin_finalize (GObject *object);
static void gnome_cinnamon_plugin_start (MetaPlugin *plugin);
static void gnome_cinnamon_plugin_minimize (MetaPlugin *plugin,
MetaWindowActor *actor);
static void gnome_cinnamon_plugin_maximize (MetaPlugin *plugin,
MetaWindowActor *actor,
gint x,
gint y,
gint width,
gint height);
static void gnome_cinnamon_plugin_unmaximize (MetaPlugin *plugin,
MetaWindowActor *actor,
gint x,
gint y,
gint width,
gint height);
static void gnome_cinnamon_plugin_tile (MetaPlugin *plugin,
MetaWindowActor *actor,
gint x,
gint y,
gint width,
gint height);
static void gnome_cinnamon_plugin_map (MetaPlugin *plugin,
MetaWindowActor *actor);
static void gnome_cinnamon_plugin_destroy (MetaPlugin *plugin,
MetaWindowActor *actor);
static void gnome_cinnamon_plugin_switch_workspace (MetaPlugin *plugin,
gint from,
gint to,
MetaMotionDirection direction);
static void gnome_cinnamon_plugin_show_tile_preview (MetaPlugin *plugin,
MetaWindow *window,
MetaRectangle *tile_rect,
int tile_monitor,
guint snap_queued);
static void gnome_cinnamon_plugin_hide_tile_preview (MetaPlugin *plugin);
static void gnome_cinnamon_plugin_show_hud_preview (MetaPlugin *plugin,
guint current_proximity_zone,
MetaRectangle *work_area,
guint snap_queued);
static void gnome_cinnamon_plugin_hide_hud_preview (MetaPlugin *plugin);
static void gnome_cinnamon_plugin_kill_window_effects (MetaPlugin *plugin,
MetaWindowActor *actor);
static gboolean gnome_cinnamon_plugin_xevent_filter (MetaPlugin *plugin,
XEvent *event);
static const MetaPluginInfo *gnome_cinnamon_plugin_plugin_info (MetaPlugin *plugin);
#define GNOME_TYPE_CINNAMON_PLUGIN (gnome_cinnamon_plugin_get_type ())
#define CINNAMON_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNOME_TYPE_CINNAMON_PLUGIN, CinnamonPlugin))
#define CINNAMON_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNOME_TYPE_CINNAMON_PLUGIN, CinnamonPluginClass))
#define GNOME_IS_CINNAMON_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CINNAMON_PLUGIN_TYPE))
#define GNOME_IS_CINNAMON_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GNOME_TYPE_CINNAMON_PLUGIN))
#define CINNAMON_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GNOME_TYPE_CINNAMON_PLUGIN, CinnamonPluginClass))
typedef struct _CinnamonPlugin CinnamonPlugin;
typedef struct _CinnamonPluginClass CinnamonPluginClass;
struct _CinnamonPlugin
{
MetaPlugin parent;
Atom panel_action;
Atom panel_action_run_dialog;
Atom panel_action_main_menu;
int glx_error_base;
int glx_event_base;
guint have_swap_event : 1;
CinnamonGlobal *global;
};
struct _CinnamonPluginClass
{
MetaPluginClass parent_class;
};
GType gnome_cinnamon_plugin_get_type (void);
G_DEFINE_TYPE (CinnamonPlugin, gnome_cinnamon_plugin, META_TYPE_PLUGIN)
static void
gnome_cinnamon_plugin_class_init (CinnamonPluginClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
MetaPluginClass *plugin_class = META_PLUGIN_CLASS (klass);
gobject_class->dispose = gnome_cinnamon_plugin_dispose;
gobject_class->finalize = gnome_cinnamon_plugin_finalize;
plugin_class->start = gnome_cinnamon_plugin_start;
plugin_class->map = gnome_cinnamon_plugin_map;
plugin_class->minimize = gnome_cinnamon_plugin_minimize;
plugin_class->maximize = gnome_cinnamon_plugin_maximize;
plugin_class->tile = gnome_cinnamon_plugin_tile;
plugin_class->unmaximize = gnome_cinnamon_plugin_unmaximize;
plugin_class->destroy = gnome_cinnamon_plugin_destroy;
plugin_class->switch_workspace = gnome_cinnamon_plugin_switch_workspace;
plugin_class->show_tile_preview = gnome_cinnamon_plugin_show_tile_preview;
plugin_class->hide_tile_preview = gnome_cinnamon_plugin_hide_tile_preview;
plugin_class->show_hud_preview = gnome_cinnamon_plugin_show_hud_preview;
plugin_class->hide_hud_preview = gnome_cinnamon_plugin_hide_hud_preview;
plugin_class->kill_window_effects = gnome_cinnamon_plugin_kill_window_effects;
plugin_class->xevent_filter = gnome_cinnamon_plugin_xevent_filter;
plugin_class->plugin_info = gnome_cinnamon_plugin_plugin_info;
}
static void
gnome_cinnamon_plugin_init (CinnamonPlugin *cinnamon_plugin)
{
}
static void
gnome_cinnamon_plugin_start (MetaPlugin *plugin)
{
CinnamonPlugin *cinnamon_plugin = CINNAMON_PLUGIN (plugin);
#if defined (__arm__)
#else
MetaScreen *screen;
MetaDisplay *display;
Display *xdisplay;
#endif
GError *error = NULL;
int status;
#if defined (__arm__)
#else
const char *glx_extensions;
#endif
GjsContext *gjs_context;
#if defined (__arm__)
cinnamon_plugin->have_swap_event = 0;
#else
screen = meta_plugin_get_screen (plugin);
display = meta_screen_get_display (screen);
xdisplay = meta_display_get_xdisplay (display);
glXQueryExtension (xdisplay,
&cinnamon_plugin->glx_error_base,
&cinnamon_plugin->glx_event_base);
glx_extensions = glXQueryExtensionsString (xdisplay,
meta_screen_get_screen_number (screen));
cinnamon_plugin->have_swap_event = strstr (glx_extensions, "GLX_INTEL_swap_event") != NULL;
#endif
cinnamon_perf_log_define_event (cinnamon_perf_log_get_default (),
"glx.swapComplete",
"GL buffer swap complete event received (with timestamp of completion)",
"x");
cinnamon_plugin->global = cinnamon_global_get ();
_cinnamon_global_set_plugin (cinnamon_plugin->global, META_PLUGIN (cinnamon_plugin));
gjs_context = _cinnamon_global_get_gjs_context (cinnamon_plugin->global);
if (!gjs_context_eval (gjs_context,
"imports.ui.environment.init();"
"imports.ui.main.start();",
-1,
"<main>",
&status,
&error))
{
g_message ("Execution of main.js threw exception: %s", error->message);
g_error_free (error);
/* We just exit() here, since in a development environment you'll get the
* error in your cinnamon output, and it's way better than a busted WM,
* which typically manifests as a white screen.
*
* In production, we shouldn't crash =) But if we do, we should get
* restarted by the session infrastructure, which is likely going
* to be better than some undefined state.
*
* If there was a generic "hook into bug-buddy for non-C crashes"
* infrastructure, here would be the place to put it.
*/
exit (1);
}
}
static void
gnome_cinnamon_plugin_dispose (GObject *object)
{
G_OBJECT_CLASS(gnome_cinnamon_plugin_parent_class)->dispose (object);
}
static void
gnome_cinnamon_plugin_finalize (GObject *object)
{
G_OBJECT_CLASS(gnome_cinnamon_plugin_parent_class)->finalize (object);
}
static CinnamonWM *
get_cinnamon_wm (void)
{
CinnamonWM *wm;
g_object_get (cinnamon_global_get (),
"window-manager", &wm,
NULL);
/* drop extra ref added by g_object_get */
g_object_unref (wm);
return wm;
}
static void
gnome_cinnamon_plugin_minimize (MetaPlugin *plugin,
MetaWindowActor *actor)
{
_cinnamon_wm_minimize (get_cinnamon_wm (),
actor);
}
static void
gnome_cinnamon_plugin_maximize (MetaPlugin *plugin,
MetaWindowActor *actor,
gint x,
gint y,
gint width,
gint height)
{
_cinnamon_wm_maximize (get_cinnamon_wm (),
actor, x, y, width, height);
}
static void
gnome_cinnamon_plugin_tile (MetaPlugin *plugin,
MetaWindowActor *actor,
gint x,
gint y,
gint width,
gint height)
{
_cinnamon_wm_tile (get_cinnamon_wm (),
actor, x, y, width, height);
}
static void
gnome_cinnamon_plugin_unmaximize (MetaPlugin *plugin,
MetaWindowActor *actor,
gint x,
gint y,
gint width,
gint height)
{
_cinnamon_wm_unmaximize (get_cinnamon_wm (),
actor, x, y, width, height);
}
static void
gnome_cinnamon_plugin_map (MetaPlugin *plugin,
MetaWindowActor *actor)
{
_cinnamon_wm_map (get_cinnamon_wm (),
actor);
}
static void
gnome_cinnamon_plugin_destroy (MetaPlugin *plugin,
MetaWindowActor *actor)
{
_cinnamon_wm_destroy (get_cinnamon_wm (),
actor);
}
static void
gnome_cinnamon_plugin_switch_workspace (MetaPlugin *plugin,
gint from,
gint to,
MetaMotionDirection direction)
{
_cinnamon_wm_switch_workspace (get_cinnamon_wm(), from, to, direction);
}
static void
gnome_cinnamon_plugin_kill_window_effects (MetaPlugin *plugin,
MetaWindowActor *actor)
{
_cinnamon_wm_kill_window_effects (get_cinnamon_wm(), actor);
}
static void
gnome_cinnamon_plugin_show_tile_preview (MetaPlugin *plugin,
MetaWindow *window,
MetaRectangle *tile_rect,
int tile_monitor,
guint snap_queued)
{
_cinnamon_wm_show_tile_preview (get_cinnamon_wm (), window, tile_rect,
tile_monitor, snap_queued);
}
static void
gnome_cinnamon_plugin_hide_tile_preview (MetaPlugin *plugin)
{
_cinnamon_wm_hide_tile_preview (get_cinnamon_wm ());
}
static void
gnome_cinnamon_plugin_show_hud_preview (MetaPlugin *plugin,
guint current_proximity_zone,
MetaRectangle *work_area,
guint snap_queued)
{
_cinnamon_wm_show_hud_preview (get_cinnamon_wm (), current_proximity_zone,
work_area, snap_queued);
}
static void
gnome_cinnamon_plugin_hide_hud_preview (MetaPlugin *plugin)
{
_cinnamon_wm_hide_hud_preview (get_cinnamon_wm ());
}
static gboolean
gnome_cinnamon_plugin_xevent_filter (MetaPlugin *plugin,
XEvent *xev)
{
MetaScreen *screen = meta_plugin_get_screen (plugin);
ClutterStage *stage = CLUTTER_STAGE (meta_get_stage_for_screen (screen));
CinnamonPlugin *cinnamon_plugin = CINNAMON_PLUGIN (plugin);
#ifdef GLX_INTEL_swap_event
if (cinnamon_plugin->have_swap_event &&
xev->type == (cinnamon_plugin->glx_event_base + GLX_BufferSwapComplete))
{
GLXBufferSwapComplete *swap_complete_event;
swap_complete_event = (GLXBufferSwapComplete *)xev;
/* Buggy early versions of the INTEL_swap_event implementation in Mesa
* can send this with a ust of 0. Simplify life for consumers
* by ignoring such events */
if (swap_complete_event->ust != 0)
cinnamon_perf_log_event_x (cinnamon_perf_log_get_default (),
"glx.swapComplete",
swap_complete_event->ust);
}
#endif
if ((xev->xany.type == EnterNotify || xev->xany.type == LeaveNotify)
&& xev->xcrossing.window == clutter_x11_get_stage_window (stage))
{
/* If the pointer enters a child of the stage window (eg, a
* trayicon), we want to consider it to still be in the stage,
* so don't let Clutter see the event.
*/
if (xev->xcrossing.detail == NotifyInferior)
return TRUE;
/* If the pointer is grabbed by a window it is not currently in,
* filter that out as well. In particular, if a trayicon grabs
* the pointer after a click on its label, we don't want to hide
* the message tray. Filtering out this event will leave Clutter
* out of sync, but that happens fairly often with grabs, and we
* can work around it. (Eg, cinnamon_global_sync_pointer().)
*/
if (xev->xcrossing.mode == NotifyGrab &&
(xev->xcrossing.detail == NotifyNonlinear ||
xev->xcrossing.detail == NotifyNonlinearVirtual))
return TRUE;
}
/*
* Pass the event to cinnamon-global
*/
if (_cinnamon_global_check_xdnd_event (cinnamon_plugin->global, xev))
return TRUE;
return clutter_x11_handle_event (xev) != CLUTTER_X11_FILTER_CONTINUE;
}
static const
MetaPluginInfo *gnome_cinnamon_plugin_plugin_info (MetaPlugin *plugin)
{
static const MetaPluginInfo info = {
.name = "Cinnamon",
.version = "0.1",
.author = "Various",
.license = "GPLv2+",
.description = "Provides Cinnamon core functionality"
};
return &info;
}