From c612c3240c1e3ebe2ec29c0977f02f1d628ab1de Mon Sep 17 00:00:00 2001 From: Jon Trowbridge Date: Mon, 27 Aug 2001 23:29:26 +0000 Subject: Added. Generated queries against file_as. (match_file_as): Added. Match 2001-08-27 Jon Trowbridge * gui/component/select-names/e-select-names-completion.c (sexp_file_as): Added. Generated queries against file_as. (match_file_as): Added. Match results of queries against file_as. (Bug #8152) svn path=/trunk/; revision=12494 --- addressbook/ChangeLog | 5 ++ .../select-names/e-select-names-completion.c | 65 +++++++++++++++++++++- 2 files changed, 68 insertions(+), 2 deletions(-) (limited to 'addressbook') diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 20bf17387f..e7b77d4923 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2001-08-27 Jon Trowbridge + * gui/component/select-names/e-select-names-completion.c + (sexp_file_as): Added. Generated queries against file_as. + (match_file_as): Added. Match results of queries against + file_as. (Bug #8152) + * backend/ebook/e-book-view-listener.c (e_book_view_listener_check_queue): Added ref/unref pair to make sure that our listener doesn't get finalized during the signal diff --git a/addressbook/gui/component/select-names/e-select-names-completion.c b/addressbook/gui/component/select-names/e-select-names-completion.c index d8a8d69ea7..9e955338b3 100644 --- a/addressbook/gui/component/select-names/e-select-names-completion.c +++ b/addressbook/gui/component/select-names/e-select-names-completion.c @@ -205,7 +205,7 @@ match_email (ESelectNamesCompletion *comp, EDestination *dest) */ static gchar * -sexp_name (ESelectNamesCompletion *comp) +name_style_query (ESelectNamesCompletion *comp, const gchar *field) { if (comp && comp->priv->query_text && *comp->priv->query_text) { gchar *cpy = g_strdup (comp->priv->query_text); @@ -217,7 +217,7 @@ sexp_name (ESelectNamesCompletion *comp) for (i=0; strv[i]; ++i) { ++count; g_strstrip (strv[i]); - strv[i] = g_strdup_printf ("(contains \"full_name\" \"%s\")", strv[i]); + strv[i] = g_strdup_printf ("(contains \"%s\" \"%s\")", field, strv[i]); } if (count == 1) { @@ -241,6 +241,12 @@ sexp_name (ESelectNamesCompletion *comp) return NULL; } +static gchar * +sexp_name (ESelectNamesCompletion *comp) +{ + return name_style_query (comp, "full_name"); +} + enum { MATCHED_NOTHING = 0, MATCHED_GIVEN_NAME = 1<<0, @@ -334,6 +340,9 @@ match_name (ESelectNamesCompletion *comp, EDestination *dest) } } + + g_free (cpy); + g_free (strv); score = match_len * 3; /* three points per match character */ @@ -405,6 +414,57 @@ match_name (ESelectNamesCompletion *comp, EDestination *dest) return final_match; } +/* + * File As Query + */ + +static gchar * +sexp_file_as (ESelectNamesCompletion *comp) +{ + return name_style_query (comp, "file_as"); +} + +static ECompletionMatch * +match_file_as (ESelectNamesCompletion *comp, EDestination *dest) +{ + const gchar *name; + const gchar *email; + gchar *cpy, **strv, *menu_text; + gint i; + gboolean matched; + double score = 0; + ECompletionMatch *match; + + name = e_destination_get_name (dest); + email = e_destination_get_email (dest); + + if (!(name && *name)) + return NULL; + + cpy = g_strdup (comp->priv->query_text); + strv = g_strsplit (cpy, " ", 0); + + matched = FALSE; + for (i=0; strv[i] && !matched; ++i) { + matched = match_name_fragment (name, strv[i]); + if (matched) + score = strlen (strv[i]); /* one point per character of the match */ + } + + g_free (cpy); + g_free (strv); + + if (!matched) + return NULL; + + menu_text = g_strdup_printf ("%s <%s>", name, email); + g_strstrip (menu_text); + match = make_match (dest, menu_text, score); + g_free (menu_text); + + return match; +} + /* * Initials Query */ @@ -433,6 +493,7 @@ static BookQuery book_queries[] = { { TRUE, sexp_nickname, match_nickname}, { TRUE, sexp_email, match_email }, { TRUE, sexp_name, match_name }, + { TRUE, sexp_file_as, match_file_as }, { FALSE, sexp_initials, match_initials } }; static gint book_query_count = sizeof (book_queries) / sizeof (BookQuery); -- cgit v1.2.3