2008-10-31 11:20:54 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2008-10-31 00:22:44 -04:00
|
|
|
#include "shell-global.h"
|
2008-11-21 09:02:09 -05:00
|
|
|
#include "shell-wm.h"
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2008-11-19 14:54:17 -05:00
|
|
|
#include "display.h"
|
|
|
|
#include <clutter/x11/clutter-x11.h>
|
|
|
|
|
2008-10-31 00:22:44 -04:00
|
|
|
struct _ShellGlobal {
|
|
|
|
GObject parent;
|
|
|
|
|
2008-10-31 11:20:54 -04:00
|
|
|
MutterPlugin *plugin;
|
2008-11-21 09:02:09 -05:00
|
|
|
ShellWM *wm;
|
2008-11-24 14:07:18 -05:00
|
|
|
gboolean keyboard_grabbed;
|
2008-10-31 00:22:44 -04:00
|
|
|
};
|
|
|
|
|
2008-10-31 11:20:54 -04:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
|
|
|
|
PROP_OVERLAY_GROUP,
|
2008-11-19 17:54:42 -05:00
|
|
|
PROP_SCREEN,
|
2008-10-31 11:20:54 -04:00
|
|
|
PROP_SCREEN_WIDTH,
|
2008-10-31 14:04:38 -04:00
|
|
|
PROP_SCREEN_HEIGHT,
|
2008-11-08 14:33:33 -05:00
|
|
|
PROP_STAGE,
|
2008-11-21 09:02:09 -05:00
|
|
|
PROP_WINDOW_GROUP,
|
|
|
|
PROP_WINDOW_MANAGER
|
2008-10-31 11:20:54 -04:00
|
|
|
};
|
|
|
|
|
2008-11-07 13:42:23 -05:00
|
|
|
/* Signals */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PANEL_RUN_DIALOG,
|
|
|
|
PANEL_MAIN_MENU,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2008-10-31 00:22:44 -04:00
|
|
|
G_DEFINE_TYPE(ShellGlobal, shell_global, G_TYPE_OBJECT);
|
|
|
|
|
2008-11-07 13:42:23 -05:00
|
|
|
static guint shell_global_signals [LAST_SIGNAL] = { 0 };
|
|
|
|
|
2008-10-31 11:20:54 -04:00
|
|
|
static void
|
|
|
|
shell_global_set_property(GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_global_get_property(GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
ShellGlobal *global = SHELL_GLOBAL (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_OVERLAY_GROUP:
|
|
|
|
g_value_set_object (value, mutter_plugin_get_overlay_group (global->plugin));
|
|
|
|
break;
|
2008-11-19 17:54:42 -05:00
|
|
|
case PROP_SCREEN:
|
|
|
|
g_value_set_object (value, mutter_plugin_get_screen (global->plugin));
|
|
|
|
break;
|
2008-10-31 11:20:54 -04:00
|
|
|
case PROP_SCREEN_WIDTH:
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
mutter_plugin_query_screen_size (global->plugin, &width, &height);
|
|
|
|
g_value_set_int (value, width);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PROP_SCREEN_HEIGHT:
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
mutter_plugin_query_screen_size (global->plugin, &width, &height);
|
|
|
|
g_value_set_int (value, height);
|
|
|
|
}
|
|
|
|
break;
|
2008-10-31 14:04:38 -04:00
|
|
|
case PROP_STAGE:
|
|
|
|
g_value_set_object (value, mutter_plugin_get_stage (global->plugin));
|
|
|
|
break;
|
2008-11-08 14:33:33 -05:00
|
|
|
case PROP_WINDOW_GROUP:
|
|
|
|
g_value_set_object (value, mutter_plugin_get_window_group (global->plugin));
|
|
|
|
break;
|
2008-11-21 09:02:09 -05:00
|
|
|
case PROP_WINDOW_MANAGER:
|
|
|
|
g_value_set_object (value, global->wm);
|
|
|
|
break;
|
2008-10-31 11:20:54 -04:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-31 00:22:44 -04:00
|
|
|
static void
|
|
|
|
shell_global_init(ShellGlobal *global)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-10-31 11:20:54 -04:00
|
|
|
shell_global_class_init (ShellGlobalClass *klass)
|
2008-10-31 00:22:44 -04:00
|
|
|
{
|
2008-10-31 11:20:54 -04:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->get_property = shell_global_get_property;
|
|
|
|
gobject_class->set_property = shell_global_set_property;
|
|
|
|
|
2008-11-07 13:42:23 -05:00
|
|
|
shell_global_signals[PANEL_RUN_DIALOG] =
|
|
|
|
g_signal_new ("panel-run-dialog",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (ShellGlobalClass, panel_run_dialog),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__INT,
|
|
|
|
G_TYPE_NONE, 1, G_TYPE_INT);
|
|
|
|
|
|
|
|
shell_global_signals[PANEL_MAIN_MENU] =
|
|
|
|
g_signal_new ("panel-main-menu",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (ShellGlobalClass, panel_main_menu),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__INT,
|
|
|
|
G_TYPE_NONE, 1, G_TYPE_INT);
|
|
|
|
|
2008-10-31 11:20:54 -04:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_OVERLAY_GROUP,
|
|
|
|
g_param_spec_object ("overlay-group",
|
|
|
|
"Overlay Group",
|
|
|
|
"Actor holding objects that appear above the desktop contents",
|
|
|
|
CLUTTER_TYPE_ACTOR,
|
|
|
|
G_PARAM_READABLE));
|
2008-11-19 17:54:42 -05:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SCREEN,
|
|
|
|
g_param_spec_object ("screen",
|
|
|
|
"Screen",
|
|
|
|
"Metacity screen object for the shell",
|
|
|
|
META_TYPE_SCREEN,
|
|
|
|
G_PARAM_READABLE));
|
2008-10-31 11:20:54 -04:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SCREEN_WIDTH,
|
|
|
|
g_param_spec_int ("screen-width",
|
|
|
|
"Screen Width",
|
|
|
|
"Screen width, in pixels",
|
|
|
|
0, G_MAXINT, 1,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SCREEN_HEIGHT,
|
|
|
|
g_param_spec_int ("screen-height",
|
|
|
|
"Screen Height",
|
|
|
|
"Screen height, in pixels",
|
|
|
|
0, G_MAXINT, 1,
|
|
|
|
G_PARAM_READABLE));
|
2008-10-31 14:04:38 -04:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_STAGE,
|
|
|
|
g_param_spec_object ("stage",
|
|
|
|
"Stage",
|
|
|
|
"Stage holding the desktop scene graph",
|
|
|
|
CLUTTER_TYPE_ACTOR,
|
|
|
|
G_PARAM_READABLE));
|
2008-11-08 14:33:33 -05:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_WINDOW_GROUP,
|
|
|
|
g_param_spec_object ("window-group",
|
|
|
|
"Window Group",
|
|
|
|
"Actor holding window actors",
|
|
|
|
CLUTTER_TYPE_ACTOR,
|
|
|
|
G_PARAM_READABLE));
|
2008-11-21 09:02:09 -05:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_WINDOW_MANAGER,
|
|
|
|
g_param_spec_object ("window-manager",
|
|
|
|
"Window Manager",
|
|
|
|
"Window management interface",
|
|
|
|
SHELL_TYPE_WM,
|
|
|
|
G_PARAM_READABLE));
|
2008-10-31 00:22:44 -04:00
|
|
|
}
|
|
|
|
|
2008-11-20 19:39:14 -05:00
|
|
|
/**
|
|
|
|
* shell_clutter_texture_set_from_pixbuf:
|
|
|
|
* texture: #ClutterTexture to be modified
|
|
|
|
* pixbuf: #GdkPixbuf to set as an image for #ClutterTexture
|
|
|
|
*
|
|
|
|
* Convenience function for setting an image for #ClutterTexture based on #GdkPixbuf.
|
|
|
|
* Copied from an example posted by hp in this thread http://mail.gnome.org/archives/gtk-devel-list/2008-September/msg00218.html
|
|
|
|
*
|
|
|
|
* Return value: %TRUE on success, %FALSE on failure
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
shell_clutter_texture_set_from_pixbuf (ClutterTexture *texture,
|
|
|
|
GdkPixbuf *pixbuf)
|
|
|
|
{
|
|
|
|
return clutter_texture_set_from_rgb_data (texture,
|
|
|
|
gdk_pixbuf_get_pixels (pixbuf),
|
|
|
|
gdk_pixbuf_get_has_alpha (pixbuf),
|
|
|
|
gdk_pixbuf_get_width (pixbuf),
|
|
|
|
gdk_pixbuf_get_height (pixbuf),
|
|
|
|
gdk_pixbuf_get_rowstride (pixbuf),
|
|
|
|
gdk_pixbuf_get_has_alpha (pixbuf)
|
|
|
|
? 4 : 3,
|
|
|
|
0, NULL);
|
|
|
|
}
|
|
|
|
|
2008-10-31 14:24:29 -04:00
|
|
|
/**
|
|
|
|
* shell_global_get:
|
|
|
|
*
|
|
|
|
* Gets the singleton global object that represents the desktop.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): the singleton global object
|
|
|
|
*/
|
2008-10-31 00:22:44 -04:00
|
|
|
ShellGlobal *
|
|
|
|
shell_global_get (void)
|
|
|
|
{
|
|
|
|
static ShellGlobal *the_object = NULL;
|
|
|
|
|
|
|
|
if (!the_object)
|
|
|
|
the_object = g_object_new (SHELL_TYPE_GLOBAL, 0);
|
|
|
|
|
|
|
|
return the_object;
|
|
|
|
}
|
|
|
|
|
2008-10-31 14:24:29 -04:00
|
|
|
/**
|
|
|
|
* shell_global_set_stage_input_area:
|
|
|
|
* x: X coordinate of rectangle
|
2008-11-14 19:44:11 -05:00
|
|
|
* y: Y coordinate of rectangle
|
2008-10-31 14:24:29 -04:00
|
|
|
* width: width of rectangle
|
2008-11-14 19:44:11 -05:00
|
|
|
* height: height of rectangle
|
2008-10-31 14:24:29 -04:00
|
|
|
*
|
|
|
|
* Sets the area of the stage that is responsive to mouse clicks as
|
|
|
|
* a rectangle.
|
|
|
|
*/
|
2008-10-31 00:22:44 -04:00
|
|
|
void
|
2008-10-31 11:20:54 -04:00
|
|
|
shell_global_set_stage_input_area (ShellGlobal *global,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height)
|
2008-10-31 00:22:44 -04:00
|
|
|
{
|
2008-10-31 11:20:54 -04:00
|
|
|
g_return_if_fail (SHELL_IS_GLOBAL (global));
|
2008-10-31 00:22:44 -04:00
|
|
|
|
2008-10-31 11:20:54 -04:00
|
|
|
mutter_plugin_set_stage_input_area (global->plugin, x, y, width, height);
|
2008-10-31 00:22:44 -04:00
|
|
|
}
|
|
|
|
|
2008-11-02 00:18:41 -04:00
|
|
|
/**
|
|
|
|
* shell_global_get_windows:
|
|
|
|
*
|
|
|
|
* Gets the list of MutterWindows for the plugin's screen
|
|
|
|
*
|
|
|
|
* Return value: (element-type MutterWindow) (transfer none): the list of windows
|
|
|
|
*/
|
|
|
|
GList *
|
|
|
|
shell_global_get_windows (ShellGlobal *global)
|
|
|
|
{
|
2008-11-07 13:42:23 -05:00
|
|
|
g_return_val_if_fail (SHELL_IS_GLOBAL (global), NULL);
|
2008-11-02 00:18:41 -04:00
|
|
|
|
|
|
|
return mutter_plugin_get_windows (global->plugin);
|
|
|
|
}
|
|
|
|
|
2008-10-31 00:22:44 -04:00
|
|
|
void
|
2008-10-31 11:20:54 -04:00
|
|
|
_shell_global_set_plugin (ShellGlobal *global,
|
|
|
|
MutterPlugin *plugin)
|
2008-10-31 00:22:44 -04:00
|
|
|
{
|
2008-10-31 11:20:54 -04:00
|
|
|
g_return_if_fail (SHELL_IS_GLOBAL (global));
|
2008-11-21 09:02:09 -05:00
|
|
|
g_return_if_fail (global->plugin == NULL);
|
2008-10-31 11:20:54 -04:00
|
|
|
|
|
|
|
global->plugin = plugin;
|
2008-11-21 09:02:09 -05:00
|
|
|
global->wm = shell_wm_new (plugin);
|
2008-10-31 00:22:44 -04:00
|
|
|
}
|
2008-11-19 14:54:17 -05:00
|
|
|
|
|
|
|
/**
|
2008-11-24 14:07:18 -05:00
|
|
|
* shell_global_grab_keyboard:
|
|
|
|
* @global: a #ShellGlobal
|
2008-11-19 14:54:17 -05:00
|
|
|
*
|
2008-11-24 14:07:18 -05:00
|
|
|
* Grab the keyboard to the stage window. The stage will receive
|
|
|
|
* all keyboard events until shell_global_ungrab_keyboard() is called.
|
|
|
|
* This is appropriate to do when the desktop goes into a special
|
|
|
|
* mode where no normal global key shortcuts or application keyboard
|
|
|
|
* processing should happen.
|
2008-11-19 14:54:17 -05:00
|
|
|
*/
|
2008-11-24 14:07:18 -05:00
|
|
|
gboolean
|
|
|
|
shell_global_grab_keyboard (ShellGlobal *global)
|
2008-11-19 14:54:17 -05:00
|
|
|
{
|
|
|
|
MetaScreen *screen = mutter_plugin_get_screen (global->plugin);
|
|
|
|
MetaDisplay *display = meta_screen_get_display (screen);
|
|
|
|
Display *xdisplay = meta_display_get_xdisplay (display);
|
|
|
|
ClutterStage *stage = CLUTTER_STAGE (mutter_plugin_get_stage (global->plugin));
|
|
|
|
Window stagewin = clutter_x11_get_stage_window (stage);
|
2008-11-24 14:07:18 -05:00
|
|
|
|
|
|
|
/* FIXME: we need to coordinate with the rest of Metacity or we
|
|
|
|
* may grab the keyboard away from other portions of Metacity
|
|
|
|
* and leave Metacity in a confused state. An X client is allowed
|
|
|
|
* to overgrab itself, though not allowed to grab they keyboard
|
|
|
|
* away from another applications.
|
|
|
|
*/
|
|
|
|
if (global->keyboard_grabbed)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (XGrabKeyboard (xdisplay, stagewin,
|
|
|
|
False, /* owner_events - steal events from the rest of metacity */
|
|
|
|
GrabModeAsync, GrabModeAsync,
|
|
|
|
CurrentTime) != Success)
|
|
|
|
return FALSE; /* probably AlreadyGrabbed, some other app has a keyboard grab */
|
|
|
|
|
|
|
|
global->keyboard_grabbed = TRUE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* shell_global_ungrab_keyboard:
|
|
|
|
* @global: a #ShellGlobal
|
|
|
|
*
|
|
|
|
* Undoes the effect of shell_global_grab_keyboard
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
shell_global_ungrab_keyboard (ShellGlobal *global)
|
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
|
|
|
MetaDisplay *display;
|
|
|
|
Display *xdisplay;
|
|
|
|
|
|
|
|
g_return_if_fail (global->keyboard_grabbed);
|
|
|
|
|
|
|
|
screen = mutter_plugin_get_screen (global->plugin);
|
|
|
|
display = meta_screen_get_display (screen);
|
|
|
|
xdisplay = meta_display_get_xdisplay (display);
|
|
|
|
|
|
|
|
XUngrabKeyboard (xdisplay, CurrentTime);
|
|
|
|
|
|
|
|
global->keyboard_grabbed = FALSE;
|
2008-11-19 14:54:17 -05:00
|
|
|
}
|