aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2002-08-14 21:07:36 +0800
committerIain Holmes <iain@src.gnome.org>2002-08-14 21:07:36 +0800
commitf14d2e67bbae5ffa09fc8140bda8c47191a6ceb8 (patch)
tree88289cebcc676a678972e86f1bc45a230cde52c3 /my-evolution
parent953f044bace474c003edc8db63d0dbd3386a9bba (diff)
downloadgsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.tar
gsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.tar.gz
gsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.tar.bz2
gsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.tar.lz
gsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.tar.xz
gsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.tar.zst
gsoc2013-evolution-f14d2e67bbae5ffa09fc8140bda8c47191a6ceb8.zip
Use the task components colours
svn path=/trunk/; revision=17773
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog7
-rw-r--r--my-evolution/e-summary-tasks.c31
2 files changed, 35 insertions, 3 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index 7ee21be7e9..e17d9dc368 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,10 @@
+2002-08-14 Iain <iain@ximian.com>
+
+ * e-summary-tasks.c (get_task_colour): Return the stored task colour.
+ (e_summary_tasks_init): Get the colour for overdue and todays tasks
+ from the wombat.
+ (e_summary_tasks_free): Free the stored colours.
+
2002-08-12 Iain <iain@ximian.com>
* e-summary-preferences.c: Removed duff URIs
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c
index 36f8813429..126935c022 100644
--- a/my-evolution/e-summary-tasks.c
+++ b/my-evolution/e-summary-tasks.c
@@ -42,6 +42,8 @@ struct _ESummaryTasks {
CalClient *client;
char *html;
+ char *due_today_colour;
+ char *overdue_colour;
};
const char *
@@ -250,9 +252,9 @@ get_task_colour (ESummary *summary,
end_t = icaltime_as_timet (*due.value);
if (end_t >= todays_start && end_t <= todays_end) {
- ret = "blue";
+ ret = summary->tasks->due_today_colour;
} else if (end_t < t) {
- ret = "red";
+ ret = summary->tasks->overdue_colour;
} else {
ret = "black";
}
@@ -429,15 +431,36 @@ e_summary_tasks_protocol (ESummary *summary,
void
e_summary_tasks_init (ESummary *summary)
{
+ Bonobo_ConfigDatabase db;
+ CORBA_Environment ev;
ESummaryTasks *tasks;
gboolean result;
g_return_if_fail (summary != NULL);
+ CORBA_exception_init (&ev);
+ db = bonobo_get_object ("wombat:", "Bonobo/ConfigDatabase", &ev);
+ if (BONOBO_EX (&ev) || db == CORBA_OBJECT_NIL) {
+ g_warning ("Tasks cannot get database ");
+ db = CORBA_OBJECT_NIL;
+ }
+ CORBA_exception_free (&ev);
+
tasks = g_new (ESummaryTasks, 1);
summary->tasks = tasks;
tasks->html = NULL;
+ /* Get some configuration values from the calendar */
+ if (db != CORBA_OBJECT_NIL) {
+ tasks->due_today_colour = bonobo_config_get_string_with_default (db, "/Calendar/Tasks/Colors/TasksDueToday", "blue", NULL);
+ tasks->overdue_colour = bonobo_config_get_string_with_default (db, "/Calendar/Tasks/Colors/TasksOverdue", "red", NULL);
+
+ bonobo_object_release_unref (db, NULL);
+ } else {
+ tasks->due_today_colour = g_strdup ("blue");
+ tasks->overdue_colour = g_strdup ("red");
+ }
+
tasks->client = cal_client_new ();
if (tasks->client == NULL) {
g_warning ("Error making the client");
@@ -476,7 +499,9 @@ e_summary_tasks_free (ESummary *summary)
tasks = summary->tasks;
gtk_object_unref (GTK_OBJECT (tasks->client));
g_free (tasks->html);
-
+ g_free (tasks->due_today_colour);
+ g_free (tasks->overdue_colour);
+
g_free (tasks);
summary->tasks = NULL;
}