From 66701930a9995d48335f8cc28796bd36680d0e89 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Fri, 16 Oct 1998 22:19:12 +0000 Subject: Changed a lot of stuff not to use the layout code -- the month view's days 1998-10-16 Federico Mena Quintero * month-view.c: Changed a lot of stuff not to use the layout code -- the month view's days are too small to display layout usefully. Now they display a little list of the events in each day. We also have a popup menu for the days in the month view. * calendar.c (calendar_get_objects_in_range): Reverse the list so that it is returned in increasing order. * eventedit.c (event_editor_new_whole_day): New public function to create an event for the complete span of day_begin to day_end. * year-view.c (new_appointment): Use event_editor_new_whole_day(). * year-view.c (yv_popup_menu): Mark strings for i18n. svn path=/trunk/; revision=452 --- calendar/gui/eventedit.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'calendar/gui/eventedit.h') diff --git a/calendar/gui/eventedit.h b/calendar/gui/eventedit.h index 9cb80e3912..15ef540333 100644 --- a/calendar/gui/eventedit.h +++ b/calendar/gui/eventedit.h @@ -71,6 +71,12 @@ typedef struct { guint event_editor_get_type (void); GtkWidget *event_editor_new (GnomeCalendar *owner, iCalObject *); +/* Convenience function to create and show a new event editor for an event that goes from day_begin + * to day_end of the specified day. + */ +void event_editor_new_whole_day (GnomeCalendar *owner, time_t day); + + END_GNOME_DECLS -- cgit