aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-08-28 07:29:26 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-08-28 07:29:26 +0800
commitc612c3240c1e3ebe2ec29c0977f02f1d628ab1de (patch)
tree423a7f83c9b4191e7675c921fa70f034d1884797 /addressbook
parentcf730bc276e041f4dab608f89a1402ebf72d678b (diff)
downloadgsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.tar
gsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.tar.gz
gsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.tar.bz2
gsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.tar.lz
gsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.tar.xz
gsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.tar.zst
gsoc2013-evolution-c612c3240c1e3ebe2ec29c0977f02f1d628ab1de.zip
Added. Generated queries against file_as. (match_file_as): Added. Match
2001-08-27 Jon Trowbridge <trow@ximian.com> * 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
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/component/select-names/e-select-names-completion.c65
2 files changed, 68 insertions, 2 deletions
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 <trow@ximian.com>
+ * 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 */
@@ -406,6 +415,57 @@ match_name (ESelectNamesCompletion *comp, EDestination *dest)
}
/*
+ * 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);