diff options
author | Russell Steinthal <steintr@src.gnome.org> | 1999-11-22 16:04:07 +0800 |
---|---|---|
committer | Russell Steinthal <steintr@src.gnome.org> | 1999-11-22 16:04:07 +0800 |
commit | c895e6eefa4a1f08c619e180973c3ec54b1beda0 (patch) | |
tree | 949f274850f27f93f25b6080d7c85bf733777b1b /calendar/main.h | |
parent | 34bf395023e2886dd67e7cdab368c37a7bb2d727 (diff) | |
download | gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.tar gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.tar.gz gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.tar.bz2 gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.tar.lz gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.tar.xz gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.tar.zst gsoc2013-evolution-c895e6eefa4a1f08c619e180973c3ec54b1beda0.zip |
Merged Rusty's last todo list coloring patch from stable to HEAD.
svn path=/trunk/; revision=1429
Diffstat (limited to 'calendar/main.h')
-rw-r--r-- | calendar/main.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/calendar/main.h b/calendar/main.h index bc80e37be4..77a5e12217 100644 --- a/calendar/main.h +++ b/calendar/main.h @@ -19,7 +19,9 @@ typedef enum { COLOR_PROP_PRELIGHT_DAY_BG, /* Background color for prelighted day */ COLOR_PROP_DAY_FG, /* Color for day numbers */ COLOR_PROP_CURRENT_DAY_FG, /* Color for current day's number */ - COLOR_PROP_OVERDUE_TODO, + COLOR_PROP_TODO_NOT_DUE_YET, /* Color for Todo items not yet due */ + COLOR_PROP_TODO_DUE_TODAY, /* Color for Todo items due today */ + COLOR_PROP_TODO_OVERDUE, /* Color for Todo items that are overdue */ COLOR_PROP_LAST /* Number of color properties */ } ColorProp; @@ -36,10 +38,14 @@ extern struct color_prop color_props[]; /* todo preferences */ extern int todo_show_due_date; -extern int todo_due_date_overdue_highlight; + +extern int todo_item_dstatus_highlight_overdue; +extern int todo_item_dstatus_highlight_due_today; +extern int todo_item_dstatus_highlight_not_due_yet; + +extern int todo_show_time_remaining; extern int todo_show_priority; extern char *todo_overdue_font_text; -extern struct color_prop todo_overdue_highlight_color; extern gboolean todo_style_changed; extern gint todo_current_sort_column; extern gint todo_current_sort_type; |