[gimp] app: allow passing a NULL buffer to gimp_drawable_set_buffer[_full]()



commit 24fcabc1ca1a6ba30cbd40b557ae9365b1f36632
Author: Ell <ell_se yahoo com>
Date:   Tue Feb 13 13:05:56 2018 -0500

    app: allow passing a NULL buffer to gimp_drawable_set_buffer[_full]()
    
    ... which clears the drawable's buffer, performing any necessary
    cleanup, without setting a new buffer.  While the drawable has no
    buffer, it can only be used in a very limited way, in particular,
    it may be destroyed, and it may be assigned a new buffer.
    
    This is used by the next commit to implement
    gimp_drawable_steal_buffer(), which transfers a buffer from one
    drawable to another in a safe manner, leaving the source drawable
    empty.

 app/core/gimpchannel.c  |   29 ++++++++++++----------
 app/core/gimpdrawable.c |   59 +++++++++++++++++++++++++++++++++++------------
 app/core/gimplayer.c    |    4 +-
 3 files changed, 62 insertions(+), 30 deletions(-)
---
diff --git a/app/core/gimpchannel.c b/app/core/gimpchannel.c
index 956a80a..c78afd8 100644
--- a/app/core/gimpchannel.c
+++ b/app/core/gimpchannel.c
@@ -1009,22 +1009,25 @@ gimp_channel_set_buffer (GimpDrawable *drawable,
                                                   buffer,
                                                   offset_x, offset_y);
 
-  gegl_buffer_signal_connect (buffer, "changed",
-                              G_CALLBACK (gimp_channel_buffer_changed),
-                              channel);
-
-  if (gimp_filter_peek_node (GIMP_FILTER (channel)))
+  if (buffer)
     {
-      const Babl *color_format;
+      gegl_buffer_signal_connect (buffer, "changed",
+                                  G_CALLBACK (gimp_channel_buffer_changed),
+                                  channel);
 
-      if (gimp_drawable_get_linear (drawable))
-        color_format = babl_format ("RGBA float");
-      else
-        color_format = babl_format ("R'G'B'A float");
+      if (gimp_filter_peek_node (GIMP_FILTER (channel)))
+        {
+          const Babl *color_format;
 
-      gegl_node_set (channel->color_node,
-                     "format", color_format,
-                     NULL);
+          if (gimp_drawable_get_linear (drawable))
+            color_format = babl_format ("RGBA float");
+          else
+            color_format = babl_format ("R'G'B'A float");
+
+          gegl_node_set (channel->color_node,
+                         "format", color_format,
+                         NULL);
+        }
     }
 }
 
