[evolution-patches] gtkthml find/replace dialogs cosmetic changes to follow HIG
- From: Radek Doulík <rodo ximian com>
- To: Patches <evolution-patches ximian com>
- Cc: Larry Ewing <lewing ximian com>
- Subject: [evolution-patches] gtkthml find/replace dialogs cosmetic changes to follow HIG
- Date: 14 Apr 2003 16:02:28 +0200
attached patch fixes bugs #41259, #41263, #41257, #41258, #41264,
#41265, #41260, #41262
Index: replace.c
===================================================================
RCS file: /cvs/gnome/gtkhtml/components/html-editor/replace.c,v
retrieving revision 1.15
diff -u -p -r1.15 replace.c
--- replace.c 15 Jan 2003 17:25:12 -0000 1.15
+++ replace.c 14 Apr 2003 14:00:46 -0000
@@ -151,14 +151,14 @@ gtk_html_replace_dialog_new (GtkHTML *ht
dialog->dialog = GTK_DIALOG (gtk_dialog_new_with_buttons (_("Replace"), NULL, 0,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
- _("Replace"), 0,
+ GTK_STOCK_FIND_AND_REPLACE, 0,
NULL));
table = gtk_table_new (2, 2, FALSE);
dialog->entry_search = gtk_entry_new ();
dialog->entry_replace = gtk_entry_new ();
- dialog->backward = gtk_check_button_new_with_label (_("search backward"));
- dialog->case_sensitive = gtk_check_button_new_with_label (_("case sensitive"));
+ dialog->backward = gtk_check_button_new_with_mnemonic (_("Search _backward"));
+ dialog->case_sensitive = gtk_check_button_new_with_mnemonic (_("Case _sensitive"));
dialog->html = html;
dialog->cd = cd;
@@ -168,23 +168,26 @@ gtk_html_replace_dialog_new (GtkHTML *ht
gtk_entry_set_text (GTK_ENTRY (dialog->entry_replace), cd->replace_text_replace);
gtk_table_set_col_spacings (GTK_TABLE (table), 3);
- label = gtk_label_new (_("Replace"));
- gtk_misc_set_alignment (GTK_MISC (label), 1.0, .5);
- gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 0, 1);
- label = gtk_label_new (_("with"));
- gtk_misc_set_alignment (GTK_MISC (label), 1.0, .5);
- gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 1, 2);
+ label = gtk_label_new (_("Replace:"));
+ gtk_misc_set_alignment (GTK_MISC (label), .0, .5);
+ gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_FILL, GTK_FILL, 0, 0);
+ label = gtk_label_new (_("With:"));
+ gtk_misc_set_alignment (GTK_MISC (label), .0, .5);
+ gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 0, 0);
gtk_table_attach_defaults (GTK_TABLE (table), dialog->entry_search, 1, 2, 0, 1);
gtk_table_attach_defaults (GTK_TABLE (table), dialog->entry_replace, 1, 2, 1, 2);
- hbox = gtk_hbox_new (FALSE, 0);
+ hbox = gtk_hbox_new (FALSE, 6);
- gtk_box_pack_start_defaults (GTK_BOX (hbox), dialog->backward);
- gtk_box_pack_start_defaults (GTK_BOX (hbox), dialog->case_sensitive);
+ gtk_box_pack_start (GTK_BOX (hbox), dialog->backward, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), dialog->case_sensitive, FALSE, FALSE, 0);
- gtk_box_pack_start_defaults (GTK_BOX (dialog->dialog->vbox), table);
- gtk_box_pack_start_defaults (GTK_BOX (dialog->dialog->vbox), hbox);
+ gtk_box_pack_start (GTK_BOX (dialog->dialog->vbox), table, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (dialog->dialog->vbox), hbox, FALSE, FALSE, 0);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog->dialog->vbox), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog->dialog), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
gtk_widget_show_all (table);
gtk_widget_show_all (hbox);
Index: search.c
===================================================================
RCS file: /cvs/gnome/gtkhtml/components/html-editor/search.c,v
retrieving revision 1.19
diff -u -p -r1.19 search.c
--- search.c 15 Jan 2003 17:25:12 -0000 1.19
+++ search.c 14 Apr 2003 14:00:46 -0000
@@ -72,27 +72,30 @@ gtk_html_search_dialog_new (GtkHTML *htm
dialog->dialog = GTK_DIALOG (gtk_dialog_new_with_buttons (_("Find"), NULL, 0,
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
- _("Find"), 0,
+ GTK_STOCK_FIND, 0,
NULL));
dialog->entry = gtk_entry_new ();
- dialog->backward = gtk_check_button_new_with_label (_("backward"));
- dialog->case_sensitive = gtk_check_button_new_with_label (_("case sensitive"));
+ dialog->backward = gtk_check_button_new_with_mnemonic (_("_Backward"));
+ dialog->case_sensitive = gtk_check_button_new_with_mnemonic (_("Case _sensitive"));
dialog->html = html;
dialog->cd = cd;
- hbox = gtk_hbox_new (FALSE, 0);
+ hbox = gtk_hbox_new (FALSE, 6);
if (cd->search_text)
gtk_entry_set_text (GTK_ENTRY (dialog->entry), cd->search_text);
- gtk_box_pack_start_defaults (GTK_BOX (hbox), dialog->backward);
- gtk_box_pack_start_defaults (GTK_BOX (hbox), dialog->case_sensitive);
+ gtk_box_pack_start (GTK_BOX (hbox), dialog->backward, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), dialog->case_sensitive, FALSE, FALSE, 0);
- gtk_box_pack_start_defaults (GTK_BOX (dialog->dialog->vbox), dialog->entry);
- gtk_box_pack_start_defaults (GTK_BOX (dialog->dialog->vbox), hbox);
+ gtk_box_pack_start (GTK_BOX (dialog->dialog->vbox), dialog->entry, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (dialog->dialog->vbox), hbox, FALSE, FALSE, 0);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog->dialog->vbox), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog->dialog), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
gtk_widget_show (dialog->entry);
gtk_widget_show_all (hbox);
-
+
gnome_window_icon_set_from_file (GTK_WINDOW (dialog->dialog), ICONDIR "/search-24.png");
gtk_widget_grab_focus (dialog->entry);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]