diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-04-28 01:57:06 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-04-28 01:57:06 +0800 |
commit | 7cd76a64850caf3643d2404995aa3c93c317ee2f (patch) | |
tree | 8810789536645b2a09b761affc7794d5a4fc48ac /addressbook/gui/contact-editor | |
parent | c16f96602acf71c4e95ef11a1004ea1fa4ae30fd (diff) | |
download | gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.gz gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.bz2 gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.lz gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.xz gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.tar.zst gsoc2013-evolution-7cd76a64850caf3643d2404995aa3c93c317ee2f.zip |
Update dialog vbox and action area border widths to be HIG compliant
2004-04-27 Rodney Dawes <dobey@ximian.com>
* gui/contact-editor/e-contact-editor-fullname.c:
(e_contact_editor_fullname_init):
* gui/contact-editor/fullname.glade:
* gui/search/e-addressbook-search-dialog.c (eab_search_dialog_init):
Update dialog vbox and action area border widths to be HIG compliant
Update main child widget border widths to be HIG compliant
svn path=/trunk/; revision=25635
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor-fullname.c | 6 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/fullname.glade | 11 |
2 files changed, 15 insertions, 2 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor-fullname.c b/addressbook/gui/contact-editor/e-contact-editor-fullname.c index b8887fa051..1847a463f1 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-fullname.c +++ b/addressbook/gui/contact-editor/e-contact-editor-fullname.c @@ -105,6 +105,12 @@ e_contact_editor_fullname_init (EContactEditorFullname *e_contact_editor_fullnam GtkWidget *widget; GList *icon_list; + gtk_widget_realize (GTK_WIDGET (e_contact_editor_fullname)); + gtk_dialog_set_has_separator (GTK_DIALOG (e_contact_editor_fullname), + FALSE); + gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (e_contact_editor_fullname)->vbox), 0); + gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (e_contact_editor_fullname)->action_area), 12); + gtk_dialog_add_buttons (GTK_DIALOG (e_contact_editor_fullname), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OK, GTK_RESPONSE_OK, diff --git a/addressbook/gui/contact-editor/fullname.glade b/addressbook/gui/contact-editor/fullname.glade index 9e170c93d0..f2ae7c92eb 100644 --- a/addressbook/gui/contact-editor/fullname.glade +++ b/addressbook/gui/contact-editor/fullname.glade @@ -10,7 +10,12 @@ <property name="modal">True</property> <property name="resizable">True</property> <property name="destroy_with_parent">False</property> - <property name="has_separator">True</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="has_separator">False</property> <child internal-child="vbox"> <widget class="GtkVBox" id="vbox-container"> @@ -31,6 +36,7 @@ <property name="label">gtk-ok</property> <property name="use_stock">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> <property name="response_id">0</property> </widget> </child> @@ -43,6 +49,7 @@ <property name="label">gtk-cancel</property> <property name="use_stock">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> <property name="response_id">0</property> </widget> </child> @@ -57,7 +64,7 @@ <child> <widget class="GtkTable" id="table-checkfullname"> - <property name="border_width">6</property> + <property name="border_width">12</property> <property name="visible">True</property> <property name="n_rows">5</property> <property name="n_columns">3</property> |