summaryrefslogtreecommitdiff
diff options
-rw-r--r--configure.ac1
-rw-r--r--unity-private/Makefile.am3
-rw-r--r--unity-private/gesture/gesture-dispatcher.vala4
-rw-r--r--unity-private/testing/test-window.vala2
4 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 3a63ccb1e..10b3d1885 100644
--- a/configure.ac
+++ b/configure.ac
@@ -110,6 +110,7 @@ PKG_CHECK_MODULES(BASE,
gdk-x11-2.0 >= $GTK_REQUIRED
gio-2.0 >= $GTK_REQUIRED
gee-1.0
+ libgeis
gconf-2.0
gnome-desktop-2.0
indicator
diff --git a/unity-private/Makefile.am b/unity-private/Makefile.am
index 5083477c5..2f9c7be3f 100644
--- a/unity-private/Makefile.am
+++ b/unity-private/Makefile.am
@@ -125,6 +125,8 @@ launcher_sources = \
gesture_sources = \
gesture/gesture-dispatcher.vala \
+ gesture/gesture-dispatcher-geis.vala \
+ gesture/gesture-dispatcher-geis-glu.vala \
gesture/gesture-dispatcher-xcb.vala \
gesture/gesture-dispatcher-xcb-glu.vala \
gesture/gesture-event.vala
@@ -148,6 +150,7 @@ libunity_private_la_VALASOURCES = \
libunity_private_la_SOURCES = \
gesture/gesture.c \
gesture/gesture.h \
+ gesture/gesture-dispatcher-geis-glue.c \
gesture/gesture-dispatcher-xcb-glue.c \
unity-utils.c \
unity-utils.h \
diff --git a/unity-private/gesture/gesture-dispatcher.vala b/unity-private/gesture/gesture-dispatcher.vala
index 2291b1ca0..0e1783587 100644
--- a/unity-private/gesture/gesture-dispatcher.vala
+++ b/unity-private/gesture/gesture-dispatcher.vala
@@ -22,9 +22,5 @@ namespace Unity.Gesture
public abstract class Dispatcher : GLib.Object
{
public signal void gesture (Gesture.Event event);
-
- public signal void tap (int n_fingers,
- uint32 duration,
- uint32 timestamp);
}
}
diff --git a/unity-private/testing/test-window.vala b/unity-private/testing/test-window.vala
index 811af7701..3d3319579 100644
--- a/unity-private/testing/test-window.vala
+++ b/unity-private/testing/test-window.vala
@@ -156,7 +156,7 @@ namespace Unity.Testing
this.wnck_screen.active_window_changed.connect (this.on_active_window_changed);
}
- gesture_dispatcher = new Gesture.XCBDispatcher ();
+ gesture_dispatcher = new Gesture.GeisDispatcher ();
END_FUNCTION ();
}