[gnome-shell] layout: Port to the new mutter-based barrier wrappers
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] layout: Port to the new mutter-based barrier wrappers
- Date: Fri, 8 Feb 2013 19:28:32 +0000 (UTC)
commit c0279df3c6c940d9a1aba1fdd9c2a4e92c017233
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Mon Jul 30 14:02:33 2012 -0300
layout: Port to the new mutter-based barrier wrappers
As pressure barriers need a signalling mechanism to provide
information about when and where they are hit, an object which
provides a signal is a more appropriate abstraction for a pointer
barrier than a functional ID-based approach. Mutter has gained
pointer barrier wrappers, so use its objects instead of ours.
https://bugzilla.gnome.org/show_bug.cgi?id=677215
configure.ac | 8 --------
js/ui/layout.js | 37 ++++++++++++++++++++-----------------
src/shell-global.c | 48 ------------------------------------------------
src/shell-global.h | 9 ---------
4 files changed, 20 insertions(+), 82 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index dd3e54a..0ed832d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -132,14 +132,6 @@ AC_SUBST([GNOME_KEYBINDINGS_KEYSDIR])
GOBJECT_INTROSPECTION_CHECK([$GOBJECT_INTROSPECTION_MIN_VERSION])
-saved_CFLAGS=$CFLAGS
-saved_LIBS=$LIBS
-CFLAGS=$GNOME_SHELL_CFLAGS
-LIBS=$GNOME_SHELL_LIBS
-AC_CHECK_FUNCS(XFixesCreatePointerBarrier)
-CFLAGS=$saved_CFLAGS
-LIBS=$saved_LIBS
-
MUTTER_GIR_DIR=`$PKG_CONFIG --variable=girdir libmutter`
MUTTER_TYPELIB_DIR=`$PKG_CONFIG --variable=typelibdir libmutter`
AC_SUBST(MUTTER_GIR_DIR)
diff --git a/js/ui/layout.js b/js/ui/layout.js
index 6ce509c..09e14fe 100644
--- a/js/ui/layout.js
+++ b/js/ui/layout.js
@@ -112,8 +112,8 @@ const LayoutManager = new Lang.Class({
this._keyboardIndex = -1;
this._hotCorners = [];
this._background = null;
- this._leftPanelBarrier = 0;
- this._rightPanelBarrier = 0;
+ this._leftPanelBarrier = null;
+ this._rightPanelBarrier = null;
this._inOverview = false;
this._updateRegionIdle = 0;
@@ -289,24 +289,27 @@ const LayoutManager = new Lang.Class({
},
_updatePanelBarriers: function() {
- if (this._leftPanelBarrier)
- global.destroy_pointer_barrier(this._leftPanelBarrier);
- if (this._rightPanelBarrier)
- global.destroy_pointer_barrier(this._rightPanelBarrier);
+ if (this._leftPanelBarrier) {
+ this._leftPanelBarrier.destroy();
+ this._leftPanelBarrier = null;
+ }
+
+ if (this._rightPanelBarrier) {
+ this._rightPanelBarrier.destroy();
+ this._rightPanelBarrier = null;
+ }
if (this.panelBox.height) {
let primary = this.primaryMonitor;
- this._leftPanelBarrier =
- global.create_pointer_barrier(primary.x, primary.y,
- primary.x, primary.y + this.panelBox.height,
- 1 /* BarrierPositiveX */);
- this._rightPanelBarrier =
- global.create_pointer_barrier(primary.x + primary.width, primary.y,
- primary.x + primary.width, primary.y + this.panelBox.height,
- 4 /* BarrierNegativeX */);
- } else {
- this._leftPanelBarrier = 0;
- this._rightPanelBarrier = 0;
+
+ this._leftPanelBarrier = new Meta.Barrier({ display: global.display,
+ x1: primary.x, y1: primary.y,
+ x2: primary.x, y2: primary.y + this.panelBox.height,
+ directions: Meta.BarrierDirection.POSITIVE_X });
+ this._rightPanelBarrier = new Meta.Barrier({ display: global.display,
+ x1: primary.x + primary.width, y1: primary.y,
+ x2: primary.x + primary.width, y2: primary.y + this.panelBox.height,
+ directions: Meta.BarrierDirection.NEGATIVE_X });
}
},
diff --git a/src/shell-global.c b/src/shell-global.c
index 1220346..7344334 100644
--- a/src/shell-global.c
+++ b/src/shell-global.c
@@ -1002,54 +1002,6 @@ shell_global_end_modal (ShellGlobal *global,
meta_plugin_end_modal (global->plugin, timestamp);
}
-/**
- * shell_global_create_pointer_barrier:
- * @global: a #ShellGlobal
- * @x1: left X coordinate
- * @y1: top Y coordinate
- * @x2: right X coordinate
- * @y2: bottom Y coordinate
- * @directions: The directions we're allowed to pass through
- *
- * If supported by X creates a pointer barrier.
- *
- * Return value: value you can pass to shell_global_destroy_pointer_barrier()
- */
-guint32
-shell_global_create_pointer_barrier (ShellGlobal *global,
- int x1, int y1, int x2, int y2,
- int directions)
-{
-#if HAVE_XFIXESCREATEPOINTERBARRIER
- return (guint32)
- XFixesCreatePointerBarrier (global->xdisplay,
- DefaultRootWindow (global->xdisplay),
- x1, y1,
- x2, y2,
- directions,
- 0, NULL);
-#else
- return 0;
-#endif
-}
-
-/**
- * shell_global_destroy_pointer_barrier:
- * @global: a #ShellGlobal
- * @barrier: a pointer barrier
- *
- * Destroys the @barrier created by shell_global_create_pointer_barrier().
- */
-void
-shell_global_destroy_pointer_barrier (ShellGlobal *global, guint32 barrier)
-{
-#if HAVE_XFIXESCREATEPOINTERBARRIER
- g_return_if_fail (barrier > 0);
-
- XFixesDestroyPointerBarrier (global->xdisplay, (PointerBarrier)barrier);
-#endif
-}
-
/* Code to close all file descriptors before we exec; copied from gspawn.c in GLib.
*
* Authors: Padraig O'Briain, Matthias Clasen, Lennart Poettering
diff --git a/src/shell-global.h b/src/shell-global.h
index 2dd98ef..88b40be 100644
--- a/src/shell-global.h
+++ b/src/shell-global.h
@@ -71,15 +71,6 @@ void shell_global_set_cursor (ShellGlobal *global,
ShellCursor type);
void shell_global_unset_cursor (ShellGlobal *global);
-guint32 shell_global_create_pointer_barrier (ShellGlobal *global,
- int x1,
- int y1,
- int x2,
- int y2,
- int directions);
-void shell_global_destroy_pointer_barrier (ShellGlobal *global,
- guint32 barrier);
-
void shell_global_get_pointer (ShellGlobal *global,
int *x,
int *y,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]