From 58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0 Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Wed, 16 Nov 2005 14:14:23 +0000 Subject: show the details page in task editor. svn path=/trunk/; revision=30628 --- calendar/gui/dialogs/event-editor.c | 39 ++++++++----------------------------- calendar/gui/dialogs/task-editor.c | 4 +--- 2 files changed, 9 insertions(+), 34 deletions(-) (limited to 'calendar/gui') diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c index b1f1c123d7..d686ab0b03 100644 --- a/calendar/gui/dialogs/event-editor.c +++ b/calendar/gui/dialogs/event-editor.c @@ -105,20 +105,6 @@ client_changed_cb (CompEditorPage *page, ECal *client, gpointer user_data) //set_menu_sens (EVENT_EDITOR (user_data)); } -static void -menu_view_attendee_cb (BonoboUIComponent *component, - const char *path, - Bonobo_UIComponent_EventType type, - const char *state, - gpointer user_data) -{ - EventEditor *ee = (EventEditor *) user_data; - if (type != Bonobo_UIComponent_STATE_CHANGED) - return; - event_page_set_view_attendee (ee->priv->event_page, atoi(state)); - calendar_config_set_show_attendee (atoi(state)); -} - static void menu_view_role_cb (BonoboUIComponent *component, const char *path, @@ -295,7 +281,7 @@ menu_class_confidential_cb (BonoboUIComponent *ui_component, } static void -menu_action_recurrance_cb (BonoboUIComponent *ui_component, +menu_action_recurrence_cb (BonoboUIComponent *ui_component, const char *path, Bonobo_UIComponent_EventType type, const char *state, @@ -352,7 +338,7 @@ menu_show_time_zone_cmd (BonoboUIComponent *uic, } static void -menu_action_recurrance_cmd (BonoboUIComponent *uic, +menu_action_recurrence_cmd (BonoboUIComponent *uic, void *data, const char *path) { @@ -385,7 +371,7 @@ static BonoboUIVerb verbs [] = { BONOBO_UI_VERB ("ActionAlarm", menu_action_alarm_cmd), BONOBO_UI_VERB ("ActionAllDayEvent", menu_all_day_event_cmd), BONOBO_UI_VERB ("ViewTimeZone", menu_show_time_zone_cmd), - BONOBO_UI_VERB ("ActionRecurrance", menu_action_recurrance_cmd), + BONOBO_UI_VERB ("ActionRecurrence", menu_action_recurrence_cmd), BONOBO_UI_VERB ("ActionFreeBusy", menu_action_freebusy_cmd), BONOBO_UI_VERB ("InsertSendOptions", menu_insert_send_options_cmd), @@ -396,8 +382,8 @@ static EPixmap pixmaps[] = { E_PIXMAP ("/Toolbar/ActionAlarm", "stock_alarm", E_ICON_SIZE_LARGE_TOOLBAR), E_PIXMAP ("/Toolbar/ActionAllDayEvent", "stock_new-24h-appointment", E_ICON_SIZE_LARGE_TOOLBAR), E_PIXMAP ("/Toolbar/ViewTimeZone", "stock_timezone", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/Toolbar/ActionRecurrance", "stock_task-recurring", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/commands/ActionRecurrance", "stock_task-recurring", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/Toolbar/ActionRecurrence", "stock_task-recurring", E_ICON_SIZE_LARGE_TOOLBAR), + E_PIXMAP ("/commands/ActionRecurrence", "stock_task-recurring", E_ICON_SIZE_LARGE_TOOLBAR), E_PIXMAP ("/Toolbar/ActionFreeBusy", "stock_task-recurring", E_ICON_SIZE_LARGE_TOOLBAR), E_PIXMAP_END }; @@ -426,15 +412,6 @@ event_editor_init (EventEditor *ee) EVOLUTION_UIDIR "/evolution-event-editor.xml", "evolution-event-editor", NULL); - /* Show hide the attendee fields */ - status = calendar_config_get_show_attendee (); - bonobo_ui_component_set_prop ( - editor->uic, "/commands/ViewAttendee", - "state", status ? "1" : "0", NULL); - bonobo_ui_component_add_listener ( - editor->uic, "ViewAttendee", - menu_view_attendee_cb, editor); - /* Hide send options */ bonobo_ui_component_set_prop ( editor->uic, "/commands/InsertSendOptions", @@ -518,8 +495,8 @@ event_editor_init (EventEditor *ee) menu_class_confidential_cb, editor); bonobo_ui_component_add_listener ( - editor->uic, "ActionRecurrance", - menu_action_recurrance_cb, editor); + editor->uic, "ActionRecurrence", + menu_action_recurrence_cb, editor); bonobo_ui_component_add_listener ( editor->uic, "ActionFreeBusy", menu_action_freebusy_cb, editor); @@ -549,7 +526,7 @@ event_editor_construct (EventEditor *ee, ECal *client) g_signal_connect (G_OBJECT (priv->event_page), "client_changed", G_CALLBACK (client_changed_cb), ee); - priv->recur_window = gtk_dialog_new_with_buttons (_("Recurrance"), + priv->recur_window = gtk_dialog_new_with_buttons (_("Recurrence"), (GtkWindow *) ee, GTK_DIALOG_MODAL, "gtk-close", GTK_RESPONSE_CLOSE, NULL); diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c index e61c527c78..27bda2c6f1 100644 --- a/calendar/gui/dialogs/task-editor.c +++ b/calendar/gui/dialogs/task-editor.c @@ -279,11 +279,9 @@ menu_option_status_cmd (BonoboUIComponent *uic, void *data, const char *path) { - /* TODO implement it TaskEditor *te = (TaskEditor *) data; - task_page_set_view_status (te->priv->task_page, atoi(state)); - calendar_config_set_show_status (atoi(state)); */ + gtk_widget_show (te->priv->task_details_window); } static BonoboUIVerb verbs [] = { -- cgit v1.2.3