2008-11-21 09:02:09 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2009-11-24 09:07:40 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-09-15 11:11:32 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
2011-03-05 10:49:24 -05:00
|
|
|
#include <meta/keybindings.h>
|
|
|
|
|
2010-09-01 20:48:11 -04:00
|
|
|
#include "shell-wm-private.h"
|
2008-11-21 09:02:09 -05:00
|
|
|
#include "shell-global.h"
|
|
|
|
|
|
|
|
struct _ShellWM {
|
|
|
|
GObject parent;
|
|
|
|
|
2010-10-19 14:55:43 -04:00
|
|
|
MetaPlugin *plugin;
|
2008-11-21 09:02:09 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Signals */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MINIMIZE,
|
|
|
|
MAXIMIZE,
|
|
|
|
UNMAXIMIZE,
|
|
|
|
MAP,
|
|
|
|
DESTROY,
|
|
|
|
SWITCH_WORKSPACE,
|
|
|
|
KILL_SWITCH_WORKSPACE,
|
2010-06-16 17:28:57 -04:00
|
|
|
KILL_WINDOW_EFFECTS,
|
2012-08-20 04:38:13 -04:00
|
|
|
FILTER_KEYBINDING,
|
2013-08-17 11:42:39 -04:00
|
|
|
CONFIRM_DISPLAY_CHANGE,
|
2008-11-21 09:02:09 -05:00
|
|
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE(ShellWM, shell_wm, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
static guint shell_wm_signals [LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_wm_init (ShellWM *wm)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_wm_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (shell_wm_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_wm_class_init (ShellWMClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = shell_wm_finalize;
|
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
shell_wm_signals[MINIMIZE] =
|
|
|
|
g_signal_new ("minimize",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2008-12-28 23:44:03 -05:00
|
|
|
G_TYPE_NONE, 1,
|
2010-10-19 14:55:43 -04:00
|
|
|
META_TYPE_WINDOW_ACTOR);
|
2008-12-28 23:44:03 -05:00
|
|
|
shell_wm_signals[MAXIMIZE] =
|
|
|
|
g_signal_new ("maximize",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2008-12-28 23:44:03 -05:00
|
|
|
G_TYPE_NONE, 5,
|
2010-10-19 14:55:43 -04:00
|
|
|
META_TYPE_WINDOW_ACTOR, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT);
|
2008-12-28 23:44:03 -05:00
|
|
|
shell_wm_signals[UNMAXIMIZE] =
|
|
|
|
g_signal_new ("unmaximize",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2012-02-17 10:33:44 -05:00
|
|
|
G_TYPE_NONE, 5,
|
2010-10-19 14:55:43 -04:00
|
|
|
META_TYPE_WINDOW_ACTOR, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT);
|
2008-12-28 23:44:03 -05:00
|
|
|
shell_wm_signals[MAP] =
|
|
|
|
g_signal_new ("map",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2008-12-28 23:44:03 -05:00
|
|
|
G_TYPE_NONE, 1,
|
2010-10-19 14:55:43 -04:00
|
|
|
META_TYPE_WINDOW_ACTOR);
|
2008-12-28 23:44:03 -05:00
|
|
|
shell_wm_signals[DESTROY] =
|
|
|
|
g_signal_new ("destroy",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2008-12-28 23:44:03 -05:00
|
|
|
G_TYPE_NONE, 1,
|
2010-10-19 14:55:43 -04:00
|
|
|
META_TYPE_WINDOW_ACTOR);
|
2008-11-21 09:02:09 -05:00
|
|
|
shell_wm_signals[SWITCH_WORKSPACE] =
|
|
|
|
g_signal_new ("switch-workspace",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2008-11-21 09:02:09 -05:00
|
|
|
G_TYPE_NONE, 3,
|
|
|
|
G_TYPE_INT, G_TYPE_INT, G_TYPE_INT);
|
|
|
|
shell_wm_signals[KILL_SWITCH_WORKSPACE] =
|
|
|
|
g_signal_new ("kill-switch-workspace",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2008-11-21 09:02:09 -05:00
|
|
|
G_TYPE_NONE, 0);
|
2010-06-16 17:28:57 -04:00
|
|
|
shell_wm_signals[KILL_WINDOW_EFFECTS] =
|
|
|
|
g_signal_new ("kill-window-effects",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
2011-10-18 18:19:32 -04:00
|
|
|
NULL, NULL, NULL,
|
2010-06-16 17:28:57 -04:00
|
|
|
G_TYPE_NONE, 1,
|
2010-10-19 14:55:43 -04:00
|
|
|
META_TYPE_WINDOW_ACTOR);
|
2012-08-20 04:38:13 -04:00
|
|
|
shell_wm_signals[FILTER_KEYBINDING] =
|
|
|
|
g_signal_new ("filter-keybinding",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
g_signal_accumulator_true_handled, NULL, NULL,
|
|
|
|
G_TYPE_BOOLEAN, 1,
|
|
|
|
META_TYPE_KEY_BINDING);
|
2013-08-17 11:42:39 -04:00
|
|
|
shell_wm_signals[CONFIRM_DISPLAY_CHANGE] =
|
|
|
|
g_signal_new ("confirm-display-change",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
2008-11-21 09:02:09 -05:00
|
|
|
}
|
|
|
|
|
2008-12-22 16:05:08 -05:00
|
|
|
void
|
|
|
|
_shell_wm_switch_workspace (ShellWM *wm,
|
|
|
|
gint from,
|
|
|
|
gint to,
|
|
|
|
MetaMotionDirection direction)
|
2008-11-21 09:02:09 -05:00
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[SWITCH_WORKSPACE], 0,
|
|
|
|
from, to, direction);
|
2008-11-21 16:34:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* shell_wm_completed_switch_workspace:
|
|
|
|
* @wm: the ShellWM
|
|
|
|
*
|
|
|
|
* The plugin must call this when it has finished switching the
|
|
|
|
* workspace.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
shell_wm_completed_switch_workspace (ShellWM *wm)
|
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
meta_plugin_switch_workspace_completed (wm->plugin);
|
2008-11-21 09:02:09 -05:00
|
|
|
}
|
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
/**
|
2012-04-06 10:34:52 -04:00
|
|
|
* shell_wm_completed_minimize:
|
2008-12-28 23:44:03 -05:00
|
|
|
* @wm: the ShellWM
|
2010-10-19 14:55:43 -04:00
|
|
|
* @actor: the MetaWindowActor actor
|
2008-12-28 23:44:03 -05:00
|
|
|
*
|
|
|
|
* The plugin must call this when it has completed a window minimize effect.
|
|
|
|
**/
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
shell_wm_completed_minimize (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
meta_plugin_minimize_completed (wm->plugin, actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-06 10:34:52 -04:00
|
|
|
* shell_wm_completed_maximize:
|
2008-12-28 23:44:03 -05:00
|
|
|
* @wm: the ShellWM
|
2010-10-19 14:55:43 -04:00
|
|
|
* @actor: the MetaWindowActor actor
|
2008-12-28 23:44:03 -05:00
|
|
|
*
|
|
|
|
* The plugin must call this when it has completed a window maximize effect.
|
|
|
|
**/
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
shell_wm_completed_maximize (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
meta_plugin_maximize_completed (wm->plugin, actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-06 10:34:52 -04:00
|
|
|
* shell_wm_completed_unmaximize:
|
2008-12-28 23:44:03 -05:00
|
|
|
* @wm: the ShellWM
|
2010-10-19 14:55:43 -04:00
|
|
|
* @actor: the MetaWindowActor actor
|
2008-12-28 23:44:03 -05:00
|
|
|
*
|
|
|
|
* The plugin must call this when it has completed a window unmaximize effect.
|
|
|
|
**/
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
shell_wm_completed_unmaximize (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
meta_plugin_unmaximize_completed (wm->plugin, actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-06 10:34:52 -04:00
|
|
|
* shell_wm_completed_map:
|
2008-12-28 23:44:03 -05:00
|
|
|
* @wm: the ShellWM
|
2010-10-19 14:55:43 -04:00
|
|
|
* @actor: the MetaWindowActor actor
|
2008-12-28 23:44:03 -05:00
|
|
|
*
|
|
|
|
* The plugin must call this when it has completed a window map effect.
|
|
|
|
**/
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
shell_wm_completed_map (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
meta_plugin_map_completed (wm->plugin, actor);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-06 10:34:52 -04:00
|
|
|
* shell_wm_completed_destroy:
|
2008-12-28 23:44:03 -05:00
|
|
|
* @wm: the ShellWM
|
2010-10-19 14:55:43 -04:00
|
|
|
* @actor: the MetaWindowActor actor
|
2008-12-28 23:44:03 -05:00
|
|
|
*
|
|
|
|
* The plugin must call this when it has completed a window destroy effect.
|
|
|
|
**/
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
shell_wm_completed_destroy (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
2010-10-19 14:55:43 -04:00
|
|
|
meta_plugin_destroy_completed (wm->plugin, actor);
|
2010-06-16 17:28:57 -04:00
|
|
|
}
|
|
|
|
|
2013-08-17 11:42:39 -04:00
|
|
|
/**
|
|
|
|
* shell_wm_complete_display_change:
|
|
|
|
* @wm: the ShellWM
|
|
|
|
* @ok: if the new configuration was OK
|
|
|
|
*
|
|
|
|
* The plugin must call this after the user responded to the confirmation dialog.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
shell_wm_complete_display_change (ShellWM *wm,
|
|
|
|
gboolean ok)
|
|
|
|
{
|
|
|
|
meta_plugin_complete_display_change (wm->plugin, ok);
|
|
|
|
}
|
|
|
|
|
2010-06-16 17:28:57 -04:00
|
|
|
void
|
|
|
|
_shell_wm_kill_switch_workspace (ShellWM *wm)
|
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[KILL_SWITCH_WORKSPACE], 0);
|
2008-12-28 23:44:03 -05:00
|
|
|
}
|
2008-11-21 16:34:10 -05:00
|
|
|
|
2008-12-22 16:05:08 -05:00
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
_shell_wm_kill_window_effects (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-11-21 09:02:09 -05:00
|
|
|
{
|
2010-06-16 17:28:57 -04:00
|
|
|
g_signal_emit (wm, shell_wm_signals[KILL_WINDOW_EFFECTS], 0, actor);
|
2008-11-21 09:02:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-28 23:44:03 -05:00
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
_shell_wm_minimize (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[MINIMIZE], 0, actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
_shell_wm_maximize (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor,
|
|
|
|
int target_x,
|
|
|
|
int target_y,
|
|
|
|
int target_width,
|
|
|
|
int target_height)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[MAXIMIZE], 0, actor, target_x, target_y, target_width, target_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
_shell_wm_unmaximize (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor,
|
|
|
|
int target_x,
|
|
|
|
int target_y,
|
|
|
|
int target_width,
|
|
|
|
int target_height)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[UNMAXIMIZE], 0, actor, target_x, target_y, target_width, target_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
_shell_wm_map (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[MAP], 0, actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-10-19 14:55:43 -04:00
|
|
|
_shell_wm_destroy (ShellWM *wm,
|
|
|
|
MetaWindowActor *actor)
|
2008-12-28 23:44:03 -05:00
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[DESTROY], 0, actor);
|
|
|
|
}
|
|
|
|
|
2012-08-20 04:38:13 -04:00
|
|
|
gboolean
|
|
|
|
_shell_wm_filter_keybinding (ShellWM *wm,
|
|
|
|
MetaKeyBinding *binding)
|
|
|
|
{
|
|
|
|
gboolean rv;
|
|
|
|
|
|
|
|
g_signal_emit (wm, shell_wm_signals[FILTER_KEYBINDING], 0, binding, &rv);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2013-08-17 11:42:39 -04:00
|
|
|
void
|
|
|
|
_shell_wm_confirm_display_change (ShellWM *wm)
|
|
|
|
{
|
|
|
|
g_signal_emit (wm, shell_wm_signals[CONFIRM_DISPLAY_CHANGE], 0);
|
|
|
|
}
|
|
|
|
|
2008-11-21 09:02:09 -05:00
|
|
|
/**
|
|
|
|
* shell_wm_new:
|
2010-10-19 14:55:43 -04:00
|
|
|
* @plugin: the #MetaPlugin
|
2008-11-21 09:02:09 -05:00
|
|
|
*
|
|
|
|
* Creates a new window management interface by hooking into @plugin.
|
|
|
|
*
|
|
|
|
* Return value: the new window-management interface
|
|
|
|
**/
|
|
|
|
ShellWM *
|
2010-10-19 14:55:43 -04:00
|
|
|
shell_wm_new (MetaPlugin *plugin)
|
2008-11-21 09:02:09 -05:00
|
|
|
{
|
2008-11-21 16:34:10 -05:00
|
|
|
ShellWM *wm;
|
|
|
|
|
|
|
|
wm = g_object_new (SHELL_TYPE_WM, NULL);
|
|
|
|
wm->plugin = plugin;
|
|
|
|
|
|
|
|
return wm;
|
2008-11-21 09:02:09 -05:00
|
|
|
}
|