aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-11-16 22:14:23 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-11-16 22:14:23 +0800
commit58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0 (patch)
tree066de1d6fa115f91ac204bb775243b21f0385c21 /calendar/gui
parent875a335331382986253a6152cd003ec801315e14 (diff)
downloadgsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.tar
gsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.tar.gz
gsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.tar.bz2
gsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.tar.lz
gsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.tar.xz
gsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.tar.zst
gsoc2013-evolution-58cb09d4cc5d3e91f8814f9a9fd673b9c59234f0.zip
show the details page in task editor.
svn path=/trunk/; revision=30628
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/event-editor.c39
-rw-r--r--calendar/gui/dialogs/task-editor.c4
2 files changed, 9 insertions, 34 deletions
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
@@ -106,20 +106,6 @@ client_changed_cb (CompEditorPage *page, ECal *client, gpointer 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,
Bonobo_UIComponent_EventType type,
@@ -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 [] = {