From 78c72f3ed1da95b1ec432ff9440f6517df2f3e0b Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Wed, 17 Dec 2003 14:13:58 +0000 Subject: removed the 'NewCalendar' verb. (file_new_calendar_cb): removed callback 2003-12-17 Rodrigo Moya * 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 --- calendar/gui/tasks-component.c | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) (limited to 'calendar/gui/tasks-component.c') 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 */ -- cgit v1.2.3