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
|
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimprowdrawablefilter.c
* Copyright (C) 2025 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 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 <gegl.h>
#include <gtk/gtk.h>
#include "widgets-types.h"
#include "core/gimpdrawable.h"
#include "core/gimpdrawablefilter.h"
#include "core/gimpimage.h"
#include "gimprowdrawablefilter.h"
struct _GimpRowDrawableFilter
{
GimpRowFilter parent_instance;
};
static void gimp_row_filter_drawable_active_toggled (GimpRowFilter *row,
gboolean active);
G_DEFINE_TYPE (GimpRowDrawableFilter,
gimp_row_drawable_filter,
GIMP_TYPE_ROW_FILTER)
#define parent_class gimp_row_drawable_filter_parent_class
static void
gimp_row_drawable_filter_class_init (GimpRowDrawableFilterClass *klass)
{
GimpRowFilterClass *row_filter_class = GIMP_ROW_FILTER_CLASS (klass);
row_filter_class->active_toggled = gimp_row_filter_drawable_active_toggled;
}
static void
gimp_row_drawable_filter_init (GimpRowDrawableFilter *row)
{
}
static void
gimp_row_filter_drawable_active_toggled (GimpRowFilter *row,
gboolean active)
{
GimpViewable *viewable = gimp_row_get_viewable (GIMP_ROW (row));
GIMP_ROW_FILTER_CLASS (parent_class)->active_toggled (row, active);
if (viewable)
{
GimpDrawable *drawable =
gimp_drawable_filter_get_drawable (GIMP_DRAWABLE_FILTER (viewable));
gimp_drawable_update (drawable, 0, 0, -1, -1);
gimp_image_flush (gimp_item_get_image (GIMP_ITEM (drawable)));
}
}
|