[gtk+] gtk: Add test program for keycode parsing
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] gtk: Add test program for keycode parsing
- Date: Fri, 4 Nov 2011 16:41:52 +0000 (UTC)
commit 780a92b5592693878809fa949cb14d081b3601e5
Author: Bastien Nocera <hadess hadess net>
Date: Thu Nov 3 18:53:19 2011 +0000
gtk: Add test program for keycode parsing
https://bugzilla.gnome.org/show_bug.cgi?id=662755
gtk/tests/Makefile.am | 4 +++
gtk/tests/accel.c | 73 +++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 77 insertions(+), 0 deletions(-)
---
diff --git a/gtk/tests/Makefile.am b/gtk/tests/Makefile.am
index be0847a..f71e346 100644
--- a/gtk/tests/Makefile.am
+++ b/gtk/tests/Makefile.am
@@ -54,6 +54,10 @@ TEST_PROGS += floating
floating_SOURCES = floating.c
floating_LDADD = $(progs_ldadd)
+TEST_PROGS += accel
+accel_SOURCES = accel.c
+accel_LDADD = $(progs_ldadd)
+
#TEST_PROGS += object
#object_SOURCES = object.c pixbuf-init.c
#object_LDADD = $(progs_ldadd)
diff --git a/gtk/tests/accel.c b/gtk/tests/accel.c
new file mode 100644
index 0000000..43e1425
--- /dev/null
+++ b/gtk/tests/accel.c
@@ -0,0 +1,73 @@
+/* accel.c - test accel parsing
+ * Copyright (C) 2011 Bastien Nocera <hadess hadess net>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+#include <gtk/gtk.h>
+#include <locale.h>
+
+static void
+test_one_accel (const char *accel,
+ const char *exp_label)
+{
+ guint accel_key;
+ GdkModifierType mods;
+ guint *keycodes;
+ char *label, *name;
+
+ gtk_accelerator_parse_with_keycode (accel,
+ &accel_key,
+ &keycodes,
+ &mods);
+
+ g_assert (accel_key != 0);
+ g_assert (keycodes);
+ g_assert (keycodes[0] != 0);
+
+ label = gtk_accelerator_get_label_with_keycode (NULL,
+ accel_key,
+ *keycodes,
+ mods);
+
+ g_assert_cmpstr (label, ==, exp_label);
+
+ name = gtk_accelerator_name_with_keycode (NULL,
+ accel_key,
+ *keycodes,
+ mods);
+ g_assert_cmpstr (name, ==, accel);
+
+ g_free (keycodes);
+ g_free (label);
+ g_free (name);
+}
+
+static void
+accel (void)
+{
+ test_one_accel ("<Primary><Alt>z", "Ctrl+Alt+Z");
+}
+
+int
+main (int argc,
+ char *argv[])
+{
+ setlocale (LC_ALL, "en_GB.UTF-8");
+
+ gtk_test_init (&argc, &argv);
+ g_test_add_func ("/accel", accel);
+ return g_test_run();
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]