1997-11-25 06:05:25 +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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
#include <math.h>
|
1999-07-27 08:14:14 +08:00
|
|
|
#include "config.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "appenv.h"
|
|
|
|
#include "resize.h"
|
1999-05-02 22:24:54 +08:00
|
|
|
#include "gimprc.h"
|
1999-09-28 01:58:10 +08:00
|
|
|
#include "gimpui.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
#include "libgimp/gimpchainbutton.h"
|
1999-05-10 00:38:05 +08:00
|
|
|
#include "libgimp/gimplimits.h"
|
1999-05-02 22:24:54 +08:00
|
|
|
#include "libgimp/gimpsizeentry.h"
|
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#define EVENT_MASK GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK
|
|
|
|
#define DRAWING_AREA_SIZE 200
|
|
|
|
#define TEXT_WIDTH 35
|
|
|
|
|
|
|
|
typedef struct _ResizePrivate ResizePrivate;
|
|
|
|
|
|
|
|
struct _ResizePrivate
|
|
|
|
{
|
1999-05-02 22:24:54 +08:00
|
|
|
/* size frame */
|
|
|
|
GtkWidget *orig_width_label;
|
|
|
|
GtkWidget *orig_height_label;
|
|
|
|
|
|
|
|
GtkWidget *size_se;
|
|
|
|
|
|
|
|
GtkObject *ratio_x_adj;
|
|
|
|
GtkObject *ratio_y_adj;
|
|
|
|
GtkWidget *constrain;
|
|
|
|
|
|
|
|
/* offset frame */
|
|
|
|
GtkWidget *offset_se;
|
1997-11-25 06:05:25 +08:00
|
|
|
GtkWidget *drawing_area;
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* resolution frame */
|
|
|
|
GtkWidget *printsize_se;
|
|
|
|
GtkWidget *resolution_se;
|
|
|
|
GtkWidget *equal_res;
|
|
|
|
|
1999-02-15 05:09:55 +08:00
|
|
|
GtkObject *object;
|
|
|
|
guint object_destroy_handler;
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
gdouble ratio;
|
|
|
|
gint old_width, old_height;
|
|
|
|
gdouble old_res_x, old_res_y;
|
|
|
|
gint area_width, area_height;
|
|
|
|
gint start_x, start_y;
|
|
|
|
gint orig_x, orig_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
static void resize_draw (Resize *);
|
|
|
|
static void unit_update (GtkWidget *, gpointer);
|
|
|
|
static gint resize_bound_off_x (Resize *, gint);
|
|
|
|
static gint resize_bound_off_y (Resize *, gint);
|
|
|
|
static void orig_labels_update (GtkWidget *, gpointer);
|
|
|
|
static void size_callback (GtkWidget *, gpointer);
|
|
|
|
static void ratio_callback (GtkWidget *, gpointer);
|
|
|
|
static void size_update (Resize *, gdouble, gdouble, gdouble, gdouble);
|
|
|
|
static void offset_update (GtkWidget *, gpointer);
|
|
|
|
static gint resize_events (GtkWidget *, GdkEvent *);
|
|
|
|
static void printsize_update (GtkWidget *, gpointer);
|
|
|
|
static void resolution_update (GtkWidget *, gpointer);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
Resize *
|
1999-02-15 05:09:55 +08:00
|
|
|
resize_widget_new (ResizeType type,
|
|
|
|
ResizeTarget target,
|
|
|
|
GtkObject *object,
|
1999-05-23 01:56:35 +08:00
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gdouble resolution_x,
|
|
|
|
gdouble resolution_y,
|
1999-05-02 22:24:54 +08:00
|
|
|
GUnit unit,
|
|
|
|
gboolean dot_for_dot,
|
1999-02-15 05:09:55 +08:00
|
|
|
GtkSignalFunc ok_cb,
|
|
|
|
GtkSignalFunc cancel_cb,
|
|
|
|
gpointer user_data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
|
|
|
GtkWidget *vbox;
|
1999-05-02 22:24:54 +08:00
|
|
|
GtkWidget *vbox2;
|
|
|
|
GtkWidget *table;
|
|
|
|
GtkWidget *table2;
|
1997-11-25 06:05:25 +08:00
|
|
|
GtkWidget *hbox;
|
1999-05-19 01:33:39 +08:00
|
|
|
GtkWidget *hbox2;
|
1997-11-25 06:05:25 +08:00
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *frame;
|
1999-05-02 22:24:54 +08:00
|
|
|
GtkWidget *spinbutton;
|
|
|
|
GtkWidget *alignment;
|
|
|
|
GtkObject *adjustment;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
alignment = NULL;
|
1999-02-15 05:09:55 +08:00
|
|
|
frame = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
resize = g_new (Resize, 1);
|
|
|
|
private = g_new (ResizePrivate, 1);
|
|
|
|
resize->type = type;
|
1999-05-02 22:24:54 +08:00
|
|
|
resize->target = target;
|
1997-11-25 06:05:25 +08:00
|
|
|
resize->private_part = private;
|
|
|
|
resize->width = width;
|
|
|
|
resize->height = height;
|
1999-02-15 05:09:55 +08:00
|
|
|
resize->resolution_x = resolution_x;
|
|
|
|
resize->resolution_y = resolution_y;
|
1999-05-02 22:24:54 +08:00
|
|
|
resize->unit = unit;
|
1997-12-08 09:13:10 +08:00
|
|
|
resize->ratio_x = 1.0;
|
|
|
|
resize->ratio_y = 1.0;
|
1999-05-02 22:24:54 +08:00
|
|
|
resize->offset_x = 0;
|
|
|
|
resize->offset_y = 0;
|
1997-11-25 06:05:25 +08:00
|
|
|
private->old_width = width;
|
|
|
|
private->old_height = height;
|
1999-05-02 22:24:54 +08:00
|
|
|
private->old_res_x = resolution_x;
|
|
|
|
private->old_res_y = resolution_y;
|
1999-02-15 05:09:55 +08:00
|
|
|
private->object = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Get the image width and height variables, based on the gimage */
|
|
|
|
if (width > height)
|
|
|
|
private->ratio = (double) DRAWING_AREA_SIZE / (double) width;
|
|
|
|
else
|
|
|
|
private->ratio = (double) DRAWING_AREA_SIZE / (double) height;
|
|
|
|
private->area_width = (int) (private->ratio * width);
|
|
|
|
private->area_height = (int) (private->ratio * height);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* dialog box */
|
1999-02-15 05:09:55 +08:00
|
|
|
{
|
1999-09-28 01:58:10 +08:00
|
|
|
const gchar *wmclass = NULL;
|
|
|
|
const gchar *window_title = NULL;
|
|
|
|
gchar *help_page = NULL;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case ScaleWidget:
|
|
|
|
switch (target)
|
|
|
|
{
|
|
|
|
case ResizeLayer:
|
1999-02-15 05:09:55 +08:00
|
|
|
wmclass = "scale_layer";
|
|
|
|
window_title = _("Scale Layer");
|
1999-09-28 01:58:10 +08:00
|
|
|
help_page = "dialogs/scale_layer_dialog.html";
|
1999-05-02 22:24:54 +08:00
|
|
|
frame = gtk_frame_new (_("Size"));
|
1999-02-15 05:09:55 +08:00
|
|
|
break;
|
1999-09-28 01:58:10 +08:00
|
|
|
case ResizeImage:
|
1999-02-15 05:09:55 +08:00
|
|
|
wmclass = "image_scale";
|
|
|
|
window_title = _("Image Scale");
|
1999-09-28 01:58:10 +08:00
|
|
|
help_page = "dialogs/scale_image_dialog.html";
|
1999-05-05 01:20:05 +08:00
|
|
|
frame = gtk_frame_new (_("Pixel Dimensions"));
|
1999-02-15 05:09:55 +08:00
|
|
|
break;
|
1999-09-28 01:58:10 +08:00
|
|
|
}
|
1999-02-15 05:09:55 +08:00
|
|
|
break;
|
|
|
|
|
1999-09-28 01:58:10 +08:00
|
|
|
case ResizeWidget:
|
|
|
|
switch (target)
|
|
|
|
{
|
|
|
|
case ResizeLayer:
|
1999-02-15 05:09:55 +08:00
|
|
|
wmclass = "resize_layer";
|
|
|
|
window_title = _("Resize Layer");
|
1999-09-28 01:58:10 +08:00
|
|
|
help_page = "dialogs/resize_layer_dialog.html";
|
1999-02-15 05:09:55 +08:00
|
|
|
break;
|
1999-09-28 01:58:10 +08:00
|
|
|
case ResizeImage:
|
1999-02-15 05:09:55 +08:00
|
|
|
wmclass = "image_resize";
|
|
|
|
window_title = _("Image Resize");
|
1999-09-28 01:58:10 +08:00
|
|
|
help_page = "dialogs/resize_image_dialog.html";
|
1999-02-15 05:09:55 +08:00
|
|
|
break;
|
1999-09-28 01:58:10 +08:00
|
|
|
}
|
1999-05-02 22:24:54 +08:00
|
|
|
frame = gtk_frame_new (_("Size"));
|
1999-02-15 05:09:55 +08:00
|
|
|
break;
|
1999-09-28 01:58:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
resize->resize_shell =
|
|
|
|
gimp_dialog_new (window_title, wmclass,
|
|
|
|
gimp_standard_help_func, help_page,
|
|
|
|
GTK_WIN_POS_MOUSE,
|
|
|
|
FALSE, FALSE, TRUE,
|
|
|
|
|
|
|
|
_("OK"), ok_cb,
|
|
|
|
user_data, NULL, TRUE, FALSE,
|
|
|
|
_("Cancel"), cancel_cb,
|
|
|
|
user_data, NULL, FALSE, TRUE,
|
|
|
|
|
|
|
|
NULL);
|
1999-02-15 05:09:55 +08:00
|
|
|
}
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* handle the image disappearing under our feet */
|
1999-02-15 05:09:55 +08:00
|
|
|
if (object)
|
1999-05-31 22:11:10 +08:00
|
|
|
{
|
|
|
|
const gchar *signame;
|
|
|
|
|
|
|
|
signame = (target == ResizeLayer) ? "removed" : "destroy";
|
|
|
|
private->object = object;
|
|
|
|
private->object_destroy_handler =
|
1999-09-28 01:58:10 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (object), signame, cancel_cb, user_data);
|
1999-05-31 22:11:10 +08:00
|
|
|
}
|
1999-02-15 05:09:55 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* the main vbox */
|
1999-05-05 01:20:05 +08:00
|
|
|
vbox = gtk_vbox_new (FALSE, 4);
|
1999-02-15 05:09:55 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 4);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (resize->resize_shell)->vbox),
|
|
|
|
vbox);
|
1999-02-15 05:09:55 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* the pixel dimensions frame */
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
1999-02-15 05:09:55 +08:00
|
|
|
gtk_widget_show (frame);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
vbox2 = gtk_vbox_new (FALSE, 2);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox2), 2);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox2);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
table = gtk_table_new (6, 2, FALSE);
|
1998-12-04 07:01:44 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (table), 2);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (table), 0, 4);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 0, 4);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 1, 4);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 3, 4);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 4, 2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), table, FALSE, FALSE, 0);
|
|
|
|
|
|
|
|
/* the original width & height labels */
|
|
|
|
label = gtk_label_new (_("Original Width:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
1999-05-02 22:24:54 +08:00
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("Height:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
1999-05-02 22:24:54 +08:00
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
private->orig_width_label = gtk_label_new ("");
|
|
|
|
gtk_misc_set_alignment (GTK_MISC ( private->orig_width_label), 0.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), private->orig_width_label, 1, 2, 0, 1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show ( private->orig_width_label);
|
|
|
|
|
|
|
|
private->orig_height_label = gtk_label_new ("");
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (private->orig_height_label), 0.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), private->orig_height_label, 1, 2, 1, 2,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (private->orig_height_label);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the new size labels */
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("New Width:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
1997-12-08 09:13:10 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
1999-05-02 22:24:54 +08:00
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
1997-12-08 09:13:10 +08:00
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("Height:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
1997-12-08 09:13:10 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4,
|
1999-05-02 22:24:54 +08:00
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
1997-12-08 09:13:10 +08:00
|
|
|
gtk_widget_show (label);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the new size sizeentry */
|
1999-05-02 22:24:54 +08:00
|
|
|
adjustment = gtk_adjustment_new (1, 1, 1, 1, 10, 1);
|
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 2);
|
|
|
|
gtk_spin_button_set_shadow_type (GTK_SPIN_BUTTON (spinbutton),
|
|
|
|
GTK_SHADOW_NONE);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
|
|
gtk_widget_set_usize (spinbutton, 75, 0);
|
|
|
|
|
|
|
|
private->size_se =
|
1999-05-23 01:56:35 +08:00
|
|
|
gimp_size_entry_new (1, unit, "%a", TRUE, TRUE, FALSE, 75,
|
1999-05-02 22:24:54 +08:00
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE);
|
|
|
|
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
GTK_SPIN_BUTTON (spinbutton), NULL);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (private->size_se), spinbutton,
|
|
|
|
1, 2, 0, 1);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), private->size_se, 1, 2, 2, 4,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (private->size_se);
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
if (dot_for_dot)
|
|
|
|
gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (private->size_se), UNIT_PIXEL);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->size_se), 0,
|
|
|
|
resolution_x, FALSE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->size_se), 1,
|
1999-05-05 01:20:05 +08:00
|
|
|
resolution_y, FALSE);
|
|
|
|
|
1999-05-10 00:38:05 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (private->size_se), 0,
|
|
|
|
GIMP_MIN_IMAGE_SIZE,
|
|
|
|
GIMP_MAX_IMAGE_SIZE);
|
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (private->size_se), 1,
|
|
|
|
GIMP_MIN_IMAGE_SIZE,
|
|
|
|
GIMP_MAX_IMAGE_SIZE);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (private->size_se), 0, 0, width);
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (private->size_se), 1, 0, height);
|
|
|
|
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->size_se), 0, width);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->size_se), 1, height);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
|
|
|
gtk_signal_connect (GTK_OBJECT (private->size_se), "value_changed",
|
1999-05-05 01:20:05 +08:00
|
|
|
(GtkSignalFunc) size_callback,
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (private->size_se), "unit_changed",
|
1999-05-05 01:20:05 +08:00
|
|
|
(GtkSignalFunc) orig_labels_update,
|
1997-12-08 09:13:10 +08:00
|
|
|
resize);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* initialize the original width & height labels */
|
1999-05-05 01:20:05 +08:00
|
|
|
orig_labels_update (private->size_se, resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the scale ratio labels */
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("Ratio X:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 4, 5,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
label = gtk_label_new (_("Y:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 5, 6,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* a table for the spinbuttons and the chainbutton */
|
1999-05-02 22:24:54 +08:00
|
|
|
alignment = gtk_alignment_new (0.0, 0.5, 0.0, 1.0);
|
|
|
|
table2 = gtk_table_new (2, 2, FALSE);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (table2), 0, 2);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table2), 0, 2);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (alignment), table2);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), alignment, 1, 2, 4, 6,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (alignment);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the scale ratio spinbuttons */
|
1999-05-02 22:24:54 +08:00
|
|
|
private->ratio_x_adj =
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_adjustment_new (resize->ratio_x,
|
1999-05-10 00:38:05 +08:00
|
|
|
(double) GIMP_MIN_IMAGE_SIZE / (double) resize->width,
|
|
|
|
(double) GIMP_MAX_IMAGE_SIZE / (double) resize->width,
|
1999-05-05 01:20:05 +08:00
|
|
|
0.01, 0.1, 1);
|
1999-05-02 22:24:54 +08:00
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (private->ratio_x_adj), 1, 4);
|
|
|
|
gtk_spin_button_set_shadow_type (GTK_SPIN_BUTTON (spinbutton),
|
|
|
|
GTK_SHADOW_NONE);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
|
|
gtk_widget_set_usize (spinbutton, 75, 0);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 0, 1);
|
|
|
|
gtk_signal_connect (GTK_OBJECT ( private->ratio_x_adj), "value_changed",
|
1999-05-05 01:20:05 +08:00
|
|
|
(GtkSignalFunc) ratio_callback,
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
|
|
|
|
private->ratio_y_adj =
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_adjustment_new (resize->ratio_y,
|
1999-05-10 00:38:05 +08:00
|
|
|
(double) GIMP_MIN_IMAGE_SIZE / (double) resize->height,
|
|
|
|
(double) GIMP_MAX_IMAGE_SIZE / (double) resize->height,
|
1999-05-05 01:20:05 +08:00
|
|
|
0.01, 0.1, 1);
|
1999-05-02 22:24:54 +08:00
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (private->ratio_y_adj), 1, 4);
|
|
|
|
gtk_spin_button_set_shadow_type (GTK_SPIN_BUTTON (spinbutton),
|
|
|
|
GTK_SHADOW_NONE);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
|
|
gtk_widget_set_usize (spinbutton, 75, 0);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table2), spinbutton, 0, 1, 1, 2);
|
|
|
|
gtk_signal_connect (GTK_OBJECT ( private->ratio_y_adj), "value_changed",
|
1999-05-05 01:20:05 +08:00
|
|
|
(GtkSignalFunc) ratio_callback,
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the constrain ratio chainbutton */
|
1999-05-02 22:24:54 +08:00
|
|
|
private->constrain = gimp_chain_button_new (GIMP_CHAIN_RIGHT);
|
|
|
|
gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (private->constrain), TRUE);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (table2), private->constrain, 1, 2, 0, 2);
|
|
|
|
gtk_widget_show (private->constrain);
|
|
|
|
|
|
|
|
gtk_widget_show (table2);
|
|
|
|
gtk_widget_show (table);
|
|
|
|
gtk_widget_show (vbox2);
|
|
|
|
|
|
|
|
/* the offset frame */
|
1997-11-25 06:05:25 +08:00
|
|
|
if (type == ResizeWidget)
|
|
|
|
{
|
1999-05-02 22:24:54 +08:00
|
|
|
frame = gtk_frame_new (_("Offset"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 0);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (hbox), 2);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), hbox);
|
|
|
|
|
|
|
|
vbox2 = gtk_vbox_new (FALSE, 2);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox2), 2);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), vbox2, TRUE, FALSE, 0);
|
|
|
|
|
|
|
|
table = gtk_table_new (2, 2, FALSE);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (table), 0, 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), table, FALSE, FALSE, 0);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the x and y offset labels */
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("X:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (label);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
|
|
|
label = gtk_label_new (_("Y:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (label);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the offset sizeentry */
|
1999-05-02 22:24:54 +08:00
|
|
|
adjustment = gtk_adjustment_new (1, 1, 1, 1, 10, 1);
|
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 2);
|
|
|
|
gtk_spin_button_set_shadow_type (GTK_SPIN_BUTTON (spinbutton),
|
|
|
|
GTK_SHADOW_NONE);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
|
|
gtk_widget_set_usize (spinbutton, 75, 0);
|
|
|
|
|
|
|
|
private->offset_se =
|
1999-05-23 01:56:35 +08:00
|
|
|
gimp_size_entry_new (1, unit, "%a", TRUE, FALSE, FALSE, 75,
|
1999-05-02 22:24:54 +08:00
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE);
|
|
|
|
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (private->offset_se),
|
|
|
|
GTK_SPIN_BUTTON (spinbutton), NULL);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (private->offset_se), spinbutton,
|
|
|
|
1, 2, 0, 1);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), private->offset_se, 1, 2, 0, 2,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (private->offset_se);
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
if (dot_for_dot)
|
|
|
|
gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (private->offset_se),
|
|
|
|
UNIT_PIXEL);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->offset_se), 0,
|
|
|
|
resolution_x, FALSE);
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->offset_se), 1,
|
|
|
|
resolution_y, FALSE);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->offset_se), 0, 0, 0);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->offset_se), 1, 0, 0);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->offset_se), 0, 0);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->offset_se), 1, 0);
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (private->offset_se), "value_changed",
|
|
|
|
(GtkSignalFunc) offset_update, resize);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_widget_show (table);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* frame to hold drawing area */
|
1999-05-19 01:33:39 +08:00
|
|
|
hbox2 = gtk_hbox_new (0, FALSE);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), hbox2, FALSE, FALSE, 0);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
frame = gtk_frame_new (NULL);
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
|
1999-05-19 01:33:39 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox2), frame, TRUE, FALSE, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
private->drawing_area = gtk_drawing_area_new ();
|
|
|
|
gtk_drawing_area_size (GTK_DRAWING_AREA (private->drawing_area),
|
|
|
|
private->area_width, private->area_height);
|
|
|
|
gtk_widget_set_events (private->drawing_area, EVENT_MASK);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (private->drawing_area), "event",
|
|
|
|
(GtkSignalFunc) resize_events,
|
|
|
|
NULL);
|
|
|
|
gtk_object_set_user_data (GTK_OBJECT (private->drawing_area), resize);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), private->drawing_area);
|
|
|
|
gtk_widget_show (private->drawing_area);
|
|
|
|
gtk_widget_show (frame);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
1999-05-19 01:33:39 +08:00
|
|
|
gtk_widget_show (hbox2);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_widget_show (vbox2);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (hbox);
|
|
|
|
}
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* the resolution stuff */
|
|
|
|
if ((type == ScaleWidget) && (target == ResizeImage))
|
|
|
|
{
|
1999-05-05 01:20:05 +08:00
|
|
|
frame = gtk_frame_new (_("Print Size & Display Unit"));
|
1999-05-02 22:24:54 +08:00
|
|
|
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);
|
|
|
|
|
|
|
|
table = gtk_table_new (4, 2, FALSE);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (table), 0, 4);
|
|
|
|
gtk_table_set_row_spacing (GTK_TABLE (table), 1, 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox2), table, FALSE, FALSE, 0);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the print size labels */
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("New Width:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
label = gtk_label_new (_("Height:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the print size sizeentry */
|
1999-05-02 22:24:54 +08:00
|
|
|
alignment = gtk_alignment_new (0.0, 0.5, 0.0, 1.0);
|
|
|
|
adjustment = gtk_adjustment_new (1, 1, 1, 1, 10, 1);
|
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 2);
|
|
|
|
gtk_spin_button_set_shadow_type (GTK_SPIN_BUTTON (spinbutton),
|
|
|
|
GTK_SHADOW_NONE);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
|
|
gtk_widget_set_usize (spinbutton, 75, 0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (alignment), spinbutton);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), alignment, 1, 2, 0, 1,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (alignment);
|
|
|
|
|
|
|
|
alignment = gtk_alignment_new (0.0, 0.5, 0.0, 1.0);
|
|
|
|
private->printsize_se =
|
|
|
|
gimp_size_entry_new (1, unit, "%a", FALSE, FALSE, FALSE, 75,
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE);
|
|
|
|
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
GTK_SPIN_BUTTON (spinbutton), NULL);
|
|
|
|
gtk_container_add (GTK_CONTAINER (alignment), private->printsize_se);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), alignment, 1, 2, 1, 2,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (private->printsize_se);
|
|
|
|
gtk_widget_show (alignment);
|
|
|
|
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
0, resolution_x, FALSE);
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
1, resolution_y, FALSE);
|
|
|
|
|
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->printsize_se),
|
1999-05-10 00:38:05 +08:00
|
|
|
0, GIMP_MIN_IMAGE_SIZE, GIMP_MAX_IMAGE_SIZE);
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->printsize_se),
|
1999-05-10 00:38:05 +08:00
|
|
|
1, GIMP_MIN_IMAGE_SIZE, GIMP_MAX_IMAGE_SIZE);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
0, resize->width);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
1, resize->height);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (private->printsize_se), "value_changed",
|
|
|
|
(GtkSignalFunc) printsize_update,
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (private->printsize_se), "unit_changed",
|
|
|
|
(GtkSignalFunc) unit_update,
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the resolution labels */
|
1999-05-02 22:24:54 +08:00
|
|
|
label = gtk_label_new (_("Resolution X:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
label = gtk_label_new (_("Y:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the resolution sizeentry */
|
1999-05-02 22:24:54 +08:00
|
|
|
adjustment = gtk_adjustment_new (1, 1, 1, 1, 10, 1);
|
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 2);
|
|
|
|
gtk_spin_button_set_shadow_type (GTK_SPIN_BUTTON (spinbutton),
|
|
|
|
GTK_SHADOW_NONE);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
|
|
gtk_widget_set_usize (spinbutton, 75, 0);
|
|
|
|
|
|
|
|
private->resolution_se =
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_new (1, default_resolution_units, _("pixels/%a"),
|
1999-05-02 22:24:54 +08:00
|
|
|
FALSE, FALSE, FALSE, 75,
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_RESOLUTION);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (private->resolution_se), 1, 2);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (private->resolution_se), 2, 2);
|
|
|
|
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
GTK_SPIN_BUTTON (spinbutton), NULL);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (private->resolution_se), spinbutton,
|
|
|
|
1, 2, 0, 1);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), private->resolution_se, 1, 2, 2, 4,
|
|
|
|
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (private->resolution_se);
|
|
|
|
|
|
|
|
gimp_size_entry_set_refval_boundaries
|
1999-05-05 01:20:05 +08:00
|
|
|
(GIMP_SIZE_ENTRY (private->resolution_se),
|
1999-05-10 00:38:05 +08:00
|
|
|
0, GIMP_MIN_RESOLUTION, GIMP_MAX_RESOLUTION);
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->resolution_se),
|
1999-05-10 00:38:05 +08:00
|
|
|
1, GIMP_MIN_RESOLUTION, GIMP_MAX_RESOLUTION);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
0, resize->resolution_x);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
1, resize->resolution_y);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (private->resolution_se), "value_changed",
|
|
|
|
(GtkSignalFunc) resolution_update,
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* the resolution chainbutton */
|
1999-05-02 22:24:54 +08:00
|
|
|
private->equal_res = gimp_chain_button_new (GIMP_CHAIN_RIGHT);
|
|
|
|
gimp_chain_button_set_active
|
|
|
|
(GIMP_CHAIN_BUTTON (private->equal_res),
|
|
|
|
ABS (resize->resolution_x - resize->resolution_y) < 1e-5);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (private->resolution_se),
|
|
|
|
private->equal_res, 2, 3, 0, 2);
|
|
|
|
gtk_widget_show (private->equal_res);
|
|
|
|
|
|
|
|
gtk_widget_show (table);
|
|
|
|
gtk_widget_show (vbox2);
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (vbox);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
/* finally, activate the first entry */
|
|
|
|
gimp_size_entry_grab_focus (GIMP_SIZE_ENTRY (private->size_se));
|
1999-02-15 05:09:55 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
return resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
resize_widget_free (Resize *resize)
|
|
|
|
{
|
1999-02-15 05:09:55 +08:00
|
|
|
ResizePrivate *private = resize->private_part;
|
|
|
|
|
|
|
|
if (private->object)
|
|
|
|
gtk_signal_disconnect (GTK_OBJECT (private->object),
|
|
|
|
private->object_destroy_handler);
|
|
|
|
|
|
|
|
gtk_widget_destroy (resize->resize_shell);
|
1997-11-25 06:05:25 +08:00
|
|
|
g_free (resize->private_part);
|
|
|
|
g_free (resize);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
resize_draw (Resize *resize)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
ResizePrivate *private;
|
|
|
|
int aw, ah;
|
|
|
|
int x, y;
|
|
|
|
int w, h;
|
|
|
|
|
|
|
|
/* Only need to draw if it's a resize widget */
|
|
|
|
if (resize->type != ResizeWidget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
widget = private->drawing_area;
|
|
|
|
|
|
|
|
/* If we're making the size larger */
|
|
|
|
if (private->old_width <= resize->width)
|
|
|
|
w = resize->width;
|
|
|
|
/* otherwise, if we're making the size smaller */
|
|
|
|
else
|
|
|
|
w = private->old_width * 2 - resize->width;
|
|
|
|
/* If we're making the size larger */
|
|
|
|
if (private->old_height <= resize->height)
|
|
|
|
h = resize->height;
|
|
|
|
/* otherwise, if we're making the size smaller */
|
|
|
|
else
|
|
|
|
h = private->old_height * 2 - resize->height;
|
|
|
|
|
|
|
|
if (w > h)
|
|
|
|
private->ratio = (double) DRAWING_AREA_SIZE / (double) w;
|
|
|
|
else
|
|
|
|
private->ratio = (double) DRAWING_AREA_SIZE / (double) h;
|
|
|
|
|
|
|
|
aw = (int) (private->ratio * w);
|
|
|
|
ah = (int) (private->ratio * h);
|
|
|
|
|
|
|
|
if (aw != private->area_width || ah != private->area_height)
|
|
|
|
{
|
|
|
|
private->area_width = aw;
|
|
|
|
private->area_height = ah;
|
|
|
|
gtk_widget_set_usize (private->drawing_area, aw, ah);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (private->old_width <= resize->width)
|
1999-05-02 22:24:54 +08:00
|
|
|
x = private->ratio * resize->offset_x;
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
1999-05-02 22:24:54 +08:00
|
|
|
x = private->ratio * (resize->offset_x + private->old_width - resize->width);
|
1997-11-25 06:05:25 +08:00
|
|
|
if (private->old_height <= resize->height)
|
1999-05-02 22:24:54 +08:00
|
|
|
y = private->ratio * resize->offset_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
1999-05-02 22:24:54 +08:00
|
|
|
y = private->ratio * (resize->offset_y + private->old_height - resize->height);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
w = private->ratio * private->old_width;
|
|
|
|
h = private->ratio * private->old_height;
|
|
|
|
|
|
|
|
gdk_window_clear (private->drawing_area->window);
|
|
|
|
gtk_draw_shadow (widget->style, widget->window,
|
|
|
|
GTK_STATE_NORMAL, GTK_SHADOW_OUT,
|
|
|
|
x, y, w, h);
|
|
|
|
|
|
|
|
/* If we're making the size smaller */
|
|
|
|
if (private->old_width > resize->width ||
|
|
|
|
private->old_height > resize->height)
|
|
|
|
{
|
|
|
|
if (private->old_width > resize->width)
|
|
|
|
{
|
|
|
|
x = private->ratio * (private->old_width - resize->width);
|
|
|
|
w = private->ratio * resize->width;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = -1;
|
|
|
|
w = aw + 2;
|
|
|
|
}
|
|
|
|
if (private->old_height > resize->height)
|
|
|
|
{
|
|
|
|
y = private->ratio * (private->old_height - resize->height);
|
|
|
|
h = private->ratio * resize->height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
y = -1;
|
|
|
|
h = ah + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_draw_rectangle (private->drawing_area->window,
|
|
|
|
widget->style->black_gc, 0,
|
|
|
|
x, y, w, h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
static gint
|
1997-11-25 06:05:25 +08:00
|
|
|
resize_bound_off_x (Resize *resize,
|
1999-05-31 22:11:10 +08:00
|
|
|
gint off_x)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
ResizePrivate *private;
|
|
|
|
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
|
|
|
if (private->old_width <= resize->width)
|
|
|
|
off_x = BOUNDS (off_x, 0, (resize->width - private->old_width));
|
|
|
|
else
|
|
|
|
off_x = BOUNDS (off_x, (resize->width - private->old_width), 0);
|
|
|
|
|
|
|
|
return off_x;
|
|
|
|
}
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
static gint
|
1997-11-25 06:05:25 +08:00
|
|
|
resize_bound_off_y (Resize *resize,
|
1999-05-31 22:11:10 +08:00
|
|
|
gint off_y)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
ResizePrivate *private;
|
|
|
|
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
|
|
|
if (private->old_height <= resize->height)
|
|
|
|
off_y = BOUNDS (off_y, 0, (resize->height - private->old_height));
|
|
|
|
else
|
|
|
|
off_y = BOUNDS (off_y, (resize->height - private->old_height), 0);
|
|
|
|
|
|
|
|
return off_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
orig_labels_update (GtkWidget *widget,
|
1999-05-05 01:20:05 +08:00
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
1999-05-02 22:24:54 +08:00
|
|
|
GUnit unit;
|
|
|
|
gchar format_buf[16];
|
|
|
|
gchar buf[32];
|
|
|
|
|
|
|
|
static GUnit label_unit = UNIT_PIXEL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
resize = (Resize *) data;
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
unit = gimp_size_entry_get_unit (GIMP_SIZE_ENTRY (widget));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
if (unit != UNIT_PERCENT)
|
|
|
|
label_unit = unit;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
if (label_unit) /* unit != UNIT_PIXEL */
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-05-31 22:11:10 +08:00
|
|
|
double unit_factor = gimp_unit_get_factor (label_unit);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
g_snprintf (format_buf, sizeof (format_buf), "%%.%df %s",
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_unit_get_digits (label_unit) + 1,
|
|
|
|
gimp_unit_get_symbol (label_unit));
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
g_snprintf (buf, sizeof (buf), format_buf,
|
1999-05-02 22:24:54 +08:00
|
|
|
private->old_width * unit_factor / private->old_res_x);
|
|
|
|
gtk_label_set_text (GTK_LABEL (private->orig_width_label), buf);
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
g_snprintf (buf, sizeof (buf), format_buf,
|
1999-05-02 22:24:54 +08:00
|
|
|
private->old_height * unit_factor / private->old_res_y);
|
|
|
|
gtk_label_set_text (GTK_LABEL (private->orig_height_label), buf);
|
|
|
|
}
|
|
|
|
else /* unit == UNIT_PIXEL */
|
|
|
|
{
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
g_snprintf (buf, sizeof (buf), "%d", private->old_width);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_label_set_text (GTK_LABEL (private->orig_width_label), buf);
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
g_snprintf (buf, sizeof (buf), "%d", private->old_height);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_label_set_text (GTK_LABEL (private->orig_height_label), buf);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
unit_update (GtkWidget *widget,
|
1999-05-05 01:20:05 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
|
|
|
|
resize = (Resize *) data;
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
resize->unit = gimp_size_entry_get_unit (GIMP_SIZE_ENTRY (widget));
|
1999-05-05 01:20:05 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
offset_update (GtkWidget *widget,
|
1999-05-02 22:24:54 +08:00
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
1999-05-31 22:11:10 +08:00
|
|
|
gint offset_x;
|
|
|
|
gint offset_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
resize = (Resize *) data;
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
offset_x = (gint)
|
|
|
|
(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->offset_se), 0) + 0.5);
|
1999-05-02 22:24:54 +08:00
|
|
|
offset_x = resize_bound_off_x (resize, offset_x);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
offset_y = (gint)
|
|
|
|
(gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->offset_se), 1) + 0.5);
|
1999-05-02 22:24:54 +08:00
|
|
|
offset_y = resize_bound_off_y (resize, offset_y);
|
|
|
|
|
|
|
|
if ((offset_x != resize->offset_x) ||
|
|
|
|
(offset_y != resize->offset_y))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-05-02 22:24:54 +08:00
|
|
|
resize->offset_x = offset_x;
|
|
|
|
resize->offset_y = offset_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
resize_draw (resize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
size_callback (GtkWidget *widget,
|
1999-05-05 01:20:05 +08:00
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
1999-05-05 01:20:05 +08:00
|
|
|
double width;
|
|
|
|
double height;
|
|
|
|
double ratio_x;
|
|
|
|
double ratio_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
resize = (Resize *) data;
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
width = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->size_se), 0);
|
|
|
|
height = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->size_se), 1);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
ratio_x = width / (double) private->old_width;
|
|
|
|
ratio_y = height / (double) private->old_height;
|
1999-05-02 22:24:54 +08:00
|
|
|
|
|
|
|
if (gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (private->constrain)))
|
|
|
|
{
|
1999-05-05 01:20:05 +08:00
|
|
|
if (ratio_x != resize->ratio_x)
|
1999-05-02 22:24:54 +08:00
|
|
|
{
|
|
|
|
ratio_y = ratio_x;
|
1999-05-05 01:20:05 +08:00
|
|
|
height = (double) private->old_height * ratio_y;
|
1999-05-10 00:38:05 +08:00
|
|
|
height = BOUNDS (height, GIMP_MIN_IMAGE_SIZE, GIMP_MAX_IMAGE_SIZE);
|
1999-05-02 22:24:54 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ratio_x = ratio_y;
|
1999-05-05 01:20:05 +08:00
|
|
|
width = (double) private->old_width * ratio_x;
|
1999-05-10 00:38:05 +08:00
|
|
|
width = BOUNDS (width, GIMP_MIN_IMAGE_SIZE, GIMP_MAX_IMAGE_SIZE);
|
1999-05-02 22:24:54 +08:00
|
|
|
}
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
size_update (resize, width, height, ratio_x, ratio_y);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
ratio_callback (GtkWidget *widget,
|
1999-05-05 01:20:05 +08:00
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
1999-05-05 01:20:05 +08:00
|
|
|
double width;
|
|
|
|
double height;
|
1999-05-02 22:24:54 +08:00
|
|
|
double ratio_x;
|
|
|
|
double ratio_y;
|
1999-05-31 22:11:10 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
resize = (Resize *) data;
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
width = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->size_se), 0);
|
|
|
|
height = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->size_se), 1);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
ratio_x = GTK_ADJUSTMENT (private->ratio_x_adj)->value;
|
|
|
|
ratio_y = GTK_ADJUSTMENT (private->ratio_y_adj)->value;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
if (gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (private->constrain)))
|
|
|
|
{
|
|
|
|
if (ratio_x != resize->ratio_x)
|
|
|
|
{
|
|
|
|
ratio_y = ratio_x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ratio_x = ratio_y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-10 00:38:05 +08:00
|
|
|
width = BOUNDS (private->old_width * ratio_x,
|
|
|
|
GIMP_MIN_IMAGE_SIZE, GIMP_MAX_IMAGE_SIZE);
|
|
|
|
height = BOUNDS (private->old_height * ratio_y,
|
|
|
|
GIMP_MIN_IMAGE_SIZE, GIMP_MAX_IMAGE_SIZE);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
|
|
|
size_update (resize, width, height, ratio_x, ratio_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
size_update (Resize *resize,
|
|
|
|
double width,
|
|
|
|
double height,
|
|
|
|
double ratio_x,
|
|
|
|
double ratio_y)
|
|
|
|
{
|
|
|
|
ResizePrivate *private;
|
|
|
|
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
1999-05-31 22:11:10 +08:00
|
|
|
resize->width = (gint) (width + 0.5);
|
|
|
|
resize->height = (gint) (height + 0.5);
|
1999-05-05 01:20:05 +08:00
|
|
|
|
|
|
|
resize->ratio_x = ratio_x;
|
|
|
|
resize->ratio_y = ratio_y;
|
|
|
|
|
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->size_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->size_se),
|
1999-05-05 01:20:05 +08:00
|
|
|
0, width);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->size_se),
|
1999-05-05 01:20:05 +08:00
|
|
|
1, height);
|
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->size_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->ratio_x_adj), resize);
|
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->ratio_y_adj), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (private->ratio_x_adj), ratio_x);
|
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (private->ratio_y_adj), ratio_y);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->ratio_x_adj), resize);
|
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->ratio_y_adj), resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
if (resize->type == ResizeWidget)
|
|
|
|
{
|
1999-05-05 01:20:05 +08:00
|
|
|
resize->offset_x = resize_bound_off_x (resize, resize->offset_x);
|
|
|
|
resize->offset_y = resize_bound_off_y (resize, resize->offset_y);
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->offset_se), 0,
|
|
|
|
MIN (0, resize->width - private->old_width),
|
|
|
|
MAX (0, resize->width - private->old_width));
|
|
|
|
gimp_size_entry_set_refval_boundaries
|
|
|
|
(GIMP_SIZE_ENTRY (private->offset_se), 1,
|
|
|
|
MIN (0, resize->height - private->old_height),
|
|
|
|
MAX (0, resize->height - private->old_height));
|
1999-05-05 01:20:05 +08:00
|
|
|
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->offset_se),
|
|
|
|
0, resize->offset_x);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->offset_se),
|
|
|
|
1, resize->offset_y);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
if ((resize->type == ScaleWidget) && (resize->target == ResizeImage))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->printsize_se),
|
|
|
|
resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->printsize_se),
|
1999-05-05 01:20:05 +08:00
|
|
|
0, width);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->printsize_se),
|
1999-05-05 01:20:05 +08:00
|
|
|
1, height);
|
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->printsize_se),
|
|
|
|
resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
resize_draw (resize);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
printsize_update (GtkWidget *widget,
|
1999-05-02 22:24:54 +08:00
|
|
|
gpointer data)
|
1997-12-08 09:13:10 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
1999-05-02 22:24:54 +08:00
|
|
|
double width;
|
|
|
|
double height;
|
|
|
|
double print_width;
|
|
|
|
double print_height;
|
|
|
|
double res_x;
|
|
|
|
double res_y;
|
|
|
|
|
1997-12-08 09:13:10 +08:00
|
|
|
resize = (Resize *) data;
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
width = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->size_se), 0);
|
|
|
|
height = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->size_se), 1);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
print_width =
|
|
|
|
gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->printsize_se), 0);
|
|
|
|
print_height =
|
|
|
|
gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->printsize_se), 1);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
/* this is tricky: we use the sizes in pixels (which is otherwise
|
|
|
|
* meaningless for the "print size" widgets) to calculate the new
|
|
|
|
* resolution.
|
|
|
|
*/
|
1999-05-05 01:20:05 +08:00
|
|
|
res_x = BOUNDS (resize->resolution_x * width / print_width,
|
1999-05-10 00:38:05 +08:00
|
|
|
GIMP_MIN_RESOLUTION, GIMP_MAX_RESOLUTION);
|
1999-05-05 01:20:05 +08:00
|
|
|
res_y = BOUNDS (resize->resolution_y * height / print_height,
|
1999-05-10 00:38:05 +08:00
|
|
|
GIMP_MIN_RESOLUTION, GIMP_MAX_RESOLUTION);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
if (gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (private->equal_res)))
|
|
|
|
{
|
|
|
|
if (res_x != resize->resolution_x)
|
1997-12-08 09:13:10 +08:00
|
|
|
{
|
1999-05-02 22:24:54 +08:00
|
|
|
res_y = res_x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res_x = res_y;
|
1997-12-08 09:13:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
resize->resolution_x = res_x;
|
|
|
|
resize->resolution_y = res_y;
|
|
|
|
|
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->resolution_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
0, res_x);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
1, res_y);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->resolution_se),
|
|
|
|
resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->size_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
0, res_x, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
1, res_y, TRUE);
|
1999-05-05 01:20:05 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
0, width);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
1, height);
|
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->size_se), resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->printsize_se), resize);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
0, res_x, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
1, res_y, TRUE);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
0, width);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
1, height);
|
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->printsize_se),
|
|
|
|
resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
resolution_update (GtkWidget *widget,
|
1999-05-02 22:24:54 +08:00
|
|
|
gpointer data)
|
1997-12-08 09:13:10 +08:00
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
1999-05-02 22:24:54 +08:00
|
|
|
double res_x;
|
|
|
|
double res_y;
|
1997-12-08 09:13:10 +08:00
|
|
|
|
|
|
|
resize = (Resize *) data;
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
res_x =
|
|
|
|
gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->resolution_se), 0);
|
|
|
|
res_y =
|
|
|
|
gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (private->resolution_se), 1);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-02 22:24:54 +08:00
|
|
|
if (gimp_chain_button_get_active (GIMP_CHAIN_BUTTON (private->equal_res)))
|
1997-12-08 09:13:10 +08:00
|
|
|
{
|
1999-05-02 22:24:54 +08:00
|
|
|
if (res_x != resize->resolution_x)
|
1997-12-08 09:13:10 +08:00
|
|
|
{
|
1999-05-02 22:24:54 +08:00
|
|
|
res_y = res_x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res_x = res_y;
|
1997-12-08 09:13:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
resize->resolution_x = res_x;
|
|
|
|
resize->resolution_y = res_y;
|
|
|
|
|
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->resolution_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
0, res_x);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->resolution_se),
|
|
|
|
1, res_y);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->resolution_se),
|
|
|
|
resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->size_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
0, res_x, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->size_se),
|
|
|
|
1, res_y, TRUE);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->size_se), resize);
|
1997-12-08 09:13:10 +08:00
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (private->printsize_se), resize);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
0, res_x, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (private->printsize_se),
|
|
|
|
1, res_y, TRUE);
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (private->printsize_se),
|
|
|
|
resize);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
resize_events (GtkWidget *widget,
|
|
|
|
GdkEvent *event)
|
|
|
|
{
|
|
|
|
Resize *resize;
|
|
|
|
ResizePrivate *private;
|
|
|
|
int dx, dy;
|
|
|
|
int off_x, off_y;
|
|
|
|
|
|
|
|
resize = (Resize *) gtk_object_get_user_data (GTK_OBJECT (widget));
|
|
|
|
private = (ResizePrivate *) resize->private_part;
|
|
|
|
|
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case GDK_EXPOSE:
|
|
|
|
resize_draw (resize);
|
|
|
|
break;
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
gdk_pointer_grab (private->drawing_area->window, FALSE,
|
|
|
|
(GDK_BUTTON1_MOTION_MASK |
|
|
|
|
GDK_BUTTON_RELEASE_MASK),
|
|
|
|
NULL, NULL, event->button.time);
|
1999-05-02 22:24:54 +08:00
|
|
|
private->orig_x = resize->offset_x;
|
|
|
|
private->orig_y = resize->offset_y;
|
1997-11-25 06:05:25 +08:00
|
|
|
private->start_x = event->button.x;
|
|
|
|
private->start_y = event->button.y;
|
|
|
|
break;
|
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
/* X offset */
|
|
|
|
dx = event->motion.x - private->start_x;
|
|
|
|
off_x = private->orig_x + dx / private->ratio;
|
|
|
|
off_x = resize_bound_off_x (resize, off_x);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->offset_se),
|
|
|
|
0, off_x);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Y offset */
|
|
|
|
dy = event->motion.y - private->start_y;
|
|
|
|
off_y = private->orig_y + dy / private->ratio;
|
|
|
|
off_y = resize_bound_off_y (resize, off_y);
|
1999-05-02 22:24:54 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (private->offset_se),
|
|
|
|
1, off_y);
|
|
|
|
|
1999-05-05 01:20:05 +08:00
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (private->offset_se), "value_changed",
|
1999-05-02 22:24:54 +08:00
|
|
|
resize);
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
gdk_pointer_ungrab (event->button.time);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|