diff options
author | Milan Crha <mcrha@redhat.com> | 2009-05-04 22:31:12 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-05-04 22:31:12 +0800 |
commit | b73ed1d9ffd6975d94638364b6a7fcd7f29a6c23 (patch) | |
tree | 8d4629a4e1e88fbd807e115667bcad514e81c378 /plugins/publish-calendar/publish-calendar.glade | |
parent | 62085ae755dcd578448ffb35be6cb911c58a89e7 (diff) | |
download | gsoc2013-evolution-b73ed1d9ffd6975d94638364b6a7fcd7f29a6c23.tar.gz gsoc2013-evolution-b73ed1d9ffd6975d94638364b6a7fcd7f29a6c23.tar.zst gsoc2013-evolution-b73ed1d9ffd6975d94638364b6a7fcd7f29a6c23.zip |
BUGFIX: 547414 - Publish Free/Busy calendar for configurable time
Allow user define time duration for the Free/Busy calendar information
in the publish-calendar plugin.
Diffstat (limited to 'plugins/publish-calendar/publish-calendar.glade')
-rw-r--r-- | plugins/publish-calendar/publish-calendar.glade | 102 |
1 files changed, 91 insertions, 11 deletions
diff --git a/plugins/publish-calendar/publish-calendar.glade b/plugins/publish-calendar/publish-calendar.glade index 6f6ae9dcf2..1f1dca0202 100644 --- a/plugins/publish-calendar/publish-calendar.glade +++ b/plugins/publish-calendar/publish-calendar.glade @@ -382,7 +382,7 @@ <child> <widget class="GtkTable" id="table1"> <property name="visible">True</property> - <property name="n_rows">2</property> + <property name="n_rows">3</property> <property name="n_columns">2</property> <property name="homogeneous">False</property> <property name="row_spacing">6</property> @@ -418,6 +418,24 @@ </child> <child> + <widget class="GtkComboBox" id="type_selector"> + <property name="visible">True</property> + <property name="items" translatable="yes">iCal +Free/Busy</property> + <property name="add_tearoffs">False</property> + <property name="focus_on_click">True</property> + </widget> + <packing> + <property name="left_attach">1</property> + <property name="right_attach">2</property> + <property name="top_attach">0</property> + <property name="bottom_attach">1</property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> + </packing> + </child> + + <child> <widget class="GtkLabel" id="label29"> <property name="visible">True</property> <property name="label" translatable="yes">Publishing _Frequency:</property> @@ -439,8 +457,8 @@ <packing> <property name="left_attach">0</property> <property name="right_attach">1</property> - <property name="top_attach">1</property> - <property name="bottom_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> <property name="x_options">fill</property> <property name="y_options"></property> </packing> @@ -458,25 +476,87 @@ Manual (via Actions menu)</property> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> + <property name="top_attach">2</property> + <property name="bottom_attach">3</property> + <property name="y_options">fill</property> + </packing> + </child> + + <child> + <widget class="GtkLabel" id="fb_duration_label"> + <property name="visible">True</property> + <property name="label" translatable="yes">Time _duration:</property> + <property name="use_underline">True</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="mnemonic_widget">fb_duration_spin</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="left_attach">0</property> + <property name="right_attach">1</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="y_options">fill</property> + <property name="x_options">fill</property> + <property name="y_options"></property> </packing> </child> <child> - <widget class="GtkComboBox" id="type_selector"> + <widget class="GtkHBox" id="hbox20"> <property name="visible">True</property> - <property name="items" translatable="yes">iCal -Free/Busy</property> - <property name="add_tearoffs">False</property> - <property name="focus_on_click">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkSpinButton" id="fb_duration_spin"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="climb_rate">1</property> + <property name="digits">0</property> + <property name="numeric">False</property> + <property name="update_policy">GTK_UPDATE_ALWAYS</property> + <property name="snap_to_ticks">False</property> + <property name="wrap">False</property> + <property name="adjustment">1 1 100 1 10 0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkComboBox" id="fb_duration_combo"> + <property name="visible">True</property> + <property name="items" translatable="yes">days +weeks +months</property> + <property name="add_tearoffs">False</property> + <property name="focus_on_click">True</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> </widget> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> - <property name="top_attach">0</property> - <property name="bottom_attach">1</property> + <property name="top_attach">1</property> + <property name="bottom_attach">2</property> <property name="x_options">fill</property> <property name="y_options">fill</property> </packing> |