diff options
author | JP Rosevear <jpr@ximian.com> | 2003-12-25 01:39:04 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-12-25 01:39:04 +0800 |
commit | b4bd1b2b1e3c9fa91804c2a27eb3bd35171d8d05 (patch) | |
tree | b640ea2240743c4e0c6df3a9234c2650f2d4b4d6 /calendar/gui/dialogs/meeting-page.glade | |
parent | 978af43d69587e93fba2e861e9fa33ffa198b0e0 (diff) | |
download | gsoc2013-evolution-b4bd1b2b1e3c9fa91804c2a27eb3bd35171d8d05.tar.gz gsoc2013-evolution-b4bd1b2b1e3c9fa91804c2a27eb3bd35171d8d05.tar.zst gsoc2013-evolution-b4bd1b2b1e3c9fa91804c2a27eb3bd35171d8d05.zip |
fix the signal name
2003-12-24 JP Rosevear <jpr@ximian.com>
* gui/e-select-names-renderer.c (esnr_start_editing): fix the
signal name
* gui/dialogs/meeting-page.glade: add Add Attendee button
* gui/dialogs/meeting-page.c (get_widgets): extract add button
(add_clicked_cb): edit the attendee after we add it
(init_widgets): listen for add clicked
(meeting_page_construct): the add button is in the glade file now
* gui/e-select-names-editable.c (esne_start_editing): activate the
control
(e_select_names_editable_get_address): handle null dest
(e_select_names_editable_get_name): ditto
* gui/e-meeting-store.h: add proto
* gui/e-meeting-store.c (e_meeting_store_find_attendee_path):
create the path to a given attendee
* gui/e-meeting-list-view.h: add proto
* gui/e-meeting-list-view.c (e_meeting_list_view_edit): start
editing the address of a particular
svn path=/trunk/; revision=24009
Diffstat (limited to 'calendar/gui/dialogs/meeting-page.glade')
-rw-r--r-- | calendar/gui/dialogs/meeting-page.glade | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/meeting-page.glade b/calendar/gui/dialogs/meeting-page.glade index 3b72c37b47..808359ed81 100644 --- a/calendar/gui/dialogs/meeting-page.glade +++ b/calendar/gui/dialogs/meeting-page.glade @@ -2,6 +2,7 @@ <!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd"> <glade-interface> +<requires lib="gnome"/> <widget class="GtkWindow" id="meeting-toplevel"> <property name="title" translatable="yes">window1</property> @@ -216,7 +217,18 @@ </child> <child> - <placeholder/> + <widget class="GtkButton" id="add-attendee"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">Add A_ttendee</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> </child> <child> @@ -234,6 +246,10 @@ <property name="pack_type">GTK_PACK_END</property> </packing> </child> + + <child> + <placeholder/> + </child> </widget> </child> </widget> |