app/core/Makefile.am new files containing gimp_drawable_apply_operation()
2008-01-02 Michael Natterer <mitch@gimp.org> * app/core/Makefile.am * app/core/gimpdrawable-operation.[ch]: new files containing gimp_drawable_apply_operation() which applies a gegl operation to a drawable's selected pixels using shadow tiles. Will soon be used in more places than just invert. * app/core/gimpdrawable-invert.c: use it here, makes gimp_drawable_invert() a 3-liner. svn path=/trunk/; revision=24506
This commit is contained in:

committed by
Michael Natterer

parent
794640d839
commit
88b021c024
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2008-01-02 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* app/core/Makefile.am
|
||||||
|
* app/core/gimpdrawable-operation.[ch]: new files containing
|
||||||
|
gimp_drawable_apply_operation() which applies a gegl operation
|
||||||
|
to a drawable's selected pixels using shadow tiles. Will soon
|
||||||
|
be used in more places than just invert.
|
||||||
|
|
||||||
|
* app/core/gimpdrawable-invert.c: use it here, makes
|
||||||
|
gimp_drawable_invert() a 3-liner.
|
||||||
|
|
||||||
2008-01-01 Martin Nordholts <martinn@svn.gnome.org>
|
2008-01-01 Martin Nordholts <martinn@svn.gnome.org>
|
||||||
|
|
||||||
* app/tools/gimprectangletool.c (gimp_rectangle_tool_start): Use ×
|
* app/tools/gimprectangletool.c (gimp_rectangle_tool_start): Use ×
|
||||||
|
@ -129,6 +129,8 @@ libappcore_a_sources = \
|
|||||||
gimpdrawable-levels.h \
|
gimpdrawable-levels.h \
|
||||||
gimpdrawable-offset.c \
|
gimpdrawable-offset.c \
|
||||||
gimpdrawable-offset.h \
|
gimpdrawable-offset.h \
|
||||||
|
gimpdrawable-operation.c \
|
||||||
|
gimpdrawable-operation.h \
|
||||||
gimpdrawable-preview.c \
|
gimpdrawable-preview.c \
|
||||||
gimpdrawable-preview.h \
|
gimpdrawable-preview.h \
|
||||||
gimpdrawable-stroke.c \
|
gimpdrawable-stroke.c \
|
||||||
|
@ -21,15 +21,15 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include <glib-object.h>
|
|
||||||
#include <gegl.h>
|
#include <gegl.h>
|
||||||
|
|
||||||
#include "core-types.h"
|
#include "core-types.h"
|
||||||
|
|
||||||
#include "gimpdrawable.h"
|
#include "gimpdrawable.h"
|
||||||
#include "gimpdrawable-invert.h"
|
#include "gimpdrawable-invert.h"
|
||||||
#include "gimpimage.h"
|
#include "gimpdrawable-operation.h"
|
||||||
#include "gimpprogress.h"
|
#include "gimpprogress.h"
|
||||||
|
|
||||||
#include "gimp-intl.h"
|
#include "gimp-intl.h"
|
||||||
|
|
||||||
|
|
||||||
@ -37,54 +37,20 @@ void
|
|||||||
gimp_drawable_invert (GimpDrawable *drawable,
|
gimp_drawable_invert (GimpDrawable *drawable,
|
||||||
GimpProgress *progress)
|
GimpProgress *progress)
|
||||||
{
|
{
|
||||||
GeglNode *gegl;
|
GeglNode *invert;
|
||||||
GeglNode *input;
|
|
||||||
GeglNode *invert;
|
|
||||||
GeglNode *output;
|
|
||||||
GeglProcessor *processor;
|
|
||||||
GeglRectangle rect;
|
|
||||||
gdouble value;
|
|
||||||
|
|
||||||
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
||||||
g_return_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)));
|
g_return_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)));
|
||||||
|
g_return_if_fail (progress == NULL || GIMP_IS_PROGRESS (progress));
|
||||||
|
|
||||||
if (! gimp_drawable_mask_intersect (drawable,
|
invert = g_object_new (GEGL_TYPE_NODE,
|
||||||
&rect.x, &rect.y,
|
"operation", "invert",
|
||||||
&rect.width, &rect.height))
|
NULL);
|
||||||
return;
|
|
||||||
|
|
||||||
gegl = gegl_node_new ();
|
gimp_drawable_apply_operation (drawable, invert, TRUE,
|
||||||
input = gegl_node_new_child (gegl,
|
progress, _("Invert"));
|
||||||
"operation", "gimp-tilemanager-source",
|
|
||||||
"tile-manager", gimp_drawable_get_tiles (drawable),
|
|
||||||
"linear", TRUE,
|
|
||||||
NULL);
|
|
||||||
output = gegl_node_new_child (gegl,
|
|
||||||
"operation", "gimp-tilemanager-sink",
|
|
||||||
"tile-manager", gimp_drawable_get_shadow_tiles (drawable),
|
|
||||||
"linear", TRUE,
|
|
||||||
NULL);
|
|
||||||
invert = gegl_node_new_child (gegl,
|
|
||||||
"operation", "invert",
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
gegl_node_link_many (input, invert, output, NULL);
|
g_object_unref (invert);
|
||||||
|
|
||||||
processor = gegl_node_new_processor (output, &rect);
|
|
||||||
|
|
||||||
gimp_progress_start (progress, _("Invert"), FALSE);
|
|
||||||
|
|
||||||
while (gegl_processor_work (processor, &value))
|
|
||||||
gimp_progress_set_value (progress, value);
|
|
||||||
|
|
||||||
g_object_unref (processor);
|
|
||||||
|
|
||||||
gimp_drawable_update (drawable, rect.x, rect.y, rect.width, rect.height);
|
|
||||||
gimp_drawable_merge_shadow (drawable, TRUE, _("Invert"));
|
|
||||||
|
|
||||||
gimp_progress_end (progress);
|
|
||||||
|
|
||||||
g_object_unref (gegl);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
94
app/core/gimpdrawable-operation.c
Normal file
94
app/core/gimpdrawable-operation.c
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
/* GIMP - The GNU Image Manipulation Program
|
||||||
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
||||||
|
*
|
||||||
|
* gimpdrawable-operation.c
|
||||||
|
* Copyright (C) 2007 Øyvind Kolås <pippin@gimp.org>
|
||||||
|
* Sven Neumann <sven@gimp.org>
|
||||||
|
* Michael Natterer <mitch@gimp.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include <gegl.h>
|
||||||
|
|
||||||
|
#include "core-types.h"
|
||||||
|
|
||||||
|
#include "gimpdrawable.h"
|
||||||
|
#include "gimpdrawable-operation.h"
|
||||||
|
#include "gimpprogress.h"
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
gimp_drawable_apply_operation (GimpDrawable *drawable,
|
||||||
|
GeglNode *operation,
|
||||||
|
gboolean linear,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const gchar *undo_desc)
|
||||||
|
{
|
||||||
|
GeglNode *gegl;
|
||||||
|
GeglNode *input;
|
||||||
|
GeglNode *output;
|
||||||
|
GeglProcessor *processor;
|
||||||
|
GeglRectangle rect;
|
||||||
|
gdouble value;
|
||||||
|
|
||||||
|
g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
|
||||||
|
g_return_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)));
|
||||||
|
g_return_if_fail (GEGL_IS_NODE (operation));
|
||||||
|
g_return_if_fail (progress == NULL || GIMP_IS_PROGRESS (progress));
|
||||||
|
g_return_if_fail (undo_desc != NULL);
|
||||||
|
|
||||||
|
if (! gimp_drawable_mask_intersect (drawable,
|
||||||
|
&rect.x, &rect.y,
|
||||||
|
&rect.width, &rect.height))
|
||||||
|
return;
|
||||||
|
|
||||||
|
gegl = gegl_node_new ();
|
||||||
|
input = gegl_node_new_child (gegl,
|
||||||
|
"operation", "gimp-tilemanager-source",
|
||||||
|
"tile-manager", gimp_drawable_get_tiles (drawable),
|
||||||
|
"linear", linear,
|
||||||
|
NULL);
|
||||||
|
output = gegl_node_new_child (gegl,
|
||||||
|
"operation", "gimp-tilemanager-sink",
|
||||||
|
"tile-manager", gimp_drawable_get_shadow_tiles (drawable),
|
||||||
|
"linear", linear,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gegl_node_add_child (gegl, operation);
|
||||||
|
|
||||||
|
gegl_node_link_many (input, operation, output, NULL);
|
||||||
|
|
||||||
|
processor = gegl_node_new_processor (output, &rect);
|
||||||
|
|
||||||
|
if (progress)
|
||||||
|
gimp_progress_start (progress, undo_desc, FALSE);
|
||||||
|
|
||||||
|
while (gegl_processor_work (processor, &value))
|
||||||
|
if (progress)
|
||||||
|
gimp_progress_set_value (progress, value);
|
||||||
|
|
||||||
|
g_object_unref (processor);
|
||||||
|
|
||||||
|
gimp_drawable_merge_shadow (drawable, TRUE, undo_desc);
|
||||||
|
gimp_drawable_update (drawable, rect.x, rect.y, rect.width, rect.height);
|
||||||
|
|
||||||
|
if (progress)
|
||||||
|
gimp_progress_end (progress);
|
||||||
|
|
||||||
|
g_object_unref (gegl);
|
||||||
|
}
|
35
app/core/gimpdrawable-operation.h
Normal file
35
app/core/gimpdrawable-operation.h
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/* GIMP - The GNU Image Manipulation Program
|
||||||
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
||||||
|
*
|
||||||
|
* gimpdrawable-operation.h
|
||||||
|
* Copyright (C) 2007 Øyvind Kolås <pippin@gimp.org>
|
||||||
|
* Sven Neumann <sven@gimp.org>
|
||||||
|
* Michael Natterer <mitch@gimp.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GIMP_DRAWABLE_OPERATION_H__
|
||||||
|
#define __GIMP_DRAWABLE_OPERATION_H__
|
||||||
|
|
||||||
|
|
||||||
|
void gimp_drawable_apply_operation (GimpDrawable *drawable,
|
||||||
|
GeglNode *operation,
|
||||||
|
gboolean linear,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const gchar *undo_desc);
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* __GIMP_DRAWABLE_OPERATION_H__ */
|
Reference in New Issue
Block a user