diff options
author | Chris Toshok <toshok@ximian.com> | 2003-02-11 04:51:10 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-02-11 04:51:10 +0800 |
commit | 36d90739a4c2a3babf0497c0e474e2383d639a5d (patch) | |
tree | 60abb248591ff5a50c80d5616f8b7bf3f9b6520d /addressbook/gui/contact-editor/contact-editor.glade | |
parent | 0701addc195c6315474346c9bd062dc7dc84f80c (diff) | |
download | gsoc2013-evolution-36d90739a4c2a3babf0497c0e474e2383d639a5d.tar.gz gsoc2013-evolution-36d90739a4c2a3babf0497c0e474e2383d639a5d.tar.zst gsoc2013-evolution-36d90739a4c2a3babf0497c0e474e2383d639a5d.zip |
[ fixes bug #33066 ] new function (set_entry_changed_signals): call
2003-02-10 Chris Toshok <toshok@ximian.com>
[ fixes bug #33066 ]
* gui/contact-editor/e-contact-editor.c
(set_urlentry_changed_signal_field): new function
(set_entry_changed_signals): call
set_urlentry_changed_signal_field for entry-web, entry-caluri, and
entry-fburl.
(fill_in_field): add handling for EUrlEntry's.
(extract_field): same.
(enable_widget): same.
(e_contact_editor_create_date): show the widget.
(e_contact_editor_create_web): same, create a url entry.
(set_urlentry_changed_signal_field): new function
* gui/contact-editor/contact-editor.glade: entry-web,
entry-caluri, and entry-fburl are all custom widgets now.
svn path=/trunk/; revision=19879
Diffstat (limited to 'addressbook/gui/contact-editor/contact-editor.glade')
-rw-r--r-- | addressbook/gui/contact-editor/contact-editor.glade | 72 |
1 files changed, 31 insertions, 41 deletions
diff --git a/addressbook/gui/contact-editor/contact-editor.glade b/addressbook/gui/contact-editor/contact-editor.glade index c574310f2b..7f9f83a970 100644 --- a/addressbook/gui/contact-editor/contact-editor.glade +++ b/addressbook/gui/contact-editor/contact-editor.glade @@ -685,27 +685,6 @@ </child> <child> - <widget class="GtkEntry" id="entry-web"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="editable">True</property> - <property name="visibility">True</property> - <property name="max_length">0</property> - <property name="text" translatable="yes"></property> - <property name="has_frame">True</property> - <property name="invisible_char" translatable="yes">*</property> - <property name="activates_default">False</property> - </widget> - <packing> - <property name="left_attach">3</property> - <property name="right_attach">4</property> - <property name="top_attach">8</property> - <property name="bottom_attach">9</property> - <property name="y_options"></property> - </packing> - </child> - - <child> <widget class="GtkHSeparator" id="hseparator5"> <property name="visible">True</property> </widget> @@ -1435,6 +1414,24 @@ <property name="y_options">fill</property> </packing> </child> + + <child> + <widget class="Custom" id="entry-web"> + <property name="visible">True</property> + <property name="creation_function">e_contact_editor_create_web</property> + <property name="int1">0</property> + <property name="int2">0</property> + <property name="last_modification_time">Sat, 08 Feb 2003 09:14:46 GMT</property> + </widget> + <packing> + <property name="left_attach">3</property> + <property name="right_attach">4</property> + <property name="top_attach">8</property> + <property name="bottom_attach">9</property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> + </packing> + </child> </widget> <packing> <property name="tab_expand">False</property> @@ -2179,44 +2176,37 @@ of that information here.</property> </child> <child> - <widget class="GtkEntry" id="entry-caluri"> + <widget class="Custom" id="entry-caluri"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="editable">True</property> - <property name="visibility">True</property> - <property name="max_length">0</property> - <property name="text" translatable="yes"></property> - <property name="has_frame">True</property> - <property name="invisible_char" translatable="yes">*</property> - <property name="activates_default">False</property> + <property name="creation_function">e_contact_editor_create_web</property> + <property name="int1">0</property> + <property name="int2">0</property> + <property name="last_modification_time">Mon, 10 Feb 2003 20:37:57 GMT</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="y_options"></property> + <property name="y_options">fill</property> </packing> </child> <child> - <widget class="GtkEntry" id="entry-fburl"> + <widget class="Custom" id="entry-fburl"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="editable">True</property> - <property name="visibility">True</property> - <property name="max_length">0</property> - <property name="text" translatable="yes"></property> - <property name="has_frame">True</property> - <property name="invisible_char" translatable="yes">*</property> - <property name="activates_default">False</property> + <property name="creation_function">e_contact_editor_create_web</property> + <property name="int1">0</property> + <property name="int2">0</property> + <property name="last_modification_time">Mon, 10 Feb 2003 20:38:00 GMT</property> </widget> <packing> <property name="left_attach">1</property> <property name="right_attach">2</property> <property name="top_attach">1</property> <property name="bottom_attach">2</property> - <property name="y_options"></property> + <property name="x_options">fill</property> + <property name="y_options">fill</property> </packing> </child> </widget> |