diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-05-20 18:38:19 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-05-20 18:38:19 +0800 |
commit | 4eb47f9a4696877218bf05d53c52f829d2afcdd5 (patch) | |
tree | 81a7adf9cc66caa99031a1908d7317d616ea2b64 /calendar/gui/e-day-view.h | |
parent | ccd4d84234d933ccf05769e71a3372e149d707d1 (diff) | |
download | gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.tar gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.tar.gz gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.tar.bz2 gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.tar.lz gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.tar.xz gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.tar.zst gsoc2013-evolution-4eb47f9a4696877218bf05d53c52f829d2afcdd5.zip |
new files to implement iCalendar recurrence rules. These are only part
2000-05-20 Damon Chaplin <damon@helixcode.com>
* cal-util/cal-recur.[hc]: new files to implement iCalendar recurrence
rules. These are only part finished, but people may like to check that
the architecture seems OK.
2000-05-17 Damon Chaplin <damon@helixcode.com>
* gui/e-day-view.c (e_day_view_on_delete_occurrence):
* gui/e-week-view.c (e_week_view_on_delete_occurrence): use a copy of
the iCalObject so we detect the change in the "update_event" callback.
Maybe we should just update the view ourselves and then we wouldn't
need to detect any change in the callback.
* cal-util/calobj.c (ical_object_reset_recurrence): new function to
get rid of any recurrence rules. Used when we 'unrecur' an event.
* gui/e-day-view.c (e_day_view_key_press): don't add a new event if it
won't fit, or we end up adding a new event for each key press.
(e_day_view_update_event_label): don't update it if it doesn't have
an EText item (i.e. it isn't visible).
* gui/e-day-view-time-item.c: allow selection of times using this
column.
svn path=/trunk/; revision=3144
Diffstat (limited to 'calendar/gui/e-day-view.h')
-rw-r--r-- | calendar/gui/e-day-view.h | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/calendar/gui/e-day-view.h b/calendar/gui/e-day-view.h index 2c992f8207..17bbff6be5 100644 --- a/calendar/gui/e-day-view.h +++ b/calendar/gui/e-day-view.h @@ -330,11 +330,11 @@ struct _EDayView gint popup_event_day; gint popup_event_num; - /* The currently selected region. If selection_start_col is -1 there is + /* The currently selected region. If selection_start_day is -1 there is no current selection. If start_row or end_row is -1 then the selection is in the top canvas. */ - gint selection_start_col; - gint selection_end_col; + gint selection_start_day; + gint selection_end_day; gint selection_start_row; gint selection_end_row; @@ -482,6 +482,19 @@ gboolean e_day_view_find_long_event_days (EDayView *day_view, gint *start_day, gint *end_day); +void e_day_view_start_selection (EDayView *day_view, + gint day, + gint row); +void e_day_view_update_selection (EDayView *day_view, + gint day, + gint row); +void e_day_view_finish_selection (EDayView *day_view); + +void e_day_view_check_auto_scroll (EDayView *day_view, + gint event_x, + gint event_y); +void e_day_view_stop_auto_scroll (EDayView *day_view); + #ifdef __cplusplus } #endif /* __cplusplus */ |