aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/main.c
diff options
context:
space:
mode:
authorRussell Steinthal <steintr@src.gnome.org>1999-11-22 16:04:07 +0800
committerRussell Steinthal <steintr@src.gnome.org>1999-11-22 16:04:07 +0800
commitc895e6eefa4a1f08c619e180973c3ec54b1beda0 (patch)
tree949f274850f27f93f25b6080d7c85bf733777b1b /calendar/gui/main.c
parent34bf395023e2886dd67e7cdab368c37a7bb2d727 (diff)
downloadgsoc2013-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/gui/main.c')
-rw-r--r--calendar/gui/main.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c
index b41b9a6d63..acd732e1ad 100644
--- a/calendar/gui/main.c
+++ b/calendar/gui/main.c
@@ -62,7 +62,9 @@ struct color_prop color_props[] = {
{ 0xd364, 0xc6b7, 0x7969, N_("Highlighted day:"), "/calendar/Colors/prelight_bg" },
{ 0x01f0, 0x01f0, 0x01f0, N_("Day numbers:"), "/calendar/Colors/day_fg" },
{ 0x0000, 0x0000, 0xffff, N_("Current day's number:"), "/calendar/Colors/current_fg" },
- { 0x0000, 0xaaaa, 0xaaaa, N_("Overdue To Do item"), "/calendar/Coloirs/todo_overdue" }
+ { 0xbbbb, 0xbbbb, 0x0000, N_("To-Do item that is not yet due:"), "/calendar/Colors/todo_not_yet" },
+ { 0xdddd, 0xbbbb, 0x0000, N_("To-Do item that is due today:"), "/calendar/Colors/todo_today" },
+ { 0xbbbb, 0xdddd, 0x0000, N_("To-Do item that is overdue:"), "/calendar/Colors/todo_overdue" }
};
/* Number of active calendars */
@@ -206,9 +208,14 @@ init_calendar (void)
/* read todolist settings */
+ todo_show_time_remaining = gnome_config_get_bool("/calendar/Todo/show_time_remain");
todo_show_due_date = gnome_config_get_bool("/calendar/Todo/show_due_date");
- todo_due_date_overdue_highlight = gnome_config_get_bool("/calendar/Todo/highlight_overdue_tasks");
+ todo_item_dstatus_highlight_overdue = gnome_config_get_bool("/calendar/Todo/highlight_overdue");
+
+ todo_item_dstatus_highlight_due_today = gnome_config_get_bool("/calendar/Todo/highlight_due_today");
+
+ todo_item_dstatus_highlight_not_due_yet = gnome_config_get_bool("/calendar/Todo/highlight_not_due_yet");
todo_current_sort_column = gnome_config_get_int("/calendar/Todo/sort_column");