app/gui/info-dialog.c app/tools/gimpcolorbalancetool.c

2004-05-05  Sven Neumann  <sven@gimp.org>

	* app/gui/info-dialog.c
	* app/tools/gimpcolorbalancetool.c
	* app/tools/gimpcolorizetool.c
	* app/tools/gimpcurvestool.c
	* app/tools/gimphuesaturationtool.c
	* app/tools/gimpimagemaptool.c
	* app/tools/gimplevelstool.c: use GimpFrame widgets, changed spacings.

	* app/widgets/gimptexteditor.c: tweaked.
This commit is contained in:
Sven Neumann 2004-05-04 22:33:52 +00:00 committed by Sven Neumann
parent 95ca9b90f0
commit 97dd0a8e65
10 changed files with 28 additions and 16 deletions

View File

@ -1,3 +1,15 @@
2004-05-05 Sven Neumann <sven@gimp.org>
* app/gui/info-dialog.c
* app/tools/gimpcolorbalancetool.c
* app/tools/gimpcolorizetool.c
* app/tools/gimpcurvestool.c
* app/tools/gimphuesaturationtool.c
* app/tools/gimpimagemaptool.c
* app/tools/gimplevelstool.c: use GimpFrame widgets, changed spacings.
* app/widgets/gimptexteditor.c: tweaked.
2004-05-05 Jakub Steiner <jimmac@ximian.com>
* data/images/gimp_splash.png: ustable splash

View File

@ -351,8 +351,8 @@ info_dialog_new_extended (GimpViewable *viewable,
help_func, help_data,
NULL);
vbox = gtk_vbox_new (FALSE, 4);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 4);
vbox = gtk_vbox_new (FALSE, 6);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (shell)->vbox), vbox);
info_table = gtk_table_new (2, 0, FALSE);

View File

@ -351,8 +351,8 @@ info_dialog_new_extended (GimpViewable *viewable,
help_func, help_data,
NULL);
vbox = gtk_vbox_new (FALSE, 4);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 4);
vbox = gtk_vbox_new (FALSE, 6);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (shell)->vbox), vbox);
info_table = gtk_table_new (2, 0, FALSE);

View File

@ -282,7 +282,7 @@ gimp_color_balance_tool_dialog (GimpImageMapTool *image_map_tool)
FALSE, FALSE, 0);
gtk_widget_show (frame);
frame = gtk_frame_new (_("Modify Selected Range's Color Levels"));
frame = gimp_frame_new (_("Modify Selected Range's Color Levels"));
gtk_box_pack_start (GTK_BOX (image_map_tool->main_vbox), frame,
FALSE, FALSE, 0);
gtk_widget_show (frame);

View File

@ -232,7 +232,7 @@ gimp_colorize_tool_dialog (GimpImageMapTool *image_map_tool)
GtkWidget *vbox;
GtkObject *data;
frame = gtk_frame_new (_("Select Color"));
frame = gimp_frame_new (_("Select Color"));
gtk_box_pack_start (GTK_BOX (image_map_tool->main_vbox), frame,
FALSE, FALSE, 0);
gtk_widget_show (frame);

View File

@ -590,7 +590,7 @@ gimp_curves_tool_dialog (GimpImageMapTool *image_map_tool)
gtk_widget_show (hbox);
/* Horizontal button box for load / save */
frame = gtk_frame_new (_("All Channels"));
frame = gimp_frame_new (_("All Channels"));
gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);
@ -614,7 +614,7 @@ gimp_curves_tool_dialog (GimpImageMapTool *image_map_tool)
gtk_widget_show (image_map_tool->save_button);
/* The radio box for selecting the curve type */
frame = gtk_frame_new (_("Curve Type"));
frame = gimp_frame_new (_("Curve Type"));
gtk_box_pack_end (GTK_BOX (hbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);

View File

@ -269,7 +269,7 @@ gimp_hue_saturation_tool_dialog (GimpImageMapTool *image_map_tool)
{ N_("_M"), 3, 2, 4, 2 }
};
frame = gtk_frame_new (_("Select Primary Color to Modify"));
frame = gimp_frame_new (_("Select Primary Color to Modify"));
gtk_box_pack_start (GTK_BOX (image_map_tool->main_vbox), frame,
FALSE, FALSE, 0);
gtk_widget_show (frame);
@ -341,7 +341,7 @@ gimp_hue_saturation_tool_dialog (GimpImageMapTool *image_map_tool)
gtk_widget_show (table);
frame = gtk_frame_new (_("Modify Selected Color"));
frame = gimp_frame_new (_("Modify Selected Color"));
gtk_box_pack_start (GTK_BOX (image_map_tool->main_vbox), frame,
FALSE, FALSE, 0);
gtk_widget_show (frame);

View File

@ -233,8 +233,8 @@ gimp_image_map_tool_initialize (GimpTool *tool,
G_CALLBACK (gimp_image_map_tool_response),
G_OBJECT (image_map_tool), 0);
image_map_tool->main_vbox = vbox = gtk_vbox_new (FALSE, 4);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 6);
image_map_tool->main_vbox = vbox = gtk_vbox_new (FALSE, 12);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (shell)->vbox), vbox);
/* The preview toggle */

View File

@ -438,7 +438,7 @@ gimp_levels_tool_dialog (GimpImageMapTool *image_map_tool)
gtk_widget_show (menu);
/* Input levels frame */
frame = gtk_frame_new (_("Input Levels"));
frame = gimp_frame_new (_("Input Levels"));
gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 0);
gtk_widget_show (frame);
@ -563,7 +563,7 @@ gimp_levels_tool_dialog (GimpImageMapTool *image_map_tool)
/* Output levels frame */
frame = gtk_frame_new (_("Output Levels"));
frame = gimp_frame_new (_("Output Levels"));
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);
@ -635,7 +635,7 @@ gimp_levels_tool_dialog (GimpImageMapTool *image_map_tool)
tool);
frame = gtk_frame_new (_("All Channels"));
frame = gimp_frame_new (_("All Channels"));
gtk_box_pack_end (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
gtk_widget_show (frame);

View File

@ -223,7 +223,7 @@ gimp_text_editor_new (const gchar *title)
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
GTK_POLICY_AUTOMATIC,
GTK_POLICY_AUTOMATIC);
gtk_container_set_border_width (GTK_CONTAINER (scrolled_window), 6);
gtk_container_set_border_width (GTK_CONTAINER (scrolled_window), 2);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (editor)->vbox),
scrolled_window, TRUE, TRUE, 0);
gtk_widget_show (scrolled_window);