mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
We want it to work whatever the level in the item tree. We only care about whether the items are selected or not. Also fixing the AppStream release tag for the description of this feature.
233 lines
7.9 KiB
C
233 lines
7.9 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpitem-exclusive.c
|
|
* Copyright (C) 2011 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 <gdk-pixbuf/gdk-pixbuf.h>
|
|
#include <gegl.h>
|
|
|
|
#include "core-types.h"
|
|
|
|
#include "gimpcontext.h"
|
|
#include "gimpdrawable.h"
|
|
#include "gimpimage.h"
|
|
#include "gimpimage-undo.h"
|
|
#include "gimpimage-undo-push.h"
|
|
#include "gimpitem.h"
|
|
#include "gimpitem-exclusive.h"
|
|
#include "gimpitemstack.h"
|
|
#include "gimpitemtree.h"
|
|
#include "gimpundostack.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
static GList * gimp_item_exclusive_get_ancestry (GimpItem *item);
|
|
static void gimp_item_exclusive_get_lists (GimpItem *item,
|
|
GimpItemIsEnabledFunc is_enabled,
|
|
GimpItemCanSetFunc can_set,
|
|
GimpItemIsPropLocked is_prop_locked,
|
|
gboolean only_selected,
|
|
GList **on,
|
|
GList **off);
|
|
|
|
|
|
/* public functions */
|
|
|
|
void
|
|
gimp_item_toggle_exclusive_visible (GimpItem *item,
|
|
gboolean only_selected,
|
|
GimpContext *context)
|
|
{
|
|
gimp_item_toggle_exclusive (item,
|
|
(GimpItemIsEnabledFunc) gimp_item_is_visible,
|
|
(GimpItemSetFunc) gimp_item_set_visible,
|
|
NULL,
|
|
(GimpItemIsPropLocked) gimp_item_get_lock_visibility,
|
|
(GimpItemUndoPush) gimp_image_undo_push_item_visibility,
|
|
_("Set Item Exclusive Visibility"),
|
|
GIMP_UNDO_GROUP_ITEM_VISIBILITY,
|
|
only_selected, context);
|
|
}
|
|
|
|
void
|
|
gimp_item_toggle_exclusive (GimpItem *item,
|
|
GimpItemIsEnabledFunc is_enabled,
|
|
GimpItemSetFunc set_prop,
|
|
GimpItemCanSetFunc can_set,
|
|
GimpItemIsPropLocked is_prop_locked,
|
|
GimpItemUndoPush undo_push,
|
|
const gchar *undo_desc,
|
|
GimpUndoType group_undo_type,
|
|
gboolean only_selected,
|
|
GimpContext *context)
|
|
{
|
|
GList *ancestry;
|
|
GList *on;
|
|
GList *off;
|
|
GList *list;
|
|
|
|
g_return_if_fail (GIMP_IS_ITEM (item));
|
|
g_return_if_fail (gimp_item_is_attached (item));
|
|
g_return_if_fail (undo_desc != NULL);
|
|
g_return_if_fail (context == NULL || GIMP_IS_CONTEXT (context));
|
|
|
|
ancestry = gimp_item_exclusive_get_ancestry (item);
|
|
gimp_item_exclusive_get_lists (item, is_enabled, can_set, is_prop_locked,
|
|
only_selected, &on, &off);
|
|
|
|
if (on || off || (! is_enabled (item) && (can_set == NULL || can_set (item))))
|
|
{
|
|
GimpImage *image = gimp_item_get_image (item);
|
|
GimpUndo *undo;
|
|
gboolean push_undo = TRUE;
|
|
|
|
undo = gimp_image_undo_can_compress (image, GIMP_TYPE_UNDO_STACK,
|
|
group_undo_type);
|
|
|
|
/* Use the undo description as the undo object key, as we should
|
|
* assume that a same undo description means the same exclusive
|
|
* action.
|
|
*/
|
|
if (undo && (g_object_get_data (G_OBJECT (undo), undo_desc) ==
|
|
(gpointer) item))
|
|
push_undo = FALSE;
|
|
|
|
if (push_undo)
|
|
{
|
|
if (gimp_image_undo_group_start (image,
|
|
group_undo_type,
|
|
undo_desc))
|
|
{
|
|
undo = gimp_image_undo_can_compress (image, GIMP_TYPE_UNDO_STACK,
|
|
group_undo_type);
|
|
|
|
if (undo)
|
|
g_object_set_data (G_OBJECT (undo), undo_desc, (gpointer) item);
|
|
}
|
|
|
|
for (list = ancestry; list; list = g_list_next (list))
|
|
undo_push (image, NULL, list->data);
|
|
|
|
for (list = on; list; list = g_list_next (list))
|
|
undo_push (image, NULL, list->data);
|
|
|
|
for (list = off; list; list = g_list_next (list))
|
|
undo_push (image, NULL, list->data);
|
|
|
|
gimp_image_undo_group_end (image);
|
|
}
|
|
else if (context)
|
|
{
|
|
gimp_undo_refresh_preview (undo, context);
|
|
}
|
|
|
|
for (list = ancestry; list; list = g_list_next (list))
|
|
set_prop (list->data, TRUE, FALSE);
|
|
|
|
if (on)
|
|
{
|
|
for (list = on; list; list = g_list_next (list))
|
|
set_prop (list->data, FALSE, FALSE);
|
|
}
|
|
else if (off)
|
|
{
|
|
for (list = off; list; list = g_list_next (list))
|
|
set_prop (list->data, TRUE, FALSE);
|
|
}
|
|
|
|
g_list_free (on);
|
|
g_list_free (off);
|
|
}
|
|
|
|
g_list_free (ancestry);
|
|
}
|
|
|
|
|
|
/* private functions */
|
|
|
|
static GList *
|
|
gimp_item_exclusive_get_ancestry (GimpItem *item)
|
|
{
|
|
GimpViewable *parent;
|
|
GList *ancestry = NULL;
|
|
|
|
for (parent = GIMP_VIEWABLE (item);
|
|
parent;
|
|
parent = gimp_viewable_get_parent (parent))
|
|
{
|
|
ancestry = g_list_prepend (ancestry, parent);
|
|
}
|
|
|
|
return ancestry;
|
|
}
|
|
|
|
static void
|
|
gimp_item_exclusive_get_lists (GimpItem *item,
|
|
GimpItemIsEnabledFunc is_enabled,
|
|
GimpItemCanSetFunc can_set,
|
|
GimpItemIsPropLocked is_prop_locked,
|
|
gboolean only_selected,
|
|
GList **on,
|
|
GList **off)
|
|
{
|
|
GimpImage *image = NULL;
|
|
GimpItemTree *tree;
|
|
GList *items;
|
|
GList *list;
|
|
|
|
*on = NULL;
|
|
*off = NULL;
|
|
|
|
tree = gimp_item_get_tree (item);
|
|
|
|
items = gimp_item_stack_get_item_list (GIMP_ITEM_STACK (tree->container));
|
|
|
|
if (only_selected)
|
|
image = gimp_item_get_image (item);
|
|
|
|
for (list = items; list; list = g_list_next (list))
|
|
{
|
|
GimpItem *other = list->data;
|
|
|
|
if (other != item &&
|
|
/* Don't include item with visibility locks. */
|
|
(is_prop_locked == NULL || ! is_prop_locked (other)) &&
|
|
/* Don't include item which can be changed. */
|
|
(can_set == NULL || can_set (other)) &&
|
|
/* Do we care only about selected drawables? */
|
|
(! only_selected || gimp_image_is_selected_drawable (image,
|
|
GIMP_DRAWABLE (other))) &&
|
|
/* We are only interested in same level items unless
|
|
* @only_selected is TRUE. */
|
|
(only_selected ||
|
|
gimp_viewable_get_parent (GIMP_VIEWABLE (other)) ==
|
|
gimp_viewable_get_parent (GIMP_VIEWABLE (item))))
|
|
{
|
|
if (is_enabled (other))
|
|
*on = g_list_prepend (*on, other);
|
|
else
|
|
*off = g_list_prepend (*off, other);
|
|
}
|
|
}
|
|
|
|
g_list_free (items);
|
|
}
|