2000-06-01 20:20:13 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2003-07-03 08:47:26 +08:00
|
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
2000-06-01 20:20:13 +08:00
|
|
|
*
|
2015-05-30 21:00:36 +08:00
|
|
|
* gimpimageundo_pdb.c
|
2000-06-01 20:20:13 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2000-06-01 20:20:13 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2000-06-01 20:20:13 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2000-06-01 20:20:13 +08:00
|
|
|
*/
|
|
|
|
|
2007-01-09 18:52:47 +08:00
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
2000-06-01 20:20:13 +08:00
|
|
|
|
2002-05-14 07:30:23 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-06-01 20:20:13 +08:00
|
|
|
#include "gimp.h"
|
|
|
|
|
2010-07-07 17:43:10 +08:00
|
|
|
|
|
|
|
/**
|
2015-05-30 21:00:36 +08:00
|
|
|
* SECTION: gimpimageundo
|
|
|
|
* @title: gimpimageundo
|
|
|
|
* @short_description: Control of image undo/redo.
|
2010-07-07 17:43:10 +08:00
|
|
|
*
|
2015-05-30 21:00:36 +08:00
|
|
|
* Control of image undo/redo.
|
2010-07-07 17:43:10 +08:00
|
|
|
**/
|
|
|
|
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2003-12-05 22:18:47 +08:00
|
|
|
* gimp_image_undo_group_start:
|
|
|
|
* @image_ID: The ID of the image in which to open an undo group.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Starts a group undo.
|
|
|
|
*
|
|
|
|
* This function is used to start a group undo--necessary for logically
|
|
|
|
* combining two or more undo operations into a single operation. This
|
2006-06-14 16:32:08 +08:00
|
|
|
* call must be used in conjunction with a gimp_image_undo_group_end()
|
2000-08-25 07:06:53 +08:00
|
|
|
* call.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2003-12-05 22:18:47 +08:00
|
|
|
gimp_image_undo_group_start (gint32 image_ID)
|
2000-06-01 20:20:13 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-06-01 20:20:13 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
2000-06-01 20:20:13 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-group-start",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2000-06-01 20:20:13 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
2000-06-01 20:20:13 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
2000-06-01 20:20:13 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2003-12-05 22:18:47 +08:00
|
|
|
* gimp_image_undo_group_end:
|
|
|
|
* @image_ID: The ID of the image in which to close an undo group.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Finish a group undo.
|
|
|
|
*
|
2003-12-05 22:18:47 +08:00
|
|
|
* This function must be called once for each
|
2006-06-14 16:32:08 +08:00
|
|
|
* gimp_image_undo_group_start() call that is made.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2003-12-05 22:18:47 +08:00
|
|
|
gimp_image_undo_group_end (gint32 image_ID)
|
2000-06-01 20:20:13 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-06-01 20:20:13 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
2000-06-01 20:20:13 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-group-end",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2000-06-01 20:20:13 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
2000-06-01 20:20:13 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
2000-06-01 20:20:13 +08:00
|
|
|
}
|
2003-12-05 22:18:47 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_image_undo_is_enabled:
|
|
|
|
* @image_ID: The image.
|
|
|
|
*
|
|
|
|
* Check if the image's undo stack is enabled.
|
|
|
|
*
|
|
|
|
* This procedure checks if the image's undo stack is currently enabled
|
2017-04-04 19:09:42 +08:00
|
|
|
* or disabled. This is useful when several plug-ins or scripts call
|
2003-12-05 22:18:47 +08:00
|
|
|
* each other and want to check if their caller has already used
|
2006-06-14 16:32:08 +08:00
|
|
|
* gimp_image_undo_disable() or gimp_image_undo_freeze().
|
2003-12-05 22:18:47 +08:00
|
|
|
*
|
2006-03-25 05:57:47 +08:00
|
|
|
* Returns: TRUE if undo is enabled for this image.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-05 22:18:47 +08:00
|
|
|
gboolean
|
|
|
|
gimp_image_undo_is_enabled (gint32 image_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean enabled = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-is-enabled",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-05 22:18:47 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
enabled = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_image_undo_disable:
|
|
|
|
* @image_ID: The image.
|
|
|
|
*
|
|
|
|
* Disable the image's undo stack.
|
|
|
|
*
|
|
|
|
* This procedure disables the image's undo stack, allowing subsequent
|
|
|
|
* operations to ignore their undo steps. This is generally called in
|
2006-06-14 16:32:08 +08:00
|
|
|
* conjunction with gimp_image_undo_enable() to temporarily disable an
|
2003-12-05 22:18:47 +08:00
|
|
|
* image undo stack. This is advantageous because saving undo steps can
|
|
|
|
* be time and memory intensive.
|
|
|
|
*
|
2006-03-25 05:57:47 +08:00
|
|
|
* Returns: TRUE if the image undo has been disabled.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-05 22:18:47 +08:00
|
|
|
gboolean
|
|
|
|
gimp_image_undo_disable (gint32 image_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean disabled = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-disable",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-05 22:18:47 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
disabled = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return disabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_image_undo_enable:
|
|
|
|
* @image_ID: The image.
|
|
|
|
*
|
|
|
|
* Enable the image's undo stack.
|
|
|
|
*
|
|
|
|
* This procedure enables the image's undo stack, allowing subsequent
|
|
|
|
* operations to store their undo steps. This is generally called in
|
2006-06-14 16:32:08 +08:00
|
|
|
* conjunction with gimp_image_undo_disable() to temporarily disable an
|
2003-12-05 22:18:47 +08:00
|
|
|
* image undo stack.
|
|
|
|
*
|
2006-03-25 05:57:47 +08:00
|
|
|
* Returns: TRUE if the image undo has been enabled.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-05 22:18:47 +08:00
|
|
|
gboolean
|
|
|
|
gimp_image_undo_enable (gint32 image_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean enabled = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-enable",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-05 22:18:47 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
enabled = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_image_undo_freeze:
|
|
|
|
* @image_ID: The image.
|
|
|
|
*
|
|
|
|
* Freeze the image's undo stack.
|
|
|
|
*
|
|
|
|
* This procedure freezes the image's undo stack, allowing subsequent
|
|
|
|
* operations to ignore their undo steps. This is generally called in
|
2006-06-14 16:32:08 +08:00
|
|
|
* conjunction with gimp_image_undo_thaw() to temporarily disable an
|
2003-12-05 22:18:47 +08:00
|
|
|
* image undo stack. This is advantageous because saving undo steps can
|
2006-06-14 16:32:08 +08:00
|
|
|
* be time and memory intensive. gimp_image_undo_freeze() /
|
|
|
|
* gimp_image_undo_thaw() and gimp_image_undo_disable() /
|
|
|
|
* gimp_image_undo_enable() differ in that the former does not free up
|
|
|
|
* all undo steps when undo is thawed, so is more suited to interactive
|
|
|
|
* in-situ previews. It is important in this case that the image is
|
|
|
|
* back to the same state it was frozen in before thawing, else 'undo'
|
|
|
|
* behaviour is undefined.
|
2003-12-05 22:18:47 +08:00
|
|
|
*
|
2006-03-25 05:57:47 +08:00
|
|
|
* Returns: TRUE if the image undo has been frozen.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-05 22:18:47 +08:00
|
|
|
gboolean
|
|
|
|
gimp_image_undo_freeze (gint32 image_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean frozen = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-freeze",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-05 22:18:47 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
frozen = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return frozen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_image_undo_thaw:
|
|
|
|
* @image_ID: The image.
|
|
|
|
*
|
|
|
|
* Thaw the image's undo stack.
|
|
|
|
*
|
|
|
|
* This procedure thaws the image's undo stack, allowing subsequent
|
|
|
|
* operations to store their undo steps. This is generally called in
|
2006-06-14 16:32:08 +08:00
|
|
|
* conjunction with gimp_image_undo_freeze() to temporarily freeze an
|
|
|
|
* image undo stack. gimp_image_undo_thaw() does NOT free the undo
|
|
|
|
* stack as gimp_image_undo_enable() does, so is suited for situations
|
2003-12-05 22:18:47 +08:00
|
|
|
* where one wishes to leave the undo stack in the same state in which
|
|
|
|
* one found it despite non-destructively playing with the image in the
|
2017-04-04 19:09:42 +08:00
|
|
|
* meantime. An example would be in-situ plug-in previews. Balancing
|
2016-06-26 04:54:10 +08:00
|
|
|
* freezes and thaws and ensuring image consistency is the
|
2003-12-05 22:18:47 +08:00
|
|
|
* responsibility of the caller.
|
|
|
|
*
|
2006-03-25 05:57:47 +08:00
|
|
|
* Returns: TRUE if the image undo has been thawed.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-05 22:18:47 +08:00
|
|
|
gboolean
|
|
|
|
gimp_image_undo_thaw (gint32 image_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean thawed = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-image-undo-thaw",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-05 22:18:47 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
thawed = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return thawed;
|
|
|
|
}
|