2001-02-05 01:34:30 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2002-12-02 21:39:09 +08:00
|
|
|
#include <errno.h>
|
2001-02-05 01:34:30 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2001-02-07 09:16:18 +08:00
|
|
|
#include <stdio.h>
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
#include <glib-object.h>
|
2001-02-07 09:16:18 +08:00
|
|
|
|
2001-02-05 01:34:30 +08:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _O_BINARY
|
|
|
|
#define _O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2003-10-16 20:24:58 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core-types.h"
|
2001-02-05 01:34:30 +08:00
|
|
|
|
2002-11-19 04:50:31 +08:00
|
|
|
#include "config/gimpbaseconfig.h"
|
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
#include "base/temp-buf.h"
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
#include "gimpimage.h"
|
2001-02-05 01:34:30 +08:00
|
|
|
#include "gimppattern.h"
|
2001-04-19 08:23:43 +08:00
|
|
|
#include "gimppattern-header.h"
|
2001-05-10 06:34:59 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
|
2001-03-30 19:16:05 +08:00
|
|
|
static void gimp_pattern_class_init (GimpPatternClass *klass);
|
|
|
|
static void gimp_pattern_init (GimpPattern *pattern);
|
2001-08-11 22:39:19 +08:00
|
|
|
|
|
|
|
static void gimp_pattern_finalize (GObject *object);
|
|
|
|
|
2003-11-17 01:51:36 +08:00
|
|
|
static gint64 gimp_pattern_get_memsize (GimpObject *object,
|
|
|
|
gint64 *gui_size);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
static gboolean gimp_pattern_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_heigh);
|
2001-03-30 19:16:05 +08:00
|
|
|
static TempBuf * gimp_pattern_get_new_preview (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
2003-04-09 00:01:01 +08:00
|
|
|
static gchar * gimp_pattern_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip);
|
2001-03-30 19:16:05 +08:00
|
|
|
static gchar * gimp_pattern_get_extension (GimpData *data);
|
2002-12-01 00:31:39 +08:00
|
|
|
static GimpData * gimp_pattern_duplicate (GimpData *data,
|
|
|
|
gboolean stingy_memory_use);
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
|
2001-02-11 09:39:24 +08:00
|
|
|
static GimpDataClass *parent_class = NULL;
|
2001-02-05 01:34:30 +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
|
2001-02-05 01:34:30 +08:00
|
|
|
gimp_pattern_get_type (void)
|
|
|
|
{
|
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 pattern_type = 0;
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
if (! pattern_type)
|
|
|
|
{
|
2001-08-11 22:39:19 +08:00
|
|
|
static const GTypeInfo pattern_info =
|
2001-02-05 01:34:30 +08:00
|
|
|
{
|
|
|
|
sizeof (GimpPatternClass),
|
2001-08-11 22:39:19 +08:00
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gimp_pattern_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpPattern),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_pattern_init,
|
2001-02-05 01:34:30 +08:00
|
|
|
};
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
pattern_type = g_type_register_static (GIMP_TYPE_DATA,
|
2003-07-15 07:30:18 +08:00
|
|
|
"GimpPattern",
|
2001-08-11 22:39:19 +08:00
|
|
|
&pattern_info, 0);
|
2001-02-05 01:34:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return pattern_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_pattern_class_init (GimpPatternClass *klass)
|
|
|
|
{
|
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-05 23:22:20 +08:00
|
|
|
GimpViewableClass *viewable_class;
|
2001-02-14 03:53:07 +08:00
|
|
|
GimpDataClass *data_class;
|
2001-02-05 01:34:30 +08:00
|
|
|
|
2002-01-31 00:14:26 +08:00
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
|
|
|
data_class = GIMP_DATA_CLASS (klass);
|
2001-02-05 23:22:20 +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-05 01:34:30 +08:00
|
|
|
|
2003-11-17 21:34:38 +08:00
|
|
|
object_class->finalize = gimp_pattern_finalize;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2003-11-17 21:34:38 +08:00
|
|
|
gimp_object_class->get_memsize = gimp_pattern_get_memsize;
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-11-17 21:34:38 +08:00
|
|
|
viewable_class->default_stock_id = "gimp-tool-bucket-fill";
|
|
|
|
viewable_class->get_popup_size = gimp_pattern_get_popup_size;
|
|
|
|
viewable_class->get_new_preview = gimp_pattern_get_new_preview;
|
|
|
|
viewable_class->get_description = gimp_pattern_get_description;
|
2001-02-14 03:53:07 +08:00
|
|
|
|
2003-11-17 21:34:38 +08:00
|
|
|
data_class->get_extension = gimp_pattern_get_extension;
|
|
|
|
data_class->duplicate = gimp_pattern_duplicate;
|
2001-02-05 01:34:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_pattern_init (GimpPattern *pattern)
|
|
|
|
{
|
2001-02-11 09:39:24 +08:00
|
|
|
pattern->mask = NULL;
|
2001-02-05 01:34:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_pattern_finalize (GObject *object)
|
2001-02-05 01:34:30 +08:00
|
|
|
{
|
2003-11-17 01:51:36 +08:00
|
|
|
GimpPattern *pattern = GIMP_PATTERN (object);
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
if (pattern->mask)
|
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
|
|
|
{
|
|
|
|
temp_buf_free (pattern->mask);
|
|
|
|
pattern->mask = NULL;
|
|
|
|
}
|
2001-02-05 01:34:30 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-02-05 01:34:30 +08:00
|
|
|
}
|
|
|
|
|
2003-11-17 01:51:36 +08:00
|
|
|
static gint64
|
2003-08-25 18:49:33 +08:00
|
|
|
gimp_pattern_get_memsize (GimpObject *object,
|
2003-11-17 01:51:36 +08:00
|
|
|
gint64 *gui_size)
|
2002-01-31 00:14:26 +08:00
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
GimpPattern *pattern = GIMP_PATTERN (object);
|
2003-11-17 01:51:36 +08:00
|
|
|
gint64 memsize = 0;
|
2002-01-31 00:14:26 +08:00
|
|
|
|
|
|
|
if (pattern->mask)
|
|
|
|
memsize += temp_buf_get_memsize (pattern->mask);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_pattern_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height)
|
|
|
|
{
|
2003-11-17 01:51:36 +08:00
|
|
|
GimpPattern *pattern = GIMP_PATTERN (viewable);
|
2003-02-27 21:59:41 +08:00
|
|
|
|
|
|
|
if (pattern->mask->width > width || pattern->mask->height > height)
|
|
|
|
{
|
|
|
|
*popup_width = pattern->mask->width;
|
|
|
|
*popup_height = pattern->mask->height;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-02-05 23:22:20 +08:00
|
|
|
static TempBuf *
|
2001-02-07 08:06:58 +08:00
|
|
|
gimp_pattern_get_new_preview (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2001-02-05 23:22:20 +08:00
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
GimpPattern *pattern = GIMP_PATTERN (viewable);
|
2001-02-06 05:52:57 +08:00
|
|
|
TempBuf *temp_buf;
|
|
|
|
gint copy_width;
|
|
|
|
gint copy_height;
|
2001-02-05 23:22:20 +08:00
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
copy_width = MIN (width, pattern->mask->width);
|
|
|
|
copy_height = MIN (height, pattern->mask->height);
|
|
|
|
|
2003-03-01 11:53:41 +08:00
|
|
|
temp_buf = temp_buf_new (copy_width, copy_height,
|
2001-02-06 05:52:57 +08:00
|
|
|
pattern->mask->bytes,
|
2003-03-01 11:53:41 +08:00
|
|
|
0, 0, NULL);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
|
|
|
temp_buf_copy_area (pattern->mask, temp_buf,
|
2003-03-01 11:53:41 +08:00
|
|
|
0, 0, copy_width, copy_height, 0, 0);
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
return temp_buf;
|
2001-02-05 23:22:20 +08:00
|
|
|
}
|
|
|
|
|
2003-04-09 00:01:01 +08:00
|
|
|
static gchar *
|
|
|
|
gimp_pattern_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip)
|
|
|
|
{
|
2003-11-17 01:51:36 +08:00
|
|
|
GimpPattern *pattern = GIMP_PATTERN (viewable);
|
2003-04-09 00:01:01 +08:00
|
|
|
|
|
|
|
if (tooltip)
|
|
|
|
*tooltip = NULL;
|
|
|
|
|
|
|
|
return g_strdup_printf ("%s (%d x %d)",
|
|
|
|
GIMP_OBJECT (pattern)->name,
|
|
|
|
pattern->mask->width,
|
|
|
|
pattern->mask->height);
|
|
|
|
}
|
|
|
|
|
2001-02-14 03:53:07 +08:00
|
|
|
static gchar *
|
|
|
|
gimp_pattern_get_extension (GimpData *data)
|
|
|
|
{
|
|
|
|
return GIMP_PATTERN_FILE_EXTENSION;
|
|
|
|
}
|
|
|
|
|
2001-03-30 19:16:05 +08:00
|
|
|
static GimpData *
|
2002-12-01 00:31:39 +08:00
|
|
|
gimp_pattern_duplicate (GimpData *data,
|
|
|
|
gboolean stingy_memory_use)
|
2001-03-30 19:16:05 +08:00
|
|
|
{
|
|
|
|
GimpPattern *pattern;
|
|
|
|
|
2003-08-29 07:33:15 +08:00
|
|
|
pattern = g_object_new (GIMP_TYPE_PATTERN, NULL);
|
2001-03-30 19:16:05 +08:00
|
|
|
|
|
|
|
pattern->mask = temp_buf_copy (GIMP_PATTERN (data)->mask, NULL);
|
|
|
|
|
|
|
|
/* Swap the pattern to disk (if we're being stingy with memory) */
|
2002-12-01 00:31:39 +08:00
|
|
|
if (stingy_memory_use)
|
2001-03-30 19:16:05 +08:00
|
|
|
temp_buf_swap (pattern->mask);
|
|
|
|
|
|
|
|
return GIMP_DATA (pattern);
|
|
|
|
}
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
GimpData *
|
2002-12-01 00:31:39 +08:00
|
|
|
gimp_pattern_new (const gchar *name,
|
|
|
|
gboolean stingy_memory_use)
|
2001-02-14 03:53:07 +08:00
|
|
|
{
|
|
|
|
GimpPattern *pattern;
|
|
|
|
guchar *data;
|
|
|
|
gint row, col;
|
|
|
|
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
|
2004-01-30 00:19:57 +08:00
|
|
|
pattern = g_object_new (GIMP_TYPE_PATTERN,
|
|
|
|
"name", name,
|
|
|
|
NULL);
|
2001-02-14 03:53:07 +08:00
|
|
|
|
|
|
|
pattern->mask = temp_buf_new (32, 32, 3, 0, 0, NULL);
|
|
|
|
|
|
|
|
data = temp_buf_data (pattern->mask);
|
|
|
|
|
|
|
|
for (row = 0; row < pattern->mask->height; row++)
|
|
|
|
for (col = 0; col < pattern->mask->width; col++)
|
|
|
|
{
|
|
|
|
memset (data, (col % 2) && (row % 2) ? 255 : 0, 3);
|
|
|
|
data += 3;
|
|
|
|
}
|
|
|
|
|
2001-03-30 19:16:05 +08:00
|
|
|
/* Swap the pattern to disk (if we're being stingy with memory) */
|
2002-12-01 00:31:39 +08:00
|
|
|
if (stingy_memory_use)
|
2001-03-30 19:16:05 +08:00
|
|
|
temp_buf_swap (pattern->mask);
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
return GIMP_DATA (pattern);
|
2001-02-14 03:53:07 +08:00
|
|
|
}
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
GimpData *
|
2001-02-14 03:53:07 +08:00
|
|
|
gimp_pattern_get_standard (void)
|
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
static GimpData *standard_pattern = NULL;
|
2001-02-14 03:53:07 +08:00
|
|
|
|
|
|
|
if (! standard_pattern)
|
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
standard_pattern = gimp_pattern_new ("Standard", FALSE);
|
2001-02-14 03:53:07 +08:00
|
|
|
|
2004-02-13 19:53:22 +08:00
|
|
|
standard_pattern->dirty = FALSE;
|
|
|
|
gimp_data_make_internal (standard_pattern);
|
2001-02-14 03:53:07 +08:00
|
|
|
|
|
|
|
/* set ref_count to 2 --> never swap the standard pattern */
|
2003-01-06 06:07:10 +08:00
|
|
|
g_object_ref (standard_pattern);
|
2001-02-14 03:53:07 +08:00
|
|
|
}
|
|
|
|
|
2004-01-30 00:19:57 +08:00
|
|
|
return standard_pattern;
|
2001-02-14 03:53:07 +08:00
|
|
|
}
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
GimpData *
|
2004-06-03 19:34:51 +08:00
|
|
|
gimp_pattern_load (const gchar *filename,
|
|
|
|
gboolean stingy_memory_use,
|
|
|
|
GError **error)
|
2001-02-05 01:34:30 +08:00
|
|
|
{
|
|
|
|
GimpPattern *pattern = NULL;
|
|
|
|
gint fd;
|
|
|
|
PatternHeader header;
|
|
|
|
gint bn_size;
|
|
|
|
gchar *name = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (filename != NULL, NULL);
|
2004-01-30 00:19:57 +08:00
|
|
|
g_return_val_if_fail (g_path_is_absolute (filename), NULL);
|
2002-12-02 21:39:09 +08:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
fd = open (filename, O_RDONLY | _O_BINARY);
|
|
|
|
if (fd == -1)
|
2002-12-02 21:39:09 +08:00
|
|
|
{
|
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_OPEN,
|
|
|
|
_("Could not open '%s' for reading: %s"),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename), g_strerror (errno));
|
2002-12-02 21:39:09 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
/* Read in the header size */
|
|
|
|
if (read (fd, &header, sizeof (header)) != sizeof (header))
|
2002-12-02 21:39:09 +08:00
|
|
|
{
|
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ,
|
2003-11-14 23:33:40 +08:00
|
|
|
_("Fatal parse error in pattern file '%s': "
|
|
|
|
"Could not read %d bytes: %s"),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename),
|
2004-01-14 10:03:37 +08:00
|
|
|
(gint) sizeof (header), g_strerror (errno));
|
2002-12-02 21:39:09 +08:00
|
|
|
goto error;
|
|
|
|
}
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
/* rearrange the bytes in each unsigned int */
|
|
|
|
header.header_size = g_ntohl (header.header_size);
|
|
|
|
header.version = g_ntohl (header.version);
|
|
|
|
header.width = g_ntohl (header.width);
|
|
|
|
header.height = g_ntohl (header.height);
|
|
|
|
header.bytes = g_ntohl (header.bytes);
|
|
|
|
header.magic_number = g_ntohl (header.magic_number);
|
|
|
|
|
|
|
|
/* Check for correct file format */
|
2003-07-15 07:30:18 +08:00
|
|
|
if (header.magic_number != GPATTERN_MAGIC || header.version != 1 ||
|
|
|
|
header.header_size <= sizeof (header))
|
2001-02-05 01:34:30 +08:00
|
|
|
{
|
2002-12-02 21:39:09 +08:00
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ,
|
2003-11-14 23:33:40 +08:00
|
|
|
_("Fatal parse error in pattern file '%s': "
|
|
|
|
"Unknown pattern format version %d."),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename), header.version);
|
2001-02-05 01:34:30 +08:00
|
|
|
goto error;
|
|
|
|
}
|
2003-07-15 07:30:18 +08:00
|
|
|
|
2001-02-05 01:34:30 +08:00
|
|
|
/* Check for supported bit depths */
|
2003-07-15 07:30:18 +08:00
|
|
|
if (header.bytes < 1 || header.bytes > 4)
|
2001-02-05 01:34:30 +08:00
|
|
|
{
|
2002-12-02 21:39:09 +08:00
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ,
|
2003-11-14 23:33:40 +08:00
|
|
|
_("Fatal parse error in pattern file '%s: "
|
|
|
|
"Unsupported pattern depth %d.\n"
|
2003-07-15 07:30:18 +08:00
|
|
|
"GIMP Patterns must be GRAY or RGB."),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename), header.bytes);
|
2001-02-05 01:34:30 +08:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read in the pattern name */
|
|
|
|
if ((bn_size = (header.header_size - sizeof (header))))
|
|
|
|
{
|
2003-10-16 20:24:58 +08:00
|
|
|
gchar *utf8;
|
|
|
|
|
2001-02-05 01:34:30 +08:00
|
|
|
name = g_new (gchar, bn_size);
|
|
|
|
|
|
|
|
if ((read (fd, name, bn_size)) < bn_size)
|
|
|
|
{
|
2002-12-02 21:39:09 +08:00
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ,
|
2003-11-14 23:33:40 +08:00
|
|
|
_("Fatal parse error in pattern file '%s': "
|
|
|
|
"Could not read %d bytes: %s"),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename), bn_size,
|
2004-01-14 10:03:37 +08:00
|
|
|
g_strerror (errno));
|
2004-01-30 00:19:57 +08:00
|
|
|
g_free (name);
|
2001-02-05 01:34:30 +08:00
|
|
|
goto error;
|
|
|
|
}
|
2003-07-15 07:30:18 +08:00
|
|
|
|
2003-10-16 20:24:58 +08:00
|
|
|
utf8 = gimp_any_to_utf8 (name, -1,
|
|
|
|
_("Invalid UTF-8 string in pattern file '%s'."),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename));
|
2003-10-16 20:24:58 +08:00
|
|
|
g_free (name);
|
|
|
|
name = utf8;
|
2001-02-05 01:34:30 +08:00
|
|
|
}
|
2001-09-03 08:26:06 +08:00
|
|
|
|
2004-01-30 00:19:57 +08:00
|
|
|
if (! name)
|
2001-09-03 08:26:06 +08:00
|
|
|
name = g_strdup (_("Unnamed"));
|
2001-02-05 01:34:30 +08:00
|
|
|
|
2004-01-30 00:19:57 +08:00
|
|
|
pattern = g_object_new (GIMP_TYPE_PATTERN,
|
|
|
|
"name", name,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_free (name);
|
2001-08-10 22:41:39 +08:00
|
|
|
|
2001-02-05 01:34:30 +08:00
|
|
|
pattern->mask = temp_buf_new (header.width, header.height, header.bytes,
|
|
|
|
0, 0, NULL);
|
2003-07-15 07:30:18 +08:00
|
|
|
if (read (fd, temp_buf_data (pattern->mask),
|
2001-02-05 01:34:30 +08:00
|
|
|
header.width * header.height * header.bytes) <
|
|
|
|
header.width * header.height * header.bytes)
|
|
|
|
{
|
2002-12-02 21:39:09 +08:00
|
|
|
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ,
|
2003-11-14 23:33:40 +08:00
|
|
|
_("Fatal parse error in pattern file '%s': "
|
|
|
|
"Could not read %d bytes: %s"),
|
2004-01-19 09:08:43 +08:00
|
|
|
gimp_filename_to_utf8 (filename),
|
2004-01-14 10:03:37 +08:00
|
|
|
header.width * header.height * header.bytes,
|
2003-11-14 23:33:40 +08:00
|
|
|
g_strerror (errno));
|
2001-02-05 01:34:30 +08:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
/* Swap the pattern to disk (if we're being stingy with memory) */
|
2002-12-01 00:31:39 +08:00
|
|
|
if (stingy_memory_use)
|
2001-02-05 01:34:30 +08:00
|
|
|
temp_buf_swap (pattern->mask);
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
return GIMP_DATA (pattern);
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
error:
|
|
|
|
if (pattern)
|
2003-01-06 06:07:10 +08:00
|
|
|
g_object_unref (pattern);
|
2001-02-05 01:34:30 +08:00
|
|
|
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
GimpData *
|
2004-06-03 19:34:51 +08:00
|
|
|
gimp_pattern_load_pixbuf (const gchar *filename,
|
|
|
|
gboolean stingy_memory_use,
|
|
|
|
GError **error)
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
{
|
2004-06-03 19:34:51 +08:00
|
|
|
GimpPattern *pattern;
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
guchar *pat_data;
|
|
|
|
guchar *buf_data;
|
|
|
|
gchar *name;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gint bytes;
|
|
|
|
gint rowstride;
|
|
|
|
gint i;
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (filename != NULL, NULL);
|
|
|
|
g_return_val_if_fail (g_path_is_absolute (filename), NULL);
|
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
pixbuf = gdk_pixbuf_new_from_file (filename, error);
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
if (! pixbuf)
|
|
|
|
return NULL;
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
2004-06-03 20:01:17 +08:00
|
|
|
name = g_strdup (gdk_pixbuf_get_option (pixbuf, "tEXt::Title"));
|
|
|
|
|
|
|
|
if (! name)
|
|
|
|
name = g_strdup (gdk_pixbuf_get_option (pixbuf, "tEXt::Comment"));
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
if (! name)
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
{
|
2004-06-03 19:34:51 +08:00
|
|
|
gchar *basename = g_path_get_basename (filename);
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
name = g_filename_to_utf8 (basename, -1, NULL, NULL, NULL);
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
g_free (basename);
|
|
|
|
}
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
|
|
|
pattern = g_object_new (GIMP_TYPE_PATTERN,
|
|
|
|
"name", name,
|
|
|
|
NULL);
|
|
|
|
g_free (name);
|
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
width = gdk_pixbuf_get_width (pixbuf);
|
|
|
|
height = gdk_pixbuf_get_height (pixbuf);
|
|
|
|
bytes = gdk_pixbuf_get_n_channels (pixbuf);
|
|
|
|
rowstride = gdk_pixbuf_get_rowstride (pixbuf);
|
|
|
|
|
|
|
|
pattern->mask = temp_buf_new (width, height, bytes, 0, 0, NULL);
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
pat_data = gdk_pixbuf_get_pixels (pixbuf);
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
buf_data = temp_buf_data (pattern->mask);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
{
|
2004-06-03 19:34:51 +08:00
|
|
|
memcpy (buf_data + i * width * bytes, pat_data, width * bytes);
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
pat_data += rowstride;
|
|
|
|
}
|
|
|
|
|
2004-06-03 19:34:51 +08:00
|
|
|
g_object_unref (pixbuf);
|
|
|
|
|
Add support for GdkPixbuf patterns, so now all of png, jpex, pnm, xbm,
2004-06-03 Dave Neary <bolsh@gimp.org>
* app/core/gimp.c:
* app/core/gimpdatafactory.c:
* app/core/gimppattern.[ch]: Add support for GdkPixbuf patterns,
so now all of png, jpex, pnm, xbm, bmp, gif, ico, pcx, ras, tga,
xpm and tiff can be used for patterns.
2004-06-03 19:03:53 +08:00
|
|
|
/* Swap the pattern to disk (if we're being stingy with memory) */
|
|
|
|
if (stingy_memory_use)
|
|
|
|
temp_buf_swap (pattern->mask);
|
|
|
|
|
|
|
|
return GIMP_DATA (pattern);
|
|
|
|
}
|
|
|
|
|
2001-02-05 01:34:30 +08:00
|
|
|
TempBuf *
|
|
|
|
gimp_pattern_get_mask (const GimpPattern *pattern)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PATTERN (pattern), NULL);
|
|
|
|
|
|
|
|
return pattern->mask;
|
|
|
|
}
|