summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGene Z. Ragan <gzr@eazel.com>2001-01-13 05:07:31 +0000
committerGene Ragan <gzr@src.gnome.org>2001-01-13 05:07:31 +0000
commitd9678e6f234a138d993ae5ee3a5d79bb759cf2f5 (patch)
treeb06976f463189914a968abd130d613e4d02f63fd
parent629002f4f02cb73b9ea85b67a3501786a68351ba (diff)
downloadgnome-control-center-GNOME-VFS_0_5.tar.gz
Fixed bug 3229, Clean up appearance of File Types and Programs cappletGNOME-VFS_PRE_0_5GNOME-VFS_0_5
2001-01-12 Gene Z. Ragan <gzr@eazel.com> Fixed bug 3229, Clean up appearance of File Types and Programs capplet * mime-type-capplet/nautilus-mime-type-capplet.c: (init_mime_capplet): Adjust positions of widgets for better look and feel.
-rw-r--r--capplets/file-types/file-types-capplet.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/capplets/file-types/file-types-capplet.c b/capplets/file-types/file-types-capplet.c
index b988b0f7e..e66276685 100644
--- a/capplets/file-types/file-types-capplet.c
+++ b/capplets/file-types/file-types-capplet.c
@@ -493,7 +493,7 @@ init_mime_capplet (void)
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), GNOME_PAD_SMALL);
gtk_container_add (GTK_CONTAINER (capplet), main_vbox);
- /* Main horizontal box and mime list*/
+ /* Main horizontal box and mime list */
hbox = gtk_hbox_new (FALSE, GNOME_PAD);
gtk_box_pack_start (GTK_BOX (main_vbox), hbox, TRUE, TRUE, 0);
mime_list_container = create_mime_list_and_scroller ();
@@ -520,12 +520,12 @@ init_mime_capplet (void)
gtk_table_attach ( GTK_TABLE (table), small_table, 0, 1, 0, 1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
-
+
icon_entry = nautilus_mime_type_icon_entry_new ("mime_icon_entry", NULL);
gtk_table_attach (GTK_TABLE (small_table), icon_entry, 0, 1, 0, 1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
-
+
vbox = gtk_vbox_new (FALSE, GNOME_PAD_SMALL);
gtk_table_attach (GTK_TABLE (small_table), vbox, 1, 2, 0, 1,
(GtkAttachOptions) (GTK_FILL),
@@ -596,39 +596,45 @@ init_mime_capplet (void)
gtk_signal_connect (GTK_OBJECT (button), "clicked", edit_default_clicked, mime_list);
}
- /* Set up top right area.*/
+ /* Set up top right area. */
{
GtkWidget *separator;
GtkWidget *small_table;
-
+
hbox = gtk_hbox_new (FALSE, 0);
gtk_table_attach_defaults ( GTK_TABLE (table), hbox, 1, 2, 0, 1);
- small_table = gtk_table_new (4, 1, FALSE);
+ small_table = gtk_table_new (5, 1, FALSE);
gtk_table_set_row_spacings (GTK_TABLE (small_table), 7);
gtk_box_pack_end (GTK_BOX (hbox), small_table, FALSE, FALSE, 0);
-
-
+
+ /* Placed to space top button with top of left table */
+ hbox = gtk_hbox_new (FALSE, 0);
+ gtk_table_attach (GTK_TABLE (small_table), hbox, 0, 1, 0, 1,
+ (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (0), 0, 0);
+ gtk_widget_set_usize (hbox, 1, 11);
+
button = gtk_button_new_with_label (_("Add new Mime type..."));
gtk_signal_connect (GTK_OBJECT (button), "clicked", add_mime_clicked, NULL);
- gtk_table_attach (GTK_TABLE (small_table), button, 0, 1, 0, 1,
+ gtk_table_attach (GTK_TABLE (small_table), button, 0, 1, 1, 2,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
button = gtk_button_new_with_label (_("Delete this Mime type..."));
gtk_signal_connect (GTK_OBJECT (button), "clicked", delete_mime_clicked, NULL);
- gtk_table_attach (GTK_TABLE (small_table), button, 0, 1, 1, 2,
+ gtk_table_attach (GTK_TABLE (small_table), button, 0, 1, 2, 3,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
separator = gtk_hseparator_new ();
- gtk_table_attach (GTK_TABLE (small_table), separator, 0, 1, 2, 3,
+ gtk_table_attach (GTK_TABLE (small_table), separator, 0, 1, 3, 4,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (GTK_FILL), 0, 0);
button = gtk_button_new_with_label (_("Revert to System Defaults"));
gtk_signal_connect (GTK_OBJECT (button), "clicked", revert_mime_clicked, NULL);
- gtk_table_attach (GTK_TABLE (small_table), button, 0, 1, 3, 4,
+ gtk_table_attach (GTK_TABLE (small_table), button, 0, 1, 4, 5,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);