1998-07-12 19:40:43 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
2000-09-29 20:00:00 +08:00
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
1998-07-12 19:40:43 +08:00
|
|
|
*
|
2001-04-22 08:38:56 +08:00
|
|
|
* gimplist.c
|
|
|
|
* Copyright (C) 2001 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
1998-07-12 19:40:43 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2000-09-29 20:00:00 +08:00
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-04-06 19:21:56 +08:00
|
|
|
#include <stdlib.h>
|
2001-03-17 03:14:04 +08:00
|
|
|
#include <string.h> /* strcmp */
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
#include <glib-object.h>
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core-types.h"
|
2000-12-17 05:37:03 +08:00
|
|
|
|
Jens Lautenbacher <jtl@gimp.org>
2000-12-18 Sven Neumann <sven@gimp.org>
Jens Lautenbacher <jtl@gimp.org>
* app/Makefile.am
* app/gimpbrushlistP.h
* app/gimpbrushpipeP.h
* app/gimpobjectP.h: removed these three files
* app/parasitelistP.h
* app/channels_dialog.c
* app/docindex.c
* app/gimpdrawable.c
* app/gimpdrawableP.h
* app/gimpimage.c
* app/gimpimageP.h
* app/gimplist.[ch]
* app/gimpobject.c
* app/gimpobject.h
* app/gimpsetP.h: changed according to header removal
* app/airbrush.c
* app/brush_select.[ch]
* app/brushes_cmds.c
* app/gimpbrush.[ch]
* app/gimpbrushgenerated.[ch]
* app/gimpbrushlist.[ch]
* app/gimpbrushpipe.[ch]
* app/gimpcontextpreview.c
* app/paint_core.c
* app/paintbrush.c
* app/pencil.c
* tools/pdbgen/pdb/brushes.pdb: Big Brushes Cleanup.
The GimpBrush* object hierarchy and the file formats were broken by
"design". This made it overly difficult to read and write pixmap
brushes and brush pipes, leading to the situation that The GIMP was
not able to read it's very own file formats. Since the GimpBrush
format did support arbitrary color depths, the introduction of a
file format for pixmap brushes was unnecessary.
The GimpBrushPixmap object is dead. GimpBrush has an additional
pixmap temp_buf and handles pixmap brushes transparently. The file
format of pixmap brushes is not any longer a grayscale brush plus
a pattern, but a simple brush with RGBA data. The old brushes can
still be loaded, but the .gpb format is deprecated.
GimpBrushPipe derives from GimpBrush. The fileformat is still a text
header, followed by a number of brushes, but those brushes are stored
in the new GimpBrush format (no pattern anymore). The pipe does not
care about the depth of the contained GimpBrushes, so we get
grayscale BrushPipes for free. Since the brush loader still loads the
old format, old .gih files can also still be loaded.
Since the brushes in the GimpBrushPipe do not any longer contain a
pointer to the pipe object, we do only temporarily switch brushes
in the paint_core routines. This is not very elegant, but the best
we can do without a major redesign.
* app/patterns.[ch]: changed the loader to work with a filedescriptor
instead of a filehandle to make it work with the new brush loading
code.
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl
* plug-ins/common/gih.c: new plug-in that saves GIH files in the
new format (loader will follow soon)
* plug-ins/common/gpb.c: removed since Pixmap Brushes are no longer
supported as a special file format.
* plug-ins/common/gbr.c: load and save brushes in the new brush format
which allows RGBA brushes too.
* plug-ins/common/pat.c: load and save grayscale patterns too
2000-12-18 23:14:08 +08:00
|
|
|
#include "gimplist.h"
|
1998-07-12 19:40:43 +08:00
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
static void gimp_list_class_init (GimpListClass *klass);
|
|
|
|
static void gimp_list_init (GimpList *list);
|
2001-08-12 23:39:23 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
static void gimp_list_dispose (GObject *object);
|
2001-08-12 23:39:23 +08:00
|
|
|
|
2003-08-25 18:49:33 +08:00
|
|
|
static gsize gimp_list_get_memsize (GimpObject *object,
|
|
|
|
gsize *gui_size);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
static void gimp_list_add (GimpContainer *container,
|
|
|
|
GimpObject *object);
|
|
|
|
static void gimp_list_remove (GimpContainer *container,
|
|
|
|
GimpObject *object);
|
|
|
|
static void gimp_list_reorder (GimpContainer *container,
|
|
|
|
GimpObject *object,
|
|
|
|
gint new_index);
|
2003-08-26 05:25:13 +08:00
|
|
|
static void gimp_list_clear (GimpContainer *container);
|
2001-08-11 22:39:19 +08:00
|
|
|
static gboolean gimp_list_have (const GimpContainer *container,
|
|
|
|
const GimpObject *object);
|
|
|
|
static void gimp_list_foreach (const GimpContainer *container,
|
|
|
|
GFunc func,
|
|
|
|
gpointer user_data);
|
|
|
|
static GimpObject * gimp_list_get_child_by_name (const GimpContainer *container,
|
|
|
|
const gchar *name);
|
|
|
|
static GimpObject * gimp_list_get_child_by_index (const GimpContainer *container,
|
|
|
|
gint index);
|
|
|
|
static gint gimp_list_get_child_index (const GimpContainer *container,
|
|
|
|
const GimpObject *object);
|
1998-07-12 19:40:43 +08:00
|
|
|
|
2000-09-29 20:00:00 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
static GimpContainerClass *parent_class = NULL;
|
1998-07-12 19:40:43 +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
|
|
|
GType
|
1999-10-27 02:27:27 +08:00
|
|
|
gimp_list_get_type (void)
|
1998-07-12 19:40:43 +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
|
|
|
static GType list_type = 0;
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-01-10 08:36:54 +08:00
|
|
|
if (! list_type)
|
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
static const GTypeInfo list_info =
|
2001-01-10 08:36:54 +08:00
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
sizeof (GimpListClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_list_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
2001-01-10 08:36:54 +08:00
|
|
|
sizeof (GimpList),
|
2001-08-11 22:39:19 +08:00
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_list_init,
|
2001-01-10 08:36:54 +08:00
|
|
|
};
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
list_type = g_type_register_static (GIMP_TYPE_CONTAINER,
|
2003-08-25 18:49:33 +08:00
|
|
|
"GimpList",
|
2001-08-11 22:39:19 +08:00
|
|
|
&list_info, 0);
|
2001-01-10 08:36:54 +08:00
|
|
|
}
|
1998-07-12 19:40:43 +08:00
|
|
|
|
2001-01-10 08:36:54 +08:00
|
|
|
return list_type;
|
1999-10-27 02:27:27 +08:00
|
|
|
}
|
1998-07-12 19:40:43 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
static void
|
|
|
|
gimp_list_class_init (GimpListClass *klass)
|
1999-10-27 02:27:27 +08:00
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
GObjectClass *object_class;
|
2002-01-31 00:14:26 +08:00
|
|
|
GimpObjectClass *gimp_object_class;
|
2001-02-04 22:10:03 +08:00
|
|
|
GimpContainerClass *container_class;
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
container_class = GIMP_CONTAINER_CLASS (klass);
|
1999-10-27 02:27:27 +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);
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
object_class->dispose = gimp_list_dispose;
|
2001-02-04 22:10:03 +08:00
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
gimp_object_class->get_memsize = gimp_list_get_memsize;
|
|
|
|
|
2001-02-06 01:48:50 +08:00
|
|
|
container_class->add = gimp_list_add;
|
|
|
|
container_class->remove = gimp_list_remove;
|
2001-02-18 05:20:10 +08:00
|
|
|
container_class->reorder = gimp_list_reorder;
|
2003-08-26 05:25:13 +08:00
|
|
|
container_class->clear = gimp_list_clear;
|
2001-02-06 01:48:50 +08:00
|
|
|
container_class->have = gimp_list_have;
|
|
|
|
container_class->foreach = gimp_list_foreach;
|
|
|
|
container_class->get_child_by_name = gimp_list_get_child_by_name;
|
|
|
|
container_class->get_child_by_index = gimp_list_get_child_by_index;
|
|
|
|
container_class->get_child_index = gimp_list_get_child_index;
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-02-04 22:10:03 +08:00
|
|
|
gimp_list_init (GimpList *list)
|
|
|
|
{
|
|
|
|
list->list = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_list_dispose (GObject *object)
|
1999-10-27 02:27:27 +08:00
|
|
|
{
|
2000-09-29 20:00:00 +08:00
|
|
|
GimpList *list;
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
list = GIMP_LIST (object);
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
while (list->list)
|
2003-08-26 05:25:13 +08:00
|
|
|
gimp_container_remove (GIMP_CONTAINER (list), list->list->data);
|
2001-02-04 22:10:03 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
static gsize
|
2003-08-25 18:49:33 +08:00
|
|
|
gimp_list_get_memsize (GimpObject *object,
|
|
|
|
gsize *gui_size)
|
2002-01-31 00:14:26 +08:00
|
|
|
{
|
|
|
|
GimpList *gimp_list;
|
|
|
|
gsize memsize = 0;
|
|
|
|
|
|
|
|
gimp_list = GIMP_LIST (object);
|
|
|
|
|
|
|
|
memsize += (gimp_container_num_children (GIMP_CONTAINER (gimp_list)) *
|
|
|
|
sizeof (GList));
|
|
|
|
|
|
|
|
if (gimp_container_policy (GIMP_CONTAINER (gimp_list)) ==
|
|
|
|
GIMP_CONTAINER_POLICY_STRONG)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = gimp_list->list; list; list = g_list_next (list))
|
2003-08-25 18:49:33 +08:00
|
|
|
memsize += gimp_object_get_memsize (GIMP_OBJECT (list->data), gui_size);
|
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
|
|
|
}
|
|
|
|
|
1998-07-12 19:40:43 +08:00
|
|
|
static void
|
2001-02-04 22:10:03 +08:00
|
|
|
gimp_list_add (GimpContainer *container,
|
|
|
|
GimpObject *object)
|
1998-07-12 19:40:43 +08:00
|
|
|
{
|
2001-02-04 22:10:03 +08:00
|
|
|
GimpList *list;
|
|
|
|
|
|
|
|
list = GIMP_LIST (container);
|
|
|
|
|
|
|
|
list->list = g_list_prepend (list->list, object);
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-02-04 22:10:03 +08:00
|
|
|
gimp_list_remove (GimpContainer *container,
|
|
|
|
GimpObject *object)
|
1998-07-12 19:40:43 +08:00
|
|
|
{
|
2001-02-04 22:10:03 +08:00
|
|
|
GimpList *list;
|
|
|
|
|
|
|
|
list = GIMP_LIST (container);
|
|
|
|
|
|
|
|
list->list = g_list_remove (list->list, object);
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
2001-02-18 05:20:10 +08:00
|
|
|
static void
|
|
|
|
gimp_list_reorder (GimpContainer *container,
|
|
|
|
GimpObject *object,
|
|
|
|
gint new_index)
|
|
|
|
{
|
|
|
|
GimpList *list;
|
|
|
|
|
|
|
|
list = GIMP_LIST (container);
|
|
|
|
|
|
|
|
list->list = g_list_remove (list->list, object);
|
|
|
|
|
|
|
|
if (new_index == -1 || new_index == container->num_children - 1)
|
|
|
|
list->list = g_list_append (list->list, object);
|
|
|
|
else
|
|
|
|
list->list = g_list_insert (list->list, object, new_index);
|
|
|
|
}
|
|
|
|
|
2003-08-26 05:25:13 +08:00
|
|
|
static void
|
|
|
|
gimp_list_clear (GimpContainer *container)
|
|
|
|
{
|
|
|
|
GimpList *list;
|
|
|
|
|
|
|
|
list = GIMP_LIST (container);
|
|
|
|
|
|
|
|
while (list->list)
|
|
|
|
gimp_container_remove (container, list->list->data);
|
|
|
|
}
|
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
static gboolean
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_list_have (const GimpContainer *container,
|
|
|
|
const GimpObject *object)
|
1998-07-12 19:40:43 +08:00
|
|
|
{
|
2001-02-04 22:10:03 +08:00
|
|
|
GimpList *list;
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
list = GIMP_LIST (container);
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
return g_list_find (list->list, object) ? TRUE : FALSE;
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_list_foreach (const GimpContainer *container,
|
|
|
|
GFunc func,
|
|
|
|
gpointer user_data)
|
1998-07-12 19:40:43 +08:00
|
|
|
{
|
2001-02-04 22:10:03 +08:00
|
|
|
GimpList *list;
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
list = GIMP_LIST (container);
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-04 22:10:03 +08:00
|
|
|
g_list_foreach (list->list, func, user_data);
|
|
|
|
}
|
1999-10-27 02:27:27 +08:00
|
|
|
|
2001-02-06 01:48:50 +08:00
|
|
|
static GimpObject *
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_list_get_child_by_name (const GimpContainer *container,
|
|
|
|
const gchar *name)
|
1999-10-27 02:27:27 +08:00
|
|
|
{
|
2001-02-06 01:48:50 +08:00
|
|
|
GimpList *list;
|
2001-02-04 22:10:03 +08:00
|
|
|
GimpObject *object;
|
|
|
|
GList *glist;
|
|
|
|
|
2001-02-06 01:48:50 +08:00
|
|
|
list = GIMP_LIST (container);
|
2001-02-04 22:10:03 +08:00
|
|
|
|
|
|
|
for (glist = list->list; glist; glist = g_list_next (glist))
|
|
|
|
{
|
|
|
|
object = (GimpObject *) glist->data;
|
|
|
|
|
|
|
|
if (! strcmp (object->name, name))
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
2001-02-06 01:48:50 +08:00
|
|
|
static GimpObject *
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_list_get_child_by_index (const GimpContainer *container,
|
|
|
|
gint index)
|
1998-07-12 19:40:43 +08:00
|
|
|
{
|
2001-02-06 01:48:50 +08:00
|
|
|
GimpList *list;
|
|
|
|
GList *glist;
|
2001-02-04 22:10:03 +08:00
|
|
|
|
2001-02-06 01:48:50 +08:00
|
|
|
list = GIMP_LIST (container);
|
2001-02-04 22:10:03 +08:00
|
|
|
|
|
|
|
glist = g_list_nth (list->list, index);
|
|
|
|
|
|
|
|
if (glist)
|
|
|
|
return (GimpObject *) glist->data;
|
|
|
|
|
|
|
|
return NULL;
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
|
|
|
|
2001-02-06 01:48:50 +08:00
|
|
|
static gint
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_list_get_child_index (const GimpContainer *container,
|
|
|
|
const GimpObject *object)
|
1999-10-27 02:27:27 +08:00
|
|
|
{
|
2001-02-06 01:48:50 +08:00
|
|
|
GimpList *list;
|
|
|
|
|
|
|
|
list = GIMP_LIST (container);
|
2001-02-04 22:10:03 +08:00
|
|
|
|
|
|
|
return g_list_index (list->list, (gpointer) object);
|
1998-07-12 19:40:43 +08:00
|
|
|
}
|
2002-06-08 04:23:33 +08:00
|
|
|
|
2003-10-09 21:35:15 +08:00
|
|
|
/**
|
|
|
|
* gimp_list_new:
|
|
|
|
* @children_type: the #GType of objects the list is going to hold
|
|
|
|
* @policy: the #GimpContainerPolicy for the new list
|
|
|
|
*
|
|
|
|
* Creates a new #GimpList object. Since #GimpList is a #GimpContainer
|
|
|
|
* implementation, it holds GimpObjects. Thus @children_type must be
|
|
|
|
* GIMP_TYPE_OBJECT or a type derived from it.
|
|
|
|
*
|
|
|
|
* Return value: a new #GimpList object
|
|
|
|
**/
|
2002-06-08 04:23:33 +08:00
|
|
|
GimpContainer *
|
|
|
|
gimp_list_new (GType children_type,
|
|
|
|
GimpContainerPolicy policy)
|
|
|
|
{
|
|
|
|
GimpList *list;
|
|
|
|
|
2002-10-23 22:55:07 +08:00
|
|
|
g_return_val_if_fail (g_type_is_a (children_type, GIMP_TYPE_OBJECT), NULL);
|
2002-06-08 04:23:33 +08:00
|
|
|
g_return_val_if_fail (policy == GIMP_CONTAINER_POLICY_STRONG ||
|
|
|
|
policy == GIMP_CONTAINER_POLICY_WEAK, NULL);
|
|
|
|
|
|
|
|
list = g_object_new (GIMP_TYPE_LIST,
|
|
|
|
"children_type", children_type,
|
|
|
|
"policy", policy,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
return GIMP_CONTAINER (list);
|
|
|
|
}
|
|
|
|
|
2003-10-09 21:35:15 +08:00
|
|
|
/**
|
|
|
|
* gimp_list_reverse:
|
|
|
|
* @list: a #GimpList
|
|
|
|
*
|
|
|
|
* Reverses the order of elements in a #GimpList.
|
|
|
|
**/
|
2002-06-08 04:23:33 +08:00
|
|
|
void
|
|
|
|
gimp_list_reverse (GimpList *list)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_LIST (list));
|
|
|
|
|
|
|
|
if (GIMP_CONTAINER (list)->num_children > 1)
|
|
|
|
{
|
|
|
|
gimp_container_freeze (GIMP_CONTAINER (list));
|
|
|
|
list->list = g_list_reverse (list->list);
|
|
|
|
gimp_container_thaw (GIMP_CONTAINER (list));
|
|
|
|
}
|
|
|
|
}
|
2003-03-27 22:11:05 +08:00
|
|
|
|
2003-10-09 21:35:15 +08:00
|
|
|
/**
|
|
|
|
* gimp_list_sort:
|
|
|
|
* @list: a #GimpList
|
|
|
|
* @compare_func: a #GCompareFunc
|
|
|
|
*
|
|
|
|
* Sorts the elements of a #GimpList according to the given @compare_func.
|
|
|
|
* See g_list_sort() for a detailed description of this function.
|
|
|
|
**/
|
2003-03-27 22:11:05 +08:00
|
|
|
void
|
|
|
|
gimp_list_sort (GimpList *list,
|
|
|
|
GCompareFunc compare_func)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_LIST (list));
|
|
|
|
g_return_if_fail (compare_func != NULL);
|
|
|
|
|
|
|
|
if (GIMP_CONTAINER (list)->num_children > 1)
|
|
|
|
{
|
|
|
|
gimp_container_freeze (GIMP_CONTAINER (list));
|
|
|
|
list->list = g_list_sort (list->list, compare_func);
|
|
|
|
gimp_container_thaw (GIMP_CONTAINER (list));
|
|
|
|
}
|
|
|
|
}
|
2003-04-06 19:21:56 +08:00
|
|
|
|
2003-10-09 21:35:15 +08:00
|
|
|
/**
|
|
|
|
* gimp_list_sort_by_name:
|
|
|
|
* @list: a #GimpList
|
|
|
|
*
|
|
|
|
* Sorts the #GimpObject elements of a #GimpList by their names.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gimp_list_sort_by_name (GimpList *list)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_LIST (list));
|
|
|
|
|
|
|
|
gimp_list_sort (list, (GCompareFunc) gimp_object_name_collate);
|
|
|
|
}
|
|
|
|
|
2003-11-16 21:54:14 +08:00
|
|
|
/**
|
|
|
|
* gimp_list_uniquefy_name:
|
|
|
|
* @gimp_list: a #GimpList
|
|
|
|
* @object: a #GimpObject
|
|
|
|
* @notify: whether to notify listeners about the name change
|
|
|
|
*
|
|
|
|
* This function ensures that @object has a name that isn't already
|
|
|
|
* used by another object in @gimp_list. If the name of @object needs
|
|
|
|
* to be changed, the value of @notify decides if the "name_changed"
|
|
|
|
* signal should be emitted or if the name should be changed silently.
|
|
|
|
* The latter might be useful under certain circumstances in order to
|
|
|
|
* avoid recursion.
|
|
|
|
**/
|
2003-04-06 19:21:56 +08:00
|
|
|
void
|
|
|
|
gimp_list_uniquefy_name (GimpList *gimp_list,
|
|
|
|
GimpObject *object,
|
2003-11-16 21:54:14 +08:00
|
|
|
gboolean notify)
|
2003-04-06 19:21:56 +08:00
|
|
|
{
|
2003-11-16 21:54:14 +08:00
|
|
|
GList *list;
|
|
|
|
GList *list2;
|
|
|
|
gint unique_ext = 0;
|
|
|
|
gchar *new_name = NULL;
|
|
|
|
gchar *ext;
|
2003-04-06 19:21:56 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_LIST (gimp_list));
|
|
|
|
g_return_if_fail (GIMP_IS_OBJECT (object));
|
|
|
|
|
|
|
|
for (list = gimp_list->list; list; list = g_list_next (list))
|
|
|
|
{
|
2003-11-16 21:54:14 +08:00
|
|
|
GimpObject *object2 = GIMP_OBJECT (list->data);
|
2003-04-06 19:21:56 +08:00
|
|
|
|
|
|
|
if (object != object2 &&
|
|
|
|
strcmp (gimp_object_get_name (GIMP_OBJECT (object)),
|
|
|
|
gimp_object_get_name (GIMP_OBJECT (object2))) == 0)
|
|
|
|
{
|
|
|
|
ext = strrchr (object->name, '#');
|
|
|
|
|
|
|
|
if (ext)
|
|
|
|
{
|
|
|
|
gchar *ext_str;
|
|
|
|
|
|
|
|
unique_ext = atoi (ext + 1);
|
|
|
|
|
|
|
|
ext_str = g_strdup_printf ("%d", unique_ext);
|
|
|
|
|
|
|
|
/* check if the extension really is of the form "#<n>" */
|
|
|
|
if (! strcmp (ext_str, ext + 1))
|
|
|
|
{
|
|
|
|
*ext = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unique_ext = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (ext_str);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unique_ext = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
unique_ext++;
|
|
|
|
|
|
|
|
g_free (new_name);
|
|
|
|
|
|
|
|
new_name = g_strdup_printf ("%s#%d", object->name, unique_ext);
|
|
|
|
|
|
|
|
for (list2 = gimp_list->list; list2; list2 = g_list_next (list2))
|
|
|
|
{
|
|
|
|
object2 = GIMP_OBJECT (list2->data);
|
|
|
|
|
|
|
|
if (object == object2)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (! strcmp (object2->name, new_name))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (list2);
|
|
|
|
|
2003-11-16 21:54:14 +08:00
|
|
|
if (notify)
|
2003-04-06 19:21:56 +08:00
|
|
|
{
|
|
|
|
gimp_object_set_name (object, new_name);
|
|
|
|
g_free (new_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-11-16 21:54:14 +08:00
|
|
|
gimp_object_name_free (object);
|
2003-04-06 19:21:56 +08:00
|
|
|
object->name = new_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|