libgimpwidgets/gimpwidgets.c
2008-08-26 Martin Nordholts <martinn@svn.gnome.org> * libgimpwidgets/gimpwidgets.c * plug-ins/common/file-xbm.c * plug-ins/common/file-wmf.c * plug-ins/common/file-svg.c * plug-ins/common/file-gih.c * plug-ins/common/blur-motion.c * plug-ins/file-jpeg/jpeg-save.c * plug-ins/lighting/lighting-ui.c * plug-ins/map-object/map-object-ui.c * app/tools/gimpsheartool.c * app/tools/gimpaligntool.c * app/tools/gimprotatetool.c * app/tools/gimplevelstool.c * app/dialogs/resize-dialog.c * app/dialogs/offset-dialog.c * app/widgets/gimppaletteeditor.c * app/widgets/gimpcolormapeditor.c * app/dialogs/layer-options-dialog.c * app/display/gimpdisplayshell-scale-dialog.c: Pass page_size = 0 to gimp_spin_button_new() to adapt to new and correct value clamping in GTK+. svn path=/trunk/; revision=26778
This commit is contained in:

committed by
Martin Nordholts

parent
d9e5942ec6
commit
b5b51b475f
26
ChangeLog
26
ChangeLog
@ -1,3 +1,29 @@
|
|||||||
|
2008-08-26 Martin Nordholts <martinn@svn.gnome.org>
|
||||||
|
|
||||||
|
* libgimpwidgets/gimpwidgets.c
|
||||||
|
|
||||||
|
* plug-ins/common/file-xbm.c
|
||||||
|
* plug-ins/common/file-wmf.c
|
||||||
|
* plug-ins/common/file-svg.c
|
||||||
|
* plug-ins/common/file-gih.c
|
||||||
|
* plug-ins/common/blur-motion.c
|
||||||
|
* plug-ins/file-jpeg/jpeg-save.c
|
||||||
|
* plug-ins/lighting/lighting-ui.c
|
||||||
|
* plug-ins/map-object/map-object-ui.c
|
||||||
|
|
||||||
|
* app/tools/gimpsheartool.c
|
||||||
|
* app/tools/gimpaligntool.c
|
||||||
|
* app/tools/gimprotatetool.c
|
||||||
|
* app/tools/gimplevelstool.c
|
||||||
|
* app/dialogs/resize-dialog.c
|
||||||
|
* app/dialogs/offset-dialog.c
|
||||||
|
* app/widgets/gimppaletteeditor.c
|
||||||
|
* app/widgets/gimpcolormapeditor.c
|
||||||
|
* app/dialogs/layer-options-dialog.c
|
||||||
|
* app/display/gimpdisplayshell-scale-dialog.c: Pass page_size = 0
|
||||||
|
to gimp_spin_button_new() to adapt to new and correct value
|
||||||
|
clamping in GTK+.
|
||||||
|
|
||||||
2008-08-26 Sven Neumann <sven@gimp.org>
|
2008-08-26 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/core/gimpdrawable-colorize.c (gimp_drawable_colorize):
|
* app/core/gimpdrawable-colorize.c (gimp_drawable_colorize):
|
||||||
|
@ -150,7 +150,7 @@ layer_options_dialog_new (GimpImage *image,
|
|||||||
|
|
||||||
/* The size sizeentry */
|
/* The size sizeentry */
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
1, 1, 1, 1, 10, 1,
|
1, 1, 1, 1, 10, 0,
|
||||||
1, 2);
|
1, 2);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ offset_dialog_new (GimpDrawable *drawable,
|
|||||||
gtk_widget_show (vbox);
|
gtk_widget_show (vbox);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
1, 1, 1, 1, 10, 1,
|
1, 1, 1, 1, 10, 0,
|
||||||
1, 2);
|
1, 2);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ resize_dialog_new (GimpViewable *viewable,
|
|||||||
|
|
||||||
/* the offset sizeentry */
|
/* the offset sizeentry */
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
1, 1, 1, 1, 10, 1,
|
1, 1, 1, 1, 10, 0,
|
||||||
1, 2);
|
1, 2);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), SB_WIDTH);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), SB_WIDTH);
|
||||||
|
|
||||||
|
@ -163,7 +163,7 @@ gimp_display_shell_scale_dialog (GimpDisplayShell *shell)
|
|||||||
|
|
||||||
spin = gimp_spin_button_new (&data->num_adj,
|
spin = gimp_spin_button_new (&data->num_adj,
|
||||||
num, 1, 256,
|
num, 1, 256,
|
||||||
1, 8, 1, 1, 0);
|
1, 8, 0, 1, 0);
|
||||||
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spin, TRUE, TRUE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spin, TRUE, TRUE, 0);
|
||||||
gtk_widget_show (spin);
|
gtk_widget_show (spin);
|
||||||
@ -174,7 +174,7 @@ gimp_display_shell_scale_dialog (GimpDisplayShell *shell)
|
|||||||
|
|
||||||
spin = gimp_spin_button_new (&data->denom_adj,
|
spin = gimp_spin_button_new (&data->denom_adj,
|
||||||
denom, 1, 256,
|
denom, 1, 256,
|
||||||
1, 8, 1, 1, 0);
|
1, 8, 0, 1, 0);
|
||||||
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
gtk_entry_set_activates_default (GTK_ENTRY (spin), TRUE);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spin, TRUE, TRUE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spin, TRUE, TRUE, 0);
|
||||||
gtk_widget_show (spin);
|
gtk_widget_show (spin);
|
||||||
|
@ -884,9 +884,9 @@ gimp_align_tool_controls (GimpAlignTool *align_tool)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&align_tool->horz_offset_adjustment,
|
spinbutton = gimp_spin_button_new (&align_tool->horz_offset_adjustment,
|
||||||
0,
|
0,
|
||||||
-100000.,
|
-100000,
|
||||||
100000.,
|
100000,
|
||||||
1., 20., 20., 1., 0);
|
1, 20, 0, 1, 0);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
||||||
g_signal_connect (align_tool->horz_offset_adjustment, "value-changed",
|
g_signal_connect (align_tool->horz_offset_adjustment, "value-changed",
|
||||||
G_CALLBACK (gimp_double_adjustment_update),
|
G_CALLBACK (gimp_double_adjustment_update),
|
||||||
|
@ -509,7 +509,7 @@ gimp_levels_tool_dialog (GimpImageMapTool *image_map_tool)
|
|||||||
/* input gamma spin */
|
/* input gamma spin */
|
||||||
spinbutton = gimp_spin_button_new (&data,
|
spinbutton = gimp_spin_button_new (&data,
|
||||||
config->gamma[config->channel],
|
config->gamma[config->channel],
|
||||||
0.1, 10, 0.01, 0.1, 1, 0.5, 2);
|
0.1, 10, 0.01, 0.1, 0, 0.5, 2);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, TRUE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, TRUE, FALSE, 0);
|
||||||
gimp_help_set_help_data (spinbutton, _("Gamma"), NULL);
|
gimp_help_set_help_data (spinbutton, _("Gamma"), NULL);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
|
@ -199,7 +199,7 @@ gimp_rotate_tool_dialog (GimpTransformTool *tr_tool)
|
|||||||
GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||||
gtk_widget_show (scale);
|
gtk_widget_show (scale);
|
||||||
|
|
||||||
button = gimp_spin_button_new (&adj, 0, -1, 1, 1, 10, 1, 1, 2);
|
button = gimp_spin_button_new (&adj, 0, -1, 1, 1, 10, 0, 1, 2);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (button), SB_WIDTH);
|
gtk_entry_set_width_chars (GTK_ENTRY (button), SB_WIDTH);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2, _("Center _X:"),
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2, _("Center _X:"),
|
||||||
0.0, 0.5, button, 1, TRUE);
|
0.0, 0.5, button, 1, TRUE);
|
||||||
|
@ -129,7 +129,7 @@ gimp_shear_tool_dialog (GimpTransformTool *tr_tool)
|
|||||||
gtk_widget_show (table);
|
gtk_widget_show (table);
|
||||||
|
|
||||||
button = gimp_spin_button_new (&shear->x_adj,
|
button = gimp_spin_button_new (&shear->x_adj,
|
||||||
0, -65536, 65536, 1, 15, 1, 1, 0);
|
0, -65536, 65536, 1, 15, 0, 1, 0);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (button), SB_WIDTH);
|
gtk_entry_set_width_chars (GTK_ENTRY (button), SB_WIDTH);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, _("Shear magnitude _X:"),
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, _("Shear magnitude _X:"),
|
||||||
0.0, 0.5, button, 1, TRUE);
|
0.0, 0.5, button, 1, TRUE);
|
||||||
@ -139,7 +139,7 @@ gimp_shear_tool_dialog (GimpTransformTool *tr_tool)
|
|||||||
tr_tool);
|
tr_tool);
|
||||||
|
|
||||||
button = gimp_spin_button_new (&shear->y_adj,
|
button = gimp_spin_button_new (&shear->y_adj,
|
||||||
0, -65536, 65536, 1, 15, 1, 1, 0);
|
0, -65536, 65536, 1, 15, 0, 1, 0);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (button), SB_WIDTH);
|
gtk_entry_set_width_chars (GTK_ENTRY (button), SB_WIDTH);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Shear magnitude _Y:"),
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Shear magnitude _Y:"),
|
||||||
0.0, 0.5, button, 1, TRUE);
|
0.0, 0.5, button, 1, TRUE);
|
||||||
|
@ -219,7 +219,7 @@ gimp_colormap_editor_init (GimpColormapEditor *editor)
|
|||||||
gtk_widget_show (table);
|
gtk_widget_show (table);
|
||||||
|
|
||||||
editor->index_spinbutton = gimp_spin_button_new (&adj,
|
editor->index_spinbutton = gimp_spin_button_new (&adj,
|
||||||
0, 0, 0, 1, 10, 10, 1.0, 0);
|
0, 0, 0, 1, 10, 0, 1.0, 0);
|
||||||
editor->index_adjustment = GTK_ADJUSTMENT (adj);
|
editor->index_adjustment = GTK_ADJUSTMENT (adj);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||||
_("Color index:"), 0.0, 0.5,
|
_("Color index:"), 0.0, 0.5,
|
||||||
|
@ -264,7 +264,7 @@ gimp_palette_editor_init (GimpPaletteEditor *editor)
|
|||||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (label);
|
gtk_widget_show (label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, 0, 0, 64, 1, 4, 4, 1, 0);
|
spinbutton = gimp_spin_button_new (&adj, 0, 0, 64, 1, 4, 0, 1, 0);
|
||||||
editor->columns_data = GTK_ADJUSTMENT (adj);
|
editor->columns_data = GTK_ADJUSTMENT (adj);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
|
@ -728,7 +728,7 @@ gimp_coordinates_new (GimpUnit unit,
|
|||||||
GtkWidget *sizeentry;
|
GtkWidget *sizeentry;
|
||||||
GtkWidget *chainbutton;
|
GtkWidget *chainbutton;
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adjustment, 1, 0, 1, 1, 10, 1, 1, 2);
|
spinbutton = gimp_spin_button_new (&adjustment, 1, 0, 1, 1, 10, 0, 1, 2);
|
||||||
|
|
||||||
if (spinbutton_width > 0)
|
if (spinbutton_width > 0)
|
||||||
{
|
{
|
||||||
|
@ -1082,7 +1082,7 @@ mblur_dialog (gint32 image_ID,
|
|||||||
G_CALLBACK (gimp_preview_invalidate),
|
G_CALLBACK (gimp_preview_invalidate),
|
||||||
preview);
|
preview);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, 1, 0, 1, 1, 10, 1, 1, 2);
|
spinbutton = gimp_spin_button_new (&adj, 1, 0, 1, 1, 10, 0, 1, 2);
|
||||||
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (entry),
|
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (entry),
|
||||||
GTK_SPIN_BUTTON (spinbutton), NULL);
|
GTK_SPIN_BUTTON (spinbutton), NULL);
|
||||||
gtk_table_attach_defaults (GTK_TABLE (entry), spinbutton, 1, 2, 0, 1);
|
gtk_table_attach_defaults (GTK_TABLE (entry), spinbutton, 1, 2, 0, 1);
|
||||||
|
@ -906,7 +906,7 @@ gih_save_dialog (gint32 image_ID)
|
|||||||
* Spacing: __
|
* Spacing: __
|
||||||
*/
|
*/
|
||||||
spinbutton = gimp_spin_button_new (&adjustment, info.spacing,
|
spinbutton = gimp_spin_button_new (&adjustment, info.spacing,
|
||||||
1, 1000, 1, 10, 10, 1, 0);
|
1, 1000, 1, 10, 0, 1, 0);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||||
_("Spacing (percent):"), 0.0, 0.5,
|
_("Spacing (percent):"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -936,7 +936,7 @@ gih_save_dialog (gint32 image_ID)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
gihparams.cellwidth,
|
gihparams.cellwidth,
|
||||||
2, gimp_image_width (image_ID), 1, 1, 1,
|
2, gimp_image_width (image_ID), 1, 1, 0,
|
||||||
1, 0);
|
1, 0);
|
||||||
gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -959,7 +959,7 @@ gih_save_dialog (gint32 image_ID)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
gihparams.cellheight,
|
gihparams.cellheight,
|
||||||
2, gimp_image_height (image_ID), 1, 1, 1,
|
2, gimp_image_height (image_ID), 1, 1, 0,
|
||||||
1, 0);
|
1, 0);
|
||||||
gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -989,7 +989,7 @@ gih_save_dialog (gint32 image_ID)
|
|||||||
* Number of cells: ___
|
* Number of cells: ___
|
||||||
*/
|
*/
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
gihparams.ncells, 1, 1000, 1, 10, 10,
|
gihparams.ncells, 1, 1000, 1, 10, 0,
|
||||||
1, 0);
|
1, 0);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
||||||
_("Number of cells:"), 0.0, 0.5,
|
_("Number of cells:"), 0.0, 0.5,
|
||||||
@ -1049,7 +1049,7 @@ gih_save_dialog (gint32 image_ID)
|
|||||||
* Dimension: ___
|
* Dimension: ___
|
||||||
*/
|
*/
|
||||||
spinbutton = gimp_spin_button_new (&adjustment, gihparams.dim,
|
spinbutton = gimp_spin_button_new (&adjustment, gihparams.dim,
|
||||||
1, GIMP_PIXPIPE_MAXDIM, 1, 1, 1, 1, 0);
|
1, GIMP_PIXPIPE_MAXDIM, 1, 1, 0, 1, 0);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 5,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 5,
|
||||||
_("Dimension:"), 0.0, 0.5,
|
_("Dimension:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -1069,7 +1069,7 @@ gih_save_dialog (gint32 image_ID)
|
|||||||
gint j;
|
gint j;
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adjustment,
|
spinbutton = gimp_spin_button_new (&adjustment,
|
||||||
gihparams.rank[i], 1, 100, 1, 1, 1,
|
gihparams.rank[i], 1, 100, 1, 1, 0,
|
||||||
1, 0);
|
1, 0);
|
||||||
gtk_table_attach (GTK_TABLE (dimtable), spinbutton, 0, 1, i, i + 1,
|
gtk_table_attach (GTK_TABLE (dimtable), spinbutton, 0, 1, i, i + 1,
|
||||||
GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
|
GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
|
||||||
|
@ -809,7 +809,7 @@ load_dialog (const gchar *filename,
|
|||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (hbox);
|
gtk_widget_show (hbox);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, 1, 1, 1, 1, 10, 1, 1, 2);
|
spinbutton = gimp_spin_button_new (&adj, 1, 1, 1, 1, 10, 0, 1, 2);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -862,7 +862,7 @@ load_dialog (const gchar *filename,
|
|||||||
ratio_x,
|
ratio_x,
|
||||||
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) svg_width,
|
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) svg_width,
|
||||||
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) svg_width,
|
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) svg_width,
|
||||||
0.01, 0.1, 1,
|
0.01, 0.1, 0,
|
||||||
0.01, 4);
|
0.01, 4);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 0, 1);
|
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 0, 1);
|
||||||
@ -884,7 +884,7 @@ load_dialog (const gchar *filename,
|
|||||||
ratio_y,
|
ratio_y,
|
||||||
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) svg_height,
|
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) svg_height,
|
||||||
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) svg_height,
|
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) svg_height,
|
||||||
0.01, 0.1, 1,
|
0.01, 0.1, 0,
|
||||||
0.01, 4);
|
0.01, 4);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 1, 2);
|
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 1, 2);
|
||||||
|
@ -585,7 +585,7 @@ load_dialog (const gchar *filename)
|
|||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (hbox);
|
gtk_widget_show (hbox);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, 1, 1, 1, 1, 10, 1, 1, 2);
|
spinbutton = gimp_spin_button_new (&adj, 1, 1, 1, 1, 10, 0, 1, 2);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -638,7 +638,7 @@ load_dialog (const gchar *filename)
|
|||||||
ratio_x,
|
ratio_x,
|
||||||
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) wmf_width,
|
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) wmf_width,
|
||||||
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) wmf_width,
|
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) wmf_width,
|
||||||
0.01, 0.1, 1,
|
0.01, 0.1, 0,
|
||||||
0.01, 4);
|
0.01, 4);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 0, 1);
|
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 0, 1);
|
||||||
@ -660,7 +660,7 @@ load_dialog (const gchar *filename)
|
|||||||
ratio_y,
|
ratio_y,
|
||||||
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) wmf_height,
|
(gdouble) GIMP_MIN_IMAGE_SIZE / (gdouble) wmf_height,
|
||||||
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) wmf_height,
|
(gdouble) GIMP_MAX_IMAGE_SIZE / (gdouble) wmf_height,
|
||||||
0.01, 0.1, 1,
|
0.01, 0.1, 0,
|
||||||
0.01, 4);
|
0.01, 4);
|
||||||
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
gtk_entry_set_width_chars (GTK_ENTRY (spinbutton), 10);
|
||||||
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 1, 2);
|
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 1, 2);
|
||||||
|
@ -1272,7 +1272,7 @@ save_dialog (gint32 drawable_ID)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, xsvals.x_hot, 0,
|
spinbutton = gimp_spin_button_new (&adj, xsvals.x_hot, 0,
|
||||||
gimp_drawable_width (drawable_ID) - 1,
|
gimp_drawable_width (drawable_ID) - 1,
|
||||||
1, 1, 1, 0, 0);
|
1, 1, 0, 0, 0);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||||
_("Hot spot _X:"), 0.0, 0.5,
|
_("Hot spot _X:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -1282,7 +1282,7 @@ save_dialog (gint32 drawable_ID)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, xsvals.y_hot, 0,
|
spinbutton = gimp_spin_button_new (&adj, xsvals.y_hot, 0,
|
||||||
gimp_drawable_height (drawable_ID) - 1,
|
gimp_drawable_height (drawable_ID) - 1,
|
||||||
1, 1, 1, 0, 0);
|
1, 1, 0, 0, 0);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||||
_("Hot spot _Y:"), 0.0, 0.5,
|
_("Hot spot _Y:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
|
@ -942,7 +942,7 @@ save_dialog (void)
|
|||||||
pg.restart = restart_markers_scale = spinbutton =
|
pg.restart = restart_markers_scale = spinbutton =
|
||||||
gimp_spin_button_new (&pg.scale_data,
|
gimp_spin_button_new (&pg.scale_data,
|
||||||
(jsvals.restart == 0) ? 1 : jsvals.restart,
|
(jsvals.restart == 0) ? 1 : jsvals.restart,
|
||||||
1.0, 64.0, 1.0, 1.0, 64.0, 1.0, 0);
|
1.0, 64.0, 1.0, 1.0, 0, 1.0, 0);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 5, 6, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 5, 6, 1, 2,
|
||||||
GTK_FILL, GTK_FILL, 0, 0);
|
GTK_FILL, GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
|
@ -451,7 +451,7 @@ create_light_page (void)
|
|||||||
spin_intensity = gimp_spin_button_new (&adj,
|
spin_intensity = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].intensity,
|
mapvals.lightsource[k].intensity,
|
||||||
0.0, 100.0,
|
0.0, 100.0,
|
||||||
0.01, 0.1, 1.0, 0.0, 2);
|
0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
||||||
_("_Intensity:"), 0.0, 0.5,
|
_("_Intensity:"), 0.0, 0.5,
|
||||||
spin_intensity, 1, TRUE);
|
spin_intensity, 1, TRUE);
|
||||||
@ -472,7 +472,7 @@ create_light_page (void)
|
|||||||
spin_pos_x = gimp_spin_button_new (&adj,
|
spin_pos_x = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].position.x,
|
mapvals.lightsource[k].position.x,
|
||||||
-100.0, 100.0,
|
-100.0, 100.0,
|
||||||
0.1, 1.0, 1.0, 0.0, 2);
|
0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 2, 1,
|
gimp_table_attach_aligned (GTK_TABLE (table), 2, 1,
|
||||||
_("_X:"), 0.0, 0.5,
|
_("_X:"), 0.0, 0.5,
|
||||||
spin_pos_x, 1, TRUE);
|
spin_pos_x, 1, TRUE);
|
||||||
@ -487,7 +487,7 @@ create_light_page (void)
|
|||||||
spin_pos_y = gimp_spin_button_new (&adj,
|
spin_pos_y = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].position.y,
|
mapvals.lightsource[k].position.y,
|
||||||
-100.0, 100.0,
|
-100.0, 100.0,
|
||||||
0.1, 1.0, 1.0, 0.0, 2);
|
0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 2, 2,
|
gimp_table_attach_aligned (GTK_TABLE (table), 2, 2,
|
||||||
_("_Y:"), 0.0, 0.5,
|
_("_Y:"), 0.0, 0.5,
|
||||||
spin_pos_y, 1, TRUE);
|
spin_pos_y, 1, TRUE);
|
||||||
@ -502,7 +502,7 @@ create_light_page (void)
|
|||||||
spin_pos_z = gimp_spin_button_new (&adj,
|
spin_pos_z = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].position.z,
|
mapvals.lightsource[k].position.z,
|
||||||
-100.0, 100.0,
|
-100.0, 100.0,
|
||||||
0.1, 1.0, 1.0, 0.0, 2);
|
0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 2, 3,
|
gimp_table_attach_aligned (GTK_TABLE (table), 2, 3,
|
||||||
_("_Z:"), 0.0, 0.5,
|
_("_Z:"), 0.0, 0.5,
|
||||||
spin_pos_z, 1, TRUE);
|
spin_pos_z, 1, TRUE);
|
||||||
@ -522,7 +522,7 @@ create_light_page (void)
|
|||||||
|
|
||||||
spin_dir_x = gimp_spin_button_new (&adj,
|
spin_dir_x = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].direction.x,
|
mapvals.lightsource[k].direction.x,
|
||||||
-100.0, 100.0, 0.1, 1.0, 1.0, 0.0, 2);
|
-100.0, 100.0, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 4, 1,
|
gimp_table_attach_aligned (GTK_TABLE (table), 4, 1,
|
||||||
_("X:"), 0.0, 0.5,
|
_("X:"), 0.0, 0.5,
|
||||||
spin_dir_x, 1, TRUE);
|
spin_dir_x, 1, TRUE);
|
||||||
@ -536,7 +536,7 @@ create_light_page (void)
|
|||||||
|
|
||||||
spin_dir_y = gimp_spin_button_new (&adj,
|
spin_dir_y = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].direction.y,
|
mapvals.lightsource[k].direction.y,
|
||||||
-100.0, 100.0, 0.1, 1.0, 1.0, 0.0, 2);
|
-100.0, 100.0, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 4, 2,
|
gimp_table_attach_aligned (GTK_TABLE (table), 4, 2,
|
||||||
_("Y:"), 0.0, 0.5,
|
_("Y:"), 0.0, 0.5,
|
||||||
spin_dir_y, 1, TRUE);
|
spin_dir_y, 1, TRUE);
|
||||||
@ -550,7 +550,7 @@ create_light_page (void)
|
|||||||
|
|
||||||
spin_dir_z = gimp_spin_button_new (&adj,
|
spin_dir_z = gimp_spin_button_new (&adj,
|
||||||
mapvals.lightsource[k].direction.z,
|
mapvals.lightsource[k].direction.z,
|
||||||
-100.0, 100.0, 0.1, 1.0, 1.0, 0.0, 2);
|
-100.0, 100.0, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 4, 3,
|
gimp_table_attach_aligned (GTK_TABLE (table), 4, 3,
|
||||||
_("Z:"), 0.0, 0.5,
|
_("Z:"), 0.0, 0.5,
|
||||||
spin_dir_z, 1, TRUE);
|
spin_dir_z, 1, TRUE);
|
||||||
@ -641,7 +641,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.ambient_int,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.ambient_int,
|
||||||
0, G_MAXFLOAT, 0.01, 0.1, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -674,7 +674,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.diffuse_int,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.diffuse_int,
|
||||||
0, G_MAXFLOAT, 0.01, 0.1, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -707,7 +707,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.specular_ref,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.specular_ref,
|
||||||
0, G_MAXFLOAT, 0.01, 0.1, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 2, 3,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 2, 3,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -739,7 +739,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.highlight,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.highlight,
|
||||||
0, G_MAXFLOAT, 0.01, 0.1, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 3, 4,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 3, 4,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -855,7 +855,7 @@ create_bump_page (void)
|
|||||||
_("Cu_rve:"), 0.0, 0.5, combo, 1, FALSE);
|
_("Cu_rve:"), 0.0, 0.5, combo, 1, FALSE);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.bumpmax,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.bumpmax,
|
||||||
0, G_MAXFLOAT, 0.01, 0.1, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
||||||
_("Ma_ximum height:"), 0.0, 0.5,
|
_("Ma_ximum height:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
|
@ -580,7 +580,7 @@ create_options_page (void)
|
|||||||
&mapvals.maxdepth);
|
&mapvals.maxdepth);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.pixeltreshold,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.pixeltreshold,
|
||||||
0.001, 1000, 0.1, 1, 1, 0, 3);
|
0.001, 1000, 0.1, 1, 0, 0, 3);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||||
_("_Threshold:"), 0.0, 0.5,
|
_("_Threshold:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -670,7 +670,7 @@ create_light_page (void)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&xadj, mapvals.lightsource.position.x,
|
spinbutton = gimp_spin_button_new (&xadj, mapvals.lightsource.position.x,
|
||||||
-G_MAXFLOAT, G_MAXFLOAT,
|
-G_MAXFLOAT, G_MAXFLOAT,
|
||||||
0.1, 1.0, 1.0, 0.0, 2);
|
0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||||
_("X:"), 0.0, 0.5,
|
_("X:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -684,7 +684,7 @@ create_light_page (void)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&yadj, mapvals.lightsource.position.y,
|
spinbutton = gimp_spin_button_new (&yadj, mapvals.lightsource.position.y,
|
||||||
-G_MAXFLOAT, G_MAXFLOAT,
|
-G_MAXFLOAT, G_MAXFLOAT,
|
||||||
0.1, 1.0, 1.0, 0.0, 2);
|
0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||||
_("Y:"), 0.0, 0.5,
|
_("Y:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -698,7 +698,7 @@ create_light_page (void)
|
|||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&zadj, mapvals.lightsource.position.z,
|
spinbutton = gimp_spin_button_new (&zadj, mapvals.lightsource.position.z,
|
||||||
-G_MAXFLOAT, G_MAXFLOAT,
|
-G_MAXFLOAT, G_MAXFLOAT,
|
||||||
0.1, 1.0, 1.0, 0.0, 2);
|
0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
||||||
_("Z:"), 0.0, 0.5,
|
_("Z:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -724,7 +724,7 @@ create_light_page (void)
|
|||||||
gtk_widget_show (table);
|
gtk_widget_show (table);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.lightsource.direction.x,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.lightsource.direction.x,
|
||||||
-1.0, 1.0, 0.01, 0.1, 1.0, 0.0, 2);
|
-1.0, 1.0, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||||
_("X:"), 0.0, 0.5,
|
_("X:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -737,7 +737,7 @@ create_light_page (void)
|
|||||||
_("Light source X direction in XYZ space"), NULL);
|
_("Light source X direction in XYZ space"), NULL);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.lightsource.direction.y,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.lightsource.direction.y,
|
||||||
-1.0, 1.0, 0.01, 0.1, 1.0, 0.0, 2);
|
-1.0, 1.0, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||||
_("Y:"), 0.0, 0.5,
|
_("Y:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -750,7 +750,7 @@ create_light_page (void)
|
|||||||
_("Light source Y direction in XYZ space"), NULL);
|
_("Light source Y direction in XYZ space"), NULL);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.lightsource.direction.z,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.lightsource.direction.z,
|
||||||
-1.0, 1.0, 0.01, 0.1, 1.0, 0.0, 2);
|
-1.0, 1.0, 0.01, 0.1, 0.0, 0.0, 2);
|
||||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
||||||
_("Z:"), 0.0, 0.5,
|
_("Z:"), 0.0, 0.5,
|
||||||
spinbutton, 1, TRUE);
|
spinbutton, 1, TRUE);
|
||||||
@ -811,7 +811,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.ambient_int,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.ambient_int,
|
||||||
0, G_MAXFLOAT, 0.1, 1.0, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -840,7 +840,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.diffuse_int,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.diffuse_int,
|
||||||
0, G_MAXFLOAT, 0.1, 1.0, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -883,7 +883,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.diffuse_ref,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.diffuse_ref,
|
||||||
0, G_MAXFLOAT, 0.1, 1.0, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 0, 1,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 0, 1,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -912,7 +912,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.specular_ref,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.specular_ref,
|
||||||
0, G_MAXFLOAT, 0.1, 1.0, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 1, 2,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 1, 2,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
@ -941,7 +941,7 @@ create_material_page (void)
|
|||||||
gtk_size_group_add_widget (group, label);
|
gtk_size_group_add_widget (group, label);
|
||||||
|
|
||||||
spinbutton = gimp_spin_button_new (&adj, mapvals.material.highlight,
|
spinbutton = gimp_spin_button_new (&adj, mapvals.material.highlight,
|
||||||
0, G_MAXFLOAT, 0.1, 1.0, 1.0, 0.0, 2);
|
0, G_MAXFLOAT, 0.1, 1.0, 0.0, 0.0, 2);
|
||||||
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 2, 3,
|
gtk_table_attach (GTK_TABLE (table), spinbutton, 2, 3, 2, 3,
|
||||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||||
gtk_widget_show (spinbutton);
|
gtk_widget_show (spinbutton);
|
||||||
|
Reference in New Issue
Block a user