diff options
author | Kidd Wang <kidd.wang@sun.com> | 2003-12-29 17:58:32 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2003-12-29 17:58:32 +0800 |
commit | 68a053e3d3626de202240e9f9344e4d3afe78246 (patch) | |
tree | ad5aedc23ff1eb4f9a97ae0c1c785886d4495bb1 /calendar/gui/e-calendar-view.h | |
parent | 4d52f684219df276a621cf7a40fea3f3112c578b (diff) | |
download | gsoc2013-evolution-68a053e3d3626de202240e9f9344e4d3afe78246.tar.gz gsoc2013-evolution-68a053e3d3626de202240e9f9344e4d3afe78246.tar.zst gsoc2013-evolution-68a053e3d3626de202240e9f9344e4d3afe78246.zip |
add a menu item for "open appointment".
2003-12-29 Kidd Wang <kidd.wang@sun.com>
* gui/calendar-commands.c (file_open_event_cb): add a menu item
for "open appointment".
* gui/e-cal-view.[ch] (e_calendar_view_open_event): add a signal
"open_event" and bind it to "ctrl+o". When the signal is delivered,
a dialog will be opened to edit the selected event.
* gui/e-calendar-table.c (e_calendar_table_on_key_press): press "ctrl-o"
to open a dialog.
svn path=/trunk/; revision=24012
Diffstat (limited to 'calendar/gui/e-calendar-view.h')
-rw-r--r-- | calendar/gui/e-calendar-view.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/e-calendar-view.h b/calendar/gui/e-calendar-view.h index a1b11023b3..c224098554 100644 --- a/calendar/gui/e-calendar-view.h +++ b/calendar/gui/e-calendar-view.h @@ -87,6 +87,7 @@ struct _ECalendarViewClass { void (* set_selected_time_range) (ECalendarView *cal_view, time_t start_time, time_t end_time); gboolean (* get_visible_time_range) (ECalendarView *cal_view, time_t *start_time, time_t *end_time); void (* update_query) (ECalendarView *cal_view); + void (* open_event) (ECalendarView *cal_view); }; GType e_calendar_view_get_type (void); @@ -131,6 +132,8 @@ void e_calendar_view_edit_appointment (ECalendarView *cal_view, ECal *client, icalcomponent *icalcomp, gboolean meeting); +void e_calendar_view_open_event (ECalendarView *cal_view); + G_END_DECLS |