2010-11-26 05:38:39 +00:00
|
|
|
From 154582485a21da5c8ecf09ca500fc58f7400c7d4 Mon Sep 17 00:00:00 2001
|
2010-11-12 09:51:00 +00:00
|
|
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
2010-11-26 05:38:39 +00:00
|
|
|
Date: Fri, 26 Nov 2010 14:13:17 +0900
|
2010-11-12 09:51:00 +00:00
|
|
|
Subject: [PATCH] Reload preload engines until users customize the list.
|
|
|
|
|
|
|
|
The idea is, if users don't customize the preload_engines with ibus-setup,
|
|
|
|
users would prefer to load the system default engines again by login.
|
|
|
|
The gconf value 'preload_engine_mode' is
|
2010-11-26 05:38:39 +00:00
|
|
|
IBUS_PRELOAD_ENGINE_MODE_USER by default.
|
2010-11-12 09:51:00 +00:00
|
|
|
If preload_engine_mode is IBUS_PRELOAD_ENGINE_MODE_LANG_RELATIVE,
|
|
|
|
ibus-daemon loads the system preload engines by langs.
|
|
|
|
If preload_engine_mode is IBUS_PRELOAD_ENGINE_MODE_USER,
|
|
|
|
ibus-daemon do not update the gconf value preload_engines.
|
|
|
|
On the other hand, if users enable the customized engine checkbutton
|
|
|
|
on ibus-setup, ibus-setup sets 'preload_engine_mode' as
|
|
|
|
IBUS_PRELOAD_ENGINE_MODE_USER and users can customize the value
|
|
|
|
'preload_engines'.
|
|
|
|
Loading system default may spend the startup time. If you mind it,
|
|
|
|
your dist may like to put TRUE in 'use_local_preload_engines' value.
|
|
|
|
---
|
2010-11-26 05:38:39 +00:00
|
|
|
bus/ibusimpl.c | 228 +++++++++++++++++++++++++++++++++++---------------
|
|
|
|
data/ibus.schemas.in | 13 +++
|
|
|
|
ibus/common.py | 6 ++
|
|
|
|
setup/main.py | 37 +++++++-
|
|
|
|
setup/setup.ui | 21 ++++-
|
|
|
|
src/ibustypes.h | 10 ++
|
|
|
|
6 files changed, 241 insertions(+), 74 deletions(-)
|
2010-11-12 09:51:00 +00:00
|
|
|
|
|
|
|
diff --git a/bus/ibusimpl.c b/bus/ibusimpl.c
|
2010-11-26 05:38:39 +00:00
|
|
|
index b045d7f..eb353c2 100644
|
2010-11-12 09:51:00 +00:00
|
|
|
--- a/bus/ibusimpl.c
|
|
|
|
+++ b/bus/ibusimpl.c
|
2010-11-26 05:38:39 +00:00
|
|
|
@@ -144,6 +144,9 @@ static void bus_ibus_impl_set_previous_engine
|
2010-11-12 09:51:00 +00:00
|
|
|
static void bus_ibus_impl_set_preload_engines
|
|
|
|
(BusIBusImpl *ibus,
|
|
|
|
GVariant *value);
|
|
|
|
+static void bus_ibus_impl_set_preload_engine_mode
|
|
|
|
+ (BusIBusImpl *ibus,
|
|
|
|
+ GVariant *value);
|
|
|
|
static void bus_ibus_impl_set_use_sys_layout
|
|
|
|
(BusIBusImpl *ibus,
|
|
|
|
GVariant *value);
|
2010-11-26 05:38:39 +00:00
|
|
|
@@ -264,6 +267,122 @@ _panel_destroy_cb (BusPanelProxy *panel,
|
|
|
|
g_object_unref (panel);
|
2010-11-12 09:51:00 +00:00
|
|
|
}
|
|
|
|
|
2010-11-26 05:38:39 +00:00
|
|
|
+static gint
|
|
|
|
+_engine_desc_cmp (IBusEngineDesc *desc1,
|
|
|
|
+ IBusEngineDesc *desc2)
|
2010-11-12 09:51:00 +00:00
|
|
|
+{
|
2010-11-26 05:38:39 +00:00
|
|
|
+ return - ((gint) ibus_engine_desc_get_rank (desc1)) +
|
|
|
|
+ ((gint) ibus_engine_desc_get_rank (desc2));
|
|
|
|
+}
|
2010-11-12 09:51:00 +00:00
|
|
|
+
|
2010-11-26 05:38:39 +00:00
|
|
|
+static gint
|
|
|
|
+_get_config_preload_engine_mode (BusIBusImpl *ibus)
|
|
|
|
+{
|
|
|
|
+ GVariant *variant = NULL;
|
|
|
|
+ gint preload_engine_mode = IBUS_PRELOAD_ENGINE_MODE_USER;
|
|
|
|
+
|
|
|
|
+ g_assert (BUS_IS_IBUS_IMPL (ibus));
|
|
|
|
+
|
|
|
|
+ if (ibus->config == NULL) {
|
|
|
|
+ return preload_engine_mode;
|
2010-11-12 09:51:00 +00:00
|
|
|
+ }
|
|
|
|
+
|
2010-11-26 05:38:39 +00:00
|
|
|
+ variant = ibus_config_get_value (ibus->config, "general",
|
|
|
|
+ "preload_engine_mode");
|
|
|
|
+ if (variant != NULL) {
|
|
|
|
+ if (g_variant_classify (variant) == G_VARIANT_CLASS_INT32) {
|
|
|
|
+ preload_engine_mode = g_variant_get_int32 (variant);
|
|
|
|
+ }
|
|
|
|
+ g_variant_unref (variant);
|
2010-11-12 09:51:00 +00:00
|
|
|
+ }
|
|
|
|
+
|
2010-11-26 05:38:39 +00:00
|
|
|
+ return preload_engine_mode;
|
2010-11-12 09:51:00 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void
|
2010-11-26 05:38:39 +00:00
|
|
|
+_set_preload_engines (BusIBusImpl *ibus,
|
|
|
|
+ GVariant *value)
|
|
|
|
+{
|
|
|
|
+ GList *engine_list = NULL;
|
|
|
|
+
|
|
|
|
+ g_assert (BUS_IS_IBUS_IMPL (ibus));
|
|
|
|
+
|
|
|
|
+ g_list_foreach (ibus->engine_list, (GFunc) g_object_unref, NULL);
|
|
|
|
+ g_list_free (ibus->engine_list);
|
|
|
|
+
|
|
|
|
+ if (value != NULL && g_variant_classify (value) == G_VARIANT_CLASS_ARRAY) {
|
|
|
|
+ GVariantIter iter;
|
|
|
|
+ g_variant_iter_init (&iter, value);
|
|
|
|
+ const gchar *engine_name = NULL;
|
|
|
|
+ while (g_variant_iter_loop (&iter, "&s", &engine_name)) {
|
|
|
|
+ IBusEngineDesc *engine = bus_registry_find_engine_by_name (ibus->registry, engine_name);
|
|
|
|
+ if (engine == NULL || g_list_find (engine_list, engine) != NULL)
|
|
|
|
+ continue;
|
|
|
|
+ engine_list = g_list_append (engine_list, engine);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (engine_list != NULL &&
|
|
|
|
+ ibus_config_get_value (ibus->config, "general",
|
|
|
|
+ "preload_engines") == NULL) {
|
|
|
|
+ ibus_config_set_value (ibus->config, "general",
|
|
|
|
+ "preload_engines", value);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ g_list_foreach (engine_list, (GFunc) g_object_ref, NULL);
|
|
|
|
+ ibus->engine_list = engine_list;
|
|
|
|
+
|
|
|
|
+ if (ibus->engine_list) {
|
|
|
|
+ BusComponent *component = bus_component_from_engine_desc ((IBusEngineDesc *) ibus->engine_list->data);
|
|
|
|
+ if (component && !bus_component_is_running (component)) {
|
|
|
|
+ bus_component_start (component, g_verbose);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ bus_ibus_impl_update_engines_hotkey_profile (ibus);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void
|
|
|
|
+_set_language_relative_preload_engines (BusIBusImpl *ibus)
|
|
|
|
+{
|
|
|
|
+ gchar *lang = NULL;
|
|
|
|
+ gchar *p = NULL;
|
|
|
|
+ GList *engines = NULL;
|
|
|
|
+ GList *list;
|
|
|
|
+ GVariantBuilder builder;
|
|
|
|
+
|
|
|
|
+ g_assert (BUS_IS_IBUS_IMPL (ibus));
|
|
|
|
+
|
|
|
|
+ lang = g_strdup (setlocale (LC_ALL, NULL));
|
|
|
|
+ p = index (lang, '.');
|
|
|
|
+ if (p) {
|
|
|
|
+ *p = '\0';
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ engines = bus_registry_get_engines_by_language (ibus->registry, lang);
|
|
|
|
+ if (engines == NULL) {
|
|
|
|
+ p = index (lang, '_');
|
|
|
|
+ if (p) {
|
|
|
|
+ *p = '\0';
|
|
|
|
+ engines = bus_registry_get_engines_by_language (ibus->registry, lang);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ g_free (lang);
|
|
|
|
+
|
|
|
|
+ /* sort engines by rank */
|
|
|
|
+ engines = g_list_sort (engines, (GCompareFunc) _engine_desc_cmp);
|
|
|
|
+
|
|
|
|
+ g_variant_builder_init (&builder, G_VARIANT_TYPE ("as"));
|
|
|
|
+ for (list = engines; list != NULL; list = list->next) {
|
|
|
|
+ IBusEngineDesc *desc = (IBusEngineDesc *)list->data;
|
|
|
|
+ /* ignore engines with rank <== 0 */
|
|
|
|
+ if (ibus_engine_desc_get_rank (desc) > 0)
|
|
|
|
+ g_variant_builder_add (&builder, "s", ibus_engine_desc_get_name (desc));
|
|
|
|
+ }
|
|
|
|
+ _set_preload_engines (ibus, g_variant_builder_end (&builder));
|
|
|
|
+ g_list_free (engines);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static void
|
|
|
|
bus_ibus_impl_set_hotkey (BusIBusImpl *ibus,
|
|
|
|
GQuark hotkey,
|
|
|
|
@@ -347,34 +466,32 @@ static void
|
|
|
|
bus_ibus_impl_set_preload_engines (BusIBusImpl *ibus,
|
|
|
|
GVariant *value)
|
2010-11-12 09:51:00 +00:00
|
|
|
{
|
2010-11-26 05:38:39 +00:00
|
|
|
- GList *engine_list = NULL;
|
|
|
|
-
|
|
|
|
- g_list_foreach (ibus->engine_list, (GFunc) g_object_unref, NULL);
|
|
|
|
- g_list_free (ibus->engine_list);
|
|
|
|
+ gint preload_engine_mode = _get_config_preload_engine_mode (ibus);
|
|
|
|
|
|
|
|
- if (value != NULL && g_variant_classify (value) == G_VARIANT_CLASS_ARRAY) {
|
|
|
|
- GVariantIter iter;
|
|
|
|
- g_variant_iter_init (&iter, value);
|
|
|
|
- const gchar *engine_name = NULL;
|
|
|
|
- while (g_variant_iter_loop (&iter, "&s", &engine_name)) {
|
|
|
|
- IBusEngineDesc *engine = bus_registry_find_engine_by_name (ibus->registry, engine_name);
|
|
|
|
- if (engine == NULL || g_list_find (engine_list, engine) != NULL)
|
|
|
|
- continue;
|
|
|
|
- engine_list = g_list_append (engine_list, engine);
|
|
|
|
+ if (preload_engine_mode == IBUS_PRELOAD_ENGINE_MODE_USER) {
|
|
|
|
+ if (value == NULL) {
|
|
|
|
+ _set_language_relative_preload_engines (ibus);
|
|
|
|
+ } else {
|
|
|
|
+ _set_preload_engines (ibus, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+}
|
|
|
|
|
|
|
|
- g_list_foreach (engine_list, (GFunc) g_object_ref, NULL);
|
|
|
|
- ibus->engine_list = engine_list;
|
|
|
|
+static void
|
|
|
|
+bus_ibus_impl_set_preload_engine_mode (BusIBusImpl *ibus,
|
|
|
|
+ GVariant *value)
|
|
|
|
+{
|
|
|
|
+ gint preload_engine_mode = IBUS_PRELOAD_ENGINE_MODE_USER;
|
|
|
|
|
|
|
|
- if (ibus->engine_list) {
|
|
|
|
- BusComponent *component = bus_component_from_engine_desc ((IBusEngineDesc *) ibus->engine_list->data);
|
|
|
|
- if (component && !bus_component_is_running (component)) {
|
|
|
|
- bus_component_start (component, g_verbose);
|
|
|
|
- }
|
|
|
|
+ if (value != NULL && g_variant_classify (value) == G_VARIANT_CLASS_INT32) {
|
|
|
|
+ preload_engine_mode = g_variant_get_int32 (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
- bus_ibus_impl_update_engines_hotkey_profile (ibus);
|
|
|
|
+ if (preload_engine_mode == IBUS_PRELOAD_ENGINE_MODE_USER) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ _set_language_relative_preload_engines (ibus);
|
2010-11-12 09:51:00 +00:00
|
|
|
}
|
|
|
|
|
2010-11-26 05:38:39 +00:00
|
|
|
/**
|
|
|
|
@@ -452,69 +569,47 @@ bus_ibus_impl_set_use_global_engine (BusIBusImpl *ibus,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-static gint
|
|
|
|
-_engine_desc_cmp (IBusEngineDesc *desc1,
|
|
|
|
- IBusEngineDesc *desc2)
|
|
|
|
-{
|
|
|
|
- return - ((gint) ibus_engine_desc_get_rank (desc1)) +
|
|
|
|
- ((gint) ibus_engine_desc_get_rank (desc2));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
/**
|
|
|
|
* bus_ibus_impl_set_default_preload_engines:
|
|
|
|
*
|
|
|
|
- * If the "preload_engines" config variable is not set yet, set the default value which is determined based on a current locale (LC_ALL).
|
|
|
|
+ * bus_ibus_impl_set_default_preload_engines handles the gconf value
|
2010-11-12 09:51:00 +00:00
|
|
|
+ * /desktop/ibus/general/preload_engines and preload_engine_mode.
|
|
|
|
+ * The idea is, if users don't customize the preload_engines with ibus-setup,
|
|
|
|
+ * users would prefer to load the system default engines again by login.
|
|
|
|
+ * The gconf value 'preload_engine_mode' is
|
2010-11-26 05:38:39 +00:00
|
|
|
+ * IBUS_PRELOAD_ENGINE_MODE_USER by default.
|
2010-11-12 09:51:00 +00:00
|
|
|
+ * If preload_engine_mode is IBUS_PRELOAD_ENGINE_MODE_LANG_RELATIVE,
|
|
|
|
+ * ibus-daemon loads the system preload engines by langs.
|
|
|
|
+ * If preload_engine_mode is IBUS_PRELOAD_ENGINE_MODE_USER,
|
|
|
|
+ * ibus-daemon do not update the gconf value preload_engines.
|
|
|
|
+ * On the other hand, if users enable the customized engine checkbutton
|
|
|
|
+ * on ibus-setup, ibus-setup sets 'preload_engine_mode' as
|
|
|
|
+ * IBUS_PRELOAD_ENGINE_MODE_USER and users can customize the value
|
|
|
|
+ * 'preload_engines'.
|
|
|
|
+ * Loading system default may spend the startup time. If you mind it,
|
|
|
|
+ * your dist may like to put TRUE in 'use_local_preload_engines' value.
|
2010-11-26 05:38:39 +00:00
|
|
|
*/
|
2010-11-12 09:51:00 +00:00
|
|
|
static void
|
2010-11-26 05:38:39 +00:00
|
|
|
bus_ibus_impl_set_default_preload_engines (BusIBusImpl *ibus)
|
2010-11-12 09:51:00 +00:00
|
|
|
{
|
2010-11-26 05:38:39 +00:00
|
|
|
- g_assert (BUS_IS_IBUS_IMPL (ibus));
|
|
|
|
-
|
2010-11-12 09:51:00 +00:00
|
|
|
static gboolean done = FALSE;
|
2010-11-26 05:38:39 +00:00
|
|
|
+ gint preload_engine_mode = IBUS_PRELOAD_ENGINE_MODE_USER;
|
|
|
|
+
|
|
|
|
+ g_assert (BUS_IS_IBUS_IMPL (ibus));
|
2010-11-12 09:51:00 +00:00
|
|
|
|
2010-11-26 05:38:39 +00:00
|
|
|
if (done || ibus->config == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2010-11-12 09:51:00 +00:00
|
|
|
|
|
|
|
- GVariant *variant = ibus_config_get_value (ibus->config, "general", "preload_engines");
|
|
|
|
- if (variant != NULL) {
|
2010-11-26 05:38:39 +00:00
|
|
|
+ preload_engine_mode = _get_config_preload_engine_mode (ibus);
|
2010-11-12 09:51:00 +00:00
|
|
|
+
|
2010-11-26 05:38:39 +00:00
|
|
|
+ if (preload_engine_mode == IBUS_PRELOAD_ENGINE_MODE_USER) {
|
|
|
|
done = TRUE;
|
|
|
|
- g_variant_unref (variant);
|
|
|
|
return;
|
2010-11-12 09:51:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
done = TRUE;
|
2010-11-26 05:38:39 +00:00
|
|
|
- gchar *lang = g_strdup (setlocale (LC_ALL, NULL));
|
|
|
|
- gchar *p = index (lang, '.');
|
|
|
|
- if (p) {
|
|
|
|
- *p = '\0';
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- GList *engines = bus_registry_get_engines_by_language (ibus->registry, lang);
|
|
|
|
- if (engines == NULL) {
|
|
|
|
- p = index (lang, '_');
|
|
|
|
- if (p) {
|
|
|
|
- *p = '\0';
|
|
|
|
- engines = bus_registry_get_engines_by_language (ibus->registry, lang);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- g_free (lang);
|
|
|
|
-
|
|
|
|
- /* sort engines by rank */
|
|
|
|
- engines = g_list_sort (engines, (GCompareFunc) _engine_desc_cmp);
|
|
|
|
-
|
|
|
|
- GVariantBuilder builder;
|
|
|
|
- g_variant_builder_init (&builder, G_VARIANT_TYPE ("as"));
|
|
|
|
- GList *list;
|
|
|
|
- for (list = engines; list != NULL; list = list->next) {
|
|
|
|
- IBusEngineDesc *desc = (IBusEngineDesc *) list->data;
|
|
|
|
- /* ignore engines with rank <= 0 */
|
|
|
|
- if (ibus_engine_desc_get_rank (desc) > 0)
|
|
|
|
- g_variant_builder_add (&builder, "s", ibus_engine_desc_get_name (desc));
|
|
|
|
- }
|
|
|
|
- ibus_config_set_value (ibus->config,
|
|
|
|
- "general", "preload_engines", g_variant_builder_end (&builder));
|
|
|
|
- g_list_free (engines);
|
|
|
|
+ _set_language_relative_preload_engines (ibus);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The list of config entries that are related to ibus-daemon. */
|
|
|
|
@@ -527,6 +622,7 @@ const static struct {
|
2010-11-12 09:51:00 +00:00
|
|
|
{ "general/hotkey", "next_engine_in_menu", bus_ibus_impl_set_next_engine_in_menu },
|
|
|
|
{ "general/hotkey", "previous_engine", bus_ibus_impl_set_previous_engine },
|
|
|
|
{ "general", "preload_engines", bus_ibus_impl_set_preload_engines },
|
|
|
|
+ { "general", "preload_engine_mode", bus_ibus_impl_set_preload_engine_mode },
|
|
|
|
{ "general", "use_system_keyboard_layout", bus_ibus_impl_set_use_sys_layout },
|
|
|
|
{ "general", "use_global_engine", bus_ibus_impl_set_use_global_engine },
|
|
|
|
{ "general", "embed_preedit_text", bus_ibus_impl_set_embed_preedit_text },
|
|
|
|
diff --git a/data/ibus.schemas.in b/data/ibus.schemas.in
|
2010-11-26 05:38:39 +00:00
|
|
|
index aa66aa5..9b82857 100644
|
2010-11-12 09:51:00 +00:00
|
|
|
--- a/data/ibus.schemas.in
|
|
|
|
+++ b/data/ibus.schemas.in
|
|
|
|
@@ -13,6 +13,19 @@
|
|
|
|
</locale>
|
|
|
|
</schema>
|
|
|
|
<schema>
|
|
|
|
+ <key>/schemas/desktop/ibus/general/preload_engine_mode</key>
|
|
|
|
+ <applyto>/desktop/ibus/general/preload_engine_mode</applyto>
|
|
|
|
+ <owner>ibus</owner>
|
|
|
|
+ <type>int</type>
|
|
|
|
+ <default>0</default>
|
|
|
|
+ <locale name="C">
|
|
|
|
+ <short>Preload engine mode</short>
|
|
|
|
+ <long>Preload engines are loaded with this mode.
|
2010-11-26 05:38:39 +00:00
|
|
|
+ 0 = user customized engines.
|
|
|
|
+ 1 = language related engines.</long>
|
2010-11-12 09:51:00 +00:00
|
|
|
+ </locale>
|
|
|
|
+ </schema>
|
|
|
|
+ <schema>
|
|
|
|
<key>/schemas/desktop/ibus/general/hotkey/trigger</key>
|
|
|
|
<applyto>/desktop/ibus/general/hotkey/trigger</applyto>
|
|
|
|
<owner>ibus</owner>
|
|
|
|
diff --git a/ibus/common.py b/ibus/common.py
|
2010-11-26 05:38:39 +00:00
|
|
|
index cbc8d56..db881fc 100644
|
2010-11-12 09:51:00 +00:00
|
|
|
--- a/ibus/common.py
|
|
|
|
+++ b/ibus/common.py
|
2010-11-26 05:38:39 +00:00
|
|
|
@@ -33,6 +33,8 @@ __all__ = (
|
|
|
|
"ORIENTATION_HORIZONTAL",
|
|
|
|
"ORIENTATION_VERTICAL",
|
|
|
|
"ORIENTATION_SYSTEM",
|
|
|
|
+ "PRELOAD_ENGINE_MODE_USER",
|
|
|
|
+ "PRELOAD_ENGINE_MODE_LANG_RELATIVE",
|
|
|
|
"default_reply_handler",
|
|
|
|
"default_error_handler",
|
|
|
|
"DEFAULT_ASYNC_HANDLERS",
|
|
|
|
@@ -133,6 +135,10 @@ ORIENTATION_HORIZONTAL = 0
|
2010-11-12 09:51:00 +00:00
|
|
|
ORIENTATION_VERTICAL = 1
|
|
|
|
ORIENTATION_SYSTEM = 2
|
|
|
|
|
|
|
|
+# define preload engine mode
|
2010-11-26 05:38:39 +00:00
|
|
|
+PRELOAD_ENGINE_MODE_USER = 0
|
|
|
|
+PRELOAD_ENGINE_MODE_LANG_RELATIVE = 1
|
2010-11-12 09:51:00 +00:00
|
|
|
+
|
|
|
|
def default_reply_handler( *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
diff --git a/setup/main.py b/setup/main.py
|
2010-11-26 05:38:39 +00:00
|
|
|
index 96e9456..215670d 100644
|
2010-11-12 09:51:00 +00:00
|
|
|
--- a/setup/main.py
|
|
|
|
+++ b/setup/main.py
|
2010-11-26 05:38:39 +00:00
|
|
|
@@ -190,15 +190,22 @@ class Setup(object):
|
2010-11-12 09:51:00 +00:00
|
|
|
self.__checkbutton_use_global_engine.connect("toggled", self.__checkbutton_use_global_engine_toggled_cb)
|
|
|
|
|
|
|
|
# init engine page
|
|
|
|
+ preload_engine_mode = self.__config.get_value("general",
|
|
|
|
+ "preload_engine_mode",
|
2010-11-26 05:38:39 +00:00
|
|
|
+ ibus.common.PRELOAD_ENGINE_MODE_USER)
|
2010-11-12 09:51:00 +00:00
|
|
|
+ button = self.__builder.get_object("checkbutton_preload_engine_mode")
|
|
|
|
+ if preload_engine_mode == ibus.common.PRELOAD_ENGINE_MODE_USER:
|
|
|
|
+ button.set_active(True)
|
|
|
|
+ self.__builder.get_object("hbox_customize_active_input_methods").set_sensitive(True)
|
|
|
|
+ else:
|
|
|
|
+ button.set_active(False)
|
|
|
|
+ self.__builder.get_object("hbox_customize_active_input_methods").set_sensitive(False)
|
|
|
|
+ button.connect("toggled", self.__checkbutton_preload_engine_mode_toggled_cb)
|
|
|
|
self.__engines = self.__bus.list_engines()
|
|
|
|
self.__combobox = self.__builder.get_object("combobox_engines")
|
|
|
|
self.__combobox.set_engines(self.__engines)
|
|
|
|
|
|
|
|
- tmp_dict = {}
|
|
|
|
- for e in self.__engines:
|
|
|
|
- tmp_dict[e.name] = e
|
2010-11-26 05:38:39 +00:00
|
|
|
- engine_names = self.__config.get_value("general", "preload_engines", [])
|
2010-11-12 09:51:00 +00:00
|
|
|
- engines = [tmp_dict[name] for name in engine_names if name in tmp_dict]
|
2010-11-26 05:38:39 +00:00
|
|
|
+ engines = self.__bus.list_active_engines()
|
2010-11-12 09:51:00 +00:00
|
|
|
|
|
|
|
self.__treeview = self.__builder.get_object("treeview_engines")
|
|
|
|
self.__treeview.set_engines(engines)
|
2010-11-26 05:38:39 +00:00
|
|
|
@@ -240,6 +247,13 @@ class Setup(object):
|
2010-11-12 09:51:00 +00:00
|
|
|
engine_names = map(lambda e: e.name, engines)
|
|
|
|
self.__config.set_list("general", "preload_engines", engine_names, "s")
|
|
|
|
|
|
|
|
+ def __get_engine_descs_from_names(self, engine_names):
|
|
|
|
+ tmp_dict = {}
|
|
|
|
+ for e in self.__engines:
|
|
|
|
+ tmp_dict[e.name] = e
|
|
|
|
+ engines = [tmp_dict[name] for name in engine_names if name in tmp_dict]
|
|
|
|
+ return engines
|
|
|
|
+
|
|
|
|
def __button_engine_add_cb(self, button):
|
|
|
|
engine = self.__combobox.get_active_engine()
|
|
|
|
self.__treeview.append_engine(engine)
|
2010-11-26 05:38:39 +00:00
|
|
|
@@ -251,6 +265,19 @@ class Setup(object):
|
2010-11-12 09:51:00 +00:00
|
|
|
about.run()
|
|
|
|
about.destroy()
|
|
|
|
|
|
|
|
+ def __checkbutton_preload_engine_mode_toggled_cb(self, button):
|
|
|
|
+ if button.get_active():
|
|
|
|
+ self.__config.set_value("general",
|
|
|
|
+ "preload_engine_mode",
|
|
|
|
+ ibus.common.PRELOAD_ENGINE_MODE_USER)
|
|
|
|
+ self.__builder.get_object("hbox_customize_active_input_methods").set_sensitive(True)
|
2010-11-26 05:38:39 +00:00
|
|
|
+ self.__treeview.notify("engines")
|
2010-11-12 09:51:00 +00:00
|
|
|
+ else:
|
|
|
|
+ self.__config.set_value("general",
|
|
|
|
+ "preload_engine_mode",
|
|
|
|
+ ibus.common.PRELOAD_ENGINE_MODE_LANG_RELATIVE)
|
|
|
|
+ self.__builder.get_object("hbox_customize_active_input_methods").set_sensitive(False)
|
|
|
|
+
|
|
|
|
def __init_bus(self):
|
|
|
|
try:
|
|
|
|
self.__bus = ibus.Bus()
|
|
|
|
diff --git a/setup/setup.ui b/setup/setup.ui
|
|
|
|
index 0e31a78..ef841a0 100644
|
|
|
|
--- a/setup/setup.ui
|
|
|
|
+++ b/setup/setup.ui
|
|
|
|
@@ -489,7 +489,22 @@
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<property name="orientation">vertical</property>
|
|
|
|
<child>
|
|
|
|
- <object class="GtkHBox" id="hbox1">
|
|
|
|
+ <object class="GtkCheckButton" id="checkbutton_preload_engine_mode">
|
|
|
|
+ <property name="visible">True</property>
|
|
|
|
+ <property name="label" translatable="yes">Customize active input _methods</property>
|
|
|
|
+ <property name="use_underline">True</property>
|
|
|
|
+ <property name="can_focus">True</property>
|
|
|
|
+ <property name="receives_default">False</property>
|
|
|
|
+ <property name="tooltip_text" translatable="yes">Customize active input methods</property>
|
|
|
|
+ <property name="draw_indicator">True</property>
|
|
|
|
+ </object>
|
|
|
|
+ <packing>
|
|
|
|
+ <property name="expand">False</property>
|
|
|
|
+ <property name="position">0</property>
|
|
|
|
+ </packing>
|
|
|
|
+ </child>
|
|
|
|
+ <child>
|
|
|
|
+ <object class="GtkHBox" id="hbox_customize_active_input_methods">
|
|
|
|
<property name="visible">True</property>
|
|
|
|
<child>
|
|
|
|
<object class="GtkAlignment" id="alignment6">
|
|
|
|
@@ -640,7 +655,7 @@
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
- <property name="position">0</property>
|
|
|
|
+ <property name="position">1</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
@@ -679,7 +694,7 @@ You may use up/down buttons to change it.</i></small></property>
|
|
|
|
</object>
|
|
|
|
<packing>
|
|
|
|
<property name="expand">False</property>
|
|
|
|
- <property name="position">1</property>
|
|
|
|
+ <property name="position">2</property>
|
|
|
|
</packing>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
diff --git a/src/ibustypes.h b/src/ibustypes.h
|
2010-11-26 05:38:39 +00:00
|
|
|
index 035d124..0a9d7b2 100644
|
2010-11-12 09:51:00 +00:00
|
|
|
--- a/src/ibustypes.h
|
|
|
|
+++ b/src/ibustypes.h
|
|
|
|
@@ -144,6 +144,16 @@ typedef enum {
|
|
|
|
} IBusOrientation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
+ * IBusPreloadEngineMode:
|
|
|
|
+ * @IBUS_PRELOAD_ENGINE_MODE_USER: user custimized engines
|
2010-11-26 05:38:39 +00:00
|
|
|
+ * @IBUS_PRELOAD_ENGINE_MODE_LANG_RELATIVE: language related engines.
|
2010-11-12 09:51:00 +00:00
|
|
|
+ */
|
|
|
|
+typedef enum {
|
2010-11-26 05:38:39 +00:00
|
|
|
+ IBUS_PRELOAD_ENGINE_MODE_USER = 0,
|
|
|
|
+ IBUS_PRELOAD_ENGINE_MODE_LANG_RELATIVE = 1,
|
2010-11-12 09:51:00 +00:00
|
|
|
+} IBusPreloadEngineMode;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
* IBusRectangle:
|
|
|
|
* @x: x coordinate.
|
|
|
|
* @y: y coordinate.
|
|
|
|
--
|
|
|
|
1.7.2.1
|
|
|
|
|