aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/tasks-control.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@src.gnome.org>2001-08-01 00:23:03 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2001-08-01 00:23:03 +0800
commitd96fe8dc0a462489d863ee32f46e1631ca129e3e (patch)
tree1332ce30cface45104f566744b0814e6ed59cf78 /calendar/gui/tasks-control.c
parenta82d0af27adda77412aa3e594cff5cd3fd14aa7e (diff)
downloadgsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.tar
gsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.tar.gz
gsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.tar.bz2
gsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.tar.lz
gsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.tar.xz
gsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.tar.zst
gsoc2013-evolution-d96fe8dc0a462489d863ee32f46e1631ca129e3e.zip
Sync from OLS - Federico
svn path=/trunk/; revision=11514
Diffstat (limited to 'calendar/gui/tasks-control.c')
-rw-r--r--calendar/gui/tasks-control.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/calendar/gui/tasks-control.c b/calendar/gui/tasks-control.c
index f2d594610a..d72798528b 100644
--- a/calendar/gui/tasks-control.c
+++ b/calendar/gui/tasks-control.c
@@ -29,6 +29,7 @@
#include <libgnome/gnome-util.h>
#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-ui-util.h>
+#include "dialogs/cal-prefs-dialog.h"
#include "calendar-config.h"
#include "e-tasks.h"
#include "tasks-control.h"
@@ -73,6 +74,9 @@ static void tasks_control_paste_cmd (BonoboUIComponent *uic,
static void tasks_control_delete_cmd (BonoboUIComponent *uic,
gpointer data,
const char *path);
+static void tasks_control_settings_cmd (BonoboUIComponent *uic,
+ gpointer data,
+ const char *path);
BonoboControl *
@@ -234,6 +238,7 @@ static BonoboUIVerb verbs [] = {
BONOBO_UI_VERB ("TasksCopy", tasks_control_copy_cmd),
BONOBO_UI_VERB ("TasksPaste", tasks_control_paste_cmd),
BONOBO_UI_VERB ("TasksDelete", tasks_control_delete_cmd),
+ BONOBO_UI_VERB ("TasksSettings", tasks_control_settings_cmd),
BONOBO_UI_VERB_END
};
@@ -242,6 +247,7 @@ static EPixmap pixmaps [] = {
E_PIXMAP ("/menu/File/New/NewFirstItem/NewTask", "evolution-tasks-mini.png"),
E_PIXMAP ("/menu/File/Print/Print", "print.xpm"),
E_PIXMAP ("/menu/File/Print/Print Preview", "print-preview.xpm"),
+ E_PIXMAP ("/menu/Tools/Component/TasksSettings", "configure_16_calendar.xpm"),
E_PIXMAP ("/Toolbar/New", "buttons/new_appointment.png"),
E_PIXMAP ("/Toolbar/Print", "buttons/print.png"),
E_PIXMAP_END
@@ -366,3 +372,18 @@ tasks_control_delete_cmd (BonoboUIComponent *uic,
tasks = E_TASKS (data);
e_tasks_delete_selected (tasks);
}
+
+/* Callback used for the tasks settings command */
+static void
+tasks_control_settings_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
+{
+ ETasks *tasks;
+ static CalPrefsDialog *prefs_dialog = NULL;
+
+ tasks = E_TASKS (data);
+
+ if (!prefs_dialog)
+ prefs_dialog = cal_prefs_dialog_new (CAL_PREFS_DIALOG_PAGE_TASKS);
+ else
+ cal_prefs_dialog_show (prefs_dialog, CAL_PREFS_DIALOG_PAGE_TASKS);
+}