aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/tasks-component.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-12-17 22:13:58 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-12-17 22:13:58 +0800
commit78c72f3ed1da95b1ec432ff9440f6517df2f3e0b (patch)
tree9d29e366011309cd02952256b0b31baa45925b68 /calendar/gui/tasks-component.c
parent5b83b0929b296bf2b3b8909b33d554a70e888b35 (diff)
downloadgsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.tar
gsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.tar.gz
gsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.tar.bz2
gsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.tar.lz
gsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.tar.xz
gsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.tar.zst
gsoc2013-evolution-78c72f3ed1da95b1ec432ff9440f6517df2f3e0b.zip
removed the 'NewCalendar' verb. (file_new_calendar_cb): removed callback
2003-12-17 Rodrigo Moya <rodrigo@ximian.com> * gui/calendar-commands.c: removed the 'NewCalendar' verb. (file_new_calendar_cb): removed callback for 'NewCalendar' verb. (impl__get_userCreatableItems): added 'New Calendar' to the list of user creatable items. (impl_requestCreateItem): implemented 'New Calendar'. * gui/tasks-component.c (impl__get_userCreatableItems): added 'New Task List' to the list of user creatable items. (impl_requestCreateItem): implemented 'New Task List'. svn path=/trunk/; revision=23965
Diffstat (limited to 'calendar/gui/tasks-component.c')
-rw-r--r--calendar/gui/tasks-component.c26
1 files changed, 18 insertions, 8 deletions
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c
index 0fa40303ff..9ece3bb9a9 100644
--- a/calendar/gui/tasks-component.c
+++ b/calendar/gui/tasks-component.c
@@ -46,7 +46,8 @@
#include "widgets/misc/e-source-selector.h"
-#define CREATE_TASK_ID "task"
+#define CREATE_TASK_ID "task"
+#define CREATE_TASK_LIST_ID "task-list"
#define PARENT_TYPE bonobo_object_get_type ()
@@ -568,7 +569,7 @@ impl__get_userCreatableItems (PortableServer_Servant servant,
{
GNOME_Evolution_CreatableItemTypeList *list = GNOME_Evolution_CreatableItemTypeList__alloc ();
- list->_length = 1;
+ list->_length = 2;
list->_maximum = list->_length;
list->_buffer = GNOME_Evolution_CreatableItemTypeList_allocbuf (list->_length);
@@ -581,6 +582,13 @@ impl__get_userCreatableItems (PortableServer_Servant servant,
list->_buffer[0].menuShortcut = 't';
list->_buffer[0].iconName = "new_task-16.png";
+ list->_buffer[1].id = CREATE_TASK_LIST_ID;
+ list->_buffer[1].description = _("New task list");
+ list->_buffer[1].menuDescription = _("_Task List");
+ list->_buffer[1].tooltip = _("Create a new task list");
+ list->_buffer[1].menuShortcut = 'n';
+ list->_buffer[1].iconName = "evolution-tasks-mini.png";
+
return list;
}
@@ -693,15 +701,17 @@ impl_requestCreateItem (PortableServer_Servant servant,
if (strcmp (item_type_name, CREATE_TASK_ID) == 0) {
comp = get_default_task (priv->create_ecal);
+
+ comp_editor_edit_comp (COMP_EDITOR (editor), comp);
+ comp_editor_focus (COMP_EDITOR (editor));
+
+ e_comp_editor_registry_add (comp_editor_registry, COMP_EDITOR (editor), TRUE);
+ } else if (strcmp (item_type_name, CREATE_TASK_LIST_ID) == 0) {
+ new_task_list_dialog (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (priv->tasks))));
} else {
bonobo_exception_set (ev, ex_GNOME_Evolution_Component_UnknownType);
return;
- }
-
- comp_editor_edit_comp (COMP_EDITOR (editor), comp);
- comp_editor_focus (COMP_EDITOR (editor));
-
- e_comp_editor_registry_add (comp_editor_registry, COMP_EDITOR (editor), TRUE);
+ }
}
/* Initialization */