From 675cc414bdbeb9b83a2ff5add57b7abe9545f9dd Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Thu, 15 Apr 2004 04:53:02 +0000 Subject: fix missing parameters, wow that was a mess. 2004-04-14 Larry Ewing * gui/calendar-component.c (selector_tree_drag_motion): fix missing parameters, wow that was a mess. * gui/dialogs/calendar-setup.glade: add the new "new" dialogs, remove the old druids. * gui/dialogs/calendar-setup.c (calendar_setup_new_calendar): use the new dialogs, colors are still not functional. (calendar_setup_new_task_list): use the new dialogs, with no colors. svn path=/trunk/; revision=25474 --- calendar/ChangeLog | 12 + calendar/gui/calendar-component.c | 4 +- calendar/gui/dialogs/calendar-setup.c | 294 ++-- calendar/gui/dialogs/calendar-setup.glade | 2503 ++++++++++++++--------------- 4 files changed, 1339 insertions(+), 1474 deletions(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 265537db7f..bf37cd6c63 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,15 @@ +2004-04-14 Larry Ewing + + * gui/calendar-component.c (selector_tree_drag_motion): fix + missing parameters, wow that was a mess. + + * gui/dialogs/calendar-setup.glade: add the new "new" dialogs, + remove the old druids. + + * gui/dialogs/calendar-setup.c (calendar_setup_new_calendar): use + the new dialogs, colors are still not functional. + (calendar_setup_new_task_list): use the new dialogs, with no colors. + 2004-04-14 JP Rosevear Fixes #56613 diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 828c751fe4..50eadcc55a 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -637,7 +637,9 @@ static gboolean selector_tree_drag_motion (GtkWidget *widget, GdkDragContext *context, int x, - int y) + int y, + guint time, + gpointer user_data) { GtkTreePath *path = NULL; gpointer data = NULL; diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c index 2fbe124660..aa22ecd6b1 100644 --- a/calendar/gui/dialogs/calendar-setup.c +++ b/calendar/gui/dialogs/calendar-setup.c @@ -65,6 +65,13 @@ typedef struct /* Location page fields */ GtkWidget *uri_entry; GtkWidget *refresh_spin; + + /* sensitive blocks */ + GtkWidget *uri_label; + GtkWidget *uri_hbox; + GtkWidget *refresh_label; + GtkWidget *refresh_hbox; + GtkWidget *add_button; } SourceDialog; @@ -275,10 +282,90 @@ source_dialog_destroy (SourceDialog *source_dialog) g_free (source_dialog); } +static gboolean +general_page_verify (SourceDialog *source_dialog) +{ + const gchar *name; + + if (!source_dialog->source_group && !source_dialog->source) + return FALSE; + + name = gtk_entry_get_text (GTK_ENTRY (source_dialog->name_entry)); + if (!name || !name [0]) + return FALSE; + + return TRUE; +} + +static gboolean +remote_page_verify (SourceDialog *source_dialog) +{ + const gchar *uri; + + uri = gtk_entry_get_text (GTK_ENTRY (source_dialog->uri_entry)); + if (!uri || !uri [0]) + return FALSE; + + if (!validate_remote_uri (uri, FALSE, NULL)) + return FALSE; + + return TRUE; +} + +static void +general_entry_modified (SourceDialog *source_dialog) +{ + const char *text = gtk_entry_get_text (GTK_ENTRY (source_dialog->name_entry)); + gboolean sensitive = text && *text != '\0'; + + if (source_group_is_remote (source_dialog->source_group)) { + sensitive &= remote_page_verify (source_dialog); + } + + gtk_widget_set_sensitive (source_dialog->add_button, sensitive); +} + +static void +general_update_dialog (SourceDialog *source_dialog) +{ + gboolean remote = FALSE; + + /* These are calendar specific so make sure we have them */ + if (source_dialog->uri_entry) + g_signal_handlers_block_matched (source_dialog->uri_entry, G_SIGNAL_MATCH_DATA, + 0, 0, NULL, NULL, source_dialog); + + remote = (source_dialog->source && source_is_remote (source_dialog->source)) + || source_group_is_remote (source_dialog->source_group); + + if (!remote) { + if (source_dialog->uri_entry) + gtk_entry_set_text (GTK_ENTRY (source_dialog->uri_entry), ""); + if (source_dialog->refresh_spin) + gtk_spin_button_set_value (GTK_SPIN_BUTTON (source_dialog->refresh_spin), 30); + } + + general_entry_modified (source_dialog); + + if (source_dialog->uri_hbox) + gtk_widget_set_sensitive (source_dialog->uri_hbox, remote); + if (source_dialog->uri_label) + gtk_widget_set_sensitive (source_dialog->uri_label, remote); + if (source_dialog->refresh_label) + gtk_widget_set_sensitive (source_dialog->refresh_label, remote); + if (source_dialog->refresh_hbox) + gtk_widget_set_sensitive (source_dialog->refresh_hbox, remote); + + if (source_dialog->uri_entry) + g_signal_handlers_unblock_matched (source_dialog->uri_entry, G_SIGNAL_MATCH_DATA, + 0, 0, NULL, NULL, source_dialog); +} + static void source_to_dialog (SourceDialog *source_dialog) { ESource *source = source_dialog->source; + gboolean remote = FALSE; g_signal_handlers_block_matched (source_dialog->name_entry, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, source_dialog); @@ -292,10 +379,13 @@ source_to_dialog (SourceDialog *source_dialog) 0, 0, NULL, NULL, source_dialog); gtk_entry_set_text (GTK_ENTRY (source_dialog->name_entry), source ? e_source_peek_name (source) : ""); + if (source && source_is_remote (source)) { gchar *uri_str; const gchar *refresh_str; + remote = TRUE; + uri_str = e_source_get_uri (source); gtk_entry_set_text (GTK_ENTRY (source_dialog->uri_entry), uri_str); g_free (uri_str); @@ -310,6 +400,8 @@ source_to_dialog (SourceDialog *source_dialog) gtk_spin_button_set_value (GTK_SPIN_BUTTON (source_dialog->refresh_spin), 30); } + general_update_dialog (source_dialog); + g_signal_handlers_unblock_matched (source_dialog->name_entry, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, source_dialog); if (source_dialog->uri_entry) @@ -353,36 +445,6 @@ dialog_to_source (SourceDialog *source_dialog) } } -static gboolean -general_page_verify (SourceDialog *source_dialog) -{ - const gchar *name; - - if (!source_dialog->source_group && !source_dialog->source) - return FALSE; - - name = gtk_entry_get_text (GTK_ENTRY (source_dialog->name_entry)); - if (!name || !name [0]) - return FALSE; - - return TRUE; -} - -static gboolean -remote_page_verify (SourceDialog *source_dialog) -{ - const gchar *uri; - - uri = gtk_entry_get_text (GTK_ENTRY (source_dialog->uri_entry)); - if (!uri || !uri [0]) - return FALSE; - - if (!validate_remote_uri (uri, FALSE, NULL)) - return FALSE; - - return TRUE; -} - static gboolean source_dialog_is_valid (SourceDialog *source_dialog) { @@ -432,55 +494,23 @@ remote_page_modified (SourceDialog *source_dialog) } static void -source_group_changed (SourceDialog *source_dialog) +source_group_changed_sensitive (SourceDialog *source_dialog) { source_dialog->source_group = g_slist_nth (e_source_list_peek_groups (source_dialog->source_list), gtk_option_menu_get_history (GTK_OPTION_MENU (source_dialog->group_optionmenu)))->data; -} -static void -general_page_prepare (GtkWidget *page, GtkWidget *druid, SourceDialog *source_dialog) -{ - general_page_modified (source_dialog); - gtk_widget_grab_focus (source_dialog->name_entry); + general_update_dialog (source_dialog); } static void -remote_page_prepare (GtkWidget *page, GtkWidget *druid, SourceDialog *source_dialog) -{ - remote_page_modified (source_dialog); - gtk_widget_grab_focus (source_dialog->uri_entry); -} - -static gboolean -general_page_forward (GtkWidget *page, GtkWidget *widget, SourceDialog *source_dialog) -{ - GtkWidget *finish_page = glade_xml_get_widget (source_dialog->gui_xml, "finish-page"); - - if (!source_group_is_remote (source_dialog->source_group)) { - gnome_druid_set_page (GNOME_DRUID (source_dialog->druid), GNOME_DRUID_PAGE (finish_page)); - return TRUE; - } - - return FALSE; -} - -static gboolean -finish_page_back (GtkWidget *page, GtkWidget *widget, SourceDialog *source_dialog) +new_calendar_cancel (SourceDialog *source_dialog) { - GtkWidget *general_page = glade_xml_get_widget (source_dialog->gui_xml, "general-page"); - - if (!source_group_is_remote (source_dialog->source_group)) { - gnome_druid_set_page (GNOME_DRUID (source_dialog->druid), GNOME_DRUID_PAGE (general_page)); - return TRUE; - } - - return FALSE; + gtk_widget_destroy (source_dialog->window); } static void -new_calendar_finish (SourceDialog *source_dialog) +new_calendar_add (SourceDialog *source_dialog) { source_dialog->source = create_new_source_with_group (GTK_WINDOW (source_dialog->window), source_dialog->source_group, @@ -488,13 +518,7 @@ new_calendar_finish (SourceDialog *source_dialog) gtk_entry_get_text (GTK_ENTRY (source_dialog->uri_entry)), E_CAL_SOURCE_TYPE_EVENT); dialog_to_source (source_dialog); - - gtk_widget_destroy (source_dialog->window); -} - -static void -new_calendar_cancel (SourceDialog *source_dialog) -{ + gtk_widget_destroy (source_dialog->window); } @@ -502,29 +526,21 @@ gboolean calendar_setup_new_calendar (GtkWindow *parent) { SourceDialog *source_dialog = g_new0 (SourceDialog, 1); - GtkWidget *page; - source_dialog->gui_xml = glade_xml_new (EVOLUTION_GLADEDIR "/" GLADE_FILE_NAME, "calendar-druid-window", NULL); + source_dialog->gui_xml = glade_xml_new (EVOLUTION_GLADEDIR "/" GLADE_FILE_NAME, "add-calendar-window", NULL); if (!source_dialog->gui_xml) { g_warning (G_STRLOC ": Cannot load Glade file."); g_free (source_dialog); return FALSE; } - source_dialog->window = glade_xml_get_widget (source_dialog->gui_xml, "calendar-druid-window"); - source_dialog->druid = glade_xml_get_widget (source_dialog->gui_xml, "druid"); + source_dialog->window = glade_xml_get_widget (source_dialog->gui_xml, "add-calendar-window"); - /* General page */ - page = glade_xml_get_widget (source_dialog->gui_xml, "general-page"); source_dialog->name_entry = glade_xml_get_widget (source_dialog->gui_xml, "name-entry"); g_signal_connect_swapped (source_dialog->name_entry, "changed", - G_CALLBACK (general_page_modified), source_dialog); - g_signal_connect_after (page, "prepare", - G_CALLBACK (general_page_prepare), source_dialog); - g_signal_connect_after (page, "next", - G_CALLBACK (general_page_forward), source_dialog); - + G_CALLBACK (general_entry_modified), source_dialog); source_dialog->source_list = e_source_list_new_for_gconf_default ("/apps/evolution/calendar/sources"); + source_dialog->group_optionmenu = glade_xml_get_widget (source_dialog->gui_xml, "group-optionmenu"); if (!GTK_IS_MENU (gtk_option_menu_get_menu (GTK_OPTION_MENU (source_dialog->group_optionmenu)))) { @@ -540,38 +556,36 @@ calendar_setup_new_calendar (GtkWindow *parent) gtk_option_menu_set_history (GTK_OPTION_MENU (source_dialog->group_optionmenu), 0); source_dialog->source_group = e_source_list_peek_groups (source_dialog->source_list)->data; g_signal_connect_swapped (source_dialog->group_optionmenu, "changed", - G_CALLBACK (source_group_changed), source_dialog); + G_CALLBACK (source_group_changed_sensitive), source_dialog); - /* Remote page */ - page = glade_xml_get_widget (source_dialog->gui_xml, "remote-page"); source_dialog->uri_entry = glade_xml_get_widget (source_dialog->gui_xml, "uri-entry"); - source_dialog->refresh_spin = glade_xml_get_widget (source_dialog->gui_xml, "refresh-spin"); + source_dialog->uri_label = glade_xml_get_widget (source_dialog->gui_xml, "uri-label"); + source_dialog->uri_hbox = glade_xml_get_widget (source_dialog->gui_xml, "uri-hbox"); + g_signal_connect_swapped (source_dialog->uri_entry, "changed", - G_CALLBACK (remote_page_modified), source_dialog); - g_signal_connect_swapped (source_dialog->refresh_spin, "changed", - G_CALLBACK (remote_page_modified), source_dialog); - g_signal_connect_after (page, "prepare", - G_CALLBACK (remote_page_prepare), source_dialog); - - /* Finish page */ - page = glade_xml_get_widget (source_dialog->gui_xml, "finish-page"); - g_signal_connect_swapped (page, "finish", - G_CALLBACK (new_calendar_finish), source_dialog); - g_signal_connect_after (page, "back", - G_CALLBACK (finish_page_back), source_dialog); - g_signal_connect_swapped (source_dialog->druid, "cancel", + G_CALLBACK (general_entry_modified), source_dialog); + + source_dialog->refresh_spin = glade_xml_get_widget (source_dialog->gui_xml, "refresh-spin"); + source_dialog->refresh_label = glade_xml_get_widget (source_dialog->gui_xml, "refresh-label"); + source_dialog->refresh_hbox = glade_xml_get_widget (source_dialog->gui_xml, "refresh-hbox"); + + g_signal_connect_swapped (glade_xml_get_widget (source_dialog->gui_xml, "cancel-button"), "clicked", G_CALLBACK (new_calendar_cancel), source_dialog); + + source_dialog->add_button = glade_xml_get_widget (source_dialog->gui_xml, "add-button"); + gtk_widget_set_sensitive (source_dialog->add_button, FALSE); + + g_signal_connect_swapped (source_dialog->add_button, "clicked", + G_CALLBACK (new_calendar_add), source_dialog); g_object_weak_ref (G_OBJECT (source_dialog->window), (GWeakNotify) source_dialog_destroy, source_dialog); - - /* Prepare and show dialog */ + source_to_dialog (source_dialog); gtk_window_set_type_hint (GTK_WINDOW (source_dialog->window), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_window_set_modal (GTK_WINDOW (source_dialog->window), TRUE); gtk_widget_show_all (source_dialog->window); - return TRUE; } @@ -645,7 +659,13 @@ calendar_setup_edit_calendar (GtkWindow *parent, ESource *source) } static void -new_task_list_finish (SourceDialog *source_dialog) +new_task_list_cancel (SourceDialog *source_dialog) +{ + gtk_widget_destroy (source_dialog->window); +} + +static void +new_task_list_add (SourceDialog *source_dialog) { source_dialog->source = create_new_source_with_group (GTK_WINDOW (source_dialog->window), source_dialog->source_group, @@ -653,13 +673,7 @@ new_task_list_finish (SourceDialog *source_dialog) gtk_entry_get_text (GTK_ENTRY (source_dialog->uri_entry)), E_CAL_SOURCE_TYPE_TODO); dialog_to_source (source_dialog); - - gtk_widget_destroy (source_dialog->window); -} - -static void -new_task_list_cancel (SourceDialog *source_dialog) -{ + gtk_widget_destroy (source_dialog->window); } @@ -667,29 +681,21 @@ gboolean calendar_setup_new_task_list (GtkWindow *parent) { SourceDialog *source_dialog = g_new0 (SourceDialog, 1); - GtkWidget *page; - source_dialog->gui_xml = glade_xml_new (EVOLUTION_GLADEDIR "/" GLADE_FILE_NAME, "task-list-druid-window", NULL); + source_dialog->gui_xml = glade_xml_new (EVOLUTION_GLADEDIR "/" GLADE_FILE_NAME, "add-task-list-window", NULL); if (!source_dialog->gui_xml) { g_warning (G_STRLOC ": Cannot load Glade file."); g_free (source_dialog); return FALSE; } - source_dialog->window = glade_xml_get_widget (source_dialog->gui_xml, "task-list-druid-window"); - source_dialog->druid = glade_xml_get_widget (source_dialog->gui_xml, "druid"); + source_dialog->window = glade_xml_get_widget (source_dialog->gui_xml, "add-task-list-window"); - /* General page */ - page = glade_xml_get_widget (source_dialog->gui_xml, "general-page"); source_dialog->name_entry = glade_xml_get_widget (source_dialog->gui_xml, "name-entry"); g_signal_connect_swapped (source_dialog->name_entry, "changed", - G_CALLBACK (general_page_modified), source_dialog); - g_signal_connect_after (page, "prepare", - G_CALLBACK (general_page_prepare), source_dialog); - g_signal_connect_after (page, "next", - G_CALLBACK (general_page_forward), source_dialog); - + G_CALLBACK (general_entry_modified), source_dialog); source_dialog->source_list = e_source_list_new_for_gconf_default ("/apps/evolution/tasks/sources"); + source_dialog->group_optionmenu = glade_xml_get_widget (source_dialog->gui_xml, "group-optionmenu"); if (!GTK_IS_MENU (gtk_option_menu_get_menu (GTK_OPTION_MENU (source_dialog->group_optionmenu)))) { @@ -705,36 +711,36 @@ calendar_setup_new_task_list (GtkWindow *parent) gtk_option_menu_set_history (GTK_OPTION_MENU (source_dialog->group_optionmenu), 0); source_dialog->source_group = e_source_list_peek_groups (source_dialog->source_list)->data; g_signal_connect_swapped (source_dialog->group_optionmenu, "changed", - G_CALLBACK (source_group_changed), source_dialog); + G_CALLBACK (source_group_changed_sensitive), source_dialog); - /* Remote page */ - page = glade_xml_get_widget (source_dialog->gui_xml, "remote-page"); source_dialog->uri_entry = glade_xml_get_widget (source_dialog->gui_xml, "uri-entry"); - source_dialog->refresh_spin = glade_xml_get_widget (source_dialog->gui_xml, "refresh-spin"); + source_dialog->uri_label = glade_xml_get_widget (source_dialog->gui_xml, "uri-label"); + source_dialog->uri_hbox = glade_xml_get_widget (source_dialog->gui_xml, "uri-hbox"); + g_signal_connect_swapped (source_dialog->uri_entry, "changed", - G_CALLBACK (remote_page_modified), source_dialog); - g_signal_connect_swapped (source_dialog->refresh_spin, "changed", - G_CALLBACK (remote_page_modified), source_dialog); - g_signal_connect_after (page, "prepare", - G_CALLBACK (remote_page_prepare), source_dialog); - - /* Finish page */ - page = glade_xml_get_widget (source_dialog->gui_xml, "finish-page"); - g_signal_connect_swapped (page, "finish", - G_CALLBACK (new_task_list_finish), source_dialog); - g_signal_connect_swapped (source_dialog->druid, "cancel", + G_CALLBACK (general_entry_modified), source_dialog); + + source_dialog->refresh_spin = glade_xml_get_widget (source_dialog->gui_xml, "refresh-spin"); + source_dialog->refresh_label = glade_xml_get_widget (source_dialog->gui_xml, "refresh-label"); + source_dialog->refresh_hbox = glade_xml_get_widget (source_dialog->gui_xml, "refresh-hbox"); + + g_signal_connect_swapped (glade_xml_get_widget (source_dialog->gui_xml, "cancel-button"), "clicked", G_CALLBACK (new_task_list_cancel), source_dialog); + + source_dialog->add_button = glade_xml_get_widget (source_dialog->gui_xml, "add-button"); + gtk_widget_set_sensitive (source_dialog->add_button, FALSE); + + g_signal_connect_swapped (source_dialog->add_button, "clicked", + G_CALLBACK (new_task_list_add), source_dialog); g_object_weak_ref (G_OBJECT (source_dialog->window), (GWeakNotify) source_dialog_destroy, source_dialog); - - /* Prepare and show dialog */ + source_to_dialog (source_dialog); gtk_window_set_type_hint (GTK_WINDOW (source_dialog->window), GDK_WINDOW_TYPE_HINT_DIALOG); gtk_window_set_modal (GTK_WINDOW (source_dialog->window), TRUE); gtk_widget_show_all (source_dialog->window); - return TRUE; } diff --git a/calendar/gui/dialogs/calendar-setup.glade b/calendar/gui/dialogs/calendar-setup.glade index cb310cf4c5..0c5b0e1b05 100644 --- a/calendar/gui/dialogs/calendar-setup.glade +++ b/calendar/gui/dialogs/calendar-setup.glade @@ -4,188 +4,245 @@ - - Calendar Properties + + True + Add Calendar GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE False True False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - - 6 + + 12 True False - 6 + 12 - - 6 + True - True - True - True - GTK_POS_TOP - False - False + 5 + 2 + False + 6 + 6 - - 6 + True - False - 6 + True + True + True + 0 + Chillonia + True + * + True + + + 1 + 2 + 1 + 2 + + + + + + + True + _URL: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 3 + 4 + fill + + + + + + + True + _Refresh: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 4 + 5 + fill + + + + + + + True + 0 + 0.5 + 0 + 1 - - 3 + True False - 4 + 6 - + True - _Display name: - True - False - GTK_JUSTIFY_CENTER + True + 1 + 0 + False + GTK_UPDATE_ALWAYS + False False - False - 0.5 - 0.5 - 0 - 0 + 30 0 100 1 10 10 0 - False - False + True + True - + True - 1 - 0.5 - 0.9 - 1 - 0 - 0 - 0 - 0 + True + 0 - - True - True - True - True - 0 - - True - * - False + + + + + True + minutes + True + + + + + + + True + hours + True + + + + + + + True + days + True + + + + + + + True + weeks + True + + + 0 - True - True + False + False - - 0 - False - False - - - - - - True - False - 0 - - - - - - - 0 - True - True - - False - True + 1 + 2 + 4 + 5 + fill - + True - General - False + C_olor: + True False - GTK_JUSTIFY_CENTER + GTK_JUSTIFY_LEFT False False - 0.5 + 0 0.5 0 0 - tab + 0 + 1 + 2 + 3 + fill + - - 6 + True - 2 - 2 - False - 4 - 4 + True + True + False + Pick a color + + + 1 + 2 + 2 + 3 + fill + + + - - - True - _Source URL: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - uri-entry - - - 0 - 1 - 0 - 1 - fill - - - + + + True + False + 6 @@ -200,116 +257,112 @@ False - 1 - 2 - 0 - 1 - - - - - - - True - _Refresh Interval: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - + 0 + True + True - + True - False - 4 - - - - True - True - 1 - 0 - False - GTK_UPDATE_ALWAYS - False - False - 30 1 9999 1 10 10 - - - 0 - True - True - - + True + GTK_RELIEF_NORMAL - + True - minute(s) - False - False - GTK_JUSTIFY_LEFT - False - False + xine_16x16.png 0.5 0.5 0 0 - - 0 - False - False - - 1 - 2 - 1 - 2 - fill - fill + 0 + False + False - False - True + 1 + 2 + 3 + 4 + fill + fill - + True - Remote - False + True + -1 + + + + + + + + 1 + 2 + 0 + 1 + fill + + + + + + + True + _Type: + True False GTK_JUSTIFY_LEFT False False - 0.5 + 0 0.5 0 0 - tab + 0 + 1 + 0 + 1 + fill + + + + + + + True + _Name: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + @@ -321,47 +374,85 @@ - + True - False + GTK_BUTTONBOX_END 0 - + True - GTK_BUTTONBOX_END - 6 + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + + - - - True - True - True - gtk-cancel - True - GTK_RELIEF_NORMAL - True - - + + + True + True + True + GTK_RELIEF_NORMAL - + True - True - True - True - gtk-ok - True - GTK_RELIEF_NORMAL - True + 0.5 + 0.5 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-add + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + _Add Calendar + True + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + - - 0 - True - True - @@ -374,69 +465,58 @@ - - New Calendar + + Calendar Properties GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE False True False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - + 6 True - False - - - - True - GNOME_EDGE_START - Calendar Creation Assistant - This assistant will help you create a new calendar. - -Depending on the type of calendar you create, additional -parameters may be required. Please contact your system -administrator if you need help finding this information. - - + False + 6 - + + 6 True - Step 1: Folder Characteristics + True + True + True + GTK_POS_TOP + False + False - - - 16 + + + 6 True False 6 - - 6 + + 3 True False - 6 + 4 - + True - Specifying a display name and group is the first step in setting up a calendar. - False + _Display name: + True False - GTK_JUSTIFY_LEFT + GTK_JUSTIFY_CENTER False False - 7.45058e-09 + 0.5 0.5 - 3 + 0 0 @@ -447,31 +527,17 @@ administrator if you need help finding this information. - - True - - - 0 - False - False - - - - - - 3 + True - 2 - 2 - False - 6 - 3 + 1 + 0.5 + 0.9 + 1 True True - True True True 0 @@ -480,396 +546,161 @@ administrator if you need help finding this information. * False - - 1 - 2 - 1 - 2 - - - - - - - True - _Display name: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - name-entry - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - Group: - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - True - -1 - - - 1 - 2 - 0 - 1 - fill - - 0 - False - False + True + True + + + 0 + False + False + + - - - True - False - False - GTK_POS_TOP - False - False + + + True + False + 0 - - - True - This is the name that will appear in your Evolution folder list. It is for display purposes only. - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - False - True - - + + + + + + 0 + True + True + + + + + False + True + + - - - True - label163 - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - + + + True + General + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + - - - True - Selecting this option will let you change Evolution's default settings for LDAP -searches, and for creating and editing contacts. - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - False - True - - + + + 6 + True + 2 + 2 + False + 4 + 4 - - - True - label164 - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - - - - 0 - False - False - GTK_PACK_END - - + + + True + _Source URL: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + uri-entry - 0 - True - True + 0 + 1 + 0 + 1 + fill + - - - - - - - True - Step 2: Remote Folder Parameters + + + True + True + True + True + 0 + + True + * + False + + + 1 + 2 + 0 + 1 + + + - - - 16 - True - False - 6 + + + True + _Refresh Interval: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + - - 16 + True False - 6 + 4 - - 6 + True - False - 6 - - - - True - You're creating a folder in a group that's stored in a remote location. This requires you -to specify additional parameters. - False - False - GTK_JUSTIFY_LEFT - False - False - 7.45058e-09 - 0.5 - 3 - 0 - - - 0 - False - False - - - - - - True - - - 0 - False - False - - - - - - 3 - True - 2 - 2 - False - 6 - 3 - - - - True - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 0 - 1 - - - - - - - True - _Source URL: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - uri-entry - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - _Refresh Interval: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - False - 4 - - - - True - True - 1 - 0 - False - GTK_UPDATE_ALWAYS - False - False - 30 1 9999 1 10 10 - - - 0 - False - True - - - - - - True - minute(s) - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - True - True - - - - - 1 - 2 - 1 - 2 - fill - fill - - - - - 0 - False - False - - + True + 1 + 0 + False + GTK_UPDATE_ALWAYS + False + False + 30 1 9999 1 10 10 0 @@ -877,211 +708,175 @@ to specify additional parameters. True + + + + True + minute(s) + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + - 0 - True - True + 1 + 2 + 1 + 2 + fill + fill + + False + True + + + + + + True + Remote + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + 0 + True + True + - + True - GNOME_EDGE_FINISH - Finished - Congratulations, you are finished setting up this calendar. + False + 0 -Please click the "Apply" button to save the settings you have entered here. + + + True + GTK_BUTTONBOX_END + 6 + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + 0 + False + False + - - New Task List + + Task List Properties GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE False True False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - + 6 True - False - - - - True - GNOME_EDGE_START - Task List Creation Assistant - This assistant will help you create a new task list. - -Depending on the type of task list you create, additional -parameters may be required. Please contact your system -administrator if you need help finding this information. - - + False + 6 - + + 6 True - Step 1: Folder Characteristics + True + True + True + GTK_POS_TOP + False + False - - - 16 + + + 6 True False 6 - - 6 + + 3 True False - 6 + 4 - + True - Specifying a display name and group is the first step in setting up a task list. - False + _Display name: + True False - GTK_JUSTIFY_LEFT + GTK_JUSTIFY_CENTER False False - 7.45058e-09 - 0.5 - 3 - 0 - - - 0 - False - False - - - - - - True - - - 0 - False - False - - - - - - 3 - True - 2 - 2 - False - 6 - 3 - - - - True - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 1 - 2 - - - - - - - True - _Display name: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - name-entry - - - 0 - 1 - 1 - 2 - fill - - - - - - - True - Group: - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - True - -1 - - - 1 - 2 - 0 - 1 - fill - - - + 0.5 + 0.5 + 0 + 0 0 @@ -1091,101 +886,51 @@ administrator if you need help finding this information. - + True - False - False - GTK_POS_TOP - False - False - - - - True - This is the name that will appear in your Evolution folder list. It is for display purposes only. - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - False - True - - - - - - True - label163 - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - - - tab - - - - - - True - Selecting this option will let you change Evolution's default settings for LDAP -searches, and for creating and editing contacts. - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - False - True - - + 1 + 0.5 + 0.9 + 1 - + True - label164 - False - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 + True + True + True + 0 + + True + * + False - - tab - 0 - False - False - GTK_PACK_END + True + True + + 0 + False + False + + + + + + True + False + 0 + + + + + 0 True @@ -1193,212 +938,128 @@ searches, and for creating and editing contacts. + + False + True + - - - - - True - Step 2: Remote Folder Parameters + + + True + General + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + - - - 16 + + + 6 True + 2 + 2 False - 6 + 4 + 4 - - 16 + True - False - 6 - - - - 6 - True - False - 6 - - - - True - You're creating a folder in a group that's stored in a remote location. This requires you -to specify additional parameters. - False - False - GTK_JUSTIFY_LEFT - False - False - 7.45058e-09 - 0.5 - 3 - 0 - - - 0 - False - False - - - - - - True - - - 0 - False - False - - - - - - 3 - True - 2 - 2 - False - 6 - 3 + _Source URL: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + uri-entry + + + 0 + 1 + 0 + 1 + fill + + + - - - True - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 0 - 1 - - - + + + True + True + True + True + 0 + + True + * + False + + + 1 + 2 + 0 + 1 + + + - - - True - _Source URL: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - uri-entry - - - 0 - 1 - 0 - 1 - fill - - - + + + True + _Refresh Interval: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + - - - True - _Refresh Interval: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - + + + True + False + 4 - - - True - False - 4 - - - - True - True - 1 - 0 - False - GTK_UPDATE_ALWAYS - False - False - 30 1 9999 1 10 10 - - - 0 - False - True - - - - - - True - minute(s) - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - True - True - - - - - 1 - 2 - 1 - 2 - fill - fill - - - - - 0 - False - False - - + + + True + True + 1 + 0 + False + GTK_UPDATE_ALWAYS + False + False + 30 1 9999 1 10 10 0 @@ -1406,129 +1067,298 @@ to specify additional parameters. True + + + + True + minute(s) + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + - 0 - True - True + 1 + 2 + 1 + 2 + fill + fill + + False + True + + + + + + True + Remote + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + 0 + True + True + - + True - GNOME_EDGE_FINISH - Finished - Congratulations, you are finished setting up this task list. + False + 0 + + + + True + GTK_BUTTONBOX_END + 6 + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + + -Please click the "Apply" button to save the settings you have entered here. + + + True + False + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + 0 + False + False + - - Task List Properties + + True + Add Tasks Group GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE False True False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - - 6 + + 12 True False - 6 + 12 - - 6 + True - True - True - True - GTK_POS_TOP - False - False + 5 + 2 + False + 6 + 6 - - 6 + + True + True + True + True + 0 + Chillonia + True + * + False + + + 1 + 2 + 1 + 2 + + + + + + + True + _URL: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 3 + 4 + fill + + + + + + + True + _Refresh: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 4 + 5 + fill + + + + + + + True + C_olor: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 2 + 3 + fill + + + + + + + True + True + True + False + Pick a color + + + 1 + 2 + 2 + 3 + fill + + + + + + True False 6 - - 3 + True - False - 4 + True + True + True + 0 + + True + * + False + + + 0 + True + True + + + + + + True + True + GTK_RELIEF_NORMAL - + True - _Display name: - True - False - GTK_JUSTIFY_CENTER - False - False + xine_16x16.png 0.5 0.5 0 0 - - 0 - False - False - - - - - - True - 1 - 0.5 - 0.9 - 1 - 0 - 0 - 0 - 0 - - - - True - True - True - True - 0 - - True - * - False - - - - - 0 - True - True - @@ -1537,134 +1367,101 @@ Please click the "Apply" button to save the settings you have entered False + + + 1 + 2 + 3 + 4 + fill + fill + + + + + + True + True + -1 - - True - False - 0 - - - - + - - 0 - True - True - - False - True + 1 + 2 + 0 + 1 + fill + - + True - General - False + _Type: + True False - GTK_JUSTIFY_CENTER + GTK_JUSTIFY_LEFT False False - 0.5 + 0 0.5 0 0 + group-optionmenu - tab + 0 + 1 + 0 + 1 + fill + - - 6 + True - 2 - 2 - False - 4 - 4 - - - - True - _Source URL: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - uri-entry - - - 0 - 1 - 0 - 1 - fill - - - - - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 0 - 1 - - - + _Name: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + name-entry + + + 0 + 1 + 1 + 2 + fill + + + - - - True - _Refresh Interval: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - - - 0 - 1 - 1 - 2 - fill - - - + + + True + 0 + 0.5 + 0 + 1 - + True False - 4 + 6 @@ -1676,7 +1473,7 @@ Please click the "Apply" button to save the settings you have entered GTK_UPDATE_ALWAYS False False - 30 1 9999 1 10 10 + 30 0 100 1 10 10 0 @@ -1686,18 +1483,51 @@ Please click the "Apply" button to save the settings you have entered - + True - minute(s) - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 + True + 0 + + + + + + + True + minutes + True + + + + + + + True + hours + True + + + + + + + True + days + True + + + + + + + True + weeks + True + + + + + 0 @@ -1706,38 +1536,15 @@ Please click the "Apply" button to save the settings you have entered - - 1 - 2 - 1 - 2 - fill - fill - - False - True - - - - - - True - Remote - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - - - tab + 1 + 2 + 4 + 5 + fill + fill @@ -1749,47 +1556,85 @@ Please click the "Apply" button to save the settings you have entered - + True - False + GTK_BUTTONBOX_END 0 - + True - GTK_BUTTONBOX_END - 6 + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + + - - - True - True - True - gtk-cancel - True - GTK_RELIEF_NORMAL - True - - + + + True + True + True + GTK_RELIEF_NORMAL - + True - False - True - True - gtk-ok - True - GTK_RELIEF_NORMAL - True + 0.5 + 0.5 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-add + 4 + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + _Add Group + True + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + - - 0 - True - True - -- cgit v1.2.3