1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
|
/* align_layers.c
* Author: Shuji Narazaki <narazaki@InetQ.or.jp>
* Version: 0.26
*
* Copyright (C) 1997-1998 Shuji Narazaki <narazaki@InetQ.or.jp>
*
* 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 3 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, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "libgimp/stdplugins-intl.h"
#define PLUG_IN_PROC "plug-in-align-layers"
#define PLUG_IN_BINARY "align-layers"
#define PLUG_IN_ROLE "gimp-align-layers"
enum
{
H_NONE,
H_COLLECT,
LEFT2RIGHT,
RIGHT2LEFT,
SNAP2HGRID
};
enum
{
H_BASE_LEFT,
H_BASE_CENTER,
H_BASE_RIGHT
};
enum
{
V_NONE,
V_COLLECT,
TOP2BOTTOM,
BOTTOM2TOP,
SNAP2VGRID
};
enum
{
V_BASE_TOP,
V_BASE_CENTER,
V_BASE_BOTTOM
};
typedef struct
{
gint step_x;
gint step_y;
gint base_x;
gint base_y;
} AlignData;
typedef struct _AlignLayers AlignLayers;
typedef struct _AlignLayersClass AlignLayersClass;
struct _AlignLayers
{
GimpPlugIn parent_instance;
};
struct _AlignLayersClass
{
GimpPlugInClass parent_class;
};
#define ALIGN_LAYERS_TYPE (align_layers_get_type ())
#define ALIGN_LAYERS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ALIGN_LAYERS_TYPE, AlignLayers))
GType align_layers_get_type (void) G_GNUC_CONST;
static GList * align_layers_query_procedures (GimpPlugIn *plug_in);
static GimpProcedure * align_layers_create_procedure (GimpPlugIn *plug_in,
const gchar *name);
static GimpValueArray * align_layers_run (GimpProcedure *procedure,
GimpRunMode run_mode,
GimpImage *image,
GimpDrawable **drawables,
GimpProcedureConfig *config,
gpointer run_data);
/* Main function */
static GimpPDBStatusType align_layers (GimpImage *image,
GObject *config);
/* Helpers and internal functions */
static gint align_layers_count_visibles_layers (GList *layers);
static GimpLayer * align_layers_find_last_layer (GList *layers,
gboolean *found);
static gint align_layers_spread_visibles_layers (GList *layers,
GimpLayer **layers_array);
static GimpLayer ** align_layers_spread_image (GimpImage *image,
gint *layer_num);
static GimpLayer * align_layers_find_background (GimpImage *image);
static AlignData align_layers_gather_data (GimpLayer **layers,
gint layer_num,
GimpLayer *background,
GObject *config);
static void align_layers_perform_alignment (GimpLayer **layers,
gint layer_num,
AlignData data,
GObject *config);
static void align_layers_get_align_offsets (GimpDrawable *drawable,
gint *x,
gint *y,
GObject *config);
static gint align_layers_dialog (GimpProcedure *procedure,
GObject *config);
G_DEFINE_TYPE (AlignLayers, align_layers, GIMP_TYPE_PLUG_IN)
GIMP_MAIN (ALIGN_LAYERS_TYPE)
DEFINE_STD_SET_I18N
static void
align_layers_class_init (AlignLayersClass *klass)
{
GimpPlugInClass *plug_in_class = GIMP_PLUG_IN_CLASS (klass);
plug_in_class->query_procedures = align_layers_query_procedures;
plug_in_class->create_procedure = align_layers_create_procedure;
plug_in_class->set_i18n = STD_SET_I18N;
}
static void
align_layers_init (AlignLayers *film)
{
}
static GList *
align_layers_query_procedures (GimpPlugIn *plug_in)
{
return g_list_append (NULL, g_strdup (PLUG_IN_PROC));
}
static GimpProcedure *
align_layers_create_procedure (GimpPlugIn *plug_in,
const gchar *name)
{
GimpProcedure *procedure = NULL;
if (! strcmp (name, PLUG_IN_PROC))
{
procedure = gimp_image_procedure_new (plug_in, name,
GIMP_PDB_PROC_TYPE_PLUGIN,
align_layers_run, NULL, NULL);
gimp_procedure_set_image_types (procedure, "*");
gimp_procedure_set_sensitivity_mask (procedure,
GIMP_PROCEDURE_SENSITIVE_DRAWABLE |
GIMP_PROCEDURE_SENSITIVE_DRAWABLES |
GIMP_PROCEDURE_SENSITIVE_NO_DRAWABLES);
gimp_procedure_set_menu_label (procedure, _("Align Visi_ble Layers..."));
gimp_procedure_add_menu_path (procedure, "<Image>/Image/[Arrange]");
gimp_procedure_set_documentation (procedure,
_("Align all visible layers of the image"),
_("Align visible layers"),
name);
gimp_procedure_set_attribution (procedure,
"Shuji Narazaki <narazaki@InetQ.or.jp>",
"Shuji Narazaki",
"1997");
gimp_procedure_add_choice_argument (procedure, "horizontal-style",
_("_Horizontal style"),
"",
gimp_choice_new_with_values ("none", H_NONE, _("None"), NULL,
"collect", H_COLLECT, _("Collect"), NULL,
"fill-left-to-right", LEFT2RIGHT, _("Fill (left to right)"), NULL,
"fill-right-to-left", RIGHT2LEFT, _("Fill (right to left)"), NULL,
"snap-to-grid", SNAP2HGRID, _("Snap to grid"), NULL,
NULL),
"none",
G_PARAM_READWRITE);
gimp_procedure_add_choice_argument (procedure, "horizontal-base",
_("Hori_zontal base"),
"",
gimp_choice_new_with_values ("left-edge", H_BASE_LEFT, _("Left edge"), NULL,
"center", H_BASE_CENTER, _("Center"), NULL,
"right-edge", H_BASE_RIGHT, _("Right edge"), NULL,
NULL),
"left-edge",
G_PARAM_READWRITE);
gimp_procedure_add_choice_argument (procedure, "vertical-style",
_("_Vertical style"),
"",
gimp_choice_new_with_values ("none", V_NONE, _("None"), NULL,
"collect", V_COLLECT, _("Collect"), NULL,
"fill-left-to-right", TOP2BOTTOM, _("Fill (top to bottom)"), NULL,
"fill-right-to-left", BOTTOM2TOP, _("Fill (bottom to top)"), NULL,
"snap-to-grid", SNAP2VGRID, _("Snap to grid"), NULL,
NULL),
"none",
G_PARAM_READWRITE);
gimp_procedure_add_choice_argument (procedure, "vertical-base",
_("Ver_tical base"),
"",
gimp_choice_new_with_values ("top-edge", V_BASE_TOP, _("Top edge"), NULL,
"center", V_BASE_CENTER, _("Center"), NULL,
"bottom-edge", V_BASE_BOTTOM, _("Bottom edge"), NULL,
NULL),
"top-edge",
G_PARAM_READWRITE);
gimp_procedure_add_int_argument (procedure, "grid-size",
_("_Grid"),
_("Grid"),
1, 200, 10,
GIMP_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure,
"ignore-bottom-layer",
_("Ignore the _bottom layer even if visible"),
_("Ignore the bottom layer even if visible"),
TRUE,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure,
"use-bottom-layer",
_("_Use the (invisible) bottom layer as the base"),
_("Use the (invisible) bottom layer as the base"),
FALSE,
G_PARAM_READWRITE);
/* TODO: these 2 arguments existed in the original procedure but
* were actually unused. If we want to keep them, let's at least
* implement the documented behavior, or else let's just drop
* them.
*/
/*
gimp_procedure_add_boolean_argument (procedure,
"link-after-alignment",
"Link the visible layers after alignment",
FALSE,
G_PARAM_READWRITE);
gimp_procedure_add_boolean_argument (procedure,
"use-bottom",
"use the bottom layer as the base of alignment",
TRUE,
G_PARAM_READWRITE);
*/
}
return procedure;
}
static GimpValueArray *
align_layers_run (GimpProcedure *procedure,
GimpRunMode run_mode,
GimpImage *image,
GimpDrawable **drawables,
GimpProcedureConfig *config,
gpointer run_data)
{
GimpValueArray *return_vals = NULL;
GimpPDBStatusType status = GIMP_PDB_EXECUTION_ERROR;
GError *error = NULL;
GList *layers;
gint layer_num;
switch ( run_mode )
{
case GIMP_RUN_INTERACTIVE:
layers = gimp_image_list_layers (image);
layer_num = align_layers_count_visibles_layers (layers);
g_list_free (layers);
if (layer_num < 2)
{
g_set_error (&error, GIMP_PLUG_IN_ERROR, 0,
_("There are not enough layers to align."));
return gimp_procedure_new_return_values (procedure,
GIMP_PDB_CALLING_ERROR,
error);
}
if (! align_layers_dialog (procedure, G_OBJECT (config)))
status = GIMP_PDB_CANCEL;
break;
case GIMP_RUN_NONINTERACTIVE:
case GIMP_RUN_WITH_LAST_VALS:
break;
}
if (status != GIMP_PDB_CANCEL)
{
status = align_layers (image, G_OBJECT (config));
if (run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush ();
}
return_vals = gimp_procedure_new_return_values (procedure, status, error);
return return_vals;
}
/*
* Main function
*/
static GimpPDBStatusType
align_layers (GimpImage *image,
GObject *config)
{
gint layer_num = 0;
GimpLayer **layers = NULL;
GimpLayer *background = 0;
AlignData data;
gboolean ignore_bottom_layer;
g_object_get (config,
"ignore-bottom-layer", &ignore_bottom_layer,
NULL);
layers = align_layers_spread_image (image, &layer_num);
if (layer_num < 2)
{
g_free (layers);
return GIMP_PDB_EXECUTION_ERROR;
}
background = align_layers_find_background (image);
/* If we want to ignore the bottom layer and if it's visible */
if (ignore_bottom_layer && background == layers[layer_num - 1])
{
layer_num--;
}
data = align_layers_gather_data (layers,
layer_num,
background,
config);
gimp_image_undo_group_start (image);
align_layers_perform_alignment (layers,
layer_num,
data,
config);
gimp_image_undo_group_end (image);
g_free (layers);
return GIMP_PDB_SUCCESS;
}
/*
* Find the bottommost layer, visible or not
* The image must contain at least one layer.
*/
static GimpLayer *
align_layers_find_last_layer (GList *layers,
gboolean *found)
{
GList *last = g_list_last (layers);
for (; last; last = last->prev)
{
GimpItem *item = last->data;
if (gimp_item_is_group (item))
{
GList *children;
GimpLayer *last_layer;
children = gimp_item_list_children (item);
last_layer = align_layers_find_last_layer (children,
found);
g_list_free (children);
if (*found)
return last_layer;
}
else if (gimp_item_is_layer (item))
{
*found = TRUE;
return GIMP_LAYER (item);
}
}
/* should never happen */
return NULL;
}
/*
* Return the bottom layer.
*/
static GimpLayer *
align_layers_find_background (GimpImage *image)
{
GList *layers;
GimpLayer *background;
gboolean found = FALSE;
layers = gimp_image_list_layers (image);
background = align_layers_find_last_layer (layers, &found);
g_list_free (layers);
return background;
}
/*
* Fill layers_array with all visible layers.
* layers_array needs to be allocated before the call
*/
static gint
align_layers_spread_visibles_layers (GList *layers,
GimpLayer **layers_array)
{
GList *iter;
gint index = 0;
for (iter = layers; iter; iter = iter->next)
{
GimpItem *item = iter->data;
if (gimp_item_get_visible (item))
{
if (gimp_item_is_group (item))
{
GList *children;
children = gimp_item_list_children (item);
index += align_layers_spread_visibles_layers (children,
&(layers_array[index]));
g_list_free (children);
}
else if (gimp_item_is_layer (item))
{
layers_array[index] = GIMP_LAYER (item);
index++;
}
}
}
return index;
}
/*
* Return a contiguous array of all visible layers
*/
static GimpLayer **
align_layers_spread_image (GimpImage *image,
gint *layer_num)
{
GList *layers;
GimpLayer **layers_array;
layers = gimp_image_list_layers (image);
*layer_num = align_layers_count_visibles_layers (layers);
layers_array = g_malloc (sizeof (GimpLayer *) * *layer_num);
align_layers_spread_visibles_layers (layers,
layers_array);
g_list_free (layers);
return layers_array;
}
static gint
align_layers_count_visibles_layers (GList *layers)
{
GList *iter;
gint count = 0;
for (iter = layers; iter; iter = iter->next)
{
GimpItem *item = iter->data;
if (gimp_item_get_visible (item))
{
if (gimp_item_is_group (item))
{
GList *children;
children = gimp_item_list_children (item);
count += align_layers_count_visibles_layers (children);
g_list_free (children);
}
else if (gimp_item_is_layer (item))
{
count += 1;
}
}
}
return count;
}
static AlignData
align_layers_gather_data (GimpLayer **layers,
gint layer_num,
GimpLayer *background,
GObject *config)
{
AlignData data;
gint min_x = G_MAXINT;
gint min_y = G_MAXINT;
gint max_x = G_MININT;
gint max_y = G_MININT;
gint index;
gint orig_x = 0;
gint orig_y = 0;
gint offset_x = 0;
gint offset_y = 0;
gint horizontal_style;
gint vertical_style;
gboolean use_bottom_layer;
g_object_get (config,
"use-bottom-layer", &use_bottom_layer,
NULL);
horizontal_style = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"horizontal-style");
vertical_style = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"vertical-style");
data.step_x = 0;
data.step_y = 0;
data.base_x = 0;
data.base_y = 0;
/* 0 is the top layer */
for (index = 0; index < layer_num; index++)
{
gimp_drawable_get_offsets (GIMP_DRAWABLE (layers[index]), &orig_x, &orig_y);
align_layers_get_align_offsets (GIMP_DRAWABLE (layers[index]),
&offset_x,
&offset_y,
config);
orig_x += offset_x;
orig_y += offset_y;
min_x = MIN (min_x, orig_x);
max_x = MAX (max_x, orig_x);
min_y = MIN (min_y, orig_y);
max_y = MAX (max_y, orig_y);
}
if (use_bottom_layer)
{
gimp_drawable_get_offsets (GIMP_DRAWABLE (background), &orig_x, &orig_y);
align_layers_get_align_offsets (GIMP_DRAWABLE (background),
&offset_x,
&offset_y,
config);
orig_x += offset_x;
orig_y += offset_y;
data.base_x = min_x = orig_x;
data.base_y = min_y = orig_y;
}
if (layer_num > 1)
{
data.step_x = (max_x - min_x) / (layer_num - 1);
data.step_y = (max_y - min_y) / (layer_num - 1);
}
if ((horizontal_style == LEFT2RIGHT) || (horizontal_style == RIGHT2LEFT))
data.base_x = min_x;
if ((vertical_style == TOP2BOTTOM) || (vertical_style == BOTTOM2TOP))
data.base_y = min_y;
return data;
}
/*
* Modifies position of each visible layers
* according to data.
*/
static void
align_layers_perform_alignment (GimpLayer **layers,
gint layer_num,
AlignData data,
GObject *config)
{
gint index;
gint horizontal_style;
gint vertical_style;
gint grid_size;
g_object_get (config,
"grid-size", &grid_size,
NULL);
horizontal_style = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"horizontal-style");
vertical_style = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"vertical-style");
for (index = 0; index < layer_num; index++)
{
gint x = 0;
gint y = 0;
gint orig_x;
gint orig_y;
gint offset_x;
gint offset_y;
gimp_drawable_get_offsets (GIMP_DRAWABLE (layers[index]), &orig_x, &orig_y);
align_layers_get_align_offsets (GIMP_DRAWABLE (layers[index]),
&offset_x,
&offset_y,
config);
switch (horizontal_style)
{
case H_NONE:
x = orig_x;
break;
case H_COLLECT:
x = data.base_x - offset_x;
break;
case LEFT2RIGHT:
x = (data.base_x + index * data.step_x) - offset_x;
break;
case RIGHT2LEFT:
x = (data.base_x + (layer_num - index - 1) * data.step_x) - offset_x;
break;
case SNAP2HGRID:
x = grid_size
* (int) ((orig_x + offset_x + grid_size /2) / grid_size)
- offset_x;
break;
}
switch (vertical_style)
{
case V_NONE:
y = orig_y;
break;
case V_COLLECT:
y = data.base_y - offset_y;
break;
case TOP2BOTTOM:
y = (data.base_y + index * data.step_y) - offset_y;
break;
case BOTTOM2TOP:
y = (data.base_y + (layer_num - index - 1) * data.step_y) - offset_y;
break;
case SNAP2VGRID:
y = grid_size
* (int) ((orig_y + offset_y + grid_size / 2) / grid_size)
- offset_y;
break;
}
gimp_layer_set_offsets (layers[index], x, y);
}
}
static void
align_layers_get_align_offsets (GimpDrawable *drawable,
gint *x,
gint *y,
GObject *config)
{
gint width = gimp_drawable_get_width (drawable);
gint height = gimp_drawable_get_height (drawable);
gint horizontal_base;
gint vertical_base;
horizontal_base = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"horizontal-base");
vertical_base = gimp_procedure_config_get_choice_id (GIMP_PROCEDURE_CONFIG (config),
"vertical-base");
switch (horizontal_base)
{
case H_BASE_LEFT:
*x = 0;
break;
case H_BASE_CENTER:
*x = width / 2;
break;
case H_BASE_RIGHT:
*x = width;
break;
default:
*x = 0;
break;
}
switch (vertical_base)
{
case V_BASE_TOP:
*y = 0;
break;
case V_BASE_CENTER:
*y = height / 2;
break;
case V_BASE_BOTTOM:
*y = height;
break;
default:
*y = 0;
break;
}
}
static int
align_layers_dialog (GimpProcedure *procedure,
GObject *config)
{
GtkWidget *dialog;
gboolean run;
gimp_ui_init (PLUG_IN_BINARY);
dialog = gimp_procedure_dialog_new (procedure,
GIMP_PROCEDURE_CONFIG (config),
_("Align Visible Layers"));
gimp_procedure_dialog_get_scale_entry (GIMP_PROCEDURE_DIALOG (dialog),
"grid-size", 1.0);
gimp_procedure_dialog_fill (GIMP_PROCEDURE_DIALOG (dialog),
NULL);
gtk_widget_show (dialog);
run = gimp_procedure_dialog_run (GIMP_PROCEDURE_DIALOG (dialog));
gtk_widget_destroy (dialog);
return run;
}
|