From 16a7d16629ccef6ba18eded18a2078c9bef230fd Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 22 Sep 2003 19:51:25 +0000 Subject: removed, moved to em-folder-view, for now, it has access to an invisible. 2003-09-22 Not Zed * em-popup.c (emp_uri_popup_link_copy): removed, moved to em-folder-view, for now, it has access to an invisible. * em-folder-view.c (emfv_setting_notify): honour the load_http setting, at least the all setting. (emfv_format_popup_event): setup the popup menu item for copy link location here. svn path=/trunk/; revision=22652 --- mail/ChangeLog | 10 ++++++++ mail/em-folder-view.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++++-- mail/em-popup.c | 13 ----------- 3 files changed, 71 insertions(+), 15 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 9fd6cdb4c0..7f3ff2d92d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,13 @@ +2003-09-22 Not Zed + + * em-popup.c (emp_uri_popup_link_copy): removed, moved to + em-folder-view, for now, it has access to an invisible. + + * em-folder-view.c (emfv_setting_notify): honour the load_http + setting, at least the all setting. + (emfv_format_popup_event): setup the popup menu item for copy link + location here. + 2003-09-22 Jeffrey Stedfast * mail-preferences.c (mail_preferences_construct): Connect to diff --git a/mail/em-folder-view.c b/mail/em-folder-view.c index c30632cfc7..be3af1c284 100644 --- a/mail/em-folder-view.c +++ b/mail/em-folder-view.c @@ -1754,6 +1754,44 @@ emfv_format_link_clicked(EMFormatHTMLDisplay *efhd, const char *uri, EMFolderVie } } +struct _EMFVPopupItem { + EMPopupItem item; + + EMFolderView *emfv; + char *uri; +}; + +static void +emp_uri_popup_link_copy(GtkWidget *w, struct _EMFVPopupItem *item) +{ + struct _EMFolderViewPrivate *p = item->emfv->priv; + + g_free(p->selection_uri); + p->selection_uri = g_strdup(item->uri); + + gtk_selection_owner_set(p->invisible, GDK_SELECTION_PRIMARY, gtk_get_current_event_time()); + gtk_selection_owner_set(p->invisible, GDK_SELECTION_CLIPBOARD, gtk_get_current_event_time()); +} + +static struct _EMFVPopupItem emfv_uri_popups[] = { + { { EM_POPUP_ITEM, "00.uri.01", N_("_Copy Link Location"), G_CALLBACK(emp_uri_popup_link_copy), NULL, NULL, EM_POPUP_URI_NOT_MAILTO }, }, +}; + +static void +emfv_uri_popup_free(GSList *list) +{ + while (list) { + GSList *n = list->next; + struct _EMFVPopupItem *item = list->data; + + g_free(item->uri); + g_object_unref(item->emfv); + g_slist_free_1(list); + + list = n; + } +} + static int emfv_format_popup_event(EMFormatHTMLDisplay *efhd, GdkEventButton *event, const char *uri, CamelMimePart *part, EMFolderView *emfv) { @@ -1767,9 +1805,22 @@ emfv_format_popup_event(EMFormatHTMLDisplay *efhd, GdkEventButton *event, const emp = em_popup_new("com.ximian.mail.folderview.popup.uri"); if (part) target = em_popup_target_new_part(part, NULL); - else + else { + GSList *menus = NULL; + int i; + target = em_popup_target_new_uri(uri); + for (i=0;idata.uri); + menus = g_slist_prepend(menus, &emfv_uri_popups[i]); + } + em_popup_add_items(emp, menus, (GDestroyNotify)emfv_uri_popup_free); + } + menu = em_popup_create_menu_once(emp, target, target->mask, target->mask); gtk_menu_popup(menu, NULL, NULL, NULL, NULL, event->button, event->time); @@ -1799,6 +1850,7 @@ enum { EMFV_MESSAGE_STYLE, EMFV_MARK_SEEN, EMFV_MARK_SEEN_TIMEOUT, + EMFV_LOAD_HTTP, EMFV_SETTINGS /* last, for loop count */ }; @@ -1810,7 +1862,8 @@ static const char * const emfv_display_keys[] = { "caret_mode", "message_style", "mark_seen", - "mark_seen_timeout" + "mark_seen_timeout", + "load_http_images" }; static GHashTable *emfv_setting_key; @@ -1862,6 +1915,12 @@ emfv_setting_notify(GConfClient *gconf, guint cnxn_id, GConfEntry *entry, EMFold case EMFV_MARK_SEEN_TIMEOUT: emfv->mark_seen_timeout = gconf_value_get_int(gconf_entry_get_value(entry)); break; + case EMFV_LOAD_HTTP: { + int style = gconf_value_get_int(gconf_entry_get_value(entry)); + + /* FIXME: this doesn't handle the 'sometimes' case, only the always case */ + em_format_html_set_load_http((EMFormatHTML *)emfv->preview, style == 2); + break; } } } diff --git a/mail/em-popup.c b/mail/em-popup.c index a7d8a90179..69fd1d0b6d 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -658,18 +658,6 @@ emp_uri_popup_link_open(GtkWidget *w, EMPopupTarget *t) } } -static void -emp_uri_popup_link_copy(GtkWidget *w, EMPopupTarget *t) -{ -#if 0 - g_free(p->selection_uri); - p->selection_uri = g_strdup(t->data.uri); - - gtk_selection_owner_set(p->invisible, GDK_SELECTION_PRIMARY, gtk_get_current_event_time()); - gtk_selection_owner_set(p->invisible, GDK_SELECTION_CLIPBOARD, gtk_get_current_event_time()); -#endif -} - static void emp_uri_popup_address_send(GtkWidget *w, EMPopupTarget *t) { @@ -684,7 +672,6 @@ emp_uri_popup_address_add(GtkWidget *w, EMPopupTarget *t) static EMPopupItem emp_standard_uri_popups[] = { { EM_POPUP_ITEM, "00.uri.00", N_("_Open Link in Browser"), G_CALLBACK(emp_uri_popup_link_open), NULL, NULL, EM_POPUP_URI_NOT_MAILTO }, - { EM_POPUP_ITEM, "00.uri.01", N_("_Copy Link Location"), G_CALLBACK(emp_uri_popup_link_copy), NULL, NULL, EM_POPUP_URI_NOT_MAILTO }, { EM_POPUP_ITEM, "00.uri.10", N_("Se_nd message to..."), G_CALLBACK(emp_uri_popup_address_send), NULL, NULL, EM_POPUP_URI_MAILTO }, { EM_POPUP_ITEM, "00.uri.20", N_("_Add to Addressbook"), G_CALLBACK(emp_uri_popup_address_add), NULL, NULL, EM_POPUP_URI_MAILTO }, }; -- cgit v1.2.3