[gnome-flashback/wip/segeiger/inputmethods: 3/8] input-sources: initial implementation for GfInputSource



commit 13cb8cb7e7e6e98752ed9c57232bdc569eb3d130
Author: Sebastian Geiger <sbastig gmx net>
Date:   Fri Sep 18 02:47:12 2015 +0200

    input-sources: initial implementation for GfInputSource

 gnome-flashback/libinput-sources/Makefile.am       |    2 +
 gnome-flashback/libinput-sources/gf-input-source.c |  317 ++++++++++++++++++++
 gnome-flashback/libinput-sources/gf-input-source.h |   33 ++
 3 files changed, 352 insertions(+), 0 deletions(-)
---
diff --git a/gnome-flashback/libinput-sources/Makefile.am b/gnome-flashback/libinput-sources/Makefile.am
index 0e62ca2..4d62710 100644
--- a/gnome-flashback/libinput-sources/Makefile.am
+++ b/gnome-flashback/libinput-sources/Makefile.am
@@ -19,6 +19,8 @@ libinput_sources_la_SOURCES = \
        gf-candidate-popup.h \
        gf-ibus-manager.c \
        gf-ibus-manager.h \
+       gf-input-source.c \
+       gf-input-source.h \
        gf-input-sources.c \
        gf-input-sources.h \
        gf-input-source-manager.c \
