2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-02-11 09:39:24 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2001-04-22 08:38:56 +08:00
|
|
|
* gimpdata.c
|
|
|
|
* Copyright (C) 2001 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-02-11 09:39:24 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-02-11 09:39:24 +08:00
|
|
|
* (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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2001-02-11 09:39:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2013-10-15 07:58:39 +08:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2012-03-22 04:58:40 +08:00
|
|
|
#include <gegl.h>
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2004-07-19 21:22:44 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core-types.h"
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2014-08-12 19:57:57 +08:00
|
|
|
#include "gimp-memsize.h"
|
2001-02-11 09:39:24 +08:00
|
|
|
#include "gimpdata.h"
|
2023-05-31 22:12:04 +08:00
|
|
|
#include "gimpidtable.h"
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
#include "gimpimage.h"
|
2008-12-12 06:04:05 +08:00
|
|
|
#include "gimptag.h"
|
2008-01-17 18:51:31 +08:00
|
|
|
#include "gimptagged.h"
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2002-10-31 02:46:29 +08:00
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
DIRTY,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2005-05-26 07:25:45 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2023-05-31 22:12:04 +08:00
|
|
|
PROP_ID,
|
2014-07-01 07:19:35 +08:00
|
|
|
PROP_FILE,
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
PROP_IMAGE,
|
2005-05-26 07:47:42 +08:00
|
|
|
PROP_WRITABLE,
|
|
|
|
PROP_DELETABLE,
|
2005-05-26 07:25:45 +08:00
|
|
|
PROP_MIME_TYPE
|
|
|
|
};
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-10-31 22:24:57 +08:00
|
|
|
struct _GimpDataPrivate
|
|
|
|
{
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
gint ID;
|
|
|
|
GFile *file;
|
|
|
|
GimpImage *image;
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
GQuark mime_type;
|
|
|
|
guint writable : 1;
|
|
|
|
guint deletable : 1;
|
|
|
|
guint dirty : 1;
|
|
|
|
guint internal : 1;
|
|
|
|
gint freeze_count;
|
2013-07-12 22:33:12 +08:00
|
|
|
gint64 mtime;
|
2009-11-01 01:48:38 +08:00
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
/* Identifies the collection this GimpData belongs to.
|
|
|
|
* Used when there is not a filename associated with the object.
|
2009-11-01 01:48:38 +08:00
|
|
|
*/
|
2023-07-21 00:36:27 +08:00
|
|
|
gchar *collection;
|
2009-11-01 01:48:38 +08:00
|
|
|
|
|
|
|
GList *tags;
|
2009-10-31 22:24:57 +08:00
|
|
|
};
|
|
|
|
|
2019-06-29 22:41:41 +08:00
|
|
|
#define GIMP_DATA_GET_PRIVATE(obj) (((GimpData *) (obj))->priv)
|
2009-10-31 22:24:57 +08:00
|
|
|
|
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static void gimp_data_tagged_iface_init (GimpTaggedInterface *iface);
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static void gimp_data_constructed (GObject *object);
|
|
|
|
static void gimp_data_finalize (GObject *object);
|
|
|
|
static void gimp_data_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_data_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static void gimp_data_name_changed (GimpObject *object);
|
|
|
|
static gint64 gimp_data_get_memsize (GimpObject *object,
|
|
|
|
gint64 *gui_size);
|
2005-11-01 21:04:09 +08:00
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static gboolean gimp_data_is_name_editable (GimpViewable *viewable);
|
2016-11-16 22:13:08 +08:00
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static void gimp_data_real_dirty (GimpData *data);
|
|
|
|
static GimpData * gimp_data_real_duplicate (GimpData *data);
|
2017-07-27 02:17:59 +08:00
|
|
|
static gint gimp_data_real_compare (GimpData *data1,
|
|
|
|
GimpData *data2);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static gboolean gimp_data_add_tag (GimpTagged *tagged,
|
|
|
|
GimpTag *tag);
|
|
|
|
static gboolean gimp_data_remove_tag (GimpTagged *tagged,
|
|
|
|
GimpTag *tag);
|
|
|
|
static GList * gimp_data_get_tags (GimpTagged *tagged);
|
|
|
|
static gchar * gimp_data_get_identifier (GimpTagged *tagged);
|
|
|
|
static gchar * gimp_data_get_checksum (GimpTagged *tagged);
|
2008-01-17 18:51:31 +08:00
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
static gchar * gimp_data_get_collection (GimpData *data);
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2023-06-05 19:17:53 +08:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GimpData, gimp_data, GIMP_TYPE_RESOURCE,
|
2019-06-29 22:41:41 +08:00
|
|
|
G_ADD_PRIVATE (GimpData)
|
|
|
|
G_IMPLEMENT_INTERFACE (GIMP_TYPE_TAGGED,
|
|
|
|
gimp_data_tagged_iface_init))
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2019-06-29 22:41:41 +08:00
|
|
|
#define parent_class gimp_data_parent_class
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2019-06-29 22:41:41 +08:00
|
|
|
static guint data_signals[LAST_SIGNAL] = { 0 };
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2023-05-31 22:12:04 +08:00
|
|
|
static GimpIdTable *data_id_table = NULL;
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_data_class_init (GimpDataClass *klass)
|
|
|
|
{
|
2016-11-16 22:13:08 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpObjectClass *gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
GimpViewableClass *viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2003-08-25 18:49:33 +08:00
|
|
|
data_signals[DIRTY] =
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
g_signal_new ("dirty",
|
2004-07-16 03:01:57 +08:00
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpDataClass, dirty),
|
2020-01-12 18:06:05 +08:00
|
|
|
NULL, NULL, NULL,
|
2004-07-16 03:01:57 +08:00
|
|
|
G_TYPE_NONE, 0);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2016-11-16 22:13:08 +08:00
|
|
|
object_class->constructed = gimp_data_constructed;
|
|
|
|
object_class->finalize = gimp_data_finalize;
|
|
|
|
object_class->set_property = gimp_data_set_property;
|
|
|
|
object_class->get_property = gimp_data_get_property;
|
|
|
|
|
|
|
|
gimp_object_class->name_changed = gimp_data_name_changed;
|
|
|
|
gimp_object_class->get_memsize = gimp_data_get_memsize;
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2016-11-16 22:13:08 +08:00
|
|
|
viewable_class->name_editable = TRUE;
|
|
|
|
viewable_class->is_name_editable = gimp_data_is_name_editable;
|
2001-02-12 11:27:28 +08:00
|
|
|
|
2016-11-16 22:13:08 +08:00
|
|
|
klass->dirty = gimp_data_real_dirty;
|
|
|
|
klass->save = NULL;
|
|
|
|
klass->get_extension = NULL;
|
2017-07-27 01:42:21 +08:00
|
|
|
klass->copy = NULL;
|
|
|
|
klass->duplicate = gimp_data_real_duplicate;
|
2017-07-27 02:17:59 +08:00
|
|
|
klass->compare = gimp_data_real_compare;
|
2005-05-26 07:25:45 +08:00
|
|
|
|
2023-05-31 22:12:04 +08:00
|
|
|
g_object_class_install_property (object_class, PROP_ID,
|
|
|
|
g_param_spec_int ("id", NULL, NULL,
|
|
|
|
0, G_MAXINT, 0,
|
|
|
|
GIMP_PARAM_READABLE));
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
g_object_class_install_property (object_class, PROP_FILE,
|
|
|
|
g_param_spec_object ("file", NULL, NULL,
|
|
|
|
G_TYPE_FILE,
|
2006-04-12 20:49:29 +08:00
|
|
|
GIMP_PARAM_READWRITE));
|
2005-05-27 18:56:33 +08:00
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
g_object_class_install_property (object_class, PROP_IMAGE,
|
|
|
|
g_param_spec_object ("image", NULL, NULL,
|
|
|
|
GIMP_TYPE_IMAGE,
|
|
|
|
GIMP_PARAM_READWRITE));
|
|
|
|
|
2005-05-27 18:56:33 +08:00
|
|
|
g_object_class_install_property (object_class, PROP_WRITABLE,
|
2006-04-12 20:49:29 +08:00
|
|
|
g_param_spec_boolean ("writable", NULL, NULL,
|
2005-05-27 18:56:33 +08:00
|
|
|
FALSE,
|
2006-01-19 04:29:40 +08:00
|
|
|
GIMP_PARAM_READWRITE));
|
2005-05-27 18:56:33 +08:00
|
|
|
|
2006-10-28 02:11:46 +08:00
|
|
|
g_object_class_install_property (object_class, PROP_DELETABLE,
|
2006-04-12 20:49:29 +08:00
|
|
|
g_param_spec_boolean ("deletable", NULL, NULL,
|
2005-05-27 18:56:33 +08:00
|
|
|
FALSE,
|
2006-01-19 04:29:40 +08:00
|
|
|
GIMP_PARAM_READWRITE));
|
2005-05-27 18:56:33 +08:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_MIME_TYPE,
|
2006-04-12 20:49:29 +08:00
|
|
|
g_param_spec_string ("mime-type", NULL, NULL,
|
|
|
|
NULL,
|
|
|
|
GIMP_PARAM_READWRITE |
|
2005-05-27 18:56:33 +08:00
|
|
|
G_PARAM_CONSTRUCT_ONLY));
|
2023-05-31 22:12:04 +08:00
|
|
|
|
|
|
|
data_id_table = gimp_id_table_new ();
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2008-01-17 18:51:31 +08:00
|
|
|
static void
|
|
|
|
gimp_data_tagged_iface_init (GimpTaggedInterface *iface)
|
|
|
|
{
|
2008-12-13 19:58:24 +08:00
|
|
|
iface->add_tag = gimp_data_add_tag;
|
|
|
|
iface->remove_tag = gimp_data_remove_tag;
|
|
|
|
iface->get_tags = gimp_data_get_tags;
|
|
|
|
iface->get_identifier = gimp_data_get_identifier;
|
|
|
|
iface->get_checksum = gimp_data_get_checksum;
|
2008-01-17 18:51:31 +08:00
|
|
|
}
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
static void
|
2019-06-29 22:41:41 +08:00
|
|
|
gimp_data_init (GimpData *data)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2019-06-29 22:41:41 +08:00
|
|
|
GimpDataPrivate *private = gimp_data_get_instance_private (data);
|
|
|
|
|
|
|
|
data->priv = private;
|
2009-11-01 01:48:38 +08:00
|
|
|
|
2023-05-31 22:12:04 +08:00
|
|
|
private->ID = gimp_id_table_insert (data_id_table, data);
|
2009-11-01 01:48:38 +08:00
|
|
|
private->writable = TRUE;
|
|
|
|
private->deletable = TRUE;
|
|
|
|
private->dirty = TRUE;
|
2004-02-13 19:53:22 +08:00
|
|
|
|
2005-11-01 21:04:09 +08:00
|
|
|
/* freeze the data object during construction */
|
|
|
|
gimp_data_freeze (data);
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2011-01-13 05:53:58 +08:00
|
|
|
static void
|
|
|
|
gimp_data_constructed (GObject *object)
|
2008-04-19 22:48:50 +08:00
|
|
|
{
|
2019-06-29 22:41:41 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (object);
|
|
|
|
|
2012-11-13 04:51:22 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->constructed (object);
|
2008-04-19 22:48:50 +08:00
|
|
|
|
2019-06-29 22:41:41 +08:00
|
|
|
if (! GIMP_DATA_GET_CLASS (object)->save)
|
|
|
|
private->writable = FALSE;
|
|
|
|
|
2008-04-19 22:48:50 +08:00
|
|
|
gimp_data_thaw (GIMP_DATA (object));
|
|
|
|
}
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_data_finalize (GObject *object)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (object);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2023-05-31 22:12:04 +08:00
|
|
|
gimp_id_table_remove (data_id_table, private->ID);
|
|
|
|
|
2017-07-16 00:38:01 +08:00
|
|
|
g_clear_object (&private->file);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
if (private->tags)
|
2008-01-17 18:51:31 +08:00
|
|
|
{
|
2011-03-08 00:10:18 +08:00
|
|
|
g_list_free_full (private->tags, (GDestroyNotify) g_object_unref);
|
2009-11-01 01:48:38 +08:00
|
|
|
private->tags = NULL;
|
2008-01-17 18:51:31 +08:00
|
|
|
}
|
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
g_clear_pointer (&private->collection, g_free);
|
2008-12-12 15:03:42 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2005-05-26 07:25:45 +08:00
|
|
|
static void
|
|
|
|
gimp_data_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpData *data = GIMP_DATA (object);
|
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (data);
|
2005-05-26 07:25:45 +08:00
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2014-07-01 07:19:35 +08:00
|
|
|
case PROP_FILE:
|
|
|
|
gimp_data_set_file (data,
|
|
|
|
g_value_get_object (value),
|
|
|
|
private->writable,
|
|
|
|
private->deletable);
|
2005-05-26 07:47:42 +08:00
|
|
|
break;
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
case PROP_IMAGE:
|
|
|
|
gimp_data_set_image (data,
|
|
|
|
g_value_get_object (value),
|
|
|
|
private->writable,
|
|
|
|
private->deletable);
|
|
|
|
break;
|
2005-05-26 07:47:42 +08:00
|
|
|
case PROP_WRITABLE:
|
2009-11-01 01:48:38 +08:00
|
|
|
private->writable = g_value_get_boolean (value);
|
2005-05-26 07:47:42 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_DELETABLE:
|
2009-11-01 01:48:38 +08:00
|
|
|
private->deletable = g_value_get_boolean (value);
|
2005-05-26 07:47:42 +08:00
|
|
|
break;
|
|
|
|
|
2005-05-26 07:25:45 +08:00
|
|
|
case PROP_MIME_TYPE:
|
|
|
|
if (g_value_get_string (value))
|
2009-11-01 01:48:38 +08:00
|
|
|
private->mime_type = g_quark_from_string (g_value_get_string (value));
|
2005-05-26 07:25:45 +08:00
|
|
|
else
|
2009-11-01 01:48:38 +08:00
|
|
|
private->mime_type = 0;
|
2005-05-26 07:25:45 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_data_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (object);
|
2005-05-26 07:25:45 +08:00
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2023-05-31 22:12:04 +08:00
|
|
|
case PROP_ID:
|
|
|
|
g_value_set_int (value, private->ID);
|
|
|
|
break;
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
case PROP_FILE:
|
|
|
|
g_value_set_object (value, private->file);
|
2005-05-26 07:47:42 +08:00
|
|
|
break;
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
case PROP_IMAGE:
|
|
|
|
g_value_set_object (value, private->image);
|
|
|
|
break;
|
|
|
|
|
2005-05-26 07:47:42 +08:00
|
|
|
case PROP_WRITABLE:
|
2009-11-01 01:48:38 +08:00
|
|
|
g_value_set_boolean (value, private->writable);
|
2005-05-26 07:47:42 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_DELETABLE:
|
2009-11-01 01:48:38 +08:00
|
|
|
g_value_set_boolean (value, private->deletable);
|
2005-05-26 07:47:42 +08:00
|
|
|
break;
|
|
|
|
|
2005-05-26 07:25:45 +08:00
|
|
|
case PROP_MIME_TYPE:
|
2009-11-01 01:48:38 +08:00
|
|
|
g_value_set_string (value, g_quark_to_string (private->mime_type));
|
2005-05-26 07:25:45 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-30 04:23:38 +08:00
|
|
|
static void
|
|
|
|
gimp_data_name_changed (GimpObject *object)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (object);
|
|
|
|
|
|
|
|
private->dirty = TRUE;
|
|
|
|
|
|
|
|
if (GIMP_OBJECT_CLASS (parent_class)->name_changed)
|
|
|
|
GIMP_OBJECT_CLASS (parent_class)->name_changed (object);
|
|
|
|
}
|
|
|
|
|
2003-11-17 01:51:36 +08:00
|
|
|
static gint64
|
2003-08-25 18:49:33 +08:00
|
|
|
gimp_data_get_memsize (GimpObject *object,
|
2003-11-17 01:51:36 +08:00
|
|
|
gint64 *gui_size)
|
2002-01-31 00:14:26 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (object);
|
2009-10-31 22:24:57 +08:00
|
|
|
gint64 memsize = 0;
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
memsize += gimp_g_object_get_memsize (G_OBJECT (private->file));
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-08-25 18:49:33 +08:00
|
|
|
return memsize + GIMP_OBJECT_CLASS (parent_class)->get_memsize (object,
|
|
|
|
gui_size);
|
2002-01-31 00:14:26 +08:00
|
|
|
}
|
|
|
|
|
2016-11-16 22:13:08 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_data_is_name_editable (GimpViewable *viewable)
|
|
|
|
{
|
app, pdb: prevent custom gradient from being renamed
Make internal data objects non-renamable, even if they're writable,
through gimp_data_is_name_editable(). Currently, the only such
object is the custom gradient.
Prevent changing the name of non-renamable data by making the name
entry of GimpDataEditor non-editable whenever
gimp_viewable_is_name_editable() is FALSE, even if the data is
otherwise editable.
Prevent the vairous PDB -rename() functions from renaming non-
renamable data, by adding a GimpPDBDataAccess flags type,
specifying the desired access mode for the data -- any combination
of READ, WRITE, and RENAME -- and replacing the 'writable'
parameter of the gimp_pdb_get_foo() functions with an 'access'
parameter. Change the various .pdb files to use READ where they'd
used FALSE, and WRITE where they'd used TRUE; use RENAME, isntead
of WRITE, in the -rename() functions.
2017-10-31 05:06:31 +08:00
|
|
|
return gimp_data_is_writable (GIMP_DATA (viewable)) &&
|
|
|
|
! gimp_data_is_internal (GIMP_DATA (viewable));
|
2016-11-16 22:13:08 +08:00
|
|
|
}
|
|
|
|
|
2004-06-13 06:13:31 +08:00
|
|
|
static void
|
|
|
|
gimp_data_real_dirty (GimpData *data)
|
|
|
|
{
|
|
|
|
gimp_viewable_invalidate_preview (GIMP_VIEWABLE (data));
|
2006-05-23 23:39:45 +08:00
|
|
|
|
2013-05-30 04:23:38 +08:00
|
|
|
/* Emit the "name-changed" to signal general dirtiness, our name
|
|
|
|
* changed implementation will also set the "dirty" flag to TRUE.
|
|
|
|
*/
|
2006-05-23 23:39:45 +08:00
|
|
|
gimp_object_name_changed (GIMP_OBJECT (data));
|
2004-06-13 06:13:31 +08:00
|
|
|
}
|
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
static GimpData *
|
|
|
|
gimp_data_real_duplicate (GimpData *data)
|
|
|
|
{
|
|
|
|
if (GIMP_DATA_GET_CLASS (data)->copy)
|
|
|
|
{
|
|
|
|
GimpData *new = g_object_new (G_OBJECT_TYPE (data), NULL);
|
|
|
|
|
|
|
|
gimp_data_copy (new, data);
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-07-27 02:17:59 +08:00
|
|
|
static gint
|
|
|
|
gimp_data_real_compare (GimpData *data1,
|
|
|
|
GimpData *data2)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private1 = GIMP_DATA_GET_PRIVATE (data1);
|
|
|
|
GimpDataPrivate *private2 = GIMP_DATA_GET_PRIVATE (data2);
|
|
|
|
|
|
|
|
/* move the internal objects (like the FG -> BG) gradient) to the top */
|
|
|
|
if (private1->internal != private2->internal)
|
|
|
|
return private1->internal ? -1 : 1;
|
|
|
|
|
|
|
|
/* keep user-deletable objects above system resource files */
|
|
|
|
if (private1->deletable != private2->deletable)
|
|
|
|
return private1->deletable ? -1 : 1;
|
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
if (g_strcmp0 (private1->collection, private2->collection) != 0)
|
|
|
|
return g_strcmp0 (private1->collection, private2->collection);
|
|
|
|
|
2017-07-27 02:17:59 +08:00
|
|
|
return gimp_object_name_collate ((GimpObject *) data1,
|
|
|
|
(GimpObject *) data2);
|
|
|
|
}
|
|
|
|
|
2008-01-17 18:51:31 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_data_add_tag (GimpTagged *tagged,
|
2008-12-12 06:04:05 +08:00
|
|
|
GimpTag *tag)
|
2008-01-17 18:51:31 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (tagged);
|
|
|
|
GList *list;
|
2008-01-17 18:51:31 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
for (list = private->tags; list; list = g_list_next (list))
|
2008-01-17 18:51:31 +08:00
|
|
|
{
|
2008-12-12 06:04:05 +08:00
|
|
|
GimpTag *this = GIMP_TAG (list->data);
|
2008-01-17 18:51:31 +08:00
|
|
|
|
2008-12-12 06:04:05 +08:00
|
|
|
if (gimp_tag_equals (tag, this))
|
2008-01-17 18:51:31 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private->tags = g_list_prepend (private->tags, g_object_ref (tag));
|
2008-01-17 18:51:31 +08:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_data_remove_tag (GimpTagged *tagged,
|
2008-12-12 06:04:05 +08:00
|
|
|
GimpTag *tag)
|
2008-01-17 18:51:31 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (tagged);
|
|
|
|
GList *list;
|
2008-01-17 18:51:31 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
for (list = private->tags; list; list = g_list_next (list))
|
2008-01-17 18:51:31 +08:00
|
|
|
{
|
2008-12-12 06:04:05 +08:00
|
|
|
GimpTag *this = GIMP_TAG (list->data);
|
2008-01-17 18:51:31 +08:00
|
|
|
|
2008-12-12 06:04:05 +08:00
|
|
|
if (gimp_tag_equals (tag, this))
|
2008-01-17 18:51:31 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
private->tags = g_list_delete_link (private->tags, list);
|
2014-01-27 04:03:28 +08:00
|
|
|
g_object_unref (this);
|
2008-01-17 18:51:31 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GList *
|
|
|
|
gimp_data_get_tags (GimpTagged *tagged)
|
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (tagged);
|
|
|
|
|
|
|
|
return private->tags;
|
2008-01-17 18:51:31 +08:00
|
|
|
}
|
|
|
|
|
2009-10-31 22:24:57 +08:00
|
|
|
static gchar *
|
2008-12-13 19:58:24 +08:00
|
|
|
gimp_data_get_identifier (GimpTagged *tagged)
|
|
|
|
{
|
2023-07-21 00:36:27 +08:00
|
|
|
GimpData *data = GIMP_DATA (tagged);
|
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (data);
|
2009-10-31 22:24:57 +08:00
|
|
|
gchar *identifier = NULL;
|
2023-07-21 00:36:27 +08:00
|
|
|
gchar *collection = NULL;
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
g_return_val_if_fail (private->internal || private->file != NULL || private->image != NULL, NULL);
|
2023-07-21 00:36:27 +08:00
|
|
|
|
|
|
|
collection = gimp_data_get_collection (data);
|
|
|
|
/* The identifier is guaranteed to be unique because we use 2 directory
|
|
|
|
* separators between the collection and the data name. Since the collection
|
|
|
|
* is either a controlled internal name or built from g_file_get_path(), which
|
|
|
|
* is guaranteed to be a canonical path, we know it won't contain 2
|
|
|
|
* separators. Therefore it should be impossible to construct a file path able
|
|
|
|
* to create duplicate identifiers.
|
|
|
|
* The last point is obviously that it should not be possible to have
|
|
|
|
* duplicate data names in a single collection. So every identifier should be
|
|
|
|
* unique.
|
|
|
|
*/
|
|
|
|
identifier = g_strdup_printf ("%s:%s%s%s%s",
|
|
|
|
private->internal ? "internal" : "external",
|
|
|
|
collection, G_DIR_SEPARATOR_S, G_DIR_SEPARATOR_S,
|
|
|
|
gimp_object_get_name (GIMP_OBJECT (data)));
|
|
|
|
g_free (collection);
|
|
|
|
|
|
|
|
return identifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
gimp_data_get_checksum (GimpTagged *tagged)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A data collection name is either generated from the file path, or set when
|
|
|
|
* marking a data as internal.
|
|
|
|
* Several data objects may belong to a same collection. A very common example
|
|
|
|
* of this in fonts are collections of fonts (e.g. TrueType Collection .TTC
|
|
|
|
* files).
|
|
|
|
*/
|
|
|
|
static gchar *
|
|
|
|
gimp_data_get_collection (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
gchar *collection = NULL;
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
g_return_val_if_fail (private->internal || private->file != NULL || private->image != NULL, NULL);
|
2008-12-13 19:58:24 +08:00
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
if (private->file)
|
2008-12-13 19:58:24 +08:00
|
|
|
{
|
2009-11-08 04:14:56 +08:00
|
|
|
const gchar *data_dir = gimp_data_directory ();
|
|
|
|
const gchar *gimp_dir = gimp_directory ();
|
2014-07-01 07:19:35 +08:00
|
|
|
gchar *path = g_file_get_path (private->file);
|
2009-11-08 04:14:56 +08:00
|
|
|
gchar *tmp;
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
if (g_str_has_prefix (path, data_dir))
|
2009-11-08 04:14:56 +08:00
|
|
|
{
|
|
|
|
tmp = g_strconcat ("${gimp_data_dir}",
|
2014-07-01 07:19:35 +08:00
|
|
|
path + strlen (data_dir),
|
2009-11-08 04:14:56 +08:00
|
|
|
NULL);
|
2023-07-21 00:36:27 +08:00
|
|
|
collection = g_filename_to_utf8 (tmp, -1, NULL, NULL, NULL);
|
2009-11-08 04:14:56 +08:00
|
|
|
g_free (tmp);
|
|
|
|
}
|
2014-07-01 07:19:35 +08:00
|
|
|
else if (g_str_has_prefix (path, gimp_dir))
|
2009-11-08 04:14:56 +08:00
|
|
|
{
|
|
|
|
tmp = g_strconcat ("${gimp_dir}",
|
2014-07-01 07:19:35 +08:00
|
|
|
path + strlen (gimp_dir),
|
2009-11-08 04:14:56 +08:00
|
|
|
NULL);
|
2023-07-21 00:36:27 +08:00
|
|
|
collection = g_filename_to_utf8 (tmp, -1, NULL, NULL, NULL);
|
2009-11-08 04:14:56 +08:00
|
|
|
g_free (tmp);
|
|
|
|
}
|
2018-04-29 06:32:21 +08:00
|
|
|
else if (g_str_has_prefix (path, MYPAINT_BRUSHES_DIR))
|
|
|
|
{
|
|
|
|
tmp = g_strconcat ("${mypaint_brushes_dir}",
|
|
|
|
path + strlen (MYPAINT_BRUSHES_DIR),
|
|
|
|
NULL);
|
2023-07-21 00:36:27 +08:00
|
|
|
collection = g_filename_to_utf8 (tmp, -1, NULL, NULL, NULL);
|
2018-04-29 06:32:21 +08:00
|
|
|
g_free (tmp);
|
|
|
|
}
|
2009-11-08 04:14:56 +08:00
|
|
|
else
|
|
|
|
{
|
2023-07-21 00:36:27 +08:00
|
|
|
collection = g_filename_to_utf8 (path, -1,
|
2009-11-08 04:14:56 +08:00
|
|
|
NULL, NULL, NULL);
|
|
|
|
}
|
2008-12-13 19:58:24 +08:00
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
if (! collection)
|
2008-12-13 19:58:24 +08:00
|
|
|
{
|
2016-11-16 22:30:44 +08:00
|
|
|
g_printerr ("%s: failed to convert '%s' to utf8.\n",
|
|
|
|
G_STRFUNC, path);
|
2023-07-21 00:36:27 +08:00
|
|
|
collection = g_strdup (path);
|
2008-12-13 19:58:24 +08:00
|
|
|
}
|
2014-07-01 07:19:35 +08:00
|
|
|
|
|
|
|
g_free (path);
|
2008-12-13 19:58:24 +08:00
|
|
|
}
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
else if (private->image)
|
|
|
|
{
|
|
|
|
collection = g_strdup_printf ("[image-id-%d]", gimp_image_get_id (private->image));
|
|
|
|
}
|
2009-11-01 01:48:38 +08:00
|
|
|
else if (private->internal)
|
2008-12-13 19:58:24 +08:00
|
|
|
{
|
2023-07-21 00:36:27 +08:00
|
|
|
collection = g_strdup (private->collection);
|
2008-12-13 19:58:24 +08:00
|
|
|
}
|
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
return collection;
|
2008-12-13 19:58:24 +08:00
|
|
|
}
|
|
|
|
|
2023-05-31 22:12:04 +08:00
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
gint
|
|
|
|
gimp_data_get_id (GimpData *data)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), -1);
|
|
|
|
|
|
|
|
return GIMP_DATA_GET_PRIVATE (data)->ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
GimpData *
|
|
|
|
gimp_data_get_by_id (gint data_id)
|
|
|
|
{
|
|
|
|
return (GimpData *) gimp_id_table_lookup (data_id_table, data_id);
|
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_save:
|
|
|
|
* @data: object whose contents are to be saved.
|
2004-07-16 18:07:30 +08:00
|
|
|
* @error: return location for errors or %NULL
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
2014-07-01 07:19:35 +08:00
|
|
|
* Save the object. If the object is marked as "internal", nothing
|
|
|
|
* happens. Otherwise, it is saved to disk, using the file name set
|
|
|
|
* by gimp_data_set_file(). If the save is successful, the object is
|
|
|
|
* marked as not dirty. If not, an error message is returned using
|
|
|
|
* the @error argument.
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
2004-07-16 18:07:30 +08:00
|
|
|
* Returns: %TRUE if the object is internal or the save is successful.
|
2004-07-16 03:01:57 +08:00
|
|
|
**/
|
2001-02-11 09:39:24 +08:00
|
|
|
gboolean
|
2002-12-02 21:39:09 +08:00
|
|
|
gimp_data_save (GimpData *data,
|
|
|
|
GError **error)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2009-10-31 22:24:57 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
gboolean success = FALSE;
|
2001-02-11 09:39:24 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
2002-12-02 21:39:09 +08:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-10-31 22:24:57 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
g_return_val_if_fail (private->writable == TRUE, FALSE);
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
if (private->internal || private->image != NULL)
|
2002-06-12 21:48:47 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
private->dirty = FALSE;
|
2002-06-12 21:48:47 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2014-07-26 22:33:40 +08:00
|
|
|
g_return_val_if_fail (G_IS_FILE (private->file), FALSE);
|
2002-12-03 06:41:44 +08:00
|
|
|
|
2002-12-02 21:39:09 +08:00
|
|
|
if (GIMP_DATA_GET_CLASS (data)->save)
|
2014-07-04 05:44:38 +08:00
|
|
|
{
|
|
|
|
GOutputStream *output;
|
|
|
|
|
|
|
|
output = G_OUTPUT_STREAM (g_file_replace (private->file,
|
|
|
|
NULL, FALSE, G_FILE_CREATE_NONE,
|
|
|
|
NULL, error));
|
|
|
|
|
|
|
|
if (output)
|
|
|
|
{
|
|
|
|
success = GIMP_DATA_GET_CLASS (data)->save (data, output, error);
|
|
|
|
|
2014-07-05 00:46:02 +08:00
|
|
|
if (success)
|
|
|
|
{
|
|
|
|
if (! g_output_stream_close (output, NULL, error))
|
|
|
|
{
|
|
|
|
g_prefix_error (error,
|
|
|
|
_("Error saving '%s': "),
|
|
|
|
gimp_file_get_utf8_name (private->file));
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-26 22:40:38 +08:00
|
|
|
GCancellable *cancellable = g_cancellable_new ();
|
|
|
|
|
|
|
|
g_cancellable_cancel (cancellable);
|
|
|
|
if (error && *error)
|
|
|
|
{
|
|
|
|
g_prefix_error (error,
|
|
|
|
_("Error saving '%s': "),
|
|
|
|
gimp_file_get_utf8_name (private->file));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_WRITE,
|
|
|
|
_("Error saving '%s'"),
|
|
|
|
gimp_file_get_utf8_name (private->file));
|
|
|
|
}
|
|
|
|
g_output_stream_close (output, cancellable, NULL);
|
|
|
|
g_object_unref (cancellable);
|
2014-07-04 05:44:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (output);
|
|
|
|
}
|
|
|
|
}
|
2001-02-11 09:39:24 +08:00
|
|
|
|
|
|
|
if (success)
|
2005-10-31 19:29:01 +08:00
|
|
|
{
|
2014-07-01 07:19:35 +08:00
|
|
|
GFileInfo *info = g_file_query_info (private->file,
|
|
|
|
G_FILE_ATTRIBUTE_TIME_MODIFIED,
|
2013-08-04 22:51:31 +08:00
|
|
|
G_FILE_QUERY_INFO_NONE,
|
|
|
|
NULL, NULL);
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
private->mtime =
|
|
|
|
g_file_info_get_attribute_uint64 (info,
|
|
|
|
G_FILE_ATTRIBUTE_TIME_MODIFIED);
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
2005-10-31 19:29:01 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private->dirty = FALSE;
|
2005-10-31 19:29:01 +08:00
|
|
|
}
|
2001-02-11 09:39:24 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_dirty:
|
2004-07-16 18:07:30 +08:00
|
|
|
* @data: a #GimpData object.
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
2004-07-16 18:07:30 +08:00
|
|
|
* Marks @data as dirty. Unless the object is frozen, this causes
|
|
|
|
* its preview to be invalidated, and emits a "dirty" signal. If the
|
|
|
|
* object is frozen, the function has no effect.
|
2004-07-16 03:01:57 +08:00
|
|
|
**/
|
2001-02-11 09:39:24 +08:00
|
|
|
void
|
|
|
|
gimp_data_dirty (GimpData *data)
|
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
if (private->freeze_count == 0)
|
2004-06-13 06:13:31 +08:00
|
|
|
g_signal_emit (data, data_signals[DIRTY], 0);
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
void
|
|
|
|
gimp_data_clean (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
private->dirty = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_data_is_dirty (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->dirty;
|
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_freeze:
|
2004-07-16 18:07:30 +08:00
|
|
|
* @data: a #GimpData object.
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
|
|
|
* Increments the freeze count for the object. A positive freeze count
|
|
|
|
* prevents the object from being treated as dirty. Any call to this
|
|
|
|
* function must be followed eventually by a call to gimp_data_thaw().
|
|
|
|
**/
|
2004-06-13 06:13:31 +08:00
|
|
|
void
|
|
|
|
gimp_data_freeze (GimpData *data)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
2004-06-13 06:13:31 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
2001-02-12 11:27:28 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
private->freeze_count++;
|
2004-06-13 06:13:31 +08:00
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_thaw:
|
2004-07-16 18:07:30 +08:00
|
|
|
* @data: a #GimpData object.
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
|
|
|
* Decrements the freeze count for the object. If the freeze count
|
|
|
|
* drops to zero, the object is marked as dirty, and the "dirty"
|
|
|
|
* signal is emitted. It is an error to call this function without
|
|
|
|
* having previously called gimp_data_freeze().
|
|
|
|
**/
|
2004-06-13 06:13:31 +08:00
|
|
|
void
|
|
|
|
gimp_data_thaw (GimpData *data)
|
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
2004-06-13 06:13:31 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
2004-06-13 06:13:31 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
g_return_if_fail (private->freeze_count > 0);
|
|
|
|
|
|
|
|
private->freeze_count--;
|
|
|
|
|
|
|
|
if (private->freeze_count == 0)
|
2004-06-13 06:13:31 +08:00
|
|
|
gimp_data_dirty (data);
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
gboolean
|
|
|
|
gimp_data_is_frozen (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->freeze_count > 0;
|
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_delete_from_disk:
|
|
|
|
* @data: a #GimpData object.
|
2004-07-16 18:07:30 +08:00
|
|
|
* @error: return location for errors or %NULL
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
|
|
|
* Deletes the object from disk. If the object is marked as "internal",
|
|
|
|
* nothing happens. Otherwise, if the file exists whose name has been
|
2014-07-01 07:19:35 +08:00
|
|
|
* set by gimp_data_set_file(), it is deleted. Obviously this is
|
2004-07-16 03:01:57 +08:00
|
|
|
* a potentially dangerous function, which should be used with care.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the object is internal to Gimp, or the deletion is
|
|
|
|
* successful.
|
|
|
|
**/
|
2001-02-11 09:39:24 +08:00
|
|
|
gboolean
|
2002-10-31 02:46:29 +08:00
|
|
|
gimp_data_delete_from_disk (GimpData *data,
|
|
|
|
GError **error)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2009-10-31 22:24:57 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
2002-10-31 02:46:29 +08:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-10-31 22:24:57 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
g_return_val_if_fail (private->file != NULL, FALSE);
|
2009-11-01 01:48:38 +08:00
|
|
|
g_return_val_if_fail (private->deletable == TRUE, FALSE);
|
2009-10-31 22:24:57 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
if (private->internal)
|
2002-06-12 21:48:47 +08:00
|
|
|
return TRUE;
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
return g_file_delete (private->file, NULL, error);
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2001-02-14 03:53:07 +08:00
|
|
|
const gchar *
|
|
|
|
gimp_data_get_extension (GimpData *data)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), NULL);
|
|
|
|
|
2002-12-02 21:39:09 +08:00
|
|
|
if (GIMP_DATA_GET_CLASS (data)->get_extension)
|
|
|
|
return GIMP_DATA_GET_CLASS (data)->get_extension (data);
|
2001-02-14 03:53:07 +08:00
|
|
|
|
2002-12-02 21:39:09 +08:00
|
|
|
return NULL;
|
2001-02-14 03:53:07 +08:00
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
2014-07-01 07:19:35 +08:00
|
|
|
* gimp_data_set_file:
|
2004-07-16 03:01:57 +08:00
|
|
|
* @data: A #GimpData object
|
2014-07-01 07:19:35 +08:00
|
|
|
* @file: File to assign to @data.
|
2004-07-16 03:01:57 +08:00
|
|
|
* @writable: %TRUE if we want to be able to write to this file.
|
2004-10-04 17:39:27 +08:00
|
|
|
* @deletable: %TRUE if we want to be able to delete this file.
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
2014-07-01 07:19:35 +08:00
|
|
|
* This function assigns a file to @data, and sets some flags
|
2004-07-16 03:01:57 +08:00
|
|
|
* according to the properties of the file. If @writable is %TRUE,
|
2014-07-01 07:19:35 +08:00
|
|
|
* and the user has permission to write or overwrite the requested
|
|
|
|
* file name, and a "save" method exists for @data's object type, then
|
2004-07-16 18:07:30 +08:00
|
|
|
* @data is marked as writable.
|
2004-07-16 03:01:57 +08:00
|
|
|
**/
|
2001-02-11 09:39:24 +08:00
|
|
|
void
|
2014-07-01 07:19:35 +08:00
|
|
|
gimp_data_set_file (GimpData *data,
|
|
|
|
GFile *file,
|
|
|
|
gboolean writable,
|
|
|
|
gboolean deletable)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2009-10-31 22:24:57 +08:00
|
|
|
GimpDataPrivate *private;
|
2014-07-01 07:19:35 +08:00
|
|
|
gchar *path;
|
2009-10-31 22:24:57 +08:00
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
2014-07-01 07:19:35 +08:00
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
path = g_file_get_path (file);
|
|
|
|
|
|
|
|
g_return_if_fail (path != NULL);
|
|
|
|
g_return_if_fail (g_path_is_absolute (path));
|
|
|
|
|
|
|
|
g_free (path);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-10-31 22:24:57 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
if (private->internal)
|
2002-06-12 21:48:47 +08:00
|
|
|
return;
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
g_return_if_fail (private->image == NULL);
|
|
|
|
|
2018-06-01 18:59:52 +08:00
|
|
|
g_set_object (&private->file, file);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private->writable = FALSE;
|
|
|
|
private->deletable = FALSE;
|
2003-02-27 02:08:26 +08:00
|
|
|
|
2004-10-04 17:39:27 +08:00
|
|
|
/* if the data is supposed to be writable or deletable,
|
|
|
|
* still check if it really is
|
|
|
|
*/
|
|
|
|
if (writable || deletable)
|
2003-02-27 02:08:26 +08:00
|
|
|
{
|
2014-07-01 07:19:35 +08:00
|
|
|
GFileInfo *info;
|
2003-02-27 02:08:26 +08:00
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
if (g_file_query_exists (private->file, NULL)) /* check if it exists */
|
2003-02-27 02:08:26 +08:00
|
|
|
{
|
2014-07-01 07:19:35 +08:00
|
|
|
info = g_file_query_info (private->file,
|
|
|
|
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE,
|
|
|
|
G_FILE_QUERY_INFO_NONE,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
/* and we can write it */
|
2014-07-21 03:40:57 +08:00
|
|
|
if (info)
|
2014-07-01 07:19:35 +08:00
|
|
|
{
|
2014-07-21 03:40:57 +08:00
|
|
|
if (g_file_info_get_attribute_boolean (info,
|
|
|
|
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE))
|
|
|
|
{
|
|
|
|
private->writable = writable ? TRUE : FALSE;
|
|
|
|
private->deletable = deletable ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (info);
|
2014-07-01 07:19:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* OR it doesn't exist */
|
|
|
|
{
|
|
|
|
GFile *parent = g_file_get_parent (private->file);
|
|
|
|
|
|
|
|
info = g_file_query_info (parent,
|
|
|
|
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE,
|
|
|
|
G_FILE_QUERY_INFO_NONE,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
/* and we can write to its parent directory */
|
2014-07-21 03:40:57 +08:00
|
|
|
if (info)
|
2014-07-01 07:19:35 +08:00
|
|
|
{
|
2014-07-21 03:40:57 +08:00
|
|
|
if (g_file_info_get_attribute_boolean (info,
|
|
|
|
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE))
|
|
|
|
{
|
|
|
|
private->writable = writable ? TRUE : FALSE;
|
|
|
|
private->deletable = deletable ? TRUE : FALSE;
|
|
|
|
}
|
2014-07-26 22:52:56 +08:00
|
|
|
|
|
|
|
g_object_unref (info);
|
2014-07-01 07:19:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (parent);
|
2003-02-27 02:08:26 +08:00
|
|
|
}
|
2004-02-06 06:17:14 +08:00
|
|
|
|
|
|
|
/* if we can't save, we are not writable */
|
|
|
|
if (! GIMP_DATA_GET_CLASS (data)->save)
|
2009-11-01 01:48:38 +08:00
|
|
|
private->writable = FALSE;
|
2003-02-27 02:08:26 +08:00
|
|
|
}
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
GFile *
|
|
|
|
gimp_data_get_file (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), NULL);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->file;
|
|
|
|
}
|
|
|
|
|
app, libgimp, pdb: new gimp_image_get_palette().
This is meant to replace gimp_image_get_colormap() (see also #9477).
We likely won't need a gimp_image_set_palette() because we can simply edit the
image's colormap/palette with GimpPalette API now and it is directly updated.
For instance, the following code changes the first entry in the image palette to
red, immediately:
```python
i = Gimp.list_images()[0]
p = i.get_palette()
c = Gimp.RGB()
c.r = 1.0
p.entry_set_color(0, c)
```
For this to work fine, I added a new concept to GimpData, which is that they can
be tied to a GimpImage (instead of a GFile). Image palettes are not considered
internals, they are just tied to their image, therefore they can be edited by
scripts/plug-ins.
Additionally with this commit, editing an image's colormap from libgimp API also
generates undo steps now.
2023-10-06 22:16:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_set_image:
|
|
|
|
* @data: A #GimpData object
|
|
|
|
* @image: Image to assign to @data.
|
|
|
|
* @writable: %TRUE if we want to be able to write to this file.
|
|
|
|
* @deletable: %TRUE if we want to be able to delete this file.
|
|
|
|
*
|
|
|
|
* This function assigns an image to @data. This can only be done if no file has
|
|
|
|
* been assigned (a non-internal data can be attached either to a file or to an
|
|
|
|
* image).
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gimp_data_set_image (GimpData *data,
|
|
|
|
GimpImage *image,
|
|
|
|
gboolean writable,
|
|
|
|
gboolean deletable)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (image));
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
if (private->internal)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_return_if_fail (private->file == NULL);
|
|
|
|
|
|
|
|
g_set_object (&private->image, image);
|
|
|
|
|
|
|
|
private->writable = writable ? TRUE : FALSE;
|
|
|
|
private->deletable = deletable ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GimpImage *
|
|
|
|
gimp_data_get_image (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), NULL);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->image;
|
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_create_filename:
|
|
|
|
* @data: a #Gimpdata object.
|
|
|
|
* @dest_dir: directory in which to create a file name.
|
|
|
|
*
|
|
|
|
* This function creates a unique file name to be used for saving
|
|
|
|
* a representation of @data in the directory @dest_dir. If the
|
|
|
|
* user does not have write permission in @dest_dir, then @data
|
|
|
|
* is marked as "not writable", so you should check on this before
|
|
|
|
* assuming that @data can be saved.
|
|
|
|
**/
|
2001-02-11 09:39:24 +08:00
|
|
|
void
|
2014-07-26 22:37:30 +08:00
|
|
|
gimp_data_create_filename (GimpData *data,
|
|
|
|
GFile *dest_dir)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
gchar *safename;
|
2014-07-01 07:19:35 +08:00
|
|
|
gchar *basename;
|
|
|
|
GFile *file;
|
2009-11-01 01:48:38 +08:00
|
|
|
gint i;
|
|
|
|
gint unum = 1;
|
|
|
|
GError *error = NULL;
|
2001-02-11 09:39:24 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
2014-07-26 22:37:30 +08:00
|
|
|
g_return_if_fail (G_IS_FILE (dest_dir));
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
if (private->internal)
|
2005-04-04 23:14:50 +08:00
|
|
|
return;
|
|
|
|
|
2014-07-26 22:37:30 +08:00
|
|
|
safename = g_strstrip (g_strdup (gimp_object_get_name (data)));
|
2011-04-14 03:25:10 +08:00
|
|
|
|
2004-07-06 02:10:05 +08:00
|
|
|
if (safename[0] == '.')
|
|
|
|
safename[0] = '-';
|
|
|
|
|
|
|
|
for (i = 0; safename[i]; i++)
|
2011-04-14 03:25:10 +08:00
|
|
|
if (strchr ("\\/*?\"`'<>{}|\n\t ;:$^&", safename[i]))
|
2004-07-06 02:10:05 +08:00
|
|
|
safename[i] = '-';
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
basename = g_strconcat (safename, gimp_data_get_extension (data), NULL);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2014-07-26 22:37:30 +08:00
|
|
|
file = g_file_get_child_for_display_name (dest_dir, basename, &error);
|
2014-07-01 07:19:35 +08:00
|
|
|
g_free (basename);
|
2001-10-24 23:56:33 +08:00
|
|
|
|
2014-07-26 22:37:30 +08:00
|
|
|
if (! file)
|
2001-02-11 09:39:24 +08:00
|
|
|
{
|
2014-07-26 22:37:30 +08:00
|
|
|
g_warning ("gimp_data_create_filename:\n"
|
|
|
|
"g_file_get_child_for_display_name() failed for '%s': %s",
|
|
|
|
gimp_object_get_name (data), error->message);
|
|
|
|
g_clear_error (&error);
|
|
|
|
g_free (safename);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (g_file_query_exists (file, NULL))
|
|
|
|
{
|
|
|
|
g_object_unref (file);
|
2001-10-24 23:56:33 +08:00
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
basename = g_strdup_printf ("%s-%d%s",
|
2004-07-16 03:01:57 +08:00
|
|
|
safename,
|
2002-12-02 21:39:09 +08:00
|
|
|
unum++,
|
2004-07-16 03:01:57 +08:00
|
|
|
gimp_data_get_extension (data));
|
2001-10-24 23:56:33 +08:00
|
|
|
|
2014-07-26 22:37:30 +08:00
|
|
|
file = g_file_get_child_for_display_name (dest_dir, basename, NULL);
|
2014-07-01 07:19:35 +08:00
|
|
|
g_free (basename);
|
2001-02-11 09:39:24 +08:00
|
|
|
}
|
|
|
|
|
2004-07-06 02:10:05 +08:00
|
|
|
g_free (safename);
|
2001-02-11 09:39:24 +08:00
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
gimp_data_set_file (data, file, TRUE, TRUE);
|
2009-10-31 22:24:57 +08:00
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
g_object_unref (file);
|
2009-10-31 22:24:57 +08:00
|
|
|
}
|
|
|
|
|
2012-02-09 17:02:49 +08:00
|
|
|
static const gchar *tag_blacklist[] = { "brushes",
|
|
|
|
"dynamics",
|
|
|
|
"patterns",
|
|
|
|
"palettes",
|
|
|
|
"gradients",
|
|
|
|
"tool-presets" };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_data_set_folder_tags:
|
|
|
|
* @data: a #Gimpdata object.
|
|
|
|
* @top_directory: the top directory of the currently processed data
|
2014-08-02 02:30:45 +08:00
|
|
|
* hierarchy.
|
2012-02-09 17:02:49 +08:00
|
|
|
*
|
|
|
|
* Sets tags based on all folder names below top_directory. So if the
|
2014-08-02 02:30:45 +08:00
|
|
|
* data's filename is e.g.
|
|
|
|
* /home/foo/.config/GIMP/X.Y/brushes/Flowers/Roses/rose.gbr, it will
|
|
|
|
* add "Flowers" and "Roses" tags.
|
2012-02-09 17:02:49 +08:00
|
|
|
*
|
|
|
|
* if the top directory (as passed, or as derived from the data's
|
|
|
|
* filename) does not end with one of the default data directory names
|
|
|
|
* (brushes, patterns etc), its name will be added as tag too.
|
|
|
|
**/
|
|
|
|
void
|
2014-08-02 02:30:45 +08:00
|
|
|
gimp_data_set_folder_tags (GimpData *data,
|
|
|
|
GFile *top_directory)
|
2012-02-09 17:02:49 +08:00
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
2014-08-02 02:30:45 +08:00
|
|
|
gchar *tmp;
|
2012-02-09 17:02:49 +08:00
|
|
|
gchar *dirname;
|
2014-08-02 02:30:45 +08:00
|
|
|
gchar *top_path;
|
2012-02-09 17:02:49 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
2014-08-02 02:30:45 +08:00
|
|
|
g_return_if_fail (G_IS_FILE (top_directory));
|
2012-02-09 17:02:49 +08:00
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
if (private->internal)
|
|
|
|
return;
|
|
|
|
|
2014-07-01 07:19:35 +08:00
|
|
|
g_return_if_fail (private->file != NULL);
|
2012-02-09 17:02:49 +08:00
|
|
|
|
2014-08-02 02:30:45 +08:00
|
|
|
tmp = g_file_get_path (private->file);
|
|
|
|
dirname = g_path_get_dirname (tmp);
|
|
|
|
g_free (tmp);
|
|
|
|
|
|
|
|
top_path = g_file_get_path (top_directory);
|
|
|
|
|
|
|
|
g_return_if_fail (g_str_has_prefix (dirname, top_path));
|
2012-02-09 17:02:49 +08:00
|
|
|
|
2014-08-02 02:30:45 +08:00
|
|
|
/* walk up the hierarchy and set each folder on the way as tag,
|
|
|
|
* except the top_directory
|
2012-02-09 17:02:49 +08:00
|
|
|
*/
|
2014-08-02 02:30:45 +08:00
|
|
|
while (strcmp (dirname, top_path))
|
2012-02-09 17:02:49 +08:00
|
|
|
{
|
2014-08-02 02:30:45 +08:00
|
|
|
gchar *basename = g_path_get_basename (dirname);
|
|
|
|
GimpTag *tag = gimp_tag_new (basename);
|
2012-02-10 22:17:09 +08:00
|
|
|
|
2014-08-02 02:30:45 +08:00
|
|
|
gimp_tag_set_internal (tag, TRUE);
|
|
|
|
gimp_tagged_add_tag (GIMP_TAGGED (data), tag);
|
|
|
|
g_object_unref (tag);
|
|
|
|
g_free (basename);
|
2012-02-10 22:17:09 +08:00
|
|
|
|
2014-08-02 02:30:45 +08:00
|
|
|
tmp = g_path_get_dirname (dirname);
|
|
|
|
g_free (dirname);
|
|
|
|
dirname = tmp;
|
2012-02-09 17:02:49 +08:00
|
|
|
}
|
|
|
|
|
2014-08-02 02:30:45 +08:00
|
|
|
g_free (top_path);
|
|
|
|
|
2012-02-09 17:02:49 +08:00
|
|
|
if (dirname)
|
|
|
|
{
|
|
|
|
gchar *basename = g_path_get_basename (dirname);
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (tag_blacklist); i++)
|
|
|
|
{
|
|
|
|
if (! strcmp (basename, tag_blacklist[i]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == G_N_ELEMENTS (tag_blacklist))
|
|
|
|
{
|
|
|
|
GimpTag *tag = gimp_tag_new (basename);
|
|
|
|
|
|
|
|
gimp_tag_set_internal (tag, TRUE);
|
|
|
|
gimp_tagged_add_tag (GIMP_TAGGED (data), tag);
|
|
|
|
g_object_unref (tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (basename);
|
|
|
|
g_free (dirname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-26 07:25:45 +08:00
|
|
|
const gchar *
|
|
|
|
gimp_data_get_mime_type (GimpData *data)
|
|
|
|
{
|
2009-11-01 01:48:38 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
2005-05-26 07:25:45 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), NULL);
|
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return g_quark_to_string (private->mime_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_data_is_writable (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->writable;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_data_is_deletable (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->deletable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_data_set_mtime (GimpData *data,
|
2013-07-12 22:33:12 +08:00
|
|
|
gint64 mtime)
|
2009-11-01 01:48:38 +08:00
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
private->mtime = mtime;
|
|
|
|
}
|
|
|
|
|
2013-07-12 22:33:12 +08:00
|
|
|
gint64
|
2009-11-01 01:48:38 +08:00
|
|
|
gimp_data_get_mtime (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), 0);
|
|
|
|
|
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->mtime;
|
2005-05-26 07:25:45 +08:00
|
|
|
}
|
|
|
|
|
2017-11-05 09:47:08 +08:00
|
|
|
gboolean
|
|
|
|
gimp_data_is_copyable (GimpData *data)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
|
|
|
|
|
|
|
return GIMP_DATA_GET_CLASS (data)->copy != NULL;
|
|
|
|
}
|
|
|
|
|
2017-07-27 01:42:21 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_copy:
|
|
|
|
* @data: a #GimpData object
|
|
|
|
* @src_data: the #GimpData object to copy from
|
|
|
|
*
|
|
|
|
* Copies @src_data to @data. Only the object data is copied: the
|
|
|
|
* name, file name, preview, etc. are not copied.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gimp_data_copy (GimpData *data,
|
|
|
|
GimpData *src_data)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
g_return_if_fail (GIMP_IS_DATA (src_data));
|
|
|
|
g_return_if_fail (GIMP_DATA_GET_CLASS (data)->copy != NULL);
|
|
|
|
g_return_if_fail (GIMP_DATA_GET_CLASS (data)->copy ==
|
|
|
|
GIMP_DATA_GET_CLASS (src_data)->copy);
|
|
|
|
|
|
|
|
if (data != src_data)
|
|
|
|
GIMP_DATA_GET_CLASS (data)->copy (data, src_data);
|
|
|
|
}
|
|
|
|
|
2017-11-05 09:47:08 +08:00
|
|
|
gboolean
|
|
|
|
gimp_data_is_duplicatable (GimpData *data)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
|
|
|
|
|
|
|
if (GIMP_DATA_GET_CLASS (data)->duplicate == gimp_data_real_duplicate)
|
|
|
|
return gimp_data_is_copyable (data);
|
|
|
|
else
|
|
|
|
return GIMP_DATA_GET_CLASS (data)->duplicate != NULL;
|
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_duplicate:
|
2005-06-08 19:27:31 +08:00
|
|
|
* @data: a #GimpData object
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
|
|
|
* Creates a copy of @data, if possible. Only the object data is
|
2004-07-16 18:07:30 +08:00
|
|
|
* copied: the newly created object is not automatically given an
|
2004-07-16 03:01:57 +08:00
|
|
|
* object name, file name, preview, etc.
|
|
|
|
*
|
2019-08-03 06:36:59 +08:00
|
|
|
* Returns: (nullable) (transfer full): the newly created copy, or %NULL if
|
|
|
|
* @data cannot be copied.
|
2004-07-16 03:01:57 +08:00
|
|
|
**/
|
2001-02-14 22:57:14 +08:00
|
|
|
GimpData *
|
2005-06-08 19:27:31 +08:00
|
|
|
gimp_data_duplicate (GimpData *data)
|
2001-02-14 22:57:14 +08:00
|
|
|
{
|
2002-12-02 21:39:09 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), NULL);
|
|
|
|
|
2017-11-05 09:47:08 +08:00
|
|
|
if (gimp_data_is_duplicatable (data))
|
2011-02-08 02:38:23 +08:00
|
|
|
{
|
|
|
|
GimpData *new = GIMP_DATA_GET_CLASS (data)->duplicate (data);
|
|
|
|
GimpDataPrivate *private = GIMP_DATA_GET_PRIVATE (new);
|
|
|
|
|
|
|
|
g_object_set (new,
|
|
|
|
"name", NULL,
|
|
|
|
"writable", GIMP_DATA_GET_CLASS (new)->save != NULL,
|
|
|
|
"deletable", TRUE,
|
|
|
|
NULL);
|
|
|
|
|
2017-07-16 00:38:01 +08:00
|
|
|
g_clear_object (&private->file);
|
2011-02-08 02:38:23 +08:00
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
2004-02-13 19:53:22 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-02-14 22:57:14 +08:00
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_make_internal:
|
2023-07-21 00:36:27 +08:00
|
|
|
* @data: a #GimpData object.
|
|
|
|
* @collection: internal collection title @data belongs to.
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
2004-07-16 18:07:30 +08:00
|
|
|
* Mark @data as "internal" to Gimp, which means that it will not be
|
|
|
|
* saved to disk. Note that if you do this, later calls to
|
|
|
|
* gimp_data_save() and gimp_data_delete_from_disk() will
|
|
|
|
* automatically return successfully without giving any warning.
|
2008-12-12 15:03:42 +08:00
|
|
|
*
|
2023-07-21 00:36:27 +08:00
|
|
|
* The @collection shall be an untranslated globally unique string
|
|
|
|
* that identifies the internal object collection across sessions.
|
2004-07-16 03:01:57 +08:00
|
|
|
**/
|
2004-02-13 19:53:22 +08:00
|
|
|
void
|
2009-11-01 01:48:38 +08:00
|
|
|
gimp_data_make_internal (GimpData *data,
|
2023-07-21 00:36:27 +08:00
|
|
|
const gchar *collection)
|
2004-02-13 19:53:22 +08:00
|
|
|
{
|
2009-10-31 22:24:57 +08:00
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
2004-02-13 19:53:22 +08:00
|
|
|
g_return_if_fail (GIMP_IS_DATA (data));
|
|
|
|
|
2009-10-31 22:24:57 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
2017-07-16 00:38:01 +08:00
|
|
|
g_clear_object (&private->file);
|
2004-01-29 05:53:50 +08:00
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
g_free (private->collection);
|
|
|
|
private->collection = g_strdup (collection);
|
2018-06-04 04:43:55 +08:00
|
|
|
|
|
|
|
private->writable = FALSE;
|
|
|
|
private->deletable = FALSE;
|
|
|
|
private->internal = TRUE;
|
2009-11-01 01:48:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_data_is_internal (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpDataPrivate *private;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data), FALSE);
|
2008-12-12 15:03:42 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
private = GIMP_DATA_GET_PRIVATE (data);
|
|
|
|
|
|
|
|
return private->internal;
|
2002-12-02 21:39:09 +08:00
|
|
|
}
|
|
|
|
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
2008-07-10 17:08:54 +08:00
|
|
|
* gimp_data_compare:
|
2004-07-16 03:01:57 +08:00
|
|
|
* @data1: a #GimpData object.
|
|
|
|
* @data2: another #GimpData object.
|
|
|
|
*
|
2008-07-10 17:08:54 +08:00
|
|
|
* Compares two data objects for use in sorting. Objects marked as
|
|
|
|
* "internal" come first, then user-writable objects, then system data
|
|
|
|
* files. In these three groups, the objects are sorted alphabetically
|
|
|
|
* by name, using gimp_object_name_collate().
|
2004-07-16 03:01:57 +08:00
|
|
|
*
|
2019-08-03 06:10:14 +08:00
|
|
|
* Returns: -1 if @data1 compares before @data2,
|
2004-07-16 03:01:57 +08:00
|
|
|
* 0 if they compare equal,
|
|
|
|
* 1 if @data1 compares after @data2.
|
|
|
|
**/
|
2004-05-24 18:49:34 +08:00
|
|
|
gint
|
2008-07-10 17:08:54 +08:00
|
|
|
gimp_data_compare (GimpData *data1,
|
2016-11-25 12:51:03 +08:00
|
|
|
GimpData *data2)
|
2004-05-24 18:49:34 +08:00
|
|
|
{
|
2017-07-27 02:17:59 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data1), 0);
|
|
|
|
g_return_val_if_fail (GIMP_IS_DATA (data2), 0);
|
|
|
|
g_return_val_if_fail (GIMP_DATA_GET_CLASS (data1)->compare ==
|
|
|
|
GIMP_DATA_GET_CLASS (data2)->compare, 0);
|
2004-05-24 18:49:34 +08:00
|
|
|
|
2017-07-27 02:17:59 +08:00
|
|
|
return GIMP_DATA_GET_CLASS (data1)->compare (data1, data2);
|
2004-05-24 18:49:34 +08:00
|
|
|
}
|
|
|
|
|
2023-07-21 00:36:27 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_identify:
|
|
|
|
* @data: a #GimpData object.
|
|
|
|
* @name: name of the #GimpData object.
|
|
|
|
* @collection: text uniquely identifying the collection @data belongs to.
|
|
|
|
* @is_internal: whether this is internal data.
|
|
|
|
*
|
|
|
|
* Determine whether (@name, @collection, @is_internal) uniquely identify @data.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the triplet identifies @data, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gimp_data_identify (GimpData *data,
|
|
|
|
const gchar *name,
|
|
|
|
const gchar *collection,
|
|
|
|
gboolean is_internal)
|
|
|
|
{
|
|
|
|
gchar *current_collection = gimp_data_get_collection (data);
|
|
|
|
gboolean identified;
|
|
|
|
|
|
|
|
identified = (is_internal == gimp_data_is_internal (data) &&
|
|
|
|
g_strcmp0 (collection, current_collection) == 0 &&
|
|
|
|
g_strcmp0 (name, gimp_object_get_name (GIMP_OBJECT (data))) == 0);
|
|
|
|
|
|
|
|
g_free (current_collection);
|
|
|
|
|
|
|
|
return identified;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_data_get_identifiers:
|
|
|
|
* @data: a #GimpData object.
|
|
|
|
* @name: name of the #GimpData object.
|
|
|
|
* @collection: text uniquely identifying the collection @data belongs to.
|
|
|
|
* @is_internal: whether this is internal data.
|
|
|
|
*
|
|
|
|
* Generates a triplet of identifiers which, together, should uniquely identify
|
|
|
|
* this @data.
|
|
|
|
* @name will be the same value as gimp_object_get_name() and @is_internal the
|
|
|
|
* same value as returned by gimp_data_is_internal(), except that it is not
|
|
|
|
* enough because two data from different sources may end up having the same
|
|
|
|
* name. Nevertheless all data names within a single collection of data are
|
|
|
|
* unique. @collection therefore identifies the source collection. And these 3
|
|
|
|
* identifiers together are enough to identify a GimpData.
|
|
|
|
*
|
|
|
|
* Internally the collection will likely be a single file name, therefore
|
|
|
|
* @collection will be constructed from the file name (if it exists, or an
|
|
|
|
* opaque identifier string otherwise, for internal data). Nevertheless you
|
|
|
|
* should not take this for granted and should always use this string as an
|
|
|
|
* opaque identifier only to be reused in gimp_data_identify().
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gimp_data_get_identifiers (GimpData *data,
|
|
|
|
gchar **name,
|
|
|
|
gchar **collection,
|
|
|
|
gboolean *is_internal)
|
|
|
|
{
|
|
|
|
*collection = gimp_data_get_collection (data);
|
|
|
|
*name = g_strdup (gimp_object_get_name (GIMP_OBJECT (data)));
|
|
|
|
*is_internal = gimp_data_is_internal (data);
|
|
|
|
}
|
2004-07-16 03:01:57 +08:00
|
|
|
/**
|
|
|
|
* gimp_data_error_quark:
|
|
|
|
*
|
2004-07-16 18:07:30 +08:00
|
|
|
* This function is used to implement the GIMP_DATA_ERROR macro. It
|
|
|
|
* shouldn't be called directly.
|
|
|
|
*
|
2019-08-03 06:10:14 +08:00
|
|
|
* Returns: the #GQuark to identify error in the GimpData error domain.
|
2004-07-16 03:01:57 +08:00
|
|
|
**/
|
2002-12-02 21:39:09 +08:00
|
|
|
GQuark
|
|
|
|
gimp_data_error_quark (void)
|
|
|
|
{
|
2006-04-06 20:07:18 +08:00
|
|
|
return g_quark_from_static_string ("gimp-data-error-quark");
|
2001-02-14 22:57:14 +08:00
|
|
|
}
|