2001-04-29 04:14:32 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "tools-types.h"
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
#include "config/gimpconfig-params.h"
|
2002-11-19 04:50:31 +08:00
|
|
|
#include "config/gimpcoreconfig.h"
|
|
|
|
|
2002-02-12 10:31:45 +08:00
|
|
|
#include "core/gimp.h"
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core/gimptoolinfo.h"
|
2001-04-29 04:14:32 +08:00
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
#include "widgets/gimppropwidgets.h"
|
2002-12-20 00:33:29 +08:00
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
2002-03-17 22:07:54 +08:00
|
|
|
|
2001-11-30 00:44:51 +08:00
|
|
|
#include "gimprotatetool.h"
|
|
|
|
#include "gimpscaletool.h"
|
2003-06-30 04:40:45 +08:00
|
|
|
#include "gimptooloptions-gui.h"
|
2003-02-09 05:12:03 +08:00
|
|
|
#include "gimptransformoptions.h"
|
2001-04-29 04:14:32 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2001-04-29 04:14:32 +08:00
|
|
|
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2003-05-31 07:52:24 +08:00
|
|
|
PROP_TYPE,
|
2003-02-08 01:12:21 +08:00
|
|
|
PROP_DIRECTION,
|
|
|
|
PROP_INTERPOLATION,
|
2004-03-13 19:24:25 +08:00
|
|
|
PROP_SUPERSAMPLE,
|
2003-02-08 01:12:21 +08:00
|
|
|
PROP_CLIP,
|
|
|
|
PROP_GRID_TYPE,
|
|
|
|
PROP_GRID_SIZE,
|
|
|
|
PROP_CONSTRAIN_1,
|
|
|
|
PROP_CONSTRAIN_2
|
|
|
|
};
|
|
|
|
|
2001-04-29 04:14:32 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
static void gimp_transform_options_init (GimpTransformOptions *options);
|
|
|
|
static void gimp_transform_options_class_init (GimpTransformOptionsClass *options_class);
|
2001-04-29 04:14:32 +08:00
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
static void gimp_transform_options_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_transform_options_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2003-07-17 23:22:21 +08:00
|
|
|
static void gimp_transform_options_reset (GimpToolOptions *tool_options);static void gimp_transform_options_set_defaults (GimpToolOptions *tool_options);
|
2003-02-08 01:12:21 +08:00
|
|
|
|
2003-02-10 18:08:01 +08:00
|
|
|
static void gimp_transform_options_grid_notify (GimpTransformOptions *options,
|
2003-02-08 01:12:21 +08:00
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkWidget *density_box);
|
|
|
|
|
|
|
|
|
|
|
|
static GimpToolOptionsClass *parent_class = NULL;
|
2001-04-29 04:14:32 +08:00
|
|
|
|
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
GType
|
|
|
|
gimp_transform_options_get_type (void)
|
2001-04-29 04:14:32 +08:00
|
|
|
{
|
2003-02-05 22:39:40 +08:00
|
|
|
static GType type = 0;
|
2001-04-29 04:14:32 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
if (! type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo info =
|
|
|
|
{
|
|
|
|
sizeof (GimpTransformOptionsClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_transform_options_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpTransformOptions),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_transform_options_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
type = g_type_register_static (GIMP_TYPE_TOOL_OPTIONS,
|
|
|
|
"GimpTransformOptions",
|
|
|
|
&info, 0);
|
|
|
|
}
|
2001-11-21 07:00:47 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
return type;
|
2001-04-29 04:14:32 +08:00
|
|
|
}
|
|
|
|
|
2003-07-17 23:22:21 +08:00
|
|
|
static void
|
2003-02-05 22:39:40 +08:00
|
|
|
gimp_transform_options_class_init (GimpTransformOptionsClass *klass)
|
2001-04-29 04:14:32 +08:00
|
|
|
{
|
2003-02-08 01:12:21 +08:00
|
|
|
GObjectClass *object_class;
|
|
|
|
GimpToolOptionsClass *options_class;
|
|
|
|
|
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
options_class = GIMP_TOOL_OPTIONS_CLASS (klass);
|
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
|
|
|
object_class->set_property = gimp_transform_options_set_property;
|
|
|
|
object_class->get_property = gimp_transform_options_get_property;
|
|
|
|
|
|
|
|
options_class->reset = gimp_transform_options_reset;
|
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
GIMP_CONFIG_INSTALL_PROP_ENUM (object_class, PROP_TYPE,
|
|
|
|
"type", NULL,
|
|
|
|
GIMP_TYPE_TRANSFORM_TYPE,
|
|
|
|
GIMP_TRANSFORM_TYPE_LAYER,
|
|
|
|
0);
|
2003-02-08 01:12:21 +08:00
|
|
|
GIMP_CONFIG_INSTALL_PROP_ENUM (object_class, PROP_DIRECTION,
|
|
|
|
"direction", NULL,
|
|
|
|
GIMP_TYPE_TRANSFORM_DIRECTION,
|
|
|
|
GIMP_TRANSFORM_FORWARD,
|
|
|
|
0);
|
|
|
|
GIMP_CONFIG_INSTALL_PROP_ENUM (object_class, PROP_INTERPOLATION,
|
|
|
|
"interpolation", NULL,
|
|
|
|
GIMP_TYPE_INTERPOLATION_TYPE,
|
2003-08-27 01:33:25 +08:00
|
|
|
GIMP_INTERPOLATION_LINEAR,
|
2003-02-08 01:12:21 +08:00
|
|
|
0);
|
2004-03-13 19:24:25 +08:00
|
|
|
GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_SUPERSAMPLE,
|
|
|
|
"supersample", NULL,
|
|
|
|
FALSE,
|
|
|
|
0);
|
2003-02-08 01:12:21 +08:00
|
|
|
GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_CLIP,
|
|
|
|
"clip", NULL,
|
2003-02-21 20:24:34 +08:00
|
|
|
FALSE,
|
2003-02-08 01:12:21 +08:00
|
|
|
0);
|
|
|
|
GIMP_CONFIG_INSTALL_PROP_ENUM (object_class, PROP_GRID_TYPE,
|
|
|
|
"grid-type", NULL,
|
|
|
|
GIMP_TYPE_TRANSFORM_GRID_TYPE,
|
|
|
|
GIMP_TRANSFORM_GRID_TYPE_N_LINES,
|
|
|
|
0);
|
|
|
|
GIMP_CONFIG_INSTALL_PROP_INT (object_class, PROP_GRID_SIZE,
|
|
|
|
"grid-size", NULL,
|
|
|
|
1, 128, 15,
|
|
|
|
0);
|
|
|
|
GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_CONSTRAIN_1,
|
|
|
|
"constrain-1", NULL,
|
|
|
|
FALSE,
|
|
|
|
0);
|
|
|
|
GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_CONSTRAIN_2,
|
|
|
|
"constrain-2", NULL,
|
|
|
|
FALSE,
|
|
|
|
0);
|
2003-02-05 22:39:40 +08:00
|
|
|
}
|
2001-11-09 03:14:51 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
static void
|
|
|
|
gimp_transform_options_init (GimpTransformOptions *options)
|
|
|
|
{
|
2003-02-08 01:12:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_transform_options_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpTransformOptions *options;
|
|
|
|
|
|
|
|
options = GIMP_TRANSFORM_OPTIONS (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
case PROP_TYPE:
|
|
|
|
options->type = g_value_get_enum (value);
|
|
|
|
break;
|
2003-02-08 01:12:21 +08:00
|
|
|
case PROP_DIRECTION:
|
|
|
|
options->direction = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
case PROP_INTERPOLATION:
|
|
|
|
options->interpolation = g_value_get_enum (value);
|
|
|
|
break;
|
2004-03-13 19:24:25 +08:00
|
|
|
case PROP_SUPERSAMPLE:
|
|
|
|
options->supersample = g_value_get_boolean (value);
|
|
|
|
break;
|
2003-02-08 01:12:21 +08:00
|
|
|
case PROP_CLIP:
|
|
|
|
options->clip = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case PROP_GRID_TYPE:
|
|
|
|
options->grid_type = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
case PROP_GRID_SIZE:
|
|
|
|
options->grid_size = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case PROP_CONSTRAIN_1:
|
|
|
|
options->constrain_1 = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case PROP_CONSTRAIN_2:
|
|
|
|
options->constrain_2 = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_transform_options_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpTransformOptions *options;
|
|
|
|
|
|
|
|
options = GIMP_TRANSFORM_OPTIONS (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
case PROP_TYPE:
|
|
|
|
g_value_set_enum (value, options->type);
|
|
|
|
break;
|
2003-02-08 01:12:21 +08:00
|
|
|
case PROP_DIRECTION:
|
|
|
|
g_value_set_enum (value, options->direction);
|
|
|
|
break;
|
|
|
|
case PROP_INTERPOLATION:
|
|
|
|
g_value_set_enum (value, options->interpolation);
|
|
|
|
break;
|
2004-03-13 19:24:25 +08:00
|
|
|
case PROP_SUPERSAMPLE:
|
|
|
|
g_value_set_boolean (value, options->supersample);
|
|
|
|
break;
|
2003-02-08 01:12:21 +08:00
|
|
|
case PROP_CLIP:
|
|
|
|
g_value_set_boolean (value, options->clip);
|
|
|
|
break;
|
|
|
|
case PROP_GRID_TYPE:
|
|
|
|
g_value_set_enum (value, options->grid_type);
|
|
|
|
break;
|
|
|
|
case PROP_GRID_SIZE:
|
|
|
|
g_value_set_int (value, options->grid_size);
|
|
|
|
break;
|
|
|
|
case PROP_CONSTRAIN_1:
|
|
|
|
g_value_set_boolean (value, options->constrain_1);
|
|
|
|
break;
|
|
|
|
case PROP_CONSTRAIN_2:
|
|
|
|
g_value_set_boolean (value, options->constrain_2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_transform_options_reset (GimpToolOptions *tool_options)
|
|
|
|
{
|
2003-07-17 23:22:21 +08:00
|
|
|
gimp_transform_options_set_defaults (tool_options);
|
2003-02-08 01:12:21 +08:00
|
|
|
|
2003-07-17 23:22:21 +08:00
|
|
|
GIMP_TOOL_OPTIONS_CLASS (parent_class)->reset (tool_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_transform_options_set_defaults (GimpToolOptions *tool_options)
|
|
|
|
{
|
|
|
|
GParamSpec *pspec;
|
2003-02-08 01:12:21 +08:00
|
|
|
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (tool_options),
|
|
|
|
"interpolation");
|
|
|
|
|
|
|
|
if (pspec)
|
2003-07-17 23:22:21 +08:00
|
|
|
G_PARAM_SPEC_ENUM (pspec)->default_value =
|
|
|
|
tool_options->tool_info->gimp->config->interpolation_type;
|
2003-02-05 22:39:40 +08:00
|
|
|
}
|
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
GtkWidget *
|
2003-02-05 22:39:40 +08:00
|
|
|
gimp_transform_options_gui (GimpToolOptions *tool_options)
|
|
|
|
{
|
2003-05-31 07:52:24 +08:00
|
|
|
GObject *config;
|
2003-02-05 22:39:40 +08:00
|
|
|
GimpTransformOptions *options;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *frame;
|
|
|
|
GtkWidget *table;
|
2003-02-08 01:12:21 +08:00
|
|
|
GtkWidget *optionmenu;
|
|
|
|
GtkWidget *button;
|
2003-02-05 22:39:40 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
config = G_OBJECT (tool_options);
|
2003-02-05 22:39:40 +08:00
|
|
|
options = GIMP_TRANSFORM_OPTIONS (tool_options);
|
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
vbox = gimp_tool_options_gui (tool_options);
|
2003-02-05 22:39:40 +08:00
|
|
|
|
2003-05-31 07:52:24 +08:00
|
|
|
hbox = gimp_prop_enum_stock_box_new (config, "type", "gimp", 0, 0);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
|
|
|
label = gtk_label_new (_("Affect:"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
|
|
|
gtk_box_reorder_child (GTK_BOX (hbox), label, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
frame = gimp_prop_enum_radio_frame_new (config, "direction",
|
|
|
|
_("Transform Direction"), 0, 0);
|
2001-11-09 03:14:51 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
2001-04-29 04:14:32 +08:00
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2002-02-12 10:31:45 +08:00
|
|
|
/* the interpolation menu */
|
|
|
|
hbox = gtk_hbox_new (FALSE, 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (hbox);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2002-02-12 10:31:45 +08:00
|
|
|
label = gtk_label_new (_("Interpolation:"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
optionmenu = gimp_prop_enum_option_menu_new (config, "interpolation", 0, 0);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (optionmenu);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2004-03-13 19:24:25 +08:00
|
|
|
/* the supersample toggle button */
|
|
|
|
button = gimp_prop_check_button_new (config, "supersample",
|
2004-03-13 19:41:57 +08:00
|
|
|
_("Supersampling"));
|
2004-03-13 19:24:25 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
|
|
|
|
2001-11-30 00:44:51 +08:00
|
|
|
/* the clip resulting image toggle button */
|
2003-02-08 01:12:21 +08:00
|
|
|
button = gimp_prop_check_button_new (config, "clip", _("Clip Result"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2001-04-29 04:14:32 +08:00
|
|
|
/* the grid frame */
|
|
|
|
frame = gtk_frame_new (NULL);
|
2001-11-09 03:14:51 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
2001-04-29 04:14:32 +08:00
|
|
|
|
2002-12-17 23:46:47 +08:00
|
|
|
/* the grid type menu */
|
2003-02-08 01:12:21 +08:00
|
|
|
optionmenu = gimp_prop_enum_option_menu_new (config, "grid-type", 0, 0);
|
|
|
|
gtk_frame_set_label_widget (GTK_FRAME (frame), optionmenu);
|
|
|
|
gtk_widget_show (optionmenu);
|
2002-12-17 23:46:47 +08:00
|
|
|
|
2002-12-20 00:33:29 +08:00
|
|
|
/* the grid density scale */
|
|
|
|
table = gtk_table_new (1, 3, FALSE);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (table), 2);
|
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 2);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), table);
|
|
|
|
gtk_widget_show (table);
|
|
|
|
|
2003-02-10 18:08:01 +08:00
|
|
|
g_signal_connect (config, "notify::grid-type",
|
|
|
|
G_CALLBACK (gimp_transform_options_grid_notify),
|
2003-02-08 01:12:21 +08:00
|
|
|
table);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
gimp_prop_scale_entry_new (config, "grid-size",
|
|
|
|
GTK_TABLE (table), 0, 0,
|
|
|
|
_("Density:"),
|
|
|
|
1.0, 8.0, 0,
|
|
|
|
FALSE, 0.0, 0.0);
|
2001-11-09 03:14:51 +08:00
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
if (tool_options->tool_info->tool_type == GIMP_TYPE_ROTATE_TOOL ||
|
|
|
|
tool_options->tool_info->tool_type == GIMP_TYPE_SCALE_TOOL)
|
2001-11-30 00:44:51 +08:00
|
|
|
{
|
2002-12-20 00:33:29 +08:00
|
|
|
GtkWidget *vbox2;
|
|
|
|
gchar *str;
|
|
|
|
|
2001-11-30 00:44:51 +08:00
|
|
|
/* the constraints frame */
|
|
|
|
frame = gtk_frame_new (_("Constraints"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
vbox2 = gtk_vbox_new (FALSE, 2);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox2), 2);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox2);
|
|
|
|
gtk_widget_show (vbox2);
|
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
if (tool_options->tool_info->tool_type == GIMP_TYPE_ROTATE_TOOL)
|
2001-11-30 00:44:51 +08:00
|
|
|
{
|
2002-12-20 00:33:29 +08:00
|
|
|
str = g_strdup_printf (_("15 Degrees %s"),
|
|
|
|
gimp_get_mod_name_control ());
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
button = gimp_prop_check_button_new (config, "constrain-1", str);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2002-12-20 00:33:29 +08:00
|
|
|
g_free (str);
|
2001-11-30 00:44:51 +08:00
|
|
|
}
|
2003-02-05 22:39:40 +08:00
|
|
|
else if (tool_options->tool_info->tool_type == GIMP_TYPE_SCALE_TOOL)
|
2001-11-30 00:44:51 +08:00
|
|
|
{
|
2002-12-20 00:33:29 +08:00
|
|
|
str = g_strdup_printf (_("Keep Height %s"),
|
|
|
|
gimp_get_mod_name_control ());
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
button = gimp_prop_check_button_new (config, "constrain-1", str);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2002-12-20 00:33:29 +08:00
|
|
|
g_free (str);
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
gimp_help_set_help_data (button,
|
2001-11-30 00:44:51 +08:00
|
|
|
_("Activate both the \"Keep Height\" and\n"
|
|
|
|
"\"Keep Width\" toggles to constrain\n"
|
|
|
|
"the aspect ratio"), NULL);
|
|
|
|
|
2002-12-20 00:33:29 +08:00
|
|
|
str = g_strdup_printf (_("Keep Width %s"),
|
|
|
|
gimp_get_mod_name_alt ());
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
button = gimp_prop_check_button_new (config, "constrain-2", str);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
2001-11-30 00:44:51 +08:00
|
|
|
|
2002-12-20 00:33:29 +08:00
|
|
|
g_free (str);
|
|
|
|
|
2003-02-08 01:12:21 +08:00
|
|
|
gimp_help_set_help_data (button,
|
2001-11-30 00:44:51 +08:00
|
|
|
_("Activate both the \"Keep Height\" and\n"
|
|
|
|
"\"Keep Width\" toggles to constrain\n"
|
|
|
|
"the aspect ratio"), NULL);
|
|
|
|
}
|
|
|
|
}
|
2001-04-30 20:54:33 +08:00
|
|
|
|
2003-07-17 23:22:21 +08:00
|
|
|
gimp_transform_options_set_defaults (tool_options);
|
2003-02-10 01:32:52 +08:00
|
|
|
|
|
|
|
return vbox;
|
2001-04-29 04:14:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-20 02:23:43 +08:00
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
2003-02-10 18:08:01 +08:00
|
|
|
gimp_transform_options_grid_notify (GimpTransformOptions *options,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkWidget *density_box)
|
2001-11-20 02:23:43 +08:00
|
|
|
{
|
2003-02-10 18:08:01 +08:00
|
|
|
gtk_widget_set_sensitive (density_box,
|
|
|
|
options->grid_type !=
|
|
|
|
GIMP_TRANSFORM_GRID_TYPE_NONE);
|
2001-11-20 02:23:43 +08:00
|
|
|
}
|