diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-11-11 09:30:29 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-11-14 11:08:14 +0100 |
commit | 3c59faa925066f5acec45ed197785a09210875cf (patch) | |
tree | 5eaad3517653c851bd241923917ecc18a1f18c4f /src/utils.c | |
parent | a9b820abbe46764f23687eac1d1f62b145cd0962 (diff) | |
download | calcurse-3c59faa925066f5acec45ed197785a09210875cf.zip |
Use a dynamic method to print recurrent items to stdout
Add print_recur_apoint() and print_recur_event() helper functions to
print recurrent items to stdout and use them everywhere. Currently,
these are only wrapper functions to print_apoint() and print_event()
that create temporary, non-recurrent items.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 6b4fa1d..e94c7fa 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1033,3 +1033,30 @@ print_event (const char *format, long day, struct event *ev) putchar (*p); } } + +/* Print a formatted recurrent appointment to stdout. */ +void +print_recur_apoint (const char *format, long day, unsigned occurrence, + struct recur_apoint *rapt) +{ + struct apoint apt; + + apt.start = occurrence; + apt.dur = rapt->dur; + apt.mesg = rapt->mesg; + apt.note = rapt->note; + + print_apoint (format, day, &apt); +} + +/* Print a formatted recurrent event to stdout. */ +void +print_recur_event (const char *format, long day, struct recur_event *rev) +{ + struct event ev; + + ev.mesg = rev->mesg; + ev.note = rev->note; + + print_event (format, day, &ev); +} |