diff --git a/app/core/gimpdrawable.c b/app/core/gimpdrawable.c
index 7a5c71e..ce1d829 100644
--- a/app/core/gimpdrawable.c
+++ b/app/core/gimpdrawable.c
@@ -772,17 +772,22 @@ gimp_drawable_real_set_buffer (GimpDrawable *drawable,
 {
   GimpItem *item          = GIMP_ITEM (drawable);
   gint      old_has_alpha = -1;
+  gint      width         = 0;
+  gint      height        = 0;
 
   g_object_freeze_notify (G_OBJECT (drawable));
 
   gimp_drawable_invalidate_boundary (drawable);
 
   if (push_undo)
-    gimp_image_undo_push_drawable_mod (gimp_item_get_image (item), undo_desc,
-                                       drawable, FALSE);
+    {
+      gimp_image_undo_push_drawable_mod (gimp_item_get_image (item), undo_desc,
+                                         drawable, FALSE);
+    }
 
   /*  ref new before unrefing old, they might be the same  */
-  g_object_ref (buffer);
+  if (buffer)
+    g_object_ref (buffer);
 
   if (drawable->private->buffer)
     {
@@ -798,14 +803,22 @@ gimp_drawable_real_set_buffer (GimpDrawable *drawable,
                    "buffer", gimp_drawable_get_buffer (drawable),
                    NULL);
 
+  if (buffer)
+    {
+      width  = gegl_buffer_get_width  (buffer);
+      height = gegl_buffer_get_height (buffer);
+    }
+
   gimp_item_set_offset (item, offset_x, offset_y);
-  gimp_item_set_size (item,
-                      gegl_buffer_get_width  (buffer),
-                      gegl_buffer_get_height (buffer));
+  gimp_item_set_size (item, width, height);
 
-  if (old_has_alpha >= 0 &&
-      old_has_alpha != gimp_drawable_has_alpha (drawable))
-    gimp_drawable_alpha_changed (drawable);
+  if (buffer)
+    {
+      gboolean new_has_alpha = gimp_drawable_has_alpha (drawable);
+
+      if (new_has_alpha != old_has_alpha)
+        gimp_drawable_alpha_changed (drawable);
+    }
 
   g_object_notify (G_OBJECT (drawable), "buffer");
 
@@ -1127,6 +1140,11 @@ gimp_drawable_get_buffer (GimpDrawable *drawable)
   return GIMP_DRAWABLE_GET_CLASS (drawable)->get_buffer (drawable);
 }
 
+/* note:  you may pass a NULL buffer to gimp_drawable_set_buffer() and
+ * gimp_drawable_set_buffer_full(), in order to clear the drawable's current
+ * buffer, however, push_undo must be FALSE in that case, and you may only use
+ * the drawable in a very limited way while it has no buffer.
+ */
 void
 gimp_drawable_set_buffer (GimpDrawable *drawable,
                           gboolean      push_undo,
@@ -1136,7 +1154,8 @@ gimp_drawable_set_buffer (GimpDrawable *drawable,
   gint offset_x, offset_y;
 
   g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
-  g_return_if_fail (GEGL_IS_BUFFER (buffer));
+  g_return_if_fail (buffer == NULL || GEGL_IS_BUFFER (buffer));
+  g_return_if_fail (buffer != NULL || ! push_undo);
 
   if (! gimp_item_is_attached (GIMP_ITEM (drawable)))
     push_undo = FALSE;
@@ -1156,18 +1175,27 @@ gimp_drawable_set_buffer_full (GimpDrawable *drawable,
                                gint          offset_y)
 {
   GimpItem *item;
+  gint      width  = 0;
+  gint      height = 0;
 
   g_return_if_fail (GIMP_IS_DRAWABLE (drawable));
-  g_return_if_fail (GEGL_IS_BUFFER (buffer));
+  g_return_if_fail (buffer == NULL || GEGL_IS_BUFFER (buffer));
+  g_return_if_fail (buffer != NULL || ! push_undo);
 
   item = GIMP_ITEM (drawable);
 
   if (! gimp_item_is_attached (GIMP_ITEM (drawable)))
     push_undo = FALSE;
 
-  if (gimp_item_get_width  (item)   != gegl_buffer_get_width (buffer)  ||
-      gimp_item_get_height (item)   != gegl_buffer_get_height (buffer) ||
-      gimp_item_get_offset_x (item) != offset_x                        ||
+  if (buffer)
+    {
+      width  = gegl_buffer_get_width  (buffer);
+      height = gegl_buffer_get_height (buffer);
+    }
+
+  if (gimp_item_get_width  (item)   != width    ||
+      gimp_item_get_height (item)   != height   ||
+      gimp_item_get_offset_x (item) != offset_x ||
       gimp_item_get_offset_y (item) != offset_y)
     {
       gimp_drawable_update (drawable, 0, 0, -1, -1);
@@ -1182,7 +1210,8 @@ gimp_drawable_set_buffer_full (GimpDrawable *drawable,
 
   g_object_thaw_notify (G_OBJECT (drawable));
 
-  gimp_drawable_update (drawable, 0, 0, -1, -1);
+  if (buffer)
+    gimp_drawable_update (drawable, 0, 0, -1, -1);
 }
 
 GeglNode *
diff --git a/app/core/gimplayer.c b/app/core/gimplayer.c
index 4d11017..2ad96aa 100644
--- a/app/core/gimplayer.c
+++ b/app/core/gimplayer.c
@@ -1395,11 +1395,11 @@ gimp_layer_set_buffer (GimpDrawable *drawable,
                                                   buffer,
                                                   offset_x, offset_y);
 
-  if (old_linear >= 0 && gimp_filter_peek_node (GIMP_FILTER (drawable)))
+  if (buffer && gimp_filter_peek_node (GIMP_FILTER (drawable)))
     {
       gboolean new_linear = gimp_drawable_get_linear (drawable);
 
-      if (old_linear != new_linear)
+      if (new_linear != old_linear)
         gimp_layer_update_mode_node (GIMP_LAYER (drawable));
     }
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]