[gnome-flashback/wip/segeiger/inputmethods: 4/6] Print available engine names and use timeout to change engine to german



commit 2401e95b541b576e54f5401def19055f42923e49
Author: Sebastian Geiger <sbastig gmx net>
Date:   Tue Sep 15 00:41:25 2015 +0200

    Print available engine names and use timeout to change engine to german

 gnome-flashback/libinput-sources/gf-ibus-manager.c |    1 +
 .../libinput-sources/gf-input-sources.c            |   35 ++++++++++++++++++++
 2 files changed, 36 insertions(+), 0 deletions(-)
---
diff --git a/gnome-flashback/libinput-sources/gf-ibus-manager.c 
b/gnome-flashback/libinput-sources/gf-ibus-manager.c
index c4c7a56..e939c2b 100644
--- a/gnome-flashback/libinput-sources/gf-ibus-manager.c
+++ b/gnome-flashback/libinput-sources/gf-ibus-manager.c
@@ -114,6 +114,7 @@ add_to_engines_cb (IBusEngineDesc *engineDescription,
                    GfIBusManager  *manager)
 {
   const char *name = ibus_engine_desc_get_name (engineDescription);
+  g_message ("EngineName: %s", name);
   g_hash_table_insert (manager->engines, (gpointer) name, engineDescription);
 }
 
diff --git a/gnome-flashback/libinput-sources/gf-input-sources.c 
b/gnome-flashback/libinput-sources/gf-input-sources.c
index 6926ffe..0eb43a5 100644
--- a/gnome-flashback/libinput-sources/gf-input-sources.c
+++ b/gnome-flashback/libinput-sources/gf-input-sources.c
@@ -71,6 +71,38 @@ gf_input_sources_class_init (GfInputSourcesClass *sources_class)
 }
 
 static void
+gf_callback (GObject *object, GAsyncResult *result, gpointer user_data)
+{
+  IBusBus *ibus;
+  g_return_if_fail (IBUS_IS_BUS (user_data));
+
+  ibus = IBUS_BUS (object);
+
+  if (result) {
+    GError *error;
+    gboolean success;
+    error = NULL;
+    success = ibus_bus_set_global_engine_async_finish (ibus, result, &error);
+    if (error) {
+      g_log ("gnome-flashback", G_LOG_LEVEL_ERROR, "Error changing engine: %s", error->message);
+      g_error_free (error);
+    }
+    g_message ("Success: %s", success ? "true" : "false");
+  }
+}
+
+static gboolean
+change_ime(gpointer user_data)
+{
+  GfIBusManager *manager;
+
+  manager = GF_IBUS_MANAGER (user_data);
+
+  gf_ibus_manager_set_engine (manager, "xkb:de::ger", gf_callback);
+  return G_SOURCE_REMOVE;
+};
+
+static void
 gf_input_sources_init (GfInputSources *sources) {
   sources->manager = gf_ibus_manager_new ();
 
@@ -78,6 +110,9 @@ gf_input_sources_init (GfInputSources *sources) {
   g_signal_connect(sources->manager, "properties-registered", G_CALLBACK (properties_registered), sources);
   g_signal_connect(sources->manager, "property-updated", G_CALLBACK (property_updated), sources);
   g_signal_connect(sources->manager, "set-content-type", G_CALLBACK (set_content_type), sources);
+
+
+  g_timeout_add (2000, change_ime, sources->manager);
 }
 
 GfInputSources *


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]