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
|
/* gap_wr_trans.c
* wrapper plugins to flip or roatate Layer by Wolfgang Hofer
* 2005/05/01
*/
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* Revision history
* 1.0.0; 2005/05/01 hof: created
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "gap_lastvaldesc.h"
#include "gap-intl.h"
/* Defines */
#define PLUG_IN_NAME_ANY "plug_in_wr_layer_rotate_any"
#define PLUG_IN_NAME_180 "plug_in_wr_layer_rotate_180"
#define PLUG_IN_NAME_90 "plug_in_wr_layer_rotate_90"
#define PLUG_IN_NAME_270 "plug_in_wr_layer_rotate_270"
#define PLUG_IN_NAME_HOR "plug_in_wr_layer_flip_horizontal"
#define PLUG_IN_NAME_VER "plug_in_wr_layer_flip_vetrical"
#define PLUG_IN_IMAGE_TYPES "RGB*, INDEXED*, GRAY*"
#define PLUG_IN_AUTHOR "Wolfgang Hofer (hof@gimp.org)"
#define PLUG_IN_COPYRIGHT "Wolfgang Hofer"
#define PLUG_IN_BINARY "gap_wr_trans"
#define SCALE_WIDTH 200
typedef enum
{
GAP_TRANS_UNDEFINED
,GAP_TRANS_FLIP_HOR
,GAP_TRANS_FLIP_VER
,GAP_TRANS_ROT_90
,GAP_TRANS_ROT_180
,GAP_TRANS_ROT_270
,GAP_TRANS_ROT_ANY
} GapTransLayerMode;
typedef struct {
gdouble angle_deg;
} TransValues;
static TransValues glob_vals =
{
0.0 /* rotation angle in degree */
};
static void iter_query ();
static void query (void);
static void run (const gchar *name, /* name of plugin */
gint nparams, /* number of in-paramters */
const GimpParam * param, /* in-parameters */
gint *nreturn_vals, /* number of out-parameters */
GimpParam ** return_vals); /* out-parameters */
static gint32 p_transform_layer(gint32 image_id, gint32 drawable_id, GapTransLayerMode trans_mode, TransValues *val_ptr);
static gboolean p_dialog(GapTransLayerMode trans_mode, TransValues *val_ptr);
/* Global Variables */
int gap_debug = 0; /* 1 == print debug infos , 0 dont print debug infos */
GimpPlugInInfo PLUG_IN_INFO =
{
NULL, /* init_proc */
NULL, /* quit_proc */
query, /* query_proc */
run /* run_proc */
};
static GimpParamDef in_args[] = {
{ GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{ GIMP_PDB_IMAGE, "image", "Input image" },
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable ()"},
};
static gint global_number_in_args = G_N_ELEMENTS (in_args);
static gint global_number_out_args = 0;
/* Functions */
MAIN ()
static void query (void)
{
static GimpLastvalDef lastvalsRotAny[] =
{
GIMP_LASTVALDEF_GDOUBLE (GIMP_ITER_TRUE, glob_vals.angle_deg, "angle in degree"),
};
static GimpLastvalDef lastvals[] =
{
GIMP_LASTVALDEF_GDOUBLE (GIMP_ITER_FALSE, glob_vals.angle_deg, "dummy"),
};
gimp_plugin_domain_register (GETTEXT_PACKAGE, LOCALEDIR);
/* registration for last values buffer structure (useful for animated filter apply) */
gimp_lastval_desc_register(PLUG_IN_NAME_ANY,
&glob_vals,
sizeof(glob_vals),
G_N_ELEMENTS (lastvalsRotAny),
lastvalsRotAny);
gimp_lastval_desc_register(PLUG_IN_NAME_90,
&glob_vals,
sizeof(glob_vals),
G_N_ELEMENTS (lastvals),
lastvals);
gimp_lastval_desc_register(PLUG_IN_NAME_180,
&glob_vals,
sizeof(glob_vals),
G_N_ELEMENTS (lastvals),
lastvals);
gimp_lastval_desc_register(PLUG_IN_NAME_270,
&glob_vals,
sizeof(glob_vals),
G_N_ELEMENTS (lastvals),
lastvals);
gimp_lastval_desc_register(PLUG_IN_NAME_HOR,
&glob_vals,
sizeof(glob_vals),
G_N_ELEMENTS (lastvals),
lastvals);
gimp_lastval_desc_register(PLUG_IN_NAME_VER,
&glob_vals,
sizeof(glob_vals),
G_N_ELEMENTS (lastvals),
lastvals);
/* the actual installation of the plugin */
gimp_install_procedure (PLUG_IN_NAME_HOR,
"Flip Layer horizontal",
"This plug-in is a wrapper for gimp flip functionality, "
"and provides the typical PDB interface for calling it as "
"filter in animations."
"(for the use with GAP Video Frame manipulation)",
PLUG_IN_AUTHOR,
PLUG_IN_COPYRIGHT,
GAP_VERSION_WITH_DATE,
N_("Flip Horizontal"),
PLUG_IN_IMAGE_TYPES,
GIMP_PLUGIN,
global_number_in_args,
global_number_out_args,
in_args,
NULL);
gimp_install_procedure (PLUG_IN_NAME_VER,
"Flip Layer vertical",
"This plug-in is a wrapper for gimp flip functionality, "
"and provides the typical PDB interface for calling it as "
"filter in animations."
"(for the use with GAP Video Frame manipulation)",
PLUG_IN_AUTHOR,
PLUG_IN_COPYRIGHT,
GAP_VERSION_WITH_DATE,
N_("Flip Vertical"),
PLUG_IN_IMAGE_TYPES,
GIMP_PLUGIN,
global_number_in_args,
global_number_out_args,
in_args,
NULL);
gimp_install_procedure (PLUG_IN_NAME_90,
"Rotate Layer by 90 degree",
"This plug-in is a wrapper for gimp simple rotate functionality, "
"and provides the typical PDB interface for calling it as "
"filter in animations."
"(for the use with GAP Video Frame manipulation)",
PLUG_IN_AUTHOR,
PLUG_IN_COPYRIGHT,
GAP_VERSION_WITH_DATE,
N_("Rotate 90 degrees CW"),
PLUG_IN_IMAGE_TYPES,
GIMP_PLUGIN,
global_number_in_args,
global_number_out_args,
in_args,
NULL);
gimp_install_procedure (PLUG_IN_NAME_180,
"Rotate Layer by 180 degree",
"This plug-in is a wrapper for gimp simple rotate functionality, "
"and provides the typical PDB interface for calling it as "
"filter in animations."
"(for the use with GAP Video Frame manipulation)",
PLUG_IN_AUTHOR,
PLUG_IN_COPYRIGHT,
GAP_VERSION_WITH_DATE,
N_("Rotate 180 degrees"),
PLUG_IN_IMAGE_TYPES,
GIMP_PLUGIN,
global_number_in_args,
global_number_out_args,
in_args,
NULL);
gimp_install_procedure (PLUG_IN_NAME_270,
"Rotate Layer by 270 degree",
"This plug-in is a wrapper for gimp simple rotate functionality, "
"and provides the typical PDB interface for calling it as "
"filter in animations."
"(for the use with GAP Video Frame manipulation)",
PLUG_IN_AUTHOR,
PLUG_IN_COPYRIGHT,
GAP_VERSION_WITH_DATE,
N_("Rotate 90 degrees CCW"),
PLUG_IN_IMAGE_TYPES,
GIMP_PLUGIN,
global_number_in_args,
global_number_out_args,
in_args,
NULL);
gimp_install_procedure (PLUG_IN_NAME_ANY,
"Rotate Layer by specified angle in degree",
"This plug-in is a wrapper for gimp rotate functionality, "
"and provides the typical PDB interface for calling it as "
"filter in animations."
"(for the use with GAP Video Frame manipulation)",
PLUG_IN_AUTHOR,
PLUG_IN_COPYRIGHT,
GAP_VERSION_WITH_DATE,
N_("Rotate any angle"),
PLUG_IN_IMAGE_TYPES,
GIMP_PLUGIN,
global_number_in_args,
global_number_out_args,
in_args,
NULL);
{
/* Menu names */
const char *menupath_image_video_layer_transform = N_("<Image>/Video/Layer/Transform/");
//gimp_plugin_menu_branch_register("<Image>", "Video");
//gimp_plugin_menu_branch_register("<Image>/Video", "Layer");
//gimp_plugin_menu_branch_register("<Image>/Video/Layer", "Transform");
gimp_plugin_menu_register (PLUG_IN_NAME_HOR, menupath_image_video_layer_transform);
gimp_plugin_menu_register (PLUG_IN_NAME_VER, menupath_image_video_layer_transform);
gimp_plugin_menu_register (PLUG_IN_NAME_90, menupath_image_video_layer_transform);
gimp_plugin_menu_register (PLUG_IN_NAME_180, menupath_image_video_layer_transform);
gimp_plugin_menu_register (PLUG_IN_NAME_270, menupath_image_video_layer_transform);
gimp_plugin_menu_register (PLUG_IN_NAME_ANY, menupath_image_video_layer_transform);
}
} /* end query */
static void
run (const gchar *name, /* name of plugin */
gint nparams, /* number of in-paramters */
const GimpParam * param, /* in-parameters */
gint *nreturn_vals, /* number of out-parameters */
GimpParam ** return_vals) /* out-parameters */
{
const gchar *l_env;
gint32 image_id = -1;
gint32 drawable_id = -1;
gint32 trans_drawable_id = -1;
GapTransLayerMode trans_mode;
trans_mode = GAP_TRANS_UNDEFINED;
/* Get the runmode from the in-parameters */
GimpRunMode run_mode = param[0].data.d_int32;
/* status variable, use it to check for errors in invocation usualy only
during non-interactive calling */
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
/* always return at least the status to the caller. */
static GimpParam values[2];
INIT_I18N();
l_env = g_getenv("GAP_DEBUG");
if(l_env != NULL)
{
if((*l_env != 'n') && (*l_env != 'N')) gap_debug = 1;
}
if(gap_debug) printf("\n\nDEBUG: run %s\n", name);
/* initialize the return of the status */
values[0].type = GIMP_PDB_STATUS;
values[0].data.d_status = status;
values[1].type = GIMP_PDB_DRAWABLE;
values[1].data.d_drawable = -1;
*nreturn_vals = 1;
*return_vals = values;
/* get image and drawable */
image_id = param[1].data.d_int32;
drawable_id = param[2].data.d_int32;
if (strcmp (name, PLUG_IN_NAME_HOR) == 0)
{
trans_mode = GAP_TRANS_FLIP_HOR;
}
if (strcmp (name, PLUG_IN_NAME_VER) == 0)
{
trans_mode = GAP_TRANS_FLIP_VER;
}
if (strcmp (name, PLUG_IN_NAME_90) == 0)
{
trans_mode = GAP_TRANS_ROT_90;
}
if (strcmp (name, PLUG_IN_NAME_180) == 0)
{
trans_mode = GAP_TRANS_ROT_180;
}
if (strcmp (name, PLUG_IN_NAME_270) == 0)
{
trans_mode = GAP_TRANS_ROT_270;
}
if (strcmp (name, PLUG_IN_NAME_ANY) == 0)
{
trans_mode = GAP_TRANS_ROT_ANY;
}
if(trans_mode != GAP_TRANS_UNDEFINED)
{
if(gimp_drawable_is_layer(drawable_id))
{
gboolean run_flag;
/* Initial values */
glob_vals.angle_deg = 0;
run_flag = TRUE;
/* Possibly retrieve data from a previous run */
gimp_get_data (name, &glob_vals);
switch (run_mode)
{
case GIMP_RUN_INTERACTIVE:
/* Get information from the dialog */
run_flag = p_dialog(trans_mode, &glob_vals);
break;
case GIMP_RUN_NONINTERACTIVE:
/* check to see if invoked with the correct number of parameters */
if (nparams >= 4)
{
glob_vals.angle_deg = param[3].data.d_float;
}
else
{
status = GIMP_PDB_CALLING_ERROR;
}
break;
case GIMP_RUN_WITH_LAST_VALS:
break;
default:
break;
}
/* here the action starts, we transform the drawable */
trans_drawable_id = p_transform_layer(image_id
, drawable_id
, trans_mode
, &glob_vals
);
if (trans_drawable_id < 0)
{
status = GIMP_PDB_CALLING_ERROR;
}
else
{
values[1].data.d_drawable = drawable_id;
/* Store variable states for next run
* (the parameters for the transform wrapper plugins are stored
* even if they contain just a dummy
* this is done to fullfill the GIMP-GAP LAST_VALUES conventions
* for filtermacro and animated calls)
*/
if (run_mode == GIMP_RUN_INTERACTIVE)
{
gimp_set_data (name, &glob_vals, sizeof (TransValues));
}
}
}
else
{
status = GIMP_PDB_CALLING_ERROR;
if (run_mode == GIMP_RUN_INTERACTIVE)
{
g_message(_("The plug-in %s\noperates only on layers\n"
"(but was called on mask or channel)")
, name
);
}
}
}
if (status == GIMP_PDB_SUCCESS)
{
/* If run mode is interactive, flush displays, else (script) don't
* do it, as the screen updates would make the scripts slow
*/
if (run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush ();
}
values[0].data.d_status = status;
} /* end run */
/* --------------------------
* p_transform_layer
* --------------------------
*/
static gint32
p_transform_layer(gint32 image_id, gint32 drawable_id, GapTransLayerMode trans_mode, TransValues *val_ptr)
{
gboolean auto_center;
gboolean clip_result;
gdouble axis;
gboolean has_selection;
gboolean non_empty;
gint x1, y1, x2, y2;
gint32 sav_selection_id;
gint32 trans_drawable_id;
gint32 center_x;
gint32 center_y;
gimp_image_undo_group_start(image_id);
sav_selection_id = -1;
has_selection = gimp_selection_bounds(image_id, &non_empty, &x1, &y1, &x2, &y2);
center_x = gimp_drawable_width(drawable_id) / 2;
center_y = gimp_drawable_height(drawable_id) / 2;
if(non_empty)
{
sav_selection_id = gimp_selection_save(image_id);
}
trans_drawable_id = -1;
auto_center = TRUE;
clip_result = TRUE;
/* here the action starts, we transform the drawable */
switch(trans_mode)
{
case GAP_TRANS_FLIP_HOR:
clip_result = TRUE;
axis = (gdouble)(gimp_drawable_width(drawable_id)) / 2.0;
trans_drawable_id = gimp_drawable_transform_flip_simple(drawable_id
,GIMP_ORIENTATION_HORIZONTAL
,auto_center
,axis
,clip_result
);
break;
case GAP_TRANS_FLIP_VER:
clip_result = TRUE;
axis = (gdouble)(gimp_drawable_height(drawable_id)) / 2.0;
trans_drawable_id = gimp_drawable_transform_flip_simple(drawable_id
,GIMP_ORIENTATION_VERTICAL
,auto_center
,axis
,clip_result
);
break;
case GAP_TRANS_ROT_90:
clip_result = FALSE;
trans_drawable_id = gimp_drawable_transform_rotate_simple(drawable_id
,GIMP_ROTATE_90
,auto_center
,center_x
,center_y
,clip_result
);
break;
case GAP_TRANS_ROT_180:
clip_result = FALSE;
trans_drawable_id = gimp_drawable_transform_rotate_simple(drawable_id
,GIMP_ROTATE_180
,auto_center
,center_x
,center_y
,clip_result
);
break;
case GAP_TRANS_ROT_270:
clip_result = FALSE;
trans_drawable_id = gimp_drawable_transform_rotate_simple(drawable_id
,GIMP_ROTATE_270
,auto_center
,center_x
,center_y
,clip_result
);
break;
case GAP_TRANS_ROT_ANY:
{
gdouble l_angle_rad;
clip_result = FALSE;
l_angle_rad = (val_ptr->angle_deg * G_PI) / 180.0;
trans_drawable_id = gimp_drawable_transform_rotate_default(drawable_id
, l_angle_rad
, FALSE /* auto_center */
, center_x
, center_y
, TRUE /* interpolation (TRUE use default interpolation) */
, clip_result
);
} /* end gap_pdb_gimp_rotate_degree */
break;
default:
break;
}
if((non_empty)
&& (sav_selection_id >= 0))
{
/* if there was a selection, the transform (flip or simple rotate) operation
* is restricted to the selected region. in this case
* the treansform has created a new drawable as floating selection.
*
* we automatically anchor the floating selection and restore the orginal selection,
* because our plug-in is typically called more than once
* in non-interactive sequence on all layers of the same image
*
* this would not work for the 2.nd call if the 1.st call produces a floating selection.
*/
gimp_floating_sel_anchor (gimp_image_get_floating_sel (image_id));
gimp_selection_load(sav_selection_id);
gimp_image_remove_channel(image_id, sav_selection_id);
//gimp_drawable_delete(sav_selection_id);
}
gimp_image_undo_group_end(image_id);
return (trans_drawable_id);
} /* end p_transform_layer */
/* --------------------------
* p_dialog
* --------------------------
*/
static gboolean
p_dialog (GapTransLayerMode trans_mode, TransValues *val_ptr)
{
GtkWidget *dialog;
GtkWidget *main_vbox;
GtkWidget *preview;
GtkWidget *table;
GtkObject *adj;
gboolean run;
if(trans_mode != GAP_TRANS_ROT_ANY)
{
/* all other modes have no dialog and shall run immediate when invoked */
return (TRUE);
}
gimp_ui_init (PLUG_IN_BINARY, TRUE);
dialog = gimp_dialog_new (_("Rotate any angle"), PLUG_IN_BINARY,
NULL, 0,
gimp_standard_help_func, PLUG_IN_NAME_ANY,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
GTK_RESPONSE_OK,
GTK_RESPONSE_CANCEL,
-1);
gimp_window_set_transient (GTK_WINDOW (dialog));
main_vbox = gtk_vbox_new (FALSE, 12);
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), main_vbox);
gtk_widget_show (main_vbox);
/* Controls */
table = gtk_table_new (3, 3, FALSE);
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
gtk_box_pack_start (GTK_BOX (main_vbox), table, FALSE, FALSE, 0);
gtk_widget_show (table);
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
_("Rotate angle:"), SCALE_WIDTH, 7,
val_ptr->angle_deg, -3600.0, 3600.0, 1.0, 15.0, 2,
TRUE, 0, 0,
NULL, NULL);
g_signal_connect (adj, "value-changed",
G_CALLBACK (gimp_double_adjustment_update),
&val_ptr->angle_deg);
/* Done */
gtk_widget_show (dialog);
run = (gimp_dialog_run (GIMP_DIALOG (dialog)) == GTK_RESPONSE_OK);
gtk_widget_destroy (dialog);
return run;
} /* end p_dialog */
|