[evolution/webkit: 169/177] Add PURI callback to allow modules to create DOM bindings



commit b4bdb95a716fc3b34d189d0dfdd55b7cf066956c
Author: Dan VrÃtil <dvratil redhat com>
Date:   Fri Feb 24 13:24:41 2012 +0100

    Add PURI callback to allow modules to create DOM bindings
    
    Whenever a frame or document is reloaded, the EMailDisplay would
    call bind_func of all PURIs written within the reloaded frame.
    This is not recursive.
    
    In bind_func, every module (plugin or formatter) can connect to events
    of DOM objects it had created.

 em-format/em-format.h |   11 ++++++++-
 mail/e-mail-display.c |   58 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 68 insertions(+), 1 deletions(-)
---
diff --git a/em-format/em-format.h b/em-format/em-format.h
index 6319c44..8f3a718 100644
--- a/em-format/em-format.h
+++ b/em-format/em-format.h
@@ -65,6 +65,7 @@ typedef struct _EMFormatHeader EMFormatHeader;
 typedef struct _EMFormatHandler EMFormatHandler;
 typedef struct _EMFormatParserInfo EMFormatParserInfo;
 typedef struct _EMFormatWriterInfo EMFormatWriterInfo;
+typedef struct _EMailDisplay EMailDisplay;
 
 typedef void		(*EMFormatParseFunc)	(EMFormat *emf,
 					 	 CamelMimePart *part,
@@ -79,7 +80,8 @@ typedef void		(*EMFormatWriteFunc)	(EMFormat *emf,
 typedef GtkWidget*	(*EMFormatWidgetFunc)	(EMFormat *emf,
 					 	 EMFormatPURI *puri,
 					 	 GCancellable *cancellable);
-
+typedef void		(*EMailDisplayBindFunc)	(EMailDisplay *display,
+						 EMFormatPURI *puri);
 
 typedef enum {
 	EM_FORMAT_HANDLER_INLINE = 1 << 0,
@@ -143,6 +145,13 @@ struct _EMFormatPURI {
 	EMFormatWriteFunc write_func;
 	EMFormatWidgetFunc widget_func;
 
+	/**
+	 * Called by #EMailDisplay whenever document/frame is reloaded.
+	 * Modules and plugins can create bindings to events of DOM
+	 * objects they created.
+	 */
+	EMailDisplayBindFunc bind_func;
+
 	gchar *uri;
 	gchar *cid;
 	gchar *mime_type;
diff --git a/mail/e-mail-display.c b/mail/e-mail-display.c
index 234cd43..0abf403 100644
--- a/mail/e-mail-display.c
+++ b/mail/e-mail-display.c
@@ -866,6 +866,7 @@ mail_display_plugin_widget_requested (WebKitWebView *web_view,
                 WebKitDOMElement *attachment;
                 WebKitDOMDocument *document;
 
+		g_message ("Searching for puri %s", puri_uri);
                 document = webkit_web_view_get_dom_document (WEBKIT_WEB_VIEW (display));
                 attachment = find_element_by_id (document, puri_uri);
                 if (!attachment) {
@@ -1094,16 +1095,70 @@ setup_DOM_bindings (GObject *object,
 }
 
 static void
+puri_bind_dom (GObject *object,
+	       GParamSpec *pspec,
+	       gpointer user_data)
+{
+	WebKitWebFrame *frame;
+	WebKitLoadStatus load_status;
+	WebKitWebView *web_view;
+	EMailDisplay *display;
+	GList *iter;
+	EMFormat *emf;
+	const gchar *frame_puri;
+
+	frame = WEBKIT_WEB_FRAME (object);
+	load_status = webkit_web_frame_get_load_status (frame);
+
+	if (load_status != WEBKIT_LOAD_FINISHED)
+		return;
+
+	frame_puri = webkit_web_frame_get_name (frame);
+	web_view = webkit_web_frame_get_web_view (frame);
+	display = E_MAIL_DISPLAY (web_view);
+
+	emf = EM_FORMAT (display->priv->formatter);
+	iter = g_hash_table_lookup (
+			emf->mail_part_table,
+			webkit_web_frame_get_name (frame));
+
+	while (iter) {
+
+		EMFormatPURI *puri = iter->data;
+
+		if (!puri)
+			continue;
+
+		/* Iterate the PURI rendered in the frame and all it's "subPURIs" */
+		if (!g_str_has_prefix (puri->uri, frame_puri))
+			break;
+
+		if (puri->bind_func) {
+			d(printf("bind_func for %s", puri->uri));
+			puri->bind_func (display, puri);
+		}
+
+		iter = iter->next;
+	}
+}
+
+
+static void
 mail_display_frame_created (WebKitWebView *web_view,
                             WebKitWebFrame *frame,
                             gpointer user_data)
 {
         d(printf("Frame %s created!\n", webkit_web_frame_get_name (frame)));
+
         /* Re-bind visibility of this newly created <iframe> with
          * related EAttachmentButton whenever content of this <iframe> is
          * (re)loaded */
         g_signal_connect (frame, "notify::load-status",
                 G_CALLBACK (bind_attachment_iframe_visibility), NULL);
+
+	/* Call bind_func of all PURIs written in this frame */
+	g_signal_connect (frame, "notify::load-status",
+		G_CALLBACK (puri_bind_dom), NULL);
 }
 
 static void
@@ -1210,6 +1265,9 @@ e_mail_display_init (EMailDisplay *display)
         main_frame = webkit_web_view_get_main_frame (WEBKIT_WEB_VIEW (display));
         g_signal_connect (main_frame, "notify::load-status",
                 G_CALLBACK (setup_DOM_bindings), NULL);
+	main_frame = webkit_web_view_get_main_frame (WEBKIT_WEB_VIEW (display));
+	g_signal_connect (main_frame, "notify::load-status",
+			  G_CALLBACK (puri_bind_dom), NULL);
 
         /* Because we are loading from a hard-coded string, there is
          * no chance of I/O errors.  Failure here implies a malformed



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