diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2003-01-27 13:34:04 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2003-01-27 13:34:04 +0800 |
commit | c509e2e85b3b4e264da53c24d1a0c91b889961e1 (patch) | |
tree | b6be55d89cb94874e36ea9ee472ea69ea2fae870 /calendar/ChangeLog | |
parent | 50a112d4c47c19e1b58b277bb0bc08828cda1505 (diff) | |
download | gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.tar gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.tar.gz gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.tar.bz2 gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.tar.lz gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.tar.xz gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.tar.zst gsoc2013-evolution-c509e2e85b3b4e264da53c24d1a0c91b889961e1.zip |
Make clicks, drags and resizes work, and pangoize remaining strings. Fix
2003-01-26 Hans Petter Jansson <hpj@ximian.com>
Make clicks, drags and resizes work, and pangoize remaining strings.
Fix EText placement.
* gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
Use Pango.
* gui/e-day-view.c (e_day_view_on_top_canvas_button_press):
Don't add scroll offset, it's already factored in.
(e_day_view_on_main_canvas_button_press): Ditto.
(e_day_view_on_top_canvas_motion): Ditto.
(e_day_view_on_main_canvas_motion): Ditto.
(e_day_view_reshape_long_event): Don't set the "font_gdk" property.
Its non-existence will prevent the other properties from being set as
well.
(e_day_view_reshape_day_event): Ditto.
(e_day_view_update_top_canvas_drag): Ditto.
(e_day_view_start_editing_event): ETextEventProcessor is a GObject
now. So use g_signal_stuff.
(e_day_view_check_auto_scroll): Factor out scroll offset before
checking the pointer's position relative to widget.
(e_day_view_auto_scroll_handler): Don't freeze the canvas when
scrolling - it will fail to update the canvas. If this is not
intended behaviour, it's a bug in the canvas, I think.
(e_day_view_on_main_canvas_drag_motion): Factor in the scroll offset
before checking for auto-scroll, since the function requires this.
* gui/e-week-view.c (e_week_view_reshape_event_span): Don't set the
"font_gdk" property. Its non-existence will prevent the other
properties from being set as well.
(e_week_view_start_editing_event): ETextEventProcessor is a GObject
now. So use g_signal_stuff.
svn path=/trunk/; revision=19641
Diffstat (limited to 'calendar/ChangeLog')
-rw-r--r-- | calendar/ChangeLog | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ea31eb26c6..b15c83f3ec 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,37 @@ +2003-01-26 Hans Petter Jansson <hpj@ximian.com> + + Make clicks, drags and resizes work, and pangoize remaining strings. + Fix EText placement. + + * gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event): + Use Pango. + + * gui/e-day-view.c (e_day_view_on_top_canvas_button_press): + Don't add scroll offset, it's already factored in. + (e_day_view_on_main_canvas_button_press): Ditto. + (e_day_view_on_top_canvas_motion): Ditto. + (e_day_view_on_main_canvas_motion): Ditto. + (e_day_view_reshape_long_event): Don't set the "font_gdk" property. + Its non-existence will prevent the other properties from being set as + well. + (e_day_view_reshape_day_event): Ditto. + (e_day_view_update_top_canvas_drag): Ditto. + (e_day_view_start_editing_event): ETextEventProcessor is a GObject + now. So use g_signal_stuff. + (e_day_view_check_auto_scroll): Factor out scroll offset before + checking the pointer's position relative to widget. + (e_day_view_auto_scroll_handler): Don't freeze the canvas when + scrolling - it will fail to update the canvas. If this is not + intended behaviour, it's a bug in the canvas, I think. + (e_day_view_on_main_canvas_drag_motion): Factor in the scroll offset + before checking for auto-scroll, since the function requires this. + + * gui/e-week-view.c (e_week_view_reshape_event_span): Don't set the + "font_gdk" property. Its non-existence will prevent the other + properties from being set as well. + (e_week_view_start_editing_event): ETextEventProcessor is a GObject + now. So use g_signal_stuff. + 2003-01-25 Hans Petter Jansson <hpj@ximian.com> Mainly making all views use PangoLayouts for text. When drawing a |