diff options
author | JP Rosevear <jpr@ximian.com> | 2001-07-25 06:35:57 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-07-25 06:35:57 +0800 |
commit | 96a9eafc7290ef276d2f0559d20cc2f1057c4231 (patch) | |
tree | 2acf4cb14ab25f4cf9ec5e6fba1cdbb48642c3ca /calendar/gui/dialogs/e-delegate-dialog.glade | |
parent | 5c9bf39bb2b7a071ee71438b3f0730c26312c0a1 (diff) | |
download | gsoc2013-evolution-96a9eafc7290ef276d2f0559d20cc2f1057c4231.tar.gz gsoc2013-evolution-96a9eafc7290ef276d2f0559d20cc2f1057c4231.tar.zst gsoc2013-evolution-96a9eafc7290ef276d2f0559d20cc2f1057c4231.zip |
stip the delto and delfrom (popup_delegate_cb): show a delegate dialog and
2001-07-24 JP Rosevear <jpr@ximian.com>
* gui/dialogs/meeting-page.c (value_at): stip the delto and
delfrom
(popup_delegate_cb): show a delegate dialog and add the new
delegatee and update the delegator
(add_section): listen for changes in a more direct manner
(get_select_name_dialog): add_section now takes a limit argument
* gui/dialogs/e-delegate-dialog.[hc]: New dialog to query the user
for a person to delegate to
* gui/dialogs/Makefile.am: build/install new files
* gui/Makefile.am: add ldadd line for ebook
svn path=/trunk/; revision=11364
Diffstat (limited to 'calendar/gui/dialogs/e-delegate-dialog.glade')
-rw-r--r-- | calendar/gui/dialogs/e-delegate-dialog.glade | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/e-delegate-dialog.glade b/calendar/gui/dialogs/e-delegate-dialog.glade new file mode 100644 index 0000000000..394c191682 --- /dev/null +++ b/calendar/gui/dialogs/e-delegate-dialog.glade @@ -0,0 +1,120 @@ +<?xml version="1.0"?> +<GTK-Interface> + +<project> + <name>timezone-dialog</name> + <program_name>timezone-dialog</program_name> + <directory></directory> + <source_directory>src</source_directory> + <pixmaps_directory>pixmaps</pixmaps_directory> + <language>C</language> + <gnome_support>True</gnome_support> + <gettext_support>True</gettext_support> +</project> + +<widget> + <class>GnomeDialog</class> + <name>delegate-dialog</name> + <visible>False</visible> + <title>Enter Delegate</title> + <type>GTK_WINDOW_TOPLEVEL</type> + <position>GTK_WIN_POS_NONE</position> + <modal>False</modal> + <allow_shrink>False</allow_shrink> + <allow_grow>True</allow_grow> + <auto_shrink>False</auto_shrink> + <auto_close>True</auto_close> + <hide_on_close>True</hide_on_close> + + <widget> + <class>GtkVBox</class> + <child_name>GnomeDialog:vbox</child_name> + <name>dialog-vbox1</name> + <homogeneous>False</homogeneous> + <spacing>8</spacing> + <child> + <padding>4</padding> + <expand>True</expand> + <fill>True</fill> + </child> + + <widget> + <class>GtkHButtonBox</class> + <child_name>GnomeDialog:action_area</child_name> + <name>dialog-action_area1</name> + <layout_style>GTK_BUTTONBOX_END</layout_style> + <spacing>8</spacing> + <child_min_width>85</child_min_width> + <child_min_height>27</child_min_height> + <child_ipad_x>7</child_ipad_x> + <child_ipad_y>0</child_ipad_y> + <child> + <padding>0</padding> + <expand>False</expand> + <fill>True</fill> + <pack>GTK_PACK_END</pack> + </child> + + <widget> + <class>GtkButton</class> + <name>ok-button</name> + <can_default>True</can_default> + <has_default>True</has_default> + <can_focus>True</can_focus> + <stock_button>GNOME_STOCK_BUTTON_OK</stock_button> + </widget> + + <widget> + <class>GtkButton</class> + <name>cancel-button</name> + <can_default>True</can_default> + <can_focus>True</can_focus> + <stock_button>GNOME_STOCK_BUTTON_CANCEL</stock_button> + </widget> + </widget> + + <widget> + <class>GtkHBox</class> + <name>delegate-hbox</name> + <homogeneous>False</homogeneous> + <spacing>4</spacing> + <child> + <padding>0</padding> + <expand>False</expand> + <fill>False</fill> + </child> + + <widget> + <class>GtkLabel</class> + <name>label3</name> + <label>Delegate To:</label> + <justify>GTK_JUSTIFY_CENTER</justify> + <wrap>False</wrap> + <xalign>0.5</xalign> + <yalign>0.5</yalign> + <xpad>0</xpad> + <ypad>0</ypad> + <child> + <padding>0</padding> + <expand>False</expand> + <fill>False</fill> + </child> + </widget> + + <widget> + <class>GtkButton</class> + <name>addressbook</name> + <can_focus>True</can_focus> + <label>Addressbook...</label> + <child> + <padding>0</padding> + <expand>False</expand> + <fill>False</fill> + <pack>GTK_PACK_END</pack> + </child> + </widget> + </widget> + </widget> +</widget> + +</GTK-Interface> |