diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-20 19:05:19 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-20 19:05:19 +0000 |
commit | 52d79ac5b3482bfc064bb41e1c76fc9dcdf9a5c2 (patch) | |
tree | d5e8fcffedeb351fa68b9919c99e6889b8856bc1 | |
parent | 9eb077845b14f5be30987953554f2c3a903710e7 (diff) | |
download | calcurse-52d79ac5b3482bfc064bb41e1c76fc9dcdf9a5c2.tar.gz calcurse-52d79ac5b3482bfc064bb41e1c76fc9dcdf9a5c2.zip |
day_process_storage() added
-rwxr-xr-x | src/day.c | 37 |
1 files changed, 36 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: day.c,v 1.23 2007/07/01 17:52:45 culot Exp $ */ +/* $calcurse: day.c,v 1.24 2007/07/20 19:05:19 culot Exp $ */ /* * Calcurse - text-based organizer @@ -44,6 +44,41 @@ static struct day_item_s *day_items_ptr; static struct day_saved_item_s *day_saved_item = NULL; + +/* + * Store the events and appointments for the selected day, and write + * those items in a pad. If selected day is null, then store items for current + * day. This is useful to speed up the appointment panel update. + */ +day_items_nb_t * +day_process_storage(date_t *slctd_date, bool day_changed, day_items_nb_t *inday) +{ + long date; + date_t day; + + if (slctd_date) + day = *slctd_date; + else + calendar_store_current_date(&day); + + date = date2sec(day, 0, 0); + + /* Inits */ + if (apad->length != 0) + delwin(apad->ptrwin); + + /* Store the events and appointments (recursive and normal items). */ + apad->length = day_store_items(date, + &inday->nb_events, &inday->nb_apoints); + + /* Create the new pad with its new length. */ + if (day_changed) + apad->first_onscreen = 0; + apad->ptrwin = newpad(apad->length, apad->width); + + return (inday); +} + /* * Store all of the items to be displayed for the selected day. * Items are of four types: recursive events, normal events, |