aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeter Harvey <peter.a.harvey@gmail.com>2006-02-23 06:47:51 +0800
committerPeter Anthony Harvey <paharvey@src.gnome.org>2006-02-23 06:47:51 +0800
commitc1e4873c4e1452b42afc5b2be611d1636979d457 (patch)
treeb9841038192f24522263391e1b49cb2222146498 /src
parent21d37f70aa5844590b5f96ee9d8a2c4706235f3a (diff)
downloadgsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.tar
gsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.tar.gz
gsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.tar.bz2
gsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.tar.lz
gsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.tar.xz
gsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.tar.zst
gsoc2013-epiphany-c1e4873c4e1452b42afc5b2be611d1636979d457.zip
src/bookmarks/ephy-topics-entry.c
2006-02-22 Peter Harvey <peter.a.harvey@gmail.com> * src/bookmarks/ephy-topics-entry.c Improved behaviour of completion popup.
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-topics-entry.c66
1 files changed, 26 insertions, 40 deletions
diff --git a/src/bookmarks/ephy-topics-entry.c b/src/bookmarks/ephy-topics-entry.c
index 0df525799..2bb7e0f3f 100644
--- a/src/bookmarks/ephy-topics-entry.c
+++ b/src/bookmarks/ephy-topics-entry.c
@@ -336,29 +336,30 @@ update_key (EphyTopicsEntry *entry)
priv->key = 0;
/* Set the priv->create and priv->key appropriately. */
- input = g_strndup (start, end-start);
- g_strstrip (input);
- if (*input != 0)
+ if (start != end)
{
+ input = g_strndup (start, end-start);
+ g_strstrip (input);
priv->create = input;
input = g_utf8_casefold (input, -1);
priv->key = g_utf8_normalize (input, -1, G_NORMALIZE_DEFAULT);
+ g_free (input);
- if (find_topic (entry, priv->key) != NULL)
+ if (priv->create[0] == '\0' ||
+ find_topic (entry, priv->key) != NULL)
{
g_free (priv->create);
priv->create = 0;
}
- }
- g_free (input);
- /* If there is something we can create, then setup the action. */
- if (priv->create)
- {
- input = g_strdup_printf (_("Create topic ā€œ%sā€"), priv->create);
- gtk_entry_completion_insert_action_text (priv->completion, 0, input);
- g_free (input);
+ /* If there is something we can create, then setup the action. */
+ else
+ {
+ input = g_strdup_printf (_("Create topic ā€œ%sā€"), priv->create);
+ gtk_entry_completion_insert_action_text (priv->completion, 0, input);
+ g_free (input);
+ }
}
}
@@ -376,49 +377,34 @@ match_func (GtkEntryCompletion *completion,
GValue value = { 0, };
EphyNode *node;
+ if (priv->key == NULL)
+ {
+ return FALSE;
+ }
+
/* If no node at all (this happens for unknown reasons) then don't show. */
gtk_tree_model_get_value (model, iter, COLUMN_NODE, &value);
node = g_value_get_pointer (&value);
+ g_value_unset (&value);
if (node == NULL)
{
- g_value_unset (&value);
result = FALSE;
}
- /* If it's already selected, don't show it. */
+ /* If it's already selected, don't show it unless we're editing it. */
else if (ephy_node_has_child (node, priv->bookmark))
{
+ gtk_tree_model_get_value (model, iter, COLUMN_KEY, &value);
+ result = (strcmp (g_value_get_string (&value), priv->key) == 0);
g_value_unset (&value);
- if (priv->key == NULL)
- {
- result = FALSE;
- }
-
- /* Unless it's the one we're currently editing. */
- else
- {
- gtk_tree_model_get_value (model, iter, COLUMN_KEY, &value);
- result = (strcmp (g_value_get_string (&value), priv->key) == 0);
- g_value_unset (&value);
- }
}
- /* If it's not selected, assume we show it. */
+ /* If it's not selected, show it if it matches. */
else
{
+ gtk_tree_model_get_value (model, iter, COLUMN_KEY, &value);
+ result = (g_str_has_prefix (g_value_get_string (&value), priv->key));
g_value_unset (&value);
- if (priv->key == NULL)
- {
- result = TRUE;
- }
-
- /* Unless it's not matching the current key. */
- else
- {
- gtk_tree_model_get_value (model, iter, COLUMN_KEY, &value);
- result = (g_str_has_prefix (g_value_get_string (&value), priv->key));
- g_value_unset (&value);
- }
}
return result;
@@ -505,7 +491,7 @@ activate_cb (GtkEditable *editable,
insert_text (EPHY_TOPICS_ENTRY (editable), g_value_get_string (&value));
g_value_unset (&value);
}
- }
+ }
}
static void