[evolution-patches] [Addressbook] Fix for bug 317512



hi,

This is the patch for bug 317512.
Pls review it.

thanks
Aloysius. 
Index: gui/widgets/eab-contact-display.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/widgets/eab-contact-display.c,v
retrieving revision 1.25
diff -u -p -r1.25 eab-contact-display.c
--- gui/widgets/eab-contact-display.c	27 Jan 2006 15:41:52 -0000	1.25
+++ gui/widgets/eab-contact-display.c	23 Feb 2006 17:23:12 -0000
@@ -25,6 +25,7 @@
 #endif
 
 #include "eab-contact-display.h"
+#include "eab-popup.h"
 
 #include "eab-gui-util.h"
 #include "e-util/e-html-utils.h"
@@ -42,6 +43,9 @@
 
 struct _EABContactDisplayPrivate {
 	EContact *contact;
+	
+	GtkWidget *invisible;
+	char *selection_uri;
 };
 
 
@@ -62,6 +66,147 @@ struct _EABContactDisplayPrivate {
 #define MAX_COMPACT_IMAGE_DIMENSION 48
 
 static void
+eab_uri_popup_link_open(EPopup *ep, EPopupItem *item, void *data)
+{
+	EABPopupTargetURI *t = (EABPopupTargetURI *)ep->target;
+	GError *err = NULL;
+	
+	gnome_url_show(t->uri, &err);
+	if (err) {
+		g_warning("gnome_url_show: %s", err->message);
+		g_error_free(err);
+	}
+}
+
+static void
+eab_uri_popup_email_address_copy(EPopup *ep, EPopupItem *item, void *data)
+{
+	EABContactDisplay *display = data;
+	struct _EABContactDisplayPrivate *p = display->priv;
+	EABPopupTargetURI *t = (EABPopupTargetURI *)ep->target;
+	const char *url;
+	char *html=NULL; 
+	GList *email_list;
+	url = t->uri; 
+	int email_num = atoi (url + strlen ("internal-mailto:";));
+	
+	email_list = e_contact_get (p->contact, E_CONTACT_EMAIL);
+	html=g_list_nth_data(email_list, email_num); 
+	 
+	g_free(p->selection_uri);
+	p->selection_uri = g_strdup(html);  
+	g_free (html);
+			
+	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 void
+eab_uri_popup_link_copy(EPopup *ep, EPopupItem *pitem, void *data)
+{
+	EABContactDisplay *display = data;
+	struct _EABContactDisplayPrivate *p = display->priv;
+
+	g_free(p->selection_uri);
+	p->selection_uri = g_strdup(pitem->user_data);
+	
+	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 void
+eab_uri_popup_address_send(EPopup *ep, EPopupItem *item, void *data)
+{
+	EABPopupTargetURI *t = (EABPopupTargetURI *)ep->target;
+	const char *url;
+	EABContactDisplay *display = data;
+	struct _EABContactDisplayPrivate *p = display->priv;
+	url = t->uri; 
+	int mail_num = atoi (url + strlen ("internal-mailto:";));
+	
+	if (mail_num == -1)
+		return; 
+         
+	eab_send_contact (p->contact, mail_num, EAB_DISPOSITION_AS_TO);
+
+}
+
+static void
+eab_selection_get(GtkWidget *widget, GtkSelectionData *data, guint info, guint time_stamp, EABContactDisplay *display)
+{
+	struct _EABContactDisplayPrivate *p = display->priv;
+	
+	if (p->selection_uri == NULL)
+		 return;
+	 
+	gtk_selection_data_set(data, data->target, 8, p->selection_uri, strlen(p->selection_uri));
+}
+
+static void
+eab_selection_clear_event(GtkWidget *widget, GdkEventSelection *event, EABContactDisplay *display)
+{
+#if 0 
+	struct _EABContactDisplayPrivate *p = display->priv;
+
+	g_free(p->selection_uri);
+	p->selection_uri = NULL;
+#endif
+}
+
+static EPopupItem eab_uri_popups[] = {
+	{ E_POPUP_ITEM, "05.open", N_("_Open Link in Browser"), eab_uri_popup_link_open, NULL, NULL, EAB_POPUP_URI_NOT_MAILTO },
+	{ E_POPUP_ITEM, "10.copy", N_("_Copy Link Location"), eab_uri_popup_link_copy, NULL, NULL, EAB_POPUP_URI_NOT_MAILTO },
+	{ E_POPUP_ITEM, "15.send", N_("_Send New Message To ..."), eab_uri_popup_address_send, NULL, NULL, EAB_POPUP_URI_MAILTO}, 
+	{ E_POPUP_ITEM, "20.copy", N_("Copy _Email Address"), eab_uri_popup_email_address_copy, NULL, "gtk-copy", EAB_POPUP_URI_MAILTO},
+};
+
+static void
+eab_uri_popup_free(EPopup *ep, GSList *list, void *data)
+{
+	while (list){
+		GSList *n = list->next;
+		struct _EPopupItem *item = list->data;
+
+		g_free(item->user_data);
+		item->user_data = NULL;
+		g_slist_free_1(list);
+
+		list = n;
+         	}
+}
+
+static int
+eab_uri_popup_event(EABContactDisplay *display, GdkEvent *event, const char *uri)
+{
+	EABPopup *emp;
+	EABPopupTargetURI *t ;
+	GtkMenu *menu;
+        GSList *menus = NULL;
+	int i;
+  
+	emp = eab_popup_new("org.gnome.evolution.addressbook.contactdisplay.popup");
+	
+	t = eab_popup_target_new_uri(emp, uri);
+	t->target.widget = (GtkWidget *)display;
+	
+	for (i=0;i<sizeof(eab_uri_popups)/sizeof(eab_uri_popups[0]);i++) {
+		eab_uri_popups[i].user_data = g_strdup(t->uri);
+		menus = g_slist_prepend(menus, &eab_uri_popups[i]);
+	}
+	e_popup_add_items((EPopup *)emp, menus, NULL, eab_uri_popup_free, display);
+	
+	menu = e_popup_create_menu_once((EPopup *)emp,(EPopupTarget*)t, 0);
+	
+        if (event == NULL) {
+		gtk_menu_popup(menu, NULL, NULL, NULL, NULL, 0, gtk_get_current_event_time());
+	} else {
+		gtk_menu_popup(menu, NULL, NULL, NULL, NULL, event->button.button, event->button.time);
+	}
+
+	return TRUE;
+}
+
+static void
 on_url_requested (GtkHTML *html, const char *url, GtkHTMLStream *handle,
 		  EABContactDisplay *display)
 {
@@ -106,7 +251,7 @@ on_link_clicked (GtkHTML *html, const ch
 
 		if (mail_num == -1)
 			return;
-
+ 
 		eab_send_contact (display->priv->contact, mail_num, EAB_DISPOSITION_AS_TO);
 
 		return;
@@ -624,6 +769,26 @@ eab_contact_display_render (EABContactDi
 	}
 }
 
+static int
+eab_html_press_event (GtkWidget *widget, GdkEvent *event,EABContactDisplay *display)
+{
+	char *uri;
+	gboolean res = FALSE;
+	
+
+	if (event->button.button!= 3 )
+		return FALSE;
+        
+       	uri = gtk_html_get_url_at (GTK_HTML (widget), event->button.x, event->button.y);
+	if (uri){
+		eab_uri_popup_event(display,event,uri);
+               	}
+
+         g_free(uri);
+
+	return res;
+}
+
 GtkWidget*
 eab_contact_display_new (void)
 {
@@ -631,7 +796,8 @@ eab_contact_display_new (void)
 
 	display = g_object_new (EAB_TYPE_CONTACT_DISPLAY, NULL);
 	
-	display->priv = g_new0 (EABContactDisplayPrivate, 1);
+	struct _EABContactDisplayPrivate *p;
+	p=display->priv = g_new0 (EABContactDisplayPrivate, 1);
 
 	gtk_html_set_default_content_type (GTK_HTML (display), "text/html; charset=utf-8");
 	
@@ -643,6 +809,15 @@ eab_contact_display_new (void)
 	g_signal_connect (display, "link_clicked",
 			  G_CALLBACK (on_link_clicked),
 			  display);
+	g_signal_connect (display, "button_press_event", 
+			  G_CALLBACK(eab_html_press_event),
+			  display);
+	p->invisible = gtk_invisible_new();
+	g_signal_connect(p->invisible, "selection_get", G_CALLBACK(eab_selection_get), display);
+	g_signal_connect(p->invisible, "selection_clear_event", G_CALLBACK(eab_selection_clear_event), display);
+	gtk_selection_add_target(p->invisible, GDK_SELECTION_PRIMARY, GDK_SELECTION_TYPE_STRING, 0);
+	gtk_selection_add_target(p->invisible, GDK_SELECTION_CLIPBOARD, GDK_SELECTION_TYPE_STRING, 1);
+	
 #if 0
 	g_signal_connect (display, "object_requested",
 			  G_CALLBACK (on_object_requested),
@@ -662,7 +837,6 @@ eab_contact_display_new (void)
 	return GTK_WIDGET (display);
 }
 
-
 static void
 eab_contact_display_init (GObject *object)
 {
Index: gui/widgets/eab-popup.h
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/widgets/eab-popup.h,v
retrieving revision 1.5
diff -u -p -r1.5 eab-popup.h
--- gui/widgets/eab-popup.h	6 Jul 2005 04:11:14 -0000	1.5
+++ gui/widgets/eab-popup.h	23 Feb 2006 17:23:31 -0000
@@ -46,6 +46,7 @@ typedef struct _EABPopupClass EABPopupCl
  **/
 enum _eab_popup_target_t {
 	EAB_POPUP_TARGET_SELECT,
+	EAB_POPUP_TARGET_URI,
 	EAB_POPUP_TARGET_SOURCE,
 	EAB_POPUP_TARGET_SELECT_NAMES,
 };
@@ -69,6 +70,11 @@ enum _eab_popup_target_select_t {
 	EAB_POPUP_CONTACT = 1<<6,
 };
 
+enum _eab_popup_target_uri_t {
+	EAB_POPUP_URI_HTTP = 1<<0,
+	EAB_POPUP_URI_MAILTO = 1<<1,
+	EAB_POPUP_URI_NOT_MAILTO = 1<<2,
+};
 /**
  * enum _eab_popup_target_source_t - EABPopupTargetSource qualifiers.
  * 
@@ -85,7 +91,7 @@ enum _eab_popup_target_source_t {
 typedef struct _EABPopupTargetSelect EABPopupTargetSelect;
 typedef struct _EABPopupTargetSource EABPopupTargetSource;
 typedef struct _EABPopupTargetSelectNames EABPopupTargetSelectNames;
-
+typedef struct _EABPopupTargetURI EABPopupTargetURI;
 /**
  * struct _EABPopupTargetSelect - A list of address cards.
  * 
@@ -103,6 +109,12 @@ struct _EABPopupTargetSelect {
 	GPtrArray *cards;
 };
 
+
+struct _EABPopupTargetURI {
+	EPopupTarget target;
+	char *uri;
+};
+
 /**
  * struct _EABPopupTargetSource - A source target.
  * 
@@ -156,6 +168,7 @@ GType eab_popup_get_type(void);
 EABPopup *eab_popup_new(const char *menuid);
 
 EABPopupTargetSelect *eab_popup_target_new_select(EABPopup *eabp, struct _EBook *book, int readonly, GPtrArray *cards);
+EABPopupTargetURI *eab_popup_target_new_uri(EABPopup *emp, const char *uri);
 EABPopupTargetSource *eab_popup_target_new_source(EABPopup *eabp, struct _ESourceSelector *selector);
 
 #ifdef ADAPTED_TO_E_NAME_SELECTOR
Index: gui/widgets/eab-popup.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/widgets/eab-popup.c,v
retrieving revision 1.7
diff -u -p -r1.7 eab-popup.c
--- gui/widgets/eab-popup.c	6 Jul 2005 04:11:14 -0000	1.7
+++ gui/widgets/eab-popup.c	23 Feb 2006 17:23:42 -0000
@@ -60,6 +60,11 @@ eabp_target_free(EPopup *ep, EPopupTarge
 		g_object_unref(s->book);
 
 		break; }
+	case EAB_POPUP_TARGET_URI: {
+		EABPopupTargetURI *s = (EABPopupTargetURI *)t;
+
+		g_free(s->uri);
+		break; }
 	case EAB_POPUP_TARGET_SOURCE: {
 		EABPopupTargetSource *s = (EABPopupTargetSource *)t;
 
@@ -129,6 +134,28 @@ EABPopup *eab_popup_new(const char *menu
  * 
  * Return value: 
  **/
+
+EABPopupTargetURI *
+eab_popup_target_new_uri(EABPopup *emp, const char *uri)
+{
+	EABPopupTargetURI *t = e_popup_target_new(&emp->popup, EAB_POPUP_TARGET_URI, sizeof(*t));
+	guint32 mask = ~0;
+
+	t->uri = g_strdup(uri);
+
+	if (g_ascii_strncasecmp(uri, "http:", 5) == 0
+	    || g_ascii_strncasecmp(uri, "https:", 6) == 0)
+		mask &= ~EAB_POPUP_URI_HTTP;
+	if (g_ascii_strncasecmp(uri, "internal-mailto:";, 16) == 0)
+		mask &= ~EAB_POPUP_URI_MAILTO;
+	else
+		mask &= ~EAB_POPUP_URI_NOT_MAILTO;
+
+	t->target.mask = mask;
+
+	return t;
+}
+
 EABPopupTargetSelect *
 eab_popup_target_new_select(EABPopup *eabp, struct _EBook *book, int readonly, GPtrArray *cards)
 {
@@ -276,12 +303,20 @@ static const EPopupHookTargetMask eabph_
 	{ 0 }
 };
 
+static const EPopupHookTargetMask eabph_uri_masks[] = {
+	{ "http", EAB_POPUP_URI_HTTP },
+	{ "internal-mailto", EAB_POPUP_URI_MAILTO },
+	{ "notmailto", EAB_POPUP_URI_NOT_MAILTO },
+	{ 0 }
+};
+
 static const EPopupHookTargetMask eabph_select_names_masks[] = {
 	{ 0 }
 };
 
 static const EPopupHookTargetMap eabph_targets[] = {
 	{ "select", EAB_POPUP_TARGET_SELECT, eabph_select_masks },
+	{ "uri", EAB_POPUP_TARGET_URI, eabph_uri_masks },
 	{ "source", EAB_POPUP_TARGET_SOURCE, eabph_source_masks },
 	{ "select-names", EAB_POPUP_TARGET_SELECT_NAMES, eabph_select_names_masks },
 	{ 0 }
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/ChangeLog,v
retrieving revision 1.2049
diff -u -p -r1.2049 ChangeLog
--- ChangeLog	1 Feb 2006 11:07:17 -0000	1.2049
+++ ChangeLog	23 Feb 2006 17:25:18 -0000
@@ -1,3 +1,16 @@
+2006-02-18  M Victor Aloysius J <victoraloy gmail com>
+
+	* gui/eab-contact-editot.c:(eab_uri_popup_link_open)Added function for opening the links in a browser.
+	(eab_uri_popup_email_address_copy) Added function for copying email addresses.
+	(eab_uri_popup_link_copy) Added function for copying links.
+	(eab_uri_popup_address_send) Added function for opening addresses in a composer.
+	(eab_html_press_event) Added signals for right click, selection_get and selection_clear_event. 
+	* gui/eab-popup.h:
+	* gui/eab-popup.c:
+	Hyperlinked email-addresses and websites in preview pane support right 
+	click mouse options. 
+	Fixes Bug #317512.
+	
 2006-02-01  Devashish Sharma  <sdevashish novell com>
 
 	* gui/contact-editor/e-contact-editor.c: File selector shows preview


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]