aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-01-28 04:12:00 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-01-28 04:12:00 +0800
commit269524c33fbd6e595d397ceb622232dbcadc0941 (patch)
tree09b9c3ae8eb7735c1180e8b316cdae2aa58c23c9 /mail
parenta9ee877c3368d9db97498d23e9cd15337d06e974 (diff)
downloadgsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.tar
gsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.tar.gz
gsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.tar.bz2
gsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.tar.lz
gsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.tar.xz
gsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.tar.zst
gsoc2013-evolution-269524c33fbd6e595d397ceb622232dbcadc0941.zip
Committed Rajeev's patch.
svn path=/trunk/; revision=31333
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/em-format-html-display.c43
2 files changed, 50 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index d49ece9614..64bbf78c78 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2006-01-27 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in>
+
+ ** Fixes #327000
+
+ * em-format-html-display.c : Added code to change cursor to
+ notify user on image fit to width
+
2006-01-26 Oswald Rodrigues <ozzy_rodrigues@yahoo.com>
* em-popup.c: Corrected typo. changed Add to Addressbook to Add
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index a74bc708eb..7e4d5c19af 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -80,6 +80,7 @@
#include <camel/camel-folder.h>
#include <camel/camel-string-utils.h>
+#include <misc/e-cursors.h>
#include <e-util/e-util.h>
#include <e-util/e-util-private.h>
@@ -1430,6 +1431,46 @@ efhd_image_resized(GtkWidget *w, GtkAllocation *event, struct _attach_puri *info
g_object_unref(pb);
}
+static void
+efhd_change_cursor(GtkWidget *w, GdkEventCrossing *event, struct _attach_puri *info)
+{
+ if (info->shown && info->image) {
+ if (info->fit_width != 0) {
+ if (em_icon_stream_is_resized(info->puri.cid, info->fit_width, info->fit_height))
+ e_cursor_set(w->window, E_CURSOR_ZOOM_IN);
+
+ }
+ }
+}
+
+static void
+efhd_image_fit_width(GtkWidget *widget, GdkEventButton *event, struct _attach_puri *info)
+{
+ int width;
+
+ width = ((GtkWidget *)((EMFormatHTML *)info->puri.format)->html)->allocation.width - 12;
+
+ if (info->shown && info->image) {
+ if (info->fit_width != 0) {
+ if (em_icon_stream_is_resized(info->puri.cid, info->fit_width, info->fit_height)) {
+ if(info->fit_width != width) {
+ info->fit_width = width;
+ e_cursor_set (widget->window, E_CURSOR_ZOOM_IN);
+ } else {
+ info->fit_width = 0;
+ e_cursor_set(widget->window, E_CURSOR_ZOOM_OUT);
+ }
+ }
+ } else {
+ info->fit_width = width;
+ e_cursor_set (widget->window, E_CURSOR_ZOOM_IN);
+ }
+ }
+
+ gtk_image_set_from_pixbuf(info->image, em_icon_stream_get_image(info->puri.cid, info->fit_width, info->fit_height));
+}
+
+
static gboolean
efhd_attachment_image(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject *pobject)
{
@@ -1474,7 +1515,9 @@ efhd_attachment_image(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObjec
g_signal_connect (box, "drag-data-delete", G_CALLBACK(efhd_drag_data_delete), pobject);
g_signal_connect(box, "button_press_event", G_CALLBACK(efhd_image_popup), info);
+ g_signal_connect(box, "enter-notify-event", G_CALLBACK(efhd_change_cursor), info);
g_signal_connect(box, "popup_menu", G_CALLBACK(efhd_attachment_popup_menu), info);
+ g_signal_connect(box, "button-press-event", G_CALLBACK(efhd_image_fit_width), info);
return TRUE;
}