diff options
author | Baptiste Jonglez <baptiste--git@jonglez.org> | 2012-05-29 09:55:01 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-05-31 20:45:42 +0200 |
commit | 2c5235cca70bf1c5b5e92dd5b6b178ab13b695f2 (patch) | |
tree | 9185e8079a8ecd0c80c2970e1261e821d1af9952 /src/calcurse.h | |
parent | f7a88a5515e9f088a60623e162b89065ddcce757 (diff) | |
download | calcurse-2c5235cca70bf1c5b5e92dd5b6b178ab13b695f2.zip |
Make appearance.calendarview more explicit in config file
Instead of using 0 or 1 as a value for `appearance.calendarview`,
introduce the more explicit "monthly" and "weekly".
Also update `scripts/calcurse-upgrade.sh` to reflect the change.
Signed-off-by: Baptiste Jonglez <baptiste--git@jonglez.org>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 98e6a76..be16a98 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -360,6 +360,13 @@ struct recur_event { char *note; /* note attached to event */ }; +/* Available view for the calendar panel. */ +enum { + CAL_MONTH_VIEW, + CAL_WEEK_VIEW, + CAL_VIEWS +}; + struct notify_app { long time; int got_app; |