aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-04-23 07:35:36 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-04-23 07:35:36 +0800
commit345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d (patch)
treeae5cc3047d0a60681349e550006db089b5cc8e16
parent78b91d43f856507901b5ace21799e914868345ad (diff)
downloadgsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.tar
gsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.tar.gz
gsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.tar.bz2
gsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.tar.lz
gsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.tar.xz
gsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.tar.zst
gsoc2013-evolution-345f0c8c5dc0ca6e4bce0d46064ed77acd8d914d.zip
Plug-in Anna's html for the flag-for-followup stuff. Finishes up bug #90.
2002-04-22 Jeffrey Stedfast <fejj@ximian.com> * mail-display.c (mail_display_render): Plug-in Anna's html for the flag-for-followup stuff. Finishes up bug #90. svn path=/trunk/; revision=16563
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-display.c44
2 files changed, 34 insertions, 15 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 2503603635..7a5edf152d 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-22 Jeffrey Stedfast <fejj@ximian.com>
+
+ * mail-display.c (mail_display_render): Plug-in Anna's html for
+ the flag-for-followup stuff. Finishes up bug #90.
+
2002-04-19 Jeffrey Stedfast <fejj@ximian.com>
* folder-browser.c (folder_browser_finalise): Free the
diff --git a/mail/mail-display.c b/mail/mail-display.c
index cabab31feb..5c506ffbbe 100644
--- a/mail/mail-display.c
+++ b/mail/mail-display.c
@@ -29,6 +29,7 @@
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk-pixbuf/gdk-pixbuf-loader.h>
#include <gal/util/e-util.h>
+#include <gal/util/e-unicode-i18n.h>
#include <gal/widgets/e-popup-menu.h>
#include <gal/widgets/e-unicode.h>
#include <gtk/gtkinvisible.h>
@@ -1509,6 +1510,11 @@ mail_display_render (MailDisplay *md, GtkHTML *html, gboolean reset_scroll)
mail_html_write (html, stream, "<body marginwidth=0 marginheight=0>\n");
if (md->followup) {
+ const char *overdue;
+ char due_date[100];
+ struct tm due;
+ time_t now;
+
/* my favorite thing to do... muck around with colors so we respect people's stupid themes. */
style = gtk_widget_get_style (GTK_WIDGET (html));
if (style && !md->printing) {
@@ -1520,13 +1526,13 @@ mail_display_render (MailDisplay *md, GtkHTML *html, gboolean reset_scroll)
b = style->base[state].blue / 256;
if (COLOR_IS_LIGHT (r, g, b)) {
- r *= 0.92;
- g *= 0.92;
- b *= 0.92;
+ r *= 1.0;
+ g *= 0.97;
+ b *= 0.75;
} else {
- r = 255 - (0.92 * (255 - r));
- g = 255 - (0.92 * (255 - g));
- b = 255 - (0.92 * (255 - b));
+ r = 255 - (1.0 * (255 - r));
+ g = 255 - (0.97 * (255 - g));
+ b = 255 - (0.75 * (255 - b));
}
sprintf (bgcolor, "%.2X%.2X%.2X", r, g, b);
@@ -1541,17 +1547,25 @@ mail_display_render (MailDisplay *md, GtkHTML *html, gboolean reset_scroll)
strcpy (fontcolor, "000000");
}
- gtk_html_stream_printf (stream, "<font color=\"#%s\">"
- "<table width=\"100%%\" cellspacing=0 cellpading=0><tr><td width=\"100%%\">"
- "<table bgcolor=\"#000000\" width=\"100%%\" cellspacing=0 cellpadding=1>"
- "<tr><td><table bgcolor=\"#%s\" width=\"100%%\" cellpadding=0 cellspacing=0>"
- "<tr>\n", fontcolor, bgcolor);
+ now = time (NULL);
+ if (now >= md->followup->target_date)
+ overdue = U_("<b>Overdue:</b>&nbsp;");
+ else
+ overdue = "";
- gtk_html_stream_printf (stream, "<td><img src=\"%s\"></td><td halign=left><b>%s</b></td>\n",
- mail_display_get_url_for_icon (md, EVOLUTION_IMAGES "/flag-for-followup-16.png"),
- message_tag_followup_i18n_name (md->followup->type));
+ /* copy the due date into 'now' because localtime_r destroys the time_t value */
+ now = md->followup->target_date;
+ localtime_r (&now, &due);
- mail_html_write (html, stream, "</tr></table></tr></table></td></tr></table></font>");
+ e_strftime (due_date, 100, "%B %d, %Y, %l:%M %P", &due);
+
+ gtk_html_stream_printf (stream, "<font color=\"#%s\">"
+ "<table cellspacing=1 cellpadding=1 bgcolor=\"#000000\"><tr><td>"
+ "<table cellspacing=0 bgcolor=\"#%s\" cellpadding=2 cellspacing=2>"
+ "<tr><td align=\"left\" width=20><img src=\"%s\" align=\"middle\"></td>"
+ "<td>%s%s by %s</td></table></td></tr></table></font>", fontcolor, bgcolor,
+ mail_display_get_url_for_icon (md, EVOLUTION_IMAGES "/flag-for-followup-16.png"),
+ overdue, message_tag_followup_i18n_name (md->followup->type), due_date);
}
if (md->current_message) {