2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
4 * Copyright (C) 2000-2021 the Claws Mail team and Alfons Hoogervorst
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "claws-features.h"
28 #include <glib/gi18n.h>
29 #include <gdk/gdkkeysyms.h>
34 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
39 #include "addr_compl.h"
42 #include "prefs_common.h"
46 #include "stock_pixmap.h"
49 #ifndef USE_ALT_ADDRBOOK
50 #include "addrindex.h"
52 #include "addressbook-dbus.h"
56 *\brief For the GtkListStore
69 * The address book is read into memory. We set up an address list
70 * containing all address book entries. Next we make the completion
71 * list, which contains all the completable strings, and store a
72 * reference to the address entry it belongs to.
73 * After calling the g_completion_complete(), we get a reference
74 * to a valid email address.
76 * Completion is very simplified. We never complete on another prefix,
77 * i.e. we neglect the next smallest possible prefix for the current
78 * completion cache. This is simply done so we might break up the
79 * addresses a little more (e.g. break up alfons@proteus.demon.nl into
80 * something like alfons, proteus, demon, nl; and then completing on
81 * any of those words).
85 * completion_entry - structure used to complete addresses, with a reference
86 * the the real address information.
90 gchar
*string
; /* string to complete */
91 address_entry
*ref
; /* address the string belongs to */
94 /*******************************************************************************/
96 static gint g_ref_count
; /* list ref count */
97 static GList
*g_completion_list
= NULL
; /* list of strings to be checked */
98 static GList
*g_address_list
= NULL
; /* address storage */
99 static GCompletion
*g_completion
; /* completion object */
101 static GHashTable
*_groupAddresses_
= NULL
;
102 static gboolean _allowCommas_
= TRUE
;
104 /* To allow for continuing completion we have to keep track of the state
105 * using the following variables. No need to create a context object. */
107 static gint g_completion_count
; /* nr of addresses incl. the prefix */
108 static gint g_completion_next
; /* next prev address */
109 static GSList
*g_completion_addresses
; /* unique addresses found in the
111 static gchar
*g_completion_prefix
; /* last prefix. (this is cached here
112 * because the prefix passed to g_completion
113 * is g_utf8_strdown()'ed */
115 static gchar
*completion_folder_path
= NULL
;
117 /*******************************************************************************/
120 * Define the structure of the completion window.
122 typedef struct _CompletionWindow CompletionWindow
;
123 struct _CompletionWindow
{
128 GtkWidget
*list_view
;
130 gboolean in_mouse
; /*!< mouse press pending... */
131 gboolean destroying
; /*!< destruction in progress */
134 static GtkListStore
*addr_compl_create_store (void);
136 static GtkWidget
*addr_compl_list_view_create (CompletionWindow
*window
);
138 static void addr_compl_create_list_view_columns (GtkWidget
*list_view
);
140 static gboolean
list_view_button_press (GtkWidget
*widget
,
141 GdkEventButton
*event
,
142 CompletionWindow
*window
);
144 static gboolean
list_view_button_release (GtkWidget
*widget
,
145 GdkEventButton
*event
,
146 CompletionWindow
*window
);
148 static gboolean
addr_compl_selected (GtkTreeSelection
*selector
,
151 gboolean currently_selected
,
154 static gboolean
addr_compl_defer_select_destruct(CompletionWindow
*window
);
157 * Function used by GTK to find the string data to be used for completion.
158 * \param data Pointer to data being processed.
160 static gchar
*completion_func(gpointer data
)
162 cm_return_val_if_fail(data
!= NULL
, NULL
);
164 return ((completion_entry
*)data
)->string
;
167 static gint
addr_completion_func(const gchar
*needle
, const gchar
*haystack
,
170 if (needle
== NULL
|| haystack
== NULL
)
173 return (strcasestr(haystack
, needle
) != NULL
? 0 : 1);
177 * Function used by GTK to compare elements for sorting
178 * name match beginning > name match after space > email address
179 * match beginning and full match before @ > email adress
180 * match beginning. Otherwise match position in string.
181 * \param a first element in comparsion
182 * \param b second element in comparison
184 static gint
weight_addr_match(const address_entry
* addr
)
186 gint n_weight
= addr
->name
? strlen(addr
->name
): 0;
187 gint a_weight
= addr
->address
? strlen(addr
->address
) : n_weight
;
191 match
= strcasestr(addr
->name
, g_completion_prefix
);
194 if (match
== addr
->name
)
196 else if (match
> addr
->name
&& *(match
- 1) == ' ')
199 n_weight
= match
- addr
->name
;
203 match
= strcasestr(addr
->address
, g_completion_prefix
);
205 if (match
== addr
->address
)
208 a_weight
= match
- addr
->address
;
210 if (strlen(match
) > strlen(g_completion_prefix
)
211 && *(match
+ strlen(g_completion_prefix
)) == '@')
216 if (n_weight
== -4 && a_weight
< 0)
219 return MIN(a_weight
, n_weight
);
222 static gint
addr_comparison_func(gconstpointer a
, gconstpointer b
)
224 const address_entry
* a_ref
= (const address_entry
*)a
;
225 const address_entry
* b_ref
= (const address_entry
*)b
;
226 gint a_weight
= weight_addr_match(a_ref
);
227 gint b_weight
= weight_addr_match(b_ref
);
230 if (a_weight
< b_weight
)
232 else if (a_weight
> b_weight
)
235 if (!a_ref
->name
|| !b_ref
->name
)
236 cmp
= !!a_ref
->name
- !!b_ref
->name
;
238 cmp
= strcmp(a_ref
->name
, b_ref
->name
);
241 if (!a_ref
->address
|| !b_ref
->address
)
242 cmp
= !!a_ref
->address
- !!b_ref
->address
;
244 cmp
= g_strcmp0(a_ref
->address
, b_ref
->address
);
251 * Initialize all completion index data.
253 static void init_all(void)
255 g_completion
= g_completion_new(completion_func
);
256 cm_return_if_fail(g_completion
!= NULL
);
260 * set the compare function (default is strncmp)
262 static void set_match_any_part(const gboolean any_part
)
264 if (any_part
&& prefs_common
.address_search_wildcard
)
265 g_completion_set_compare(g_completion
, addr_completion_func
);
267 g_completion_set_compare(g_completion
, strncmp
);
270 static void free_all_addresses(void)
275 walk
= g_address_list
;
276 for (; walk
!= NULL
; walk
= g_list_next(walk
)) {
277 address_entry
*ae
= (address_entry
*) walk
->data
;
280 g_list_free(ae
->grp_emails
);
283 g_list_free(g_address_list
);
284 g_address_list
= NULL
;
285 if (_groupAddresses_
)
286 g_hash_table_destroy(_groupAddresses_
);
287 _groupAddresses_
= NULL
;
290 static void clear_completion_cache(void);
291 static void free_completion_list(void)
294 if (!g_completion_list
)
297 clear_completion_cache();
299 g_completion_clear_items(g_completion
);
301 walk
= g_list_first(g_completion_list
);
302 for (; walk
!= NULL
; walk
= g_list_next(walk
)) {
303 completion_entry
*ce
= (completion_entry
*) walk
->data
;
307 g_list_free(g_completion_list
);
308 g_completion_list
= NULL
;
311 * Free up all completion index data.
313 static void free_all(void)
315 free_completion_list();
316 free_all_addresses();
317 g_completion_free(g_completion
);
322 * Append specified address entry to the index.
323 * \param str Index string value.
324 * \param ae Entry containing address data.
326 void addr_compl_add_address1(const char *str
, address_entry
*ae
)
328 completion_entry
*ce1
;
329 ce1
= g_new0(completion_entry
, 1),
330 /* GCompletion list is case sensitive */
331 ce1
->string
= g_utf8_strdown(str
, -1);
334 g_completion_list
= g_list_prepend(g_completion_list
, ce1
);
338 * Adds address to the completion list. This function looks complicated, but
339 * it's only allocation checks. Each value will be included in the index.
340 * \param name Recipient name.
341 * \param address EMail address.
342 * \param alias Alias to append.
343 * \param grp_emails the emails in case of a group. List should be freed later,
344 * but not its strings
345 * \return <code>0</code> if entry appended successfully, or <code>-1</code>
348 static gint
add_address(const gchar
*name
, const gchar
*address
,
349 const gchar
*nick
, const gchar
*alias
, GList
*grp_emails
)
353 if (!address
&& !grp_emails
)
359 ae
= g_new0(address_entry
, 1);
360 cm_return_val_if_fail(ae
!= NULL
, -1);
362 ae
->name
= g_strdup(name
);
363 ae
->address
= g_strdup(address
);
364 ae
->grp_emails
= grp_emails
;
365 g_address_list
= g_list_prepend(g_address_list
, ae
);
367 addr_compl_add_address1(name
, ae
);
369 if (address
!= NULL
&& *address
!= '\0')
370 addr_compl_add_address1(address
, ae
);
372 if (nick
!= NULL
&& *nick
!= '\0')
373 addr_compl_add_address1(nick
, ae
);
375 if (alias
!= NULL
&& *alias
!= '\0')
376 addr_compl_add_address1(alias
, ae
);
382 * Read address book, creating all entries in the completion index.
384 static void read_address_book(gchar
*folderpath
) {
385 free_all_addresses();
386 free_completion_list();
388 #ifndef USE_ALT_ADDRBOOK
389 addrindex_load_completion( add_address
, folderpath
);
391 GError
* error
= NULL
;
393 addrcompl_initialize();
394 if (! addrindex_dbus_load_completion(add_address
, &error
)) {
395 g_warning("failed to populate address completion list");
400 /* plugins may hook in here to modify/extend the completion list */
402 hooks_invoke(ADDDRESS_COMPLETION_BUILD_ADDRESS_LIST_HOOKLIST
, &g_address_list
);
405 g_address_list
= g_list_reverse(g_address_list
);
406 g_completion_list
= g_list_reverse(g_completion_list
);
407 /* merge the completion entry list into g_completion */
408 if (g_completion_list
) {
409 g_completion_add_items(g_completion
, g_completion_list
);
410 if (debug_get_mode())
411 debug_print("read %d items in %s\n",
412 g_list_length(g_completion_list
),
413 folderpath
?folderpath
:"(null)");
418 * Test whether there is a completion pending.
419 * \return <code>TRUE</code> if pending.
421 static gboolean
is_completion_pending(void)
423 /* check if completion pending, i.e. we might satisfy a request for the next
424 * or previous address */
425 return g_completion_count
;
429 * Clear the completion cache.
431 static void clear_completion_cache(void)
433 if (is_completion_pending()) {
434 g_free(g_completion_prefix
);
436 if (g_completion_addresses
) {
437 g_slist_free(g_completion_addresses
);
438 g_completion_addresses
= NULL
;
441 g_completion_count
= g_completion_next
= 0;
446 * Prepare completion index. This function should be called prior to attempting
447 * address completion.
448 * \return The number of addresses in the completion list.
450 guint
start_address_completion(gchar
*folderpath
)
452 gboolean different_book
= FALSE
;
453 clear_completion_cache();
455 if (g_strcmp0(completion_folder_path
,folderpath
))
456 different_book
= TRUE
;
458 g_free(completion_folder_path
);
459 if (folderpath
!= NULL
)
460 completion_folder_path
= g_strdup(folderpath
);
462 completion_folder_path
= NULL
;
466 /* open the address book */
467 read_address_book(folderpath
);
468 } else if (different_book
)
469 read_address_book(folderpath
);
472 debug_print("start_address_completion(%s) ref count %d\n",
473 folderpath
?folderpath
:"(null)", g_ref_count
);
475 return g_list_length(g_completion_list
);
479 * Retrieve a possible address (or a part) from an entry box. To make life
480 * easier, we only look at the last valid address component; address
481 * completion only works at the last string component in the entry box.
483 * \param entry Address entry field.
484 * \param start_pos Address of start position of address.
485 * \return Possible address.
487 static gchar
*get_address_from_edit(GtkEntry
*entry
, gint
*start_pos
)
489 const gchar
*edit_text
, *p
;
491 gboolean in_quote
= FALSE
;
492 gboolean in_bracket
= FALSE
;
495 edit_text
= gtk_entry_get_text(entry
);
496 if (edit_text
== NULL
) return NULL
;
498 cur_pos
= gtk_editable_get_position(GTK_EDITABLE(entry
));
500 /* scan for a separator. doesn't matter if walk points at null byte. */
501 for (p
= g_utf8_offset_to_pointer(edit_text
, cur_pos
);
503 p
= g_utf8_prev_char(p
)) {
506 } else if (!in_quote
) {
507 if (!in_bracket
&& *p
== ',') {
509 } else if (*p
== '<')
516 /* have something valid */
517 if (g_utf8_strlen(p
, -1) == 0)
520 #define IS_VALID_CHAR(x) \
521 (g_ascii_isalnum(x) || (x) == '"' || (x) == '<' || (((unsigned char)(x)) > 0x7f))
523 /* now scan back until we hit a valid character */
524 for (; *p
&& !IS_VALID_CHAR(*p
); p
= g_utf8_next_char(p
))
529 if (g_utf8_strlen(p
, -1) == 0)
532 if (start_pos
) *start_pos
= g_utf8_pointer_to_offset(edit_text
, p
);
539 static gchar
*get_complete_address_from_name_email(const gchar
*name
, const gchar
*email
)
541 gchar
*address
= NULL
;
542 if (!name
|| name
[0] == '\0')
543 address
= g_strdup_printf("<%s>", email
);
544 else if (strchr_with_skip_quote(name
, '"', ','))
545 address
= g_strdup_printf
546 ("\"%s\" <%s>", name
, email
);
548 address
= g_strdup_printf
549 ("%s <%s>", name
, email
);
554 * Replace an incompleted address with a completed one.
555 * \param entry Address entry field.
556 * \param newtext New text.
557 * \param start_pos Insertion point in entry field.
559 static void replace_address_in_edit(GtkEntry
*entry
, const gchar
*newtext
,
560 gint start_pos
, gboolean is_group
, GList
*grp_emails
)
562 if (!newtext
) return;
563 gtk_editable_delete_text(GTK_EDITABLE(entry
), start_pos
, -1);
565 gtk_editable_insert_text(GTK_EDITABLE(entry
), newtext
, strlen(newtext
),
568 gchar
*addresses
= NULL
;
569 GList
*cur
= grp_emails
;
570 for (; cur
; cur
= cur
->next
) {
572 ItemEMail
*email
= (ItemEMail
*)cur
->data
;
573 ItemPerson
*person
= ( ItemPerson
* ) ADDRITEM_PARENT(email
);
575 gchar
*addr
= get_complete_address_from_name_email(
576 ADDRITEM_NAME(person
), email
->address
);
578 tmp
= g_strdup_printf("%s, %s", addresses
, addr
);
580 tmp
= g_strdup_printf("%s", addr
);
585 gtk_editable_insert_text(GTK_EDITABLE(entry
), addresses
, strlen(addresses
),
589 gtk_editable_set_position(GTK_EDITABLE(entry
), -1);
593 * Attempt to complete an address, and returns the number of addresses found.
594 * Use <code>get_complete_address()</code> to get an entry from the index.
596 * \param str Search string to find.
597 * \return Zero if no match was found, otherwise the number of addresses; the
598 * original prefix (search string) will appear at index 0.
600 guint
complete_address(const gchar
*str
)
602 GList
*result
= NULL
;
606 completion_entry
*ce
= NULL
;
608 cm_return_val_if_fail(str
!= NULL
, 0);
610 /* g_completion is case sensitive */
611 d
= g_utf8_strdown(str
, -1);
613 clear_completion_cache();
614 g_completion_prefix
= g_strdup(str
);
616 result
= g_completion_complete(g_completion
, d
, NULL
);
618 count
= g_list_length(result
);
620 /* create list with unique addresses */
621 for (cpl
= 0, result
= g_list_first(result
);
623 result
= g_list_next(result
)) {
624 ce
= (completion_entry
*)(result
->data
);
625 if (NULL
== g_slist_find(g_completion_addresses
,
628 g_completion_addresses
=
629 g_slist_append(g_completion_addresses
,
633 count
= cpl
+ 1; /* index 0 is the original prefix */
634 g_completion_next
= 1; /* we start at the first completed one */
635 if (prefs_common
.address_search_wildcard
)
636 g_completion_addresses
= g_slist_sort(g_completion_addresses
,
637 addr_comparison_func
);
639 g_free(g_completion_prefix
);
640 g_completion_prefix
= NULL
;
643 g_completion_count
= count
;
651 * complete_matches_found() returns the number of matched addresses according
652 * to the completion mechanism. Unlike complete_address(), the returned value
653 * doesn't count str itself. If there's no match, it returns 0.
654 * To get a list of completion matches, see complete_address() instead.
656 guint
complete_matches_found(const gchar
*str
)
658 GList
*result
= NULL
;
661 cm_return_val_if_fail(str
!= NULL
, 0);
663 /* g_completion is case sensitive */
664 d
= g_utf8_strdown(str
, -1);
666 clear_completion_cache();
667 g_completion_prefix
= g_strdup(str
);
669 result
= g_completion_complete(g_completion
, d
, NULL
);
671 g_free(g_completion_prefix
);
674 return g_list_length(result
);
678 * Return a complete address from the index.
679 * \param index Index of entry that was found (by the previous call to
680 * <code>complete_address()</code>
681 * \return Completed address string; this should be freed when done.
683 gchar
*get_complete_address(gint index
)
685 const address_entry
*p
;
686 gchar
*address
= NULL
;
688 if (index
< g_completion_count
) {
690 address
= g_strdup(g_completion_prefix
);
692 /* get something from the unique addresses */
693 p
= (address_entry
*)g_slist_nth_data
694 (g_completion_addresses
, index
- 1);
695 if (p
!= NULL
&& p
->address
!= NULL
) {
696 address
= get_complete_address_from_name_email(p
->name
, p
->address
);
697 } else if (p
!= NULL
&& p
->address
== NULL
&& p
->name
!= NULL
) {
699 address
= g_strdup_printf("%s (%s) <!--___group___-->", p
->name
, _("Group"));
700 if (!_groupAddresses_
) {
701 _groupAddresses_
= g_hash_table_new(NULL
, g_direct_equal
);
703 if (!g_hash_table_lookup(_groupAddresses_
, GINT_TO_POINTER(g_str_hash(address
)))) {
704 g_hash_table_insert(_groupAddresses_
, GINT_TO_POINTER(g_str_hash(address
)), p
->grp_emails
);
715 * Return the next complete address match from the completion index.
716 * \return Completed address string; this should be freed when done.
718 static gchar
*get_next_complete_address(void)
720 if (is_completion_pending()) {
723 res
= get_complete_address(g_completion_next
);
724 g_completion_next
+= 1;
725 if (g_completion_next
>= g_completion_count
)
726 g_completion_next
= 0;
734 * Return a count of the completed matches in the completion index.
735 * \return Number of matched entries.
737 static guint
get_completion_count(void)
739 if (is_completion_pending())
740 return g_completion_count
;
746 * Invalidate address completion index. This function should be called whenever
747 * the address book changes. This forces data to be read into the completion
749 * \return Number of entries in index.
751 gint
invalidate_address_completion(void)
754 /* simply the same as start_address_completion() */
755 debug_print("Invalidation request for address completion\n");
756 read_address_book(completion_folder_path
);
757 clear_completion_cache();
760 return g_list_length(g_completion_list
);
764 * Finished with completion index. This function should be called after
765 * matching addresses.
766 * \return Reference count.
768 gint
end_address_completion(void)
770 gboolean different_folder
= FALSE
;
771 clear_completion_cache();
773 /* reset the folderpath to NULL */
774 if (completion_folder_path
) {
775 g_free(completion_folder_path
);
776 completion_folder_path
= NULL
;
777 different_folder
= TRUE
;
779 if (0 == --g_ref_count
)
782 debug_print("end_address_completion ref count %d\n", g_ref_count
);
783 if (g_ref_count
&& different_folder
) {
784 debug_print("still ref'd, different folder\n");
785 invalidate_address_completion();
794 static CompletionWindow
*_compWindow_
= NULL
;
797 * Mutex to protect callback from multiple threads.
799 static pthread_mutex_t _completionMutex_
= PTHREAD_MUTEX_INITIALIZER
;
802 * Completion queue list.
804 static GList
*_displayQueue_
= NULL
;
808 static gint _queryID_
= 0;
811 * Completion idle ID.
813 static guint _completionIdleID_
= 0;
816 * address completion entry ui. the ui (completion list was inspired by galeon's
817 * auto completion list). remaining things powered by claws's completion engine.
820 #define ENTRY_DATA_TAB_HOOK "tab_hook" /* used to lookup entry */
821 #define ENTRY_DATA_ALLOW_COMMAS "allowcommas" /* used to know whether to present groups */
823 static void address_completion_mainwindow_set_focus (GtkWindow
*window
,
826 static gboolean
address_completion_entry_key_pressed (GtkEntry
*entry
,
829 static gboolean address_completion_complete_address_in_entry
832 static void address_completion_create_completion_window (GtkEntry
*entry
);
834 static gboolean completion_window_button_press
836 GdkEventButton
*event
,
837 CompletionWindow
*compWin
);
839 static gboolean completion_window_key_press
842 CompletionWindow
*compWin
);
843 static void address_completion_create_completion_window( GtkEntry
*entry_
);
846 * Create a completion window object.
847 * \return Initialized completion window.
849 static CompletionWindow
*addrcompl_create_window( void ) {
850 CompletionWindow
*cw
;
852 cw
= g_new0( CompletionWindow
, 1 );
854 cw
->searchTerm
= NULL
;
857 cw
->list_view
= NULL
;
858 cw
->in_mouse
= FALSE
;
859 cw
->destroying
= FALSE
;
865 * Destroy completion window.
866 * \param cw Window to destroy.
868 static void addrcompl_destroy_window( CompletionWindow
*cw
) {
872 display
= gdk_display_get_default();
873 seat
= gdk_display_get_default_seat(display
);
874 /* Stop all searches currently in progress */
875 #ifndef USE_ALT_ADDRBOOK
876 addrindex_stop_search( _queryID_
);
878 /* Remove idler function... or application may not terminate */
879 if( _completionIdleID_
!= 0 ) {
880 g_source_remove( _completionIdleID_
);
881 _completionIdleID_
= 0;
884 /* Now destroy window */
886 /* Clear references to widgets */
888 cw
->list_view
= NULL
;
892 gtk_widget_hide( cw
->window
);
893 gtk_widget_destroy( cw
->window
);
896 cw
->destroying
= FALSE
;
897 cw
->in_mouse
= FALSE
;
900 /* Re-enable keyboard, required at least for Gtk3/Win32 */
901 gdk_seat_ungrab(seat
);
905 * Free up completion window.
906 * \param cw Window to free.
908 static void addrcompl_free_window( CompletionWindow
*cw
) {
910 addrcompl_destroy_window( cw
);
912 g_free( cw
->searchTerm
);
913 cw
->searchTerm
= NULL
;
915 /* Clear references */
924 * Advance selection to previous/next item in list.
925 * \param list_view List to process.
926 * \param forward Set to <i>TRUE</i> to select next or <i>FALSE</i> for
929 static void completion_window_advance_selection(GtkTreeView
*list_view
, gboolean forward
)
931 GtkTreeSelection
*selection
;
935 cm_return_if_fail(list_view
!= NULL
);
937 selection
= gtk_tree_view_get_selection(list_view
);
938 if (!gtk_tree_selection_get_selected(selection
, &model
, &iter
))
942 forward
= gtk_tree_model_iter_next(model
, &iter
);
944 gtk_tree_selection_select_iter(selection
, &iter
);
948 prev
= gtk_tree_model_get_path(model
, &iter
);
952 if (gtk_tree_path_prev(prev
))
953 gtk_tree_selection_select_path(selection
, prev
);
955 gtk_tree_path_free(prev
);
960 * Resize window to accommodate maximum number of address entries.
961 * \param cw Completion window.
963 static void addrcompl_resize_window( CompletionWindow
*cw
) {
966 GdkGrabStatus status
;
969 gdk_window_get_position(gtk_widget_get_window(cw
->window
), &x
, &y
);
970 width
= gdk_window_get_width(gtk_widget_get_window(cw
->window
));
972 gtk_widget_queue_resize_no_redraw(cw
->list_view
);
973 gtk_widget_get_preferred_size(cw
->list_view
, &r
, NULL
);
975 gtk_widget_set_size_request(cw
->window
, width
, r
.height
);
977 display
= gdk_display_get_default();
978 status
= gdk_seat_grab(gdk_display_get_default_seat(display
),
979 gtk_widget_get_window(cw
->window
),
980 GDK_POINTER_MOTION_MASK
| GDK_BUTTON_PRESS_MASK
|
981 GDK_BUTTON_RELEASE_MASK
,
982 TRUE
, NULL
, NULL
, NULL
, NULL
);
983 if (status
!= GDK_GRAB_SUCCESS
)
984 g_warning("gdk_seat_grab failed with status %d", status
);
985 gtk_grab_add(cw
->window
);
989 static GdkPixbuf
*group_pixbuf
= NULL
;
990 static GdkPixbuf
*email_pixbuf
= NULL
;
993 * Add an address the completion window address list.
994 * \param cw Completion window.
995 * \param address Address to add.
997 static void addrcompl_add_entry( CompletionWindow
*cw
, gchar
*address
) {
1000 GtkTreeSelection
*selection
;
1001 gboolean is_group
= FALSE
;
1002 GList
*grp_emails
= NULL
;
1003 store
= GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(cw
->list_view
)));
1006 if (!group_pixbuf
) {
1007 stock_pixbuf_gdk(STOCK_PIXMAP_ADDR_TWO
, &group_pixbuf
);
1008 g_object_ref(G_OBJECT(group_pixbuf
));
1010 if (!email_pixbuf
) {
1011 stock_pixbuf_gdk(STOCK_PIXMAP_ADDR_ONE
, &email_pixbuf
);
1012 g_object_ref(G_OBJECT(email_pixbuf
));
1014 /* g_print( "\t\tAdding :%s\n", address ); */
1015 if (strstr(address
, " <!--___group___-->")) {
1017 if (_groupAddresses_
)
1018 grp_emails
= g_hash_table_lookup(_groupAddresses_
, GINT_TO_POINTER(g_str_hash(address
)));
1019 *(strstr(address
, " <!--___group___-->")) = '\0';
1020 pixbuf
= group_pixbuf
;
1021 } else if (strchr(address
, '@') && strchr(address
, '<') &&
1022 strchr(address
, '>')) {
1023 pixbuf
= email_pixbuf
;
1027 if (is_group
&& !_allowCommas_
)
1029 gtk_list_store_append(store
, &iter
);
1030 gtk_list_store_set(store
, &iter
,
1031 ADDR_COMPL_ICON
, pixbuf
,
1032 ADDR_COMPL_ADDRESS
, address
,
1033 ADDR_COMPL_ISGROUP
, is_group
,
1034 ADDR_COMPL_GROUPLIST
, grp_emails
,
1039 addrcompl_resize_window( cw
);
1040 gtk_grab_add( cw
->window
);
1042 selection
= gtk_tree_view_get_selection(GTK_TREE_VIEW(cw
->list_view
));
1043 if (!gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store
), &iter
))
1046 if (cw
->listCount
== 1) {
1047 /* Select first row for now */
1048 gtk_tree_selection_select_iter(selection
, &iter
);
1052 void addrcompl_reflect_prefs_pixmap_theme(void) {
1054 g_object_unref(G_OBJECT(group_pixbuf
));
1055 group_pixbuf
= NULL
;
1058 g_object_unref(G_OBJECT(email_pixbuf
));
1059 email_pixbuf
= NULL
;
1064 * Completion idle function. This function is called by the main (UI) thread
1065 * during UI idle time while an address search is in progress. Items from the
1066 * display queue are processed and appended to the address list.
1068 * \param data Target completion window to receive email addresses.
1069 * \return <i>TRUE</i> to ensure that idle event do not get ignored.
1071 static gboolean
addrcompl_idle( gpointer data
) {
1075 /* Process all entries in display queue */
1076 pthread_mutex_lock( & _completionMutex_
);
1077 if( _displayQueue_
) {
1078 node
= _displayQueue_
;
1079 node
= g_list_next(node
); /* skip search term */
1081 address
= node
->data
;
1082 /* g_print( "address ::: %s :::\n", address ); */
1083 addrcompl_add_entry( _compWindow_
, address
);
1085 node
= g_list_next( node
);
1087 g_list_free( _displayQueue_
);
1088 _displayQueue_
= NULL
;
1090 pthread_mutex_unlock( & _completionMutex_
);
1097 * Callback entry point. The background thread (if any) appends the address
1098 * list to the display queue.
1099 * \param sender Sender of query.
1100 * \param queryID Query ID of search request.
1101 * \param listEMail List of zero of more email objects that met search
1103 * \param data Query data.
1105 #ifndef USE_ALT_ADDRBOOK
1106 static gint
addrcompl_callback_entry(
1107 gpointer sender
, gint queryID
, GList
*listEMail
, gpointer data
)
1112 /* g_print( "addrcompl_callback_entry::queryID=%d\n", queryID ); */
1113 pthread_mutex_lock( & _completionMutex_
);
1114 if( queryID
== _queryID_
) {
1115 /* Append contents to end of display queue */
1118 ItemEMail
*email
= node
->data
;
1120 address
= addritem_format_email( email
);
1121 /* g_print( "\temail/address ::%s::\n", address ); */
1122 _displayQueue_
= g_list_append( _displayQueue_
, address
);
1123 node
= g_list_next( node
);
1126 g_list_free( listEMail
);
1127 pthread_mutex_unlock( & _completionMutex_
);
1134 * Clear the display queue.
1136 static void addrcompl_clear_queue( void ) {
1137 /* Clear out display queue */
1138 pthread_mutex_lock( & _completionMutex_
);
1140 g_list_free_full( _displayQueue_
, g_free
);
1141 _displayQueue_
= NULL
;
1143 pthread_mutex_unlock( & _completionMutex_
);
1147 * Add a single address entry into the display queue.
1148 * \param address Address to append.
1150 static void addrcompl_add_queue( gchar
*address
) {
1151 pthread_mutex_lock( & _completionMutex_
);
1152 _displayQueue_
= g_list_append( _displayQueue_
, address
);
1153 pthread_mutex_unlock( & _completionMutex_
);
1157 * Load list with entries from local completion index.
1159 static void addrcompl_load_local( void ) {
1162 for (count
= 0; count
< get_completion_count(); count
++) {
1165 address
= get_complete_address( count
);
1166 /* g_print( "\taddress ::%s::\n", address ); */
1168 /* Append contents to end of display queue */
1169 addrcompl_add_queue( address
);
1176 static void addrcompl_start_search( void ) {
1177 #ifndef USE_ALT_ADDRBOOK
1180 searchTerm
= g_strdup( _compWindow_
->searchTerm
);
1182 /* Setup the search */
1183 _queryID_
= addrindex_setup_search(
1184 searchTerm
, NULL
, addrcompl_callback_entry
);
1185 g_free( searchTerm
);
1187 /* g_print( "addrcompl_start_search::queryID=%d\n", _queryID_ ); */
1189 /* Load local stuff */
1190 addrcompl_load_local();
1192 /* Sit back and wait until something happens */
1193 _completionIdleID_
=
1194 g_idle_add( (GSourceFunc
) addrcompl_idle
, NULL
);
1195 /* g_print( "addrindex_start_search::queryID=%d\n", _queryID_ ); */
1197 #ifndef USE_ALT_ADDRBOOK
1198 addrindex_start_search( _queryID_
);
1205 * Apply the current selection in the list to the entry field. Focus is also
1206 * moved to the next widget so that Tab key works correctly.
1207 * \param list_view List to process.
1208 * \param entry Address entry field.
1209 * \param move_focus Move focus to the next widget ?
1211 static void completion_window_apply_selection(GtkTreeView
*list_view
,
1213 gboolean move_focus
)
1215 gchar
*address
= NULL
, *text
= NULL
;
1218 GtkTreeSelection
*selection
;
1219 GtkTreeModel
*model
;
1221 gboolean is_group
= FALSE
;
1222 cm_return_if_fail(list_view
!= NULL
);
1223 cm_return_if_fail(entry
!= NULL
);
1224 GList
*grp_emails
= NULL
;
1226 selection
= gtk_tree_view_get_selection(list_view
);
1227 if (!gtk_tree_selection_get_selected(selection
, &model
, &iter
))
1230 /* First remove the idler */
1231 if( _completionIdleID_
!= 0 ) {
1232 g_source_remove( _completionIdleID_
);
1233 _completionIdleID_
= 0;
1236 /* Process selected item */
1237 gtk_tree_model_get(model
, &iter
, ADDR_COMPL_ADDRESS
, &text
,
1238 ADDR_COMPL_ISGROUP
, &is_group
,
1239 ADDR_COMPL_GROUPLIST
, &grp_emails
,
1242 address
= get_address_from_edit(entry
, &cursor_pos
);
1244 replace_address_in_edit(entry
, text
, cursor_pos
, is_group
, grp_emails
);
1247 /* Move focus to next widget */
1248 parent
= gtk_widget_get_parent(GTK_WIDGET(entry
));
1249 if( parent
&& move_focus
) {
1250 gtk_widget_child_focus( parent
, GTK_DIR_TAB_FORWARD
);
1255 * Start address completion. Should be called when creating the main window
1256 * containing address completion entries.
1257 * \param mainwindow Main window.
1259 void address_completion_start(GtkWidget
*mainwindow
)
1261 start_address_completion(NULL
);
1262 set_match_any_part(TRUE
);
1264 /* register focus change hook */
1265 g_signal_connect(G_OBJECT(mainwindow
), "set_focus",
1266 G_CALLBACK(address_completion_mainwindow_set_focus
),
1271 * Need unique data to make unregistering signal handler possible for the auto
1274 #define COMPLETION_UNIQUE_DATA (GINT_TO_POINTER(0xfeefaa))
1277 * Register specified entry widget for address completion.
1278 * \param entry Address entry field.
1280 void address_completion_register_entry(GtkEntry
*entry
, gboolean allow_commas
)
1282 cm_return_if_fail(entry
!= NULL
);
1283 cm_return_if_fail(GTK_IS_ENTRY(entry
));
1285 /* add hooked property */
1286 g_object_set_data(G_OBJECT(entry
), ENTRY_DATA_TAB_HOOK
, entry
);
1287 g_object_set_data(G_OBJECT(entry
), ENTRY_DATA_ALLOW_COMMAS
, GINT_TO_POINTER(allow_commas
));
1289 /* add keypress event */
1290 g_signal_connect_closure
1291 (G_OBJECT(entry
), "key_press_event",
1292 g_cclosure_new(G_CALLBACK(address_completion_entry_key_pressed
),
1293 COMPLETION_UNIQUE_DATA
,
1299 * Unregister specified entry widget from address completion operations.
1300 * \param entry Address entry field.
1302 void address_completion_unregister_entry(GtkEntry
*entry
)
1306 cm_return_if_fail(entry
!= NULL
);
1307 cm_return_if_fail(GTK_IS_ENTRY(entry
));
1309 entry_obj
= g_object_get_data(G_OBJECT(entry
), ENTRY_DATA_TAB_HOOK
);
1310 cm_return_if_fail(entry_obj
);
1311 cm_return_if_fail(G_OBJECT(entry_obj
) == G_OBJECT(entry
));
1313 /* has the hooked property? */
1314 g_object_set_data(G_OBJECT(entry
), ENTRY_DATA_TAB_HOOK
, NULL
);
1316 /* remove the hook */
1317 g_signal_handlers_disconnect_by_func(G_OBJECT(entry
),
1318 G_CALLBACK(address_completion_entry_key_pressed
),
1319 COMPLETION_UNIQUE_DATA
);
1323 * End address completion. Should be called when main window with address
1324 * completion entries terminates. NOTE: this function assumes that it is
1325 * called upon destruction of the window.
1326 * \param mainwindow Main window.
1328 void address_completion_end(GtkWidget
*mainwindow
)
1330 /* if address_completion_end() is really called on closing the window,
1331 * we don't need to unregister the set_focus_cb */
1332 end_address_completion();
1335 /* if focus changes to another entry, then clear completion cache */
1336 static void address_completion_mainwindow_set_focus(GtkWindow
*window
,
1341 if (widget
&& GTK_IS_ENTRY(widget
) &&
1342 g_object_get_data(G_OBJECT(widget
), ENTRY_DATA_TAB_HOOK
)) {
1343 _allowCommas_
= GPOINTER_TO_INT(g_object_get_data(G_OBJECT(widget
), ENTRY_DATA_ALLOW_COMMAS
));
1344 clear_completion_cache();
1349 * Listener that watches for tab or other keystroke in address entry field.
1350 * \param entry Address entry field.
1351 * \param ev Event object.
1352 * \param data User data.
1353 * \return <i>TRUE</i>.
1355 static gboolean
address_completion_entry_key_pressed(GtkEntry
*entry
,
1359 if (ev
->keyval
== GDK_KEY_Tab
) {
1360 addrcompl_clear_queue();
1361 _allowCommas_
= GPOINTER_TO_INT(g_object_get_data(G_OBJECT(entry
), ENTRY_DATA_ALLOW_COMMAS
));
1362 if( address_completion_complete_address_in_entry( entry
, TRUE
) ) {
1363 /* route a void character to the default handler */
1364 /* this is a dirty hack; we're actually changing a key
1365 * reported by the system. */
1366 ev
->keyval
= GDK_KEY_AudibleBell_Enable
;
1367 ev
->state
&= ~GDK_SHIFT_MASK
;
1370 address_completion_create_completion_window(entry
);
1372 /* Start remote queries */
1373 addrcompl_start_search();
1380 } else if (ev
->keyval
== GDK_KEY_Shift_L
1381 || ev
->keyval
== GDK_KEY_Shift_R
1382 || ev
->keyval
== GDK_KEY_Control_L
1383 || ev
->keyval
== GDK_KEY_Control_R
1384 || ev
->keyval
== GDK_KEY_Caps_Lock
1385 || ev
->keyval
== GDK_KEY_Shift_Lock
1386 || ev
->keyval
== GDK_KEY_Meta_L
1387 || ev
->keyval
== GDK_KEY_Meta_R
1388 || ev
->keyval
== GDK_KEY_Alt_L
1389 || ev
->keyval
== GDK_KEY_Alt_R
) {
1390 /* these buttons should not clear the cache... */
1392 clear_completion_cache();
1397 * Initialize search term for address completion.
1398 * \param entry Address entry field.
1400 static gboolean
address_completion_complete_address_in_entry(GtkEntry
*entry
,
1403 gint ncount
, cursor_pos
;
1404 gchar
*searchTerm
, *new = NULL
;
1406 cm_return_val_if_fail(entry
!= NULL
, FALSE
);
1408 if (!gtk_widget_has_focus(GTK_WIDGET(entry
))) return FALSE
;
1410 /* get an address component from the cursor */
1411 searchTerm
= get_address_from_edit( entry
, &cursor_pos
);
1412 if( ! searchTerm
) return FALSE
;
1413 /* g_print( "search for :::%s:::\n", searchTerm ); */
1415 /* Clear any existing search */
1416 g_free( _compWindow_
->searchTerm
);
1417 _compWindow_
->searchTerm
= g_strdup( searchTerm
);
1419 /* Perform search on local completion index */
1420 ncount
= complete_address( searchTerm
);
1422 new = get_next_complete_address();
1425 #if (!defined(USE_LDAP) && !defined(GENERIC_UMPC))
1426 /* Select the address if there is only one match */
1428 /* Display selected address in entry field */
1429 gchar
*addr
= get_complete_address(1);
1430 if (addr
&& !strstr(addr
, " <!--___group___-->")) {
1431 replace_address_in_edit(entry
, addr
, cursor_pos
, FALSE
, NULL
);
1432 /* Discard the window */
1433 clear_completion_cache();
1437 /* Make sure that drop-down appears uniform! */
1441 addrcompl_add_queue( searchTerm
);
1443 g_free( searchTerm
);
1450 * Create new address completion window for specified entry.
1451 * \param entry_ Entry widget to associate with window.
1453 static void address_completion_create_completion_window( GtkEntry
*entry_
)
1457 GtkWidget
*scroll
, *list_view
;
1458 GdkGrabStatus status
;
1459 GdkDisplay
*display
;
1462 GtkWidget
*entry
= GTK_WIDGET(entry_
);
1464 /* Create new window and list */
1465 window
= gtk_window_new(GTK_WINDOW_POPUP
);
1466 list_view
= addr_compl_list_view_create(_compWindow_
);
1468 /* Destroy any existing window */
1469 addrcompl_destroy_window( _compWindow_
);
1471 /* Create new object */
1472 _compWindow_
->window
= window
;
1473 _compWindow_
->entry
= entry
;
1474 _compWindow_
->list_view
= list_view
;
1475 _compWindow_
->listCount
= 0;
1476 _compWindow_
->in_mouse
= FALSE
;
1478 scroll
= gtk_scrolled_window_new(NULL
, NULL
);
1479 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll
),
1480 GTK_POLICY_NEVER
, GTK_POLICY_AUTOMATIC
);
1481 gtk_container_add(GTK_CONTAINER(window
), scroll
);
1482 gtk_container_add(GTK_CONTAINER(scroll
), list_view
);
1483 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll
),
1486 /* Use entry widget to position initial window */
1487 gtk_widget_get_allocation(entry
, &rect
);
1489 /* rect.x and rect.y are relative to parent of our GtkEntry,
1490 * we need to convert them to absolute coordinates */
1491 gdk_window_get_root_coords(
1492 gtk_widget_get_window(gtk_widget_get_parent(entry
)),
1493 rect
.x
, rect
.y
, &x
, &y
);
1495 /* Move the window to just below the GtkEntry */
1496 gtk_window_move(GTK_WINDOW(window
), x
, y
+ rect
.height
);
1498 /* Resize window to fit initial (empty) address list */
1499 gtk_widget_get_preferred_size(list_view
, &r
, NULL
);
1500 gtk_widget_set_size_request(window
, rect
.width
, r
.height
);
1501 gtk_widget_show_all(window
);
1503 /* Setup handlers */
1504 g_signal_connect(G_OBJECT(list_view
), "button_press_event",
1505 G_CALLBACK(list_view_button_press
),
1508 g_signal_connect(G_OBJECT(list_view
), "button_release_event",
1509 G_CALLBACK(list_view_button_release
),
1512 g_signal_connect(G_OBJECT(window
),
1513 "button-press-event",
1514 G_CALLBACK(completion_window_button_press
),
1516 g_signal_connect(G_OBJECT(window
),
1518 G_CALLBACK(completion_window_key_press
),
1520 display
= gdk_display_get_default();
1521 status
= gdk_seat_grab(gdk_display_get_default_seat(display
),
1522 gtk_widget_get_window(window
),
1523 GDK_POINTER_MOTION_MASK
| GDK_BUTTON_PRESS_MASK
|
1524 GDK_BUTTON_RELEASE_MASK
,
1525 TRUE
, NULL
, NULL
, NULL
, NULL
);
1526 if (status
!= GDK_GRAB_SUCCESS
)
1527 g_warning("gdk_seat_grab failed with status %d", status
);
1528 gtk_grab_add( window
);
1532 * Respond to button press in completion window. Check if mouse click is
1533 * anywhere outside the completion window. In that case the completion
1534 * window is destroyed, and the original searchTerm is restored.
1536 * \param widget Window object.
1537 * \param event Event.
1538 * \param compWin Reference to completion window.
1540 static gboolean
completion_window_button_press(GtkWidget
*widget
,
1541 GdkEventButton
*event
,
1542 CompletionWindow
*compWin
)
1544 GtkWidget
*event_widget
, *entry
;
1547 gboolean restore
= TRUE
;
1549 cm_return_val_if_fail(compWin
!= NULL
, FALSE
);
1551 entry
= compWin
->entry
;
1552 cm_return_val_if_fail(entry
!= NULL
, FALSE
);
1554 /* Test where mouse was clicked */
1555 event_widget
= gtk_get_event_widget((GdkEvent
*)event
);
1556 if (event_widget
!= widget
) {
1557 while (event_widget
) {
1558 if (event_widget
== widget
)
1560 else if (event_widget
== entry
) {
1564 event_widget
= gtk_widget_get_parent(event_widget
);
1569 /* Clicked outside of completion window - restore */
1570 searchTerm
= _compWindow_
->searchTerm
;
1571 g_free(get_address_from_edit(GTK_ENTRY(entry
), &cursor_pos
));
1572 replace_address_in_edit(GTK_ENTRY(entry
), searchTerm
, cursor_pos
, FALSE
, NULL
);
1575 clear_completion_cache();
1576 addrcompl_destroy_window( _compWindow_
);
1582 * Respond to key press in completion window.
1583 * \param widget Window object.
1584 * \param event Event.
1585 * \param compWind Reference to completion window.
1587 static gboolean
completion_window_key_press(GtkWidget
*widget
,
1589 CompletionWindow
*compWin
)
1591 GdkEventKey tmp_event
;
1595 GtkWidget
*list_view
;
1597 cm_return_val_if_fail(compWin
!= NULL
, FALSE
);
1599 entry
= compWin
->entry
;
1600 list_view
= compWin
->list_view
;
1601 cm_return_val_if_fail(entry
!= NULL
, FALSE
);
1603 /* allow keyboard navigation in the alternatives tree view */
1604 if (event
->keyval
== GDK_KEY_Up
|| event
->keyval
== GDK_KEY_Down
||
1605 event
->keyval
== GDK_KEY_Page_Up
|| event
->keyval
== GDK_KEY_Page_Down
) {
1606 completion_window_advance_selection
1607 (GTK_TREE_VIEW(list_view
),
1608 event
->keyval
== GDK_KEY_Down
||
1609 event
->keyval
== GDK_KEY_Page_Down
? TRUE
: FALSE
);
1613 /* make tab move to next field */
1614 if( event
->keyval
== GDK_KEY_Tab
) {
1615 /* Reference to parent */
1616 parent
= gtk_widget_get_parent(GTK_WIDGET(entry
));
1618 /* Discard the window */
1619 clear_completion_cache();
1620 addrcompl_destroy_window( _compWindow_
);
1622 /* Move focus to next widget */
1624 gtk_widget_child_focus( parent
, GTK_DIR_TAB_FORWARD
);
1629 /* make backtab move to previous field */
1630 if( event
->keyval
== GDK_KEY_ISO_Left_Tab
) {
1631 /* Reference to parent */
1632 parent
= gtk_widget_get_parent(GTK_WIDGET(entry
));
1634 /* Discard the window */
1635 clear_completion_cache();
1636 addrcompl_destroy_window( _compWindow_
);
1638 /* Move focus to previous widget */
1640 gtk_widget_child_focus( parent
, GTK_DIR_TAB_BACKWARD
);
1644 _allowCommas_
= GPOINTER_TO_INT(g_object_get_data(G_OBJECT(entry
), ENTRY_DATA_ALLOW_COMMAS
));
1646 /* look for presses that accept the selection */
1647 if (event
->keyval
== GDK_KEY_Return
|| event
->keyval
== GDK_KEY_space
||
1648 event
->keyval
== GDK_KEY_KP_Enter
||
1649 (_allowCommas_
&& event
->keyval
== GDK_KEY_comma
)) {
1650 /* User selected address with a key press */
1652 /* Display selected address in entry field */
1653 completion_window_apply_selection(
1654 GTK_TREE_VIEW(list_view
), GTK_ENTRY(entry
),
1655 event
->keyval
!= GDK_KEY_comma
);
1657 if (event
->keyval
== GDK_KEY_comma
) {
1658 gint pos
= gtk_editable_get_position(GTK_EDITABLE(entry
));
1659 gtk_editable_insert_text(GTK_EDITABLE(entry
), ", ", 2, &pos
);
1660 gtk_editable_set_position(GTK_EDITABLE(entry
), pos
+ 1);
1663 /* Discard the window */
1664 clear_completion_cache();
1665 addrcompl_destroy_window( _compWindow_
);
1669 /* key state keys should never be handled */
1670 if (event
->keyval
== GDK_KEY_Shift_L
1671 || event
->keyval
== GDK_KEY_Shift_R
1672 || event
->keyval
== GDK_KEY_Control_L
1673 || event
->keyval
== GDK_KEY_Control_R
1674 || event
->keyval
== GDK_KEY_Caps_Lock
1675 || event
->keyval
== GDK_KEY_Shift_Lock
1676 || event
->keyval
== GDK_KEY_Meta_L
1677 || event
->keyval
== GDK_KEY_Meta_R
1678 || event
->keyval
== GDK_KEY_Alt_L
1679 || event
->keyval
== GDK_KEY_Alt_R
) {
1683 /* some other key, let's restore the searchTerm (orignal text) */
1684 searchTerm
= _compWindow_
->searchTerm
;
1685 g_free(get_address_from_edit(GTK_ENTRY(entry
), &cursor_pos
));
1686 replace_address_in_edit(GTK_ENTRY(entry
), searchTerm
, cursor_pos
, FALSE
, NULL
);
1688 /* make sure anything we typed comes in the edit box */
1689 tmp_event
.type
= event
->type
;
1690 tmp_event
.window
= gtk_widget_get_window(GTK_WIDGET(entry
));
1691 tmp_event
.send_event
= TRUE
;
1692 tmp_event
.time
= event
->time
;
1693 tmp_event
.state
= event
->state
;
1694 tmp_event
.keyval
= event
->keyval
;
1695 tmp_event
.length
= event
->length
;
1696 tmp_event
.string
= event
->string
;
1697 gtk_widget_event(entry
, (GdkEvent
*)&tmp_event
);
1699 /* and close the completion window */
1700 clear_completion_cache();
1701 addrcompl_destroy_window( _compWindow_
);
1707 * ============================================================================
1708 * Publically accessible functions.
1709 * ============================================================================
1713 * Setup completion object.
1715 void addrcompl_initialize( void ) {
1716 /* g_print( "addrcompl_initialize...\n" ); */
1717 if( ! _compWindow_
) {
1718 _compWindow_
= addrcompl_create_window();
1721 _completionIdleID_
= 0;
1722 /* g_print( "addrcompl_initialize...done\n" ); */
1726 * Teardown completion object.
1728 void addrcompl_teardown( void ) {
1729 /* g_print( "addrcompl_teardown...\n" ); */
1730 addrcompl_free_window( _compWindow_
);
1731 _compWindow_
= NULL
;
1733 addrcompl_clear_queue();
1735 _completionIdleID_
= 0;
1736 /* g_print( "addrcompl_teardown...done\n" ); */
1740 * tree view functions
1743 static GtkListStore
*addr_compl_create_store(void)
1745 return gtk_list_store_new(N_ADDR_COMPL_COLUMNS
,
1753 static GtkWidget
*addr_compl_list_view_create(CompletionWindow
*window
)
1755 GtkTreeView
*list_view
;
1756 GtkTreeSelection
*selector
;
1757 GtkTreeModel
*model
;
1759 model
= GTK_TREE_MODEL(addr_compl_create_store());
1760 list_view
= GTK_TREE_VIEW(gtk_tree_view_new_with_model(model
));
1761 g_object_unref(model
);
1763 gtk_tree_view_set_rules_hint(list_view
, prefs_common
.use_stripes_everywhere
);
1764 gtk_tree_view_set_headers_visible(list_view
, FALSE
);
1766 selector
= gtk_tree_view_get_selection(list_view
);
1767 gtk_tree_selection_set_mode(selector
, GTK_SELECTION_BROWSE
);
1768 gtk_tree_selection_set_select_function(selector
, addr_compl_selected
,
1771 /* create the columns */
1772 addr_compl_create_list_view_columns(GTK_WIDGET(list_view
));
1774 return GTK_WIDGET(list_view
);
1777 static void addr_compl_create_list_view_columns(GtkWidget
*list_view
)
1779 GtkTreeViewColumn
*column
;
1780 GtkCellRenderer
*renderer
;
1782 renderer
= gtk_cell_renderer_pixbuf_new();
1783 column
= gtk_tree_view_column_new_with_attributes
1785 "pixbuf", ADDR_COMPL_ICON
, NULL
);
1786 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1787 renderer
= gtk_cell_renderer_text_new();
1788 column
= gtk_tree_view_column_new_with_attributes
1789 ("", renderer
, "text", ADDR_COMPL_ADDRESS
, NULL
);
1790 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view
), column
);
1793 static gboolean
list_view_button_press(GtkWidget
*widget
, GdkEventButton
*event
,
1794 CompletionWindow
*window
)
1796 if (window
&& event
&& event
->type
== GDK_BUTTON_PRESS
) {
1797 window
->in_mouse
= TRUE
;
1802 static gboolean
list_view_button_release(GtkWidget
*widget
, GdkEventButton
*event
,
1803 CompletionWindow
*window
)
1805 if (window
&& event
&& event
->type
== GDK_BUTTON_RELEASE
) {
1806 window
->in_mouse
= FALSE
;
1811 static gboolean
addr_compl_selected(GtkTreeSelection
*selector
,
1812 GtkTreeModel
*model
,
1814 gboolean currently_selected
,
1817 CompletionWindow
*window
= data
;
1819 if (currently_selected
)
1822 if (!window
->in_mouse
)
1825 /* XXX: select the entry and kill window later... select is called before
1826 * any other mouse events handlers including the tree view internal one;
1827 * not using a time out would result in a crash. if this doesn't work
1828 * safely, maybe we should set variables when receiving button presses
1829 * in the tree view. */
1830 if (!window
->destroying
) {
1831 window
->destroying
= TRUE
;
1832 g_idle_add((GSourceFunc
) addr_compl_defer_select_destruct
, data
);
1838 static gboolean
addr_compl_defer_select_destruct(CompletionWindow
*window
)
1840 GtkEntry
*entry
= GTK_ENTRY(window
->entry
);
1842 completion_window_apply_selection(GTK_TREE_VIEW(window
->list_view
),
1845 clear_completion_cache();
1847 addrcompl_destroy_window(window
);
1851 gboolean
found_in_addressbook(const gchar
*address
)
1854 gboolean found
= FALSE
;
1860 addr
= g_strdup(address
);
1861 extract_address(addr
);
1862 num_addr
= complete_address(addr
);
1864 /* skip first item (this is the search string itself) */
1866 for (; i
< num_addr
&& !found
; i
++) {
1867 gchar
*caddr
= get_complete_address(i
);
1868 extract_address(caddr
);
1869 if (strcasecmp(caddr
, addr
) == 0)