diff options
Diffstat (limited to 'calendar/gui/e-day-view.h')
-rw-r--r-- | calendar/gui/e-day-view.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/calendar/gui/e-day-view.h b/calendar/gui/e-day-view.h index 1e57de4862..4b57a2e155 100644 --- a/calendar/gui/e-day-view.h +++ b/calendar/gui/e-day-view.h @@ -498,6 +498,9 @@ struct _EDayView struct _EDayViewClass { GtkTableClass parent_class; + + /* Notification signals */ + void (* selection_changed) (EDayView *day_view); }; @@ -597,6 +600,13 @@ void e_day_view_cut_clipboard (EDayView *day_view); void e_day_view_copy_clipboard (EDayView *day_view); void e_day_view_paste_clipboard (EDayView *day_view); +void e_day_view_delete_event (EDayView *day_view); + + +/* Returns the number of selected events (0 or 1 at present). */ +gint e_day_view_get_num_events_selected (EDayView *day_view); + + /* * Internal functions called by the associated canvas items. */ |