diff --git a/gnome-flashback/libinput-sources/gf-input-source.c 
b/gnome-flashback/libinput-sources/gf-input-source.c
new file mode 100644
index 0000000..b255b95
--- /dev/null
+++ b/gnome-flashback/libinput-sources/gf-input-source.c
@@ -0,0 +1,317 @@
+/*
+ * Copyright (C) 2015 Sebastian Geiger
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "config.h"
+
+#include <ibus-1.0/ibus.h>
+#include <string.h>
+
+#include "gf-ibus-manager.h"
+#include "gf-input-source.h"
+
+struct _GfInputSource
+{
+  GObject        parent;
+
+  GfIBusManager *ibus_manager;
+
+  gchar         *id;
+  gchar         *display_name;
+  gchar         *short_name;
+  gint           index;
+
+  gchar         *xkb_id;
+};
+
+G_DEFINE_TYPE (GfInputSource, gf_input_source, G_TYPE_OBJECT)
+
+enum
+{
+  SIGNAL_CHANGED,
+  SIGNAL_ACTIVATE,
+
+  SIGNAL_LAST
+};
+
+static guint signals[SIGNAL_LAST] = { 0 };
+
+enum
+{
+  PROP_0,
+
+  PROP_IBUS_MANAGER,
+
+  PROP_ID,
+  PROP_DISPLAY_NAME,
+  PROP_SHORT_NAME,
+  PROP_INDEX,
+
+  LAST_PROP
+};
+
+static GParamSpec *properties[LAST_PROP] = { NULL };
+
+/**
+ * get_xkb_id:
+ * @input_source: The input source for which the xkb_id is retrieved.
+ *
+ * Returns: The xkb_id of the @input_source. The result must be freed.
+ */
+static gchar *
+get_xkb_id (GfInputSource *source)
+{
+  IBusEngineDesc *engine_desc;
+  const gchar *layout_variant;
+  const gchar *layout;
+
+  engine_desc = gf_ibus_manager_get_engine_desc (source->ibus_manager,
+                                                 source->id);
+
+  if (!engine_desc)
+    {
+      return g_strdup (source->id);
+    }
+
+  layout = ibus_engine_desc_get_layout (engine_desc);
+  layout_variant = ibus_engine_desc_get_layout_variant (engine_desc);
+
+  if (layout_variant && strlen (layout_variant) > 0)
+    {
+      return g_strdup_printf ("%s+%s", layout, layout_variant);
+    }
+  else
+    {
+      return g_strdup (layout);
+    }
+}
+
+static void
+gf_input_source_set_id (GfInputSource     *source,
+                        const char *const  id)
+{
+  g_free (source->id);
+  source->id = g_strdup (id);
+}
+
+static void
+gf_input_source_set_display_name (GfInputSource     *source,
+                                  const char *const  display_name)
+{
+  g_free (source->display_name);
+  source->display_name = g_strdup (display_name);
+}
+
+static void
+gf_input_source_set_short_name (GfInputSource     *source,
+                                const char *const  short_name)
+{
+  g_free (source->short_name);
+  source->short_name = g_strdup (short_name);
+  g_signal_emit (source, SIGNAL_CHANGED, 0, short_name);
+}
+
+static void
+gf_input_source_set_index (GfInputSource *source,
+                           gint           index)
+{
+  source->index = index;
+}
+
+
+static void
+gf_input_source_get_property (GObject    *object,
+                              guint       prop_id,
+                              GValue     *value,
+                              GParamSpec *pspec)
+{
+  GfInputSource *source;
+
+  source = GF_INPUT_SOURCE (object);
+
+  switch (prop_id)
+    {
+      case PROP_IBUS_MANAGER:
+        g_value_set_object (value, source->ibus_manager);
+        break;
+
+      case PROP_ID:
+        g_value_set_string (value, source->id);
+        break;
+
+      case PROP_DISPLAY_NAME:
+        g_value_set_string (value, source->display_name);
+        break;
+
+      case PROP_SHORT_NAME:
+        g_value_set_string (value, source->short_name);
+        break;
+
+      case PROP_INDEX:
+        g_value_set_int (value, source->index);
+        break;
+
+      default:
+        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+        break;
+    }
+}
+
+static void
+gf_input_source_set_property (GObject      *object,
+                              guint         prop_id,
+                              const GValue *value,
+                              GParamSpec   *pspec)
+{
+  GfInputSource *source;
+
+  source = GF_INPUT_SOURCE (object);
+
+  switch (prop_id)
+    {
+      case PROP_IBUS_MANAGER:
+        source->ibus_manager = g_value_get_object (value);
+        break;
+
+      case PROP_ID:
+        gf_input_source_set_id (source, g_value_get_string (value));
+        break;
+
+      case PROP_DISPLAY_NAME:
+        gf_input_source_set_display_name (source,
+                                          g_value_get_string (value));
+        break;
+
+      case PROP_SHORT_NAME:
+        gf_input_source_set_short_name (source, g_value_get_string (value));
+        break;
+
+      case PROP_INDEX:
+        gf_input_source_set_index (source, g_value_get_int (value));
+        break;
+
+      default:
+        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+        break;
+    }
+}
+
+static void
+gf_input_source_finalize (GObject *object)
+{
+  GfInputSource *source;
+
+  source = GF_INPUT_SOURCE (object);
+
+  g_free ((gpointer) source->id);
+  g_free ((gpointer) source->display_name);
+  g_free ((gpointer) source->short_name);
+  g_free ((gpointer) source->xkb_id);
+
+  G_OBJECT_CLASS (gf_input_source_parent_class)->finalize (object);
+}
+
+static void
+gf_input_source_constructed (GObject *object)
+{
+  GfInputSource *source;
+
+  source = GF_INPUT_SOURCE (object);
+
+  source->xkb_id = get_xkb_id (source);
+}
+
+static void
+gf_input_source_class_init (GfInputSourceClass *source_class)
+{
+  GObjectClass *object_class;
+
+  object_class = G_OBJECT_CLASS (source_class);
+
+  object_class->get_property = gf_input_source_get_property;
+  object_class->set_property = gf_input_source_set_property;
+  object_class->finalize = gf_input_source_finalize;
+  object_class->constructed = gf_input_source_constructed;
+
+  signals[SIGNAL_ACTIVATE] =
+    g_signal_new ("activate",
+                  G_OBJECT_CLASS_TYPE (source_class),
+                  G_SIGNAL_RUN_LAST,
+                  0, NULL, NULL, NULL,
+                  G_TYPE_NONE, 1, G_TYPE_STRV);
+
+  signals[SIGNAL_CHANGED] =
+    g_signal_new ("changed",
+                  G_OBJECT_CLASS_TYPE (source_class),
+                  G_SIGNAL_RUN_LAST,
+                  0, NULL, NULL, NULL,
+                  G_TYPE_NONE, 0);
+
+  properties[PROP_ID] =
+    g_param_spec_string ("id", "ID", "The ID of the input source",
+                         NULL, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+                         G_PARAM_STATIC_STRINGS);
+
+  properties[PROP_DISPLAY_NAME] =
+    g_param_spec_string ("display-name", "Display name",
+                         "The display name of the input source",
+                         NULL, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+                         G_PARAM_STATIC_STRINGS);
+
+  properties[PROP_SHORT_NAME] =
+    g_param_spec_string ("short-name", "Short name",
+                         "The short name of the input source",
+                         NULL, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+                         G_PARAM_STATIC_STRINGS);
+
+  properties[PROP_INDEX] =
+    g_param_spec_uint ("index", "Index", "The index of the input source",
+                       0, G_MAXINT, 0,
+                       G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+                       G_PARAM_STATIC_STRINGS);
+
+  properties[PROP_IBUS_MANAGER] =
+      g_param_spec_object ("ibus-manager", "IBus Manager",
+                           "The instance of IBus Manager used by the input-sources module",
+                           GF_TYPE_IBUS_MANAGER,
+                           G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
+                           G_PARAM_STATIC_STRINGS);
+
+  g_object_class_install_properties (object_class, LAST_PROP, properties);
+}
+
+static void
+gf_input_source_init (GfInputSource *source)
+{
+
+}
+
+
+GfInputSource *
+gf_input_source_new (GfIBusManager *ibus_manager,
+                     const char    *id,
+                     const char    *display_name,
+                     const char    *short_name,
+                     guint          index)
+{
+  return g_object_new (GF_TYPE_INPUT_SOURCE,
+                       "id", id,
+                       "display-name", display_name,
+                       "short-name", short_name,
+                       "index", index,
+                       "ibus-manager", ibus_manager,
+                       NULL);
+}
\ No newline at end of file
diff --git a/gnome-flashback/libinput-sources/gf-input-source.h 
b/gnome-flashback/libinput-sources/gf-input-source.h
new file mode 100644
index 0000000..dbc1028
--- /dev/null
+++ b/gnome-flashback/libinput-sources/gf-input-source.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2015 Sebastian Geiger
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GF_INPUT_SOURCE_H
+#define GF_INPUT_SOURCE_H
+
+#include <glib-object.h>
+#include "gf-ibus-manager.h"
+
+#define GF_TYPE_INPUT_SOURCE gf_input_source_get_type ()
+G_DECLARE_FINAL_TYPE (GfInputSource, gf_input_source, GF, INPUT_SOURCE, GObject)
+
+GfInputSource *gf_input_source_new              (GfIBusManager     *ibus_manager,
+                                                 const char        *id,
+                                                 const char        *display_name,
+                                                 const char        *short_name,
+                                                 guint              index);
+
+#endif


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