aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-format.c
diff options
context:
space:
mode:
authorRadek Doulik <rodo@ximian.com>2001-03-23 01:00:42 +0800
committerRadek Doulik <rodo@src.gnome.org>2001-03-23 01:00:42 +0800
commitec189bd8f46c84af0323df0fbd08ebf11a2db413 (patch)
tree3809d6ce8827fcde36fc2226f534f9ac1e45f1cb /mail/mail-format.c
parenta2ae2d718be2cf4803ae0564c0cc539ecdaa4f6b (diff)
downloadgsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.tar
gsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.tar.gz
gsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.tar.bz2
gsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.tar.lz
gsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.tar.xz
gsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.tar.zst
gsoc2013-evolution-ec189bd8f46c84af0323df0fbd08ebf11a2db413.zip
connect to button_press_event and iframe_created events of GtkHTML widget
2001-03-22 Radek Doulik <rodo@ximian.com> * mail-display.c (mail_display_new): connect to button_press_event and iframe_created events of GtkHTML widget (html_button_press_event): new signal handler, runs popup on address fields and on links, later we should add popups for images and maybe some more? any ideas? (html_iframe_created): new signal handler, takes care of connecting to button_press_event of all iframes : plus bunch of empty methods for popup menu items - to be implemented * mail-format.c (write_address): revert back to raw HTML text, store name and email to Text objects, workaround gtkhtml tables bug (to be fixed soon ;-) svn path=/trunk/; revision=8896
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r--mail/mail-format.c40
1 files changed, 31 insertions, 9 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c
index 2668208bc9..fc46526b9c 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -582,7 +582,7 @@ write_field_row_begin (const char *description, gint flags, GtkHTML *html, GtkHT
encoded_desc = e_utf8_from_gtk_string (GTK_WIDGET (html), description);
- mail_html_write (html, stream, "<tr><%s align=right> %s </%s>",
+ mail_html_write (html, stream, "<tr><%s align=\"right\" valign=\"top\">%s</%s>",
bold ? "th" : "td", encoded_desc, bold ? "th" : "td");
g_free (encoded_desc);
@@ -600,7 +600,7 @@ write_date (CamelMimeMessage *message, int flags, GtkHTML *html, GtkHTMLStream *
date = camel_mime_message_get_date (message, &offset);
datestr = header_format_date (date, offset);
- mail_html_write (html, stream, "<td> %s </td> </tr>", datestr);
+ mail_html_write (html, stream, "<td>%s</td> </tr>", datestr);
g_free (datestr);
}
@@ -617,7 +617,7 @@ write_subject (const char *subject, int flags, GtkHTML *html, GtkHTMLStream *str
write_field_row_begin (_("Subject:"), flags, html, stream);
- mail_html_write (html, stream, "<td> %s </td> </tr>", encoded_subj);
+ mail_html_write (html, stream, "<td>%s</td> </tr>", encoded_subj);
if (subject)
g_free (encoded_subj);
@@ -653,6 +653,7 @@ static void
write_address(MailDisplay *md, const CamelInternetAddress *addr, const char *field_name, int flags)
{
const char *name, *email;
+ gboolean name_set = FALSE, mail_set = FALSE;
gint i;
if (addr == NULL || !camel_internet_address_get (addr, 0, NULL, NULL))
@@ -664,19 +665,40 @@ write_address(MailDisplay *md, const CamelInternetAddress *addr, const char *fie
while (camel_internet_address_get (addr, i, &name, &email)) {
if ((name && *name) || (email && *email)) {
-
- mail_html_write (md->html, md->stream, i ? ", " : "<td>");
+ /* we need these <B> </B> to separate HTMLText objects */
+ mail_html_write (md->html, md->stream, i ? ",<B> </B> " : "<td>");
+ mail_html_write (md->html, md->stream, " ");
- mail_html_write (md->html, md->stream, "<object classid=\"address\">");
+ if (name && *name) {
+ mail_html_write (md->html, md->stream,
+ "<!--+GtkHTML:<DATA class=\"Text\" key=\"name\" value=\"%s\">-->",
+ name);
+ name_set = TRUE;
+ }
+
+ if (email && *email) {
+ mail_html_write (md->html, md->stream,
+ "<!--+GtkHTML:<DATA class=\"Text\" key=\"email\" value=\"%s\">-->",
+ email);
+ mail_set = TRUE;
+ }
if (name && *name)
- mail_html_write (md->html, md->stream, "<param name=\"name\" value=\"%s\"/>", name);
+ mail_html_write (md->html, md->stream, "%s ", name);
if (email && *email)
- mail_html_write (md->html, md->stream, "<param name=\"email\" value=\"%s\"/>", email);
- mail_html_write (md->html, md->stream, "</object>");
+ mail_html_write (md->html, md->stream, "%s%s%s",
+ name && *name ? "&lt;" : "",
+ email,
+ name && *name ? "&gt;" : "");
}
++i;
}
+ if (name_set)
+ mail_html_write (md->html, md->stream,
+ "<!--+GtkHTML:<DATA class=\"Text\" clear=\"name\">-->");
+ if (mail_set)
+ mail_html_write (md->html, md->stream,
+ "<!--+GtkHTML:<DATA class=\"Text\" clear=\"email\">-->");
mail_html_write (md->html, md->stream, "</td></tr>"); /* Finish up the table row */
}