2008-10-31 00:22:44 -04:00
|
|
|
/* -*- 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 <tf@linux.intel.com>
|
|
|
|
*
|
|
|
|
* 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
|
2014-01-07 16:32:37 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2008-10-31 00:22:44 -04:00
|
|
|
*/
|
|
|
|
|
2018-12-25 09:40:10 -05:00
|
|
|
/*
|
|
|
|
* GnomeShellPlugin is the entry point for for GNOME Shell into and out of
|
|
|
|
* Mutter. By registering itself into Mutter using
|
|
|
|
* meta_plugin_manager_set_plugin_type(), Mutter will call the vfuncs of the
|
|
|
|
* plugin at the appropriate time.
|
|
|
|
*
|
2020-08-19 05:26:11 -04:00
|
|
|
* The functions in in GnomeShellPlugin are all just stubs, which just call the
|
2018-12-25 09:40:10 -05:00
|
|
|
* similar methods in GnomeShellWm.
|
|
|
|
*/
|
|
|
|
|
2009-11-24 09:07:40 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-05-04 14:28:07 -04:00
|
|
|
#include <stdlib.h>
|
2008-10-31 00:22:44 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-03-05 10:49:24 -05:00
|
|
|
#include <clutter/clutter.h>
|
|
|
|
#include <gjs/gjs.h>
|
|
|
|
#include <meta/display.h>
|
|
|
|
#include <meta/meta-plugin.h>
|
2021-05-11 06:44:20 -04:00
|
|
|
#include <meta/meta-x11-display.h>
|
2013-09-11 11:50:18 -04:00
|
|
|
#include <meta/util.h>
|
2008-11-07 13:42:23 -05:00
|
|
|
|
2009-10-24 13:40:13 -04:00
|
|
|
#include "shell-global-private.h"
|
2010-05-11 15:53:55 -04:00
|
|
|
#include "shell-perf-log.h"
|
2010-09-01 20:48:11 -04:00
|
|
|
#include "shell-wm-private.h"
|
2011-02-25 14:41:39 -05:00
|
|
|
|
2018-12-25 09:42:47 -05:00
|
|
|
#define GNOME_TYPE_SHELL_PLUGIN (gnome_shell_plugin_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (GnomeShellPlugin, gnome_shell_plugin,
|
|
|
|
GNOME, SHELL_PLUGIN,
|
|
|
|
MetaPlugin)
|
2008-12-22 16:05:08 -05:00
|
|
|
|
|
|
|
struct _GnomeShellPlugin
|
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
MetaPlugin parent;
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2010-05-24 09:52:25 -04:00
|
|
|
int glx_error_base;
|
|
|
|
int glx_event_base;
|
|
|
|
guint have_swap_event : 1;
|
2012-03-15 11:58:36 -04:00
|
|
|
CoglContext *cogl_context;
|
2011-01-05 09:47:27 -05:00
|
|
|
|
|
|
|
ShellGlobal *global;
|
2008-12-22 16:05:08 -05:00
|
|
|
};
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2011-02-25 11:20:27 -05:00
|
|
|
G_DEFINE_TYPE (GnomeShellPlugin, gnome_shell_plugin, META_TYPE_PLUGIN)
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2014-06-24 11:37:23 -04:00
|
|
|
static gboolean
|
|
|
|
gnome_shell_plugin_has_swap_event (GnomeShellPlugin *shell_plugin)
|
|
|
|
{
|
|
|
|
CoglDisplay *cogl_display =
|
|
|
|
cogl_context_get_display (shell_plugin->cogl_context);
|
|
|
|
CoglRenderer *renderer = cogl_display_get_renderer (cogl_display);
|
|
|
|
const char * (* query_extensions_string) (Display *dpy, int screen);
|
|
|
|
Bool (* query_extension) (Display *dpy, int *error, int *event);
|
2021-05-11 06:44:20 -04:00
|
|
|
MetaDisplay *display = meta_plugin_get_display (META_PLUGIN (shell_plugin));
|
|
|
|
MetaX11Display *x11_display = meta_display_get_x11_display (display);
|
2014-06-24 11:37:23 -04:00
|
|
|
Display *xdisplay;
|
2018-01-03 02:55:38 -05:00
|
|
|
int screen_number;
|
2014-06-24 11:37:23 -04:00
|
|
|
const char *glx_extensions;
|
|
|
|
|
|
|
|
/* We will only get swap events if Cogl is using GLX */
|
|
|
|
if (cogl_renderer_get_winsys_id (renderer) != COGL_WINSYS_ID_GLX)
|
|
|
|
return FALSE;
|
|
|
|
|
2021-05-11 06:44:20 -04:00
|
|
|
xdisplay = meta_x11_display_get_xdisplay (x11_display);
|
2014-06-24 11:37:23 -04:00
|
|
|
|
|
|
|
query_extensions_string =
|
|
|
|
(void *) cogl_get_proc_address ("glXQueryExtensionsString");
|
|
|
|
query_extension =
|
|
|
|
(void *) cogl_get_proc_address ("glXQueryExtension");
|
|
|
|
|
|
|
|
query_extension (xdisplay,
|
|
|
|
&shell_plugin->glx_error_base,
|
|
|
|
&shell_plugin->glx_event_base);
|
|
|
|
|
2018-01-03 02:55:38 -05:00
|
|
|
screen_number = XDefaultScreen (xdisplay);
|
|
|
|
glx_extensions = query_extensions_string (xdisplay, screen_number);
|
2014-06-24 11:37:23 -04:00
|
|
|
|
|
|
|
return strstr (glx_extensions, "GLX_INTEL_swap_event") != NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-15 11:58:36 -04:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_start (MetaPlugin *plugin)
|
|
|
|
{
|
|
|
|
GnomeShellPlugin *shell_plugin = GNOME_SHELL_PLUGIN (plugin);
|
|
|
|
GError *error = NULL;
|
2021-08-20 21:42:27 -04:00
|
|
|
uint8_t status;
|
2012-03-15 11:58:36 -04:00
|
|
|
GjsContext *gjs_context;
|
|
|
|
ClutterBackend *backend;
|
|
|
|
|
|
|
|
backend = clutter_get_default_backend ();
|
|
|
|
shell_plugin->cogl_context = clutter_backend_get_cogl_context (backend);
|
2010-05-24 09:52:25 -04:00
|
|
|
|
2014-06-24 11:37:23 -04:00
|
|
|
shell_plugin->have_swap_event =
|
|
|
|
gnome_shell_plugin_has_swap_event (shell_plugin);
|
2010-05-24 09:52:25 -04:00
|
|
|
|
|
|
|
shell_perf_log_define_event (shell_perf_log_get_default (),
|
|
|
|
"glx.swapComplete",
|
|
|
|
"GL buffer swap complete event received (with timestamp of completion)",
|
|
|
|
"x");
|
|
|
|
|
2011-01-05 09:47:27 -05:00
|
|
|
shell_plugin->global = shell_global_get ();
|
2011-02-25 11:20:27 -05:00
|
|
|
_shell_global_set_plugin (shell_plugin->global, META_PLUGIN (shell_plugin));
|
2010-05-11 10:35:27 -04:00
|
|
|
|
2011-02-25 11:20:27 -05:00
|
|
|
gjs_context = _shell_global_get_gjs_context (shell_plugin->global);
|
2010-05-11 15:53:55 -04:00
|
|
|
|
2021-08-20 21:42:27 -04:00
|
|
|
if (!gjs_context_eval_module_file (gjs_context,
|
|
|
|
"resource:///org/gnome/shell/ui/init.js",
|
|
|
|
&status,
|
|
|
|
&error))
|
2008-10-31 00:22:44 -04:00
|
|
|
{
|
2009-03-10 17:53:05 -04:00
|
|
|
g_message ("Execution of main.js threw exception: %s", error->message);
|
2008-10-31 00:22:44 -04:00
|
|
|
g_error_free (error);
|
2009-03-10 17:53:05 -04:00
|
|
|
/* We just exit() here, since in a development environment you'll get the
|
|
|
|
* error in your shell 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.
|
|
|
|
*/
|
2017-02-09 21:09:21 -05:00
|
|
|
g_object_unref (gjs_context);
|
2009-03-10 17:53:05 -04:00
|
|
|
exit (1);
|
2008-10-31 00:22:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-22 16:05:08 -05:00
|
|
|
static ShellWM *
|
|
|
|
get_shell_wm (void)
|
2008-10-31 00:22:44 -04:00
|
|
|
{
|
2008-12-22 16:05:08 -05:00
|
|
|
ShellWM *wm;
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2008-12-22 16:05:08 -05:00
|
|
|
g_object_get (shell_global_get (),
|
|
|
|
"window-manager", &wm,
|
|
|
|
NULL);
|
|
|
|
/* drop extra ref added by g_object_get */
|
|
|
|
g_object_unref (wm);
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2008-12-22 16:05:08 -05:00
|
|
|
return wm;
|
|
|
|
}
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
static void
|
2010-10-19 14:55:43 -04:00
|
|
|
gnome_shell_plugin_minimize (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
_shell_wm_minimize (get_shell_wm (),
|
|
|
|
actor);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-02-27 06:13:26 -05:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_unminimize (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
|
|
|
{
|
|
|
|
_shell_wm_unminimize (get_shell_wm (),
|
|
|
|
actor);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-26 11:33:35 -04:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_size_changed (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
|
|
|
{
|
|
|
|
_shell_wm_size_changed (get_shell_wm (), actor);
|
|
|
|
}
|
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
static void
|
2015-07-06 00:16:33 -04:00
|
|
|
gnome_shell_plugin_size_change (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor,
|
|
|
|
MetaSizeChange which_change,
|
|
|
|
MetaRectangle *old_frame_rect,
|
|
|
|
MetaRectangle *old_buffer_rect)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
2015-07-06 00:16:33 -04:00
|
|
|
_shell_wm_size_change (get_shell_wm (), actor, which_change, old_frame_rect, old_buffer_rect);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-19 14:55:43 -04:00
|
|
|
gnome_shell_plugin_map (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
_shell_wm_map (get_shell_wm (),
|
|
|
|
actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-19 14:55:43 -04:00
|
|
|
gnome_shell_plugin_destroy (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
_shell_wm_destroy (get_shell_wm (),
|
|
|
|
actor);
|
|
|
|
}
|
|
|
|
|
2008-12-22 16:05:08 -05:00
|
|
|
static void
|
2010-10-19 14:55:43 -04:00
|
|
|
gnome_shell_plugin_switch_workspace (MetaPlugin *plugin,
|
|
|
|
gint from,
|
|
|
|
gint to,
|
|
|
|
MetaMotionDirection direction)
|
2008-12-22 16:05:08 -05:00
|
|
|
{
|
2010-06-16 17:28:57 -04:00
|
|
|
_shell_wm_switch_workspace (get_shell_wm(), from, to, direction);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-19 14:55:43 -04:00
|
|
|
gnome_shell_plugin_kill_window_effects (MetaPlugin *plugin,
|
|
|
|
MetaWindowActor *actor)
|
2010-06-16 17:28:57 -04:00
|
|
|
{
|
|
|
|
_shell_wm_kill_window_effects (get_shell_wm(), actor);
|
2008-12-22 16:05:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-10-19 14:55:43 -04:00
|
|
|
gnome_shell_plugin_kill_switch_workspace (MetaPlugin *plugin)
|
2008-12-22 16:05:08 -05:00
|
|
|
{
|
2010-06-16 17:28:57 -04:00
|
|
|
_shell_wm_kill_switch_workspace (get_shell_wm());
|
2008-10-31 00:22:44 -04:00
|
|
|
}
|
|
|
|
|
2013-09-01 18:26:12 -04:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_show_tile_preview (MetaPlugin *plugin,
|
|
|
|
MetaWindow *window,
|
|
|
|
MetaRectangle *tile_rect,
|
|
|
|
int tile_monitor)
|
|
|
|
{
|
|
|
|
_shell_wm_show_tile_preview (get_shell_wm (), window, tile_rect, tile_monitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gnome_shell_plugin_hide_tile_preview (MetaPlugin *plugin)
|
|
|
|
{
|
|
|
|
_shell_wm_hide_tile_preview (get_shell_wm ());
|
|
|
|
}
|
|
|
|
|
2014-03-13 18:51:10 -04:00
|
|
|
static void
|
2014-05-23 21:32:44 -04:00
|
|
|
gnome_shell_plugin_show_window_menu (MetaPlugin *plugin,
|
|
|
|
MetaWindow *window,
|
|
|
|
MetaWindowMenuType menu,
|
|
|
|
int x,
|
|
|
|
int y)
|
2014-03-13 18:51:10 -04:00
|
|
|
{
|
2014-05-23 21:32:44 -04:00
|
|
|
_shell_wm_show_window_menu (get_shell_wm (), window, menu, x, y);
|
2014-03-13 18:51:10 -04:00
|
|
|
}
|
|
|
|
|
2014-06-02 15:47:24 -04:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_show_window_menu_for_rect (MetaPlugin *plugin,
|
|
|
|
MetaWindow *window,
|
|
|
|
MetaWindowMenuType menu,
|
|
|
|
MetaRectangle *rect)
|
|
|
|
{
|
|
|
|
_shell_wm_show_window_menu_for_rect (get_shell_wm (), window, menu, rect);
|
|
|
|
}
|
|
|
|
|
2012-12-20 21:39:22 -05:00
|
|
|
static gboolean
|
|
|
|
gnome_shell_plugin_xevent_filter (MetaPlugin *plugin,
|
|
|
|
XEvent *xev)
|
|
|
|
{
|
2016-12-24 03:56:52 -05:00
|
|
|
#ifdef GLX_INTEL_swap_event
|
2012-12-20 21:39:22 -05:00
|
|
|
GnomeShellPlugin *shell_plugin = GNOME_SHELL_PLUGIN (plugin);
|
2013-08-26 20:06:20 -04:00
|
|
|
|
2012-12-20 21:39:22 -05:00
|
|
|
if (shell_plugin->have_swap_event &&
|
|
|
|
xev->type == (shell_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)
|
2014-06-26 20:34:15 -04:00
|
|
|
{
|
|
|
|
gboolean frame_timestamps;
|
|
|
|
g_object_get (shell_plugin->global,
|
|
|
|
"frame-timestamps", &frame_timestamps,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (frame_timestamps)
|
|
|
|
shell_perf_log_event_x (shell_perf_log_get_default (),
|
|
|
|
"glx.swapComplete",
|
|
|
|
swap_complete_event->ust);
|
|
|
|
}
|
2012-12-20 21:39:22 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-14 13:14:46 -04:00
|
|
|
return FALSE;
|
2008-10-31 14:02:52 -04:00
|
|
|
}
|
|
|
|
|
2012-08-20 04:38:13 -04:00
|
|
|
static gboolean
|
|
|
|
gnome_shell_plugin_keybinding_filter (MetaPlugin *plugin,
|
|
|
|
MetaKeyBinding *binding)
|
|
|
|
{
|
|
|
|
return _shell_wm_filter_keybinding (get_shell_wm (), binding);
|
|
|
|
}
|
|
|
|
|
2013-08-17 11:42:39 -04:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_confirm_display_change (MetaPlugin *plugin)
|
|
|
|
{
|
|
|
|
_shell_wm_confirm_display_change (get_shell_wm ());
|
|
|
|
}
|
|
|
|
|
2018-12-25 09:43:48 -05:00
|
|
|
static const MetaPluginInfo *
|
|
|
|
gnome_shell_plugin_plugin_info (MetaPlugin *plugin)
|
2008-10-31 00:22:44 -04:00
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
static const MetaPluginInfo info = {
|
2008-12-22 16:05:08 -05:00
|
|
|
.name = "GNOME Shell",
|
|
|
|
.version = "0.1",
|
|
|
|
.author = "Various",
|
|
|
|
.license = "GPLv2+",
|
|
|
|
.description = "Provides GNOME Shell core functionality"
|
|
|
|
};
|
|
|
|
|
|
|
|
return &info;
|
2008-10-31 00:22:44 -04:00
|
|
|
}
|
2017-01-19 13:52:18 -05:00
|
|
|
|
|
|
|
static MetaCloseDialog *
|
|
|
|
gnome_shell_plugin_create_close_dialog (MetaPlugin *plugin,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
return _shell_wm_create_close_dialog (get_shell_wm (), window);
|
|
|
|
}
|
2017-07-13 21:15:17 -04:00
|
|
|
|
|
|
|
static MetaInhibitShortcutsDialog *
|
|
|
|
gnome_shell_plugin_create_inhibit_shortcuts_dialog (MetaPlugin *plugin,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
return _shell_wm_create_inhibit_shortcuts_dialog (get_shell_wm (), window);
|
|
|
|
}
|
2018-12-25 09:40:36 -05:00
|
|
|
|
2019-02-20 04:12:36 -05:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_locate_pointer (MetaPlugin *plugin)
|
|
|
|
{
|
|
|
|
GnomeShellPlugin *shell_plugin = GNOME_SHELL_PLUGIN (plugin);
|
|
|
|
_shell_global_locate_pointer (shell_plugin->global);
|
|
|
|
}
|
|
|
|
|
2018-12-25 09:40:36 -05:00
|
|
|
static void
|
|
|
|
gnome_shell_plugin_class_init (GnomeShellPluginClass *klass)
|
|
|
|
{
|
|
|
|
MetaPluginClass *plugin_class = META_PLUGIN_CLASS (klass);
|
|
|
|
|
|
|
|
plugin_class->start = gnome_shell_plugin_start;
|
|
|
|
plugin_class->map = gnome_shell_plugin_map;
|
|
|
|
plugin_class->minimize = gnome_shell_plugin_minimize;
|
|
|
|
plugin_class->unminimize = gnome_shell_plugin_unminimize;
|
|
|
|
plugin_class->size_changed = gnome_shell_plugin_size_changed;
|
|
|
|
plugin_class->size_change = gnome_shell_plugin_size_change;
|
|
|
|
plugin_class->destroy = gnome_shell_plugin_destroy;
|
|
|
|
|
|
|
|
plugin_class->switch_workspace = gnome_shell_plugin_switch_workspace;
|
|
|
|
|
|
|
|
plugin_class->kill_window_effects = gnome_shell_plugin_kill_window_effects;
|
|
|
|
plugin_class->kill_switch_workspace = gnome_shell_plugin_kill_switch_workspace;
|
|
|
|
|
|
|
|
plugin_class->show_tile_preview = gnome_shell_plugin_show_tile_preview;
|
|
|
|
plugin_class->hide_tile_preview = gnome_shell_plugin_hide_tile_preview;
|
|
|
|
plugin_class->show_window_menu = gnome_shell_plugin_show_window_menu;
|
|
|
|
plugin_class->show_window_menu_for_rect = gnome_shell_plugin_show_window_menu_for_rect;
|
|
|
|
|
|
|
|
plugin_class->xevent_filter = gnome_shell_plugin_xevent_filter;
|
|
|
|
plugin_class->keybinding_filter = gnome_shell_plugin_keybinding_filter;
|
|
|
|
|
|
|
|
plugin_class->confirm_display_change = gnome_shell_plugin_confirm_display_change;
|
|
|
|
|
|
|
|
plugin_class->plugin_info = gnome_shell_plugin_plugin_info;
|
|
|
|
|
|
|
|
plugin_class->create_close_dialog = gnome_shell_plugin_create_close_dialog;
|
|
|
|
plugin_class->create_inhibit_shortcuts_dialog = gnome_shell_plugin_create_inhibit_shortcuts_dialog;
|
2019-02-20 04:12:36 -05:00
|
|
|
|
|
|
|
plugin_class->locate_pointer = gnome_shell_plugin_locate_pointer;
|
2018-12-25 09:40:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gnome_shell_plugin_init (GnomeShellPlugin *shell_plugin)
|
|
|
|
{
|
|
|
|
}
|