diff options
-rw-r--r-- | addressbook/ChangeLog | 9 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor-fullname.c | 6 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/fullname.glade | 11 | ||||
-rw-r--r-- | addressbook/gui/search/e-addressbook-search-dialog.c | 6 |
4 files changed, 30 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 33a24bc319..0a298c7bb0 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,12 @@ +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 + 2004-04-27 Larry Ewing <lewing@ximian.com> * gui/component/addressbook-config.c (source_to_dialog_new): fix 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> diff --git a/addressbook/gui/search/e-addressbook-search-dialog.c b/addressbook/gui/search/e-addressbook-search-dialog.c index a8621bf5a7..91277ed7c7 100644 --- a/addressbook/gui/search/e-addressbook-search-dialog.c +++ b/addressbook/gui/search/e-addressbook-search-dialog.c @@ -112,9 +112,15 @@ eab_search_dialog_init (EABSearchDialog *view) { GtkDialog *dialog = GTK_DIALOG (view); + gtk_widget_realize (GTK_WIDGET (dialog)); + gtk_dialog_set_has_separator (dialog, FALSE); + gtk_container_set_border_width (GTK_CONTAINER (dialog->vbox), 0); + gtk_container_set_border_width (GTK_CONTAINER (dialog->action_area), 12); + gtk_window_set_default_size (GTK_WINDOW (view), 550, 400); gtk_window_set_title(GTK_WINDOW(view), _("Advanced Search")); view->search = get_widget(view); + gtk_container_set_border_width (GTK_CONTAINER (view->search), 12); gtk_box_pack_start(GTK_BOX(dialog->vbox), view->search, TRUE, TRUE, 0); gtk_widget_show(view->search); |