diff options
author | Damon Chaplin <damon@ximian.com> | 2001-10-26 07:28:15 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-10-26 07:28:15 +0800 |
commit | e4e894969ece81b2ed434c7d66e4b2d1b42244d3 (patch) | |
tree | 2e496669781f0de409b5c18b711ffecc26f1a66d /calendar/gui/dialogs/event-page.glade | |
parent | 750c920dcdce2d34d7f9bce228ff897024808f26 (diff) | |
download | gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.tar gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.tar.gz gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.tar.bz2 gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.tar.lz gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.tar.xz gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.tar.zst gsoc2013-evolution-e4e894969ece81b2ed434c7d66e4b2d1b42244d3.zip |
subtract 1 from any positive BYSETPOS value, since our array is 0-based.
2001-10-25 Damon Chaplin <damon@ximian.com>
* cal-util/cal-recur.c (cal_obj_bysetpos_filter): subtract 1 from
any positive BYSETPOS value, since our array is 0-based.
* gui/dialogs/recurrence-page.c (simple_recur_to_comp):
(recurrence_page_fill_widgets): Outlook (2000) will not accept monthly
recurrences like BYDAY=2TU. Instead it uses BYDAY=TU;BYSETPOS=2.
So to be compatable with it we now do the same, although we still
accept and convert the old format.
* cal-client/cal-client.c (cal_client_get_component_as_string): new
function to return a complete VCALENDAR string containing a VEVENT
or VTODO with all the VTIMEZONEs it uses.
* gui/dialogs/comp-editor.c (save_as_ok): use above function so we
save the VTIMEZONE data with the VEVENT/VTODO. Fixes bug #????.
Also made sure we output "METHOD:PUBLISH" since Outlook (2000) will
not import it otherwise.
* gui/dialogs/comp-editor.c (page_mapped_cb):
(page_unmapped_cb): install/uninstall the GtkAccelGroup for the page.
(comp_editor_append_page): connect to the map/unmap signals to
install/uninstall the accelerators. (This is all for bug #11609,
though of course it doesn't work too well in GTK+ 1.2 anyway.)
* gui/dialogs/task-page.c (get_widgets):
* gui/dialogs/task-details-page.c (get_widgets):
* gui/dialogs/schedule-page.c (get_widgets):
* gui/dialogs/recurrence-page.c (get_widgets):
* gui/dialogs/meeting-page.c (get_widgets):
* gui/dialogs/event-page.c (get_widgets):
* gui/dialogs/alarm-page.c (get_widgets): got the GtkAccelGroup from
the original window, ref'ed it and placed it in the CompEditorPage
struct.
* gui/dialogs/comp-editor-page.c (comp_editor_page_destroy): unref
any GtkAccelGroup for the page.
* gui/dialogs/task-page.glade: changed '_Confidential' to
'Con_fidential' as it clashed with '_Contacts'. It now matches the
event editor as well.
* gui/dialogs/event-page.glade:
* gui/dialogs/task-page.glade: Set CAN_FOCUS to TRUE for the custom
EDateEdit widgets, and set them as the accel targets of the labels.
svn path=/trunk/; revision=14108
Diffstat (limited to 'calendar/gui/dialogs/event-page.glade')
-rw-r--r-- | calendar/gui/dialogs/event-page.glade | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-page.glade b/calendar/gui/dialogs/event-page.glade index e90490dd03..0e591b0663 100644 --- a/calendar/gui/dialogs/event-page.glade +++ b/calendar/gui/dialogs/event-page.glade @@ -132,6 +132,7 @@ <yalign>0.5</yalign> <xpad>0</xpad> <ypad>0</ypad> + <focus_target>start-time</focus_target> <child> <left_attach>0</left_attach> <right_attach>1</right_attach> @@ -158,6 +159,7 @@ <yalign>0.5</yalign> <xpad>0</xpad> <ypad>0</ypad> + <focus_target>end-time</focus_target> <child> <left_attach>0</left_attach> <right_attach>1</right_attach> @@ -177,6 +179,7 @@ <widget> <class>Custom</class> <name>start-time</name> + <can_focus>True</can_focus> <creation_function>make_date_edit</creation_function> <string1></string1> <string2></string2> @@ -202,6 +205,7 @@ <widget> <class>Custom</class> <name>end-time</name> + <can_focus>True</can_focus> <creation_function>make_date_edit</creation_function> <int1>0</int1> <int2>0</int2> @@ -467,6 +471,7 @@ <class>GtkButton</class> <name>contacts-button</name> <can_focus>True</can_focus> + <relief>GTK_RELIEF_NORMAL</relief> <child> <padding>0</padding> <expand>False</expand> @@ -504,6 +509,7 @@ <class>GtkButton</class> <name>categories-button</name> <can_focus>True</can_focus> + <relief>GTK_RELIEF_NORMAL</relief> <child> <padding>0</padding> <expand>False</expand> |