diff -Nru gimp-2.6.0/aclocal.m4 gimp-2.6.1/aclocal.m4 --- gimp-2.6.0/aclocal.m4 2008-09-29 18:23:14.000000000 +0100 +++ gimp-2.6.1/aclocal.m4 2008-10-08 23:06:52.000000000 +0100 @@ -1041,7 +1041,7 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -# serial 52 Debian 1.5.26-1ubuntu1 AC_PROG_LIBTOOL +# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/actions/file-actions.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/actions/file-actions.c --- gimp-2.6.0/app/actions/file-actions.c 2008-09-24 08:40:16.000000000 +0100 +++ gimp-2.6.1/app/actions/file-actions.c 2008-10-08 22:16:00.000000000 +0100 @@ -235,7 +235,6 @@ #define SET_SENSITIVE(action,condition) \ gimp_action_group_set_action_sensitive (group, action, (condition) != 0) - SET_SENSITIVE ("file-open-as-layers", image); SET_SENSITIVE ("file-save", image && drawable); SET_SENSITIVE ("file-save-as", image && drawable); SET_SENSITIVE ("file-save-a-copy", image && drawable); diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/actions/file-commands.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/actions/file-commands.c --- gimp-2.6.0/app/actions/file-commands.c 2008-08-21 12:33:34.000000000 +0100 +++ gimp-2.6.1/app/actions/file-commands.c 2008-10-08 22:16:00.000000000 +0100 @@ -64,8 +64,9 @@ /* local function prototypes */ -static void file_open_dialog_show (GtkWidget *parent, - Gimp *gimp, +static void file_open_dialog_show (Gimp *gimp, + GtkWidget *parent, + const gchar *title, GimpImage *image, const gchar *uri, gboolean open_as_layers); @@ -92,18 +93,16 @@ gpointer data) { Gimp *gimp; - GimpImage *image; GtkWidget *widget; - const gchar *uri = NULL; + GimpImage *image; return_if_no_gimp (gimp, data); return_if_no_widget (widget, data); image = action_data_get_image (data); - if (image) - uri = gimp_object_get_name (GIMP_OBJECT (image)); - - file_open_dialog_show (widget, gimp, NULL, uri, FALSE); + file_open_dialog_show (gimp, widget, + _("Open Image"), + image, NULL, FALSE); } void @@ -111,18 +110,20 @@ gpointer data) { Gimp *gimp; - GimpDisplay *display; GtkWidget *widget; - GimpImage *image; - const gchar *uri; + GimpDisplay *display; + GimpImage *image = NULL; return_if_no_gimp (gimp, data); - return_if_no_display (display, data); return_if_no_widget (widget, data); - image = display->image; - uri = gimp_object_get_name (GIMP_OBJECT (image)); + display = action_data_get_display (data); + + if (display) + image = display->image; - file_open_dialog_show (widget, gimp, image, uri, TRUE); + file_open_dialog_show (gimp, widget, + _("Open Image as Layers"), + image, NULL, TRUE); } void @@ -445,15 +446,18 @@ const gchar *uri, GtkWidget *parent) { - file_open_dialog_show (parent, gimp, NULL, uri, FALSE); + file_open_dialog_show (gimp, parent, + _("Open Image"), + NULL, uri, FALSE); } /* private functions */ static void -file_open_dialog_show (GtkWidget *parent, - Gimp *gimp, +file_open_dialog_show (Gimp *gimp, + GtkWidget *parent, + const gchar *title, GimpImage *image, const gchar *uri, gboolean open_as_layers) @@ -466,27 +470,23 @@ if (dialog) { + if (! uri && image) + uri = gimp_object_get_name (GIMP_OBJECT (image)); + if (! uri) uri = g_object_get_data (G_OBJECT (gimp), "gimp-file-open-last-uri"); if (uri) gtk_file_chooser_set_uri (GTK_FILE_CHOOSER (dialog), uri); - if (open_as_layers) - { - gtk_window_set_title (GTK_WINDOW (dialog), _("Open Image as Layers")); - GIMP_FILE_DIALOG (dialog)->image = image; - } - else - { - gtk_window_set_title (GTK_WINDOW (dialog), _("Open Image")); - GIMP_FILE_DIALOG (dialog)->image = NULL; - } + gimp_file_dialog_set_open_image (GIMP_FILE_DIALOG (dialog), + image, open_as_layers); parent = gtk_widget_get_toplevel (parent); if (GTK_IS_WINDOW (parent)) - gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (parent)); + gtk_window_set_transient_for (GTK_WINDOW (dialog), + GTK_WINDOW (parent)); gtk_window_present (GTK_WINDOW (dialog)); } @@ -528,8 +528,8 @@ { gtk_window_set_title (GTK_WINDOW (dialog), title); - gimp_file_dialog_set_image (GIMP_FILE_DIALOG (dialog), - image, save_a_copy, close_after_saving); + gimp_file_dialog_set_save_image (GIMP_FILE_DIALOG (dialog), + image, save_a_copy, close_after_saving); gtk_window_present (GTK_WINDOW (dialog)); } diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/actions/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/actions/Makefile.am --- gimp-2.6.0/app/actions/Makefile.am 2008-09-24 08:40:16.000000000 +0100 +++ gimp-2.6.1/app/actions/Makefile.am 2008-10-08 22:16:00.000000000 +0100 @@ -1,5 +1,17 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Actions\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappactions.a libappactions_a_SOURCES = \ @@ -162,18 +174,4 @@ windows-commands.c \ windows-commands.h - -EXTRA_DIST = \ - makefile.msc - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Actions\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) \ - -I$(includedir) +EXTRA_DIST = makefile.msc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/actions/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/actions/Makefile.in --- gimp-2.6.0/app/actions/Makefile.in 2008-09-29 18:23:16.000000000 +0100 +++ gimp-2.6.1/app/actions/Makefile.in 2008-10-08 23:09:39.000000000 +0100 @@ -424,6 +424,18 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Actions\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappactions.a libappactions_a_SOURCES = \ actions-types.h \ @@ -585,21 +597,7 @@ windows-commands.c \ windows-commands.h -EXTRA_DIST = \ - makefile.msc - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Actions\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) \ - -I$(includedir) - +EXTRA_DIST = makefile.msc all: all-am .SUFFIXES: diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/actions/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/actions/makefile.msc --- gimp-2.6.0/app/actions/makefile.msc 2008-08-21 12:33:34.000000000 +0100 +++ gimp-2.6.1/app/actions/makefile.msc 2008-10-08 22:16:00.000000000 +0100 @@ -11,6 +11,7 @@ -I$(PRJ_TOP) \ -I$(PRJ_TOP)/app \ $(GTK2_CFLAGS) \ + $(GEGL_CFLAGS) DEFINES = \ -DGIMP_COMPILATION \ @@ -35,6 +36,8 @@ context-commands.obj \ colormap-actions.obj \ colormap-commands.obj \ + config-actions.obj \ + config-commands.obj \ cursor-info-actions.obj \ cursor-info-commands.obj \ data-commands.obj \ @@ -98,6 +101,8 @@ view-commands.obj \ window-actions.obj \ window-commands.obj \ + windows-actions.obj \ + windows-commands.obj \ $(PRJ_TOP)\config.h: $(PRJ_TOP)\config.h.win32 diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/actions/view-commands.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/actions/view-commands.c --- gimp-2.6.0/app/actions/view-commands.c 2008-08-21 12:33:34.000000000 +0100 +++ gimp-2.6.1/app/actions/view-commands.c 2008-10-08 22:16:00.000000000 +0100 @@ -134,27 +134,45 @@ switch ((GimpActionSelectType) value) { case GIMP_ACTION_SELECT_FIRST: - gimp_display_shell_scale (shell, GIMP_ZOOM_OUT_MAX, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_OUT_MAX, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; case GIMP_ACTION_SELECT_LAST: - gimp_display_shell_scale (shell, GIMP_ZOOM_IN_MAX, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_IN_MAX, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; case GIMP_ACTION_SELECT_PREVIOUS: - gimp_display_shell_scale (shell, GIMP_ZOOM_OUT, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_OUT, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; case GIMP_ACTION_SELECT_NEXT: - gimp_display_shell_scale (shell, GIMP_ZOOM_IN, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_IN, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; case GIMP_ACTION_SELECT_SKIP_PREVIOUS: - gimp_display_shell_scale (shell, GIMP_ZOOM_OUT_MORE, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_OUT_MORE, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; case GIMP_ACTION_SELECT_SKIP_NEXT: - gimp_display_shell_scale (shell, GIMP_ZOOM_IN_MORE, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_IN_MORE, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; default: @@ -171,7 +189,10 @@ /* scale = min * (max / min)**(i/n), i = 0..n */ scale = pow (65536.0, scale / 512.0) / 256.0; - gimp_display_shell_scale (shell, GIMP_ZOOM_TO, scale); + gimp_display_shell_scale (shell, + GIMP_ZOOM_TO, + scale, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; } } @@ -194,7 +215,10 @@ if (value != 0 /* not Other... */) { if (fabs (value - gimp_zoom_model_get_factor (shell->zoom)) > 0.0001) - gimp_display_shell_scale (shell, GIMP_ZOOM_TO, (gdouble) value / 10000); + gimp_display_shell_scale (shell, + GIMP_ZOOM_TO, + (gdouble) value / 10000, + GIMP_ZOOM_FOCUS_IMAGE_CENTER); } } diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/base/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/base/Makefile.am --- gimp-2.6.0/app/base/Makefile.am 2008-08-21 12:33:44.000000000 +0100 +++ gimp-2.6.1/app/base/Makefile.am 2008-10-08 22:16:02.000000000 +0100 @@ -1,5 +1,16 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Base\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GLIB_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappbase.a libappbase_a_SOURCES = \ @@ -63,21 +74,8 @@ tile-swap.c \ tile-swap.h -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Base\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GLIB_CFLAGS) \ - -I$(includedir) - - EXTRA_DIST = makefile.msc - # # rules to generate built sources # diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/base/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/base/Makefile.in --- gimp-2.6.0/app/base/Makefile.in 2008-09-29 18:23:16.000000000 +0100 +++ gimp-2.6.1/app/base/Makefile.in 2008-10-08 23:09:39.000000000 +0100 @@ -395,6 +395,17 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Base\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GLIB_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappbase.a libappbase_a_SOURCES = \ base.c \ @@ -457,17 +468,6 @@ tile-swap.c \ tile-swap.h -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Base\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GLIB_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc # diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/base/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/base/makefile.msc --- gimp-2.6.0/app/base/makefile.msc 2008-08-21 12:33:44.000000000 +0100 +++ gimp-2.6.1/app/base/makefile.msc 2008-10-08 22:16:02.000000000 +0100 @@ -25,6 +25,7 @@ colorize.obj \ cpercep.obj \ curves.obj \ + desaturate.obj \ gimphistogram.obj \ gimplut.obj \ hue-saturation.obj \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/base/tile-cache.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/base/tile-cache.c --- gimp-2.6.0/app/base/tile-cache.c 2008-08-21 12:33:44.000000000 +0100 +++ gimp-2.6.1/app/base/tile-cache.c 2008-10-08 22:16:02.000000000 +0100 @@ -38,34 +38,32 @@ static gboolean tile_idle_preswap (gpointer data); -static gboolean initialize = TRUE; - typedef struct _TileList { Tile *first; Tile *last; } TileList; -static const gulong max_tile_size = TILE_WIDTH * TILE_HEIGHT * 4; -static gulong cur_cache_size = 0; -static gulong max_cache_size = 0; -static gulong cur_cache_dirty = 0; -static TileList clean_list = { NULL, NULL }; -static TileList dirty_list = { NULL, NULL }; -static guint idle_swapper = 0; +static const gulong max_tile_size = TILE_WIDTH * TILE_HEIGHT * 4; +static gulong cur_cache_size = 0; +static gulong max_cache_size = 0; +static gulong cur_cache_dirty = 0; +static TileList clean_list = { NULL, NULL }; +static TileList dirty_list = { NULL, NULL }; +static guint idle_swapper = 0; #ifdef ENABLE_MP -static GStaticMutex tile_cache_mutex = G_STATIC_MUTEX_INIT; +static GMutex *tile_cache_mutex = NULL; -#define CACHE_LOCK g_static_mutex_lock (&tile_cache_mutex) -#define CACHE_UNLOCK g_static_mutex_unlock (&tile_cache_mutex) +#define TILE_CACHE_LOCK g_mutex_lock (tile_cache_mutex) +#define TILE_CACHE_UNLOCK g_mutex_unlock (tile_cache_mutex) #else -#define CACHE_LOCK /* nothing */ -#define CACHE_UNLOCK /* nothing */ +#define TILE_CACHE_LOCK /* nothing */ +#define TILE_CACHE_UNLOCK /* nothing */ #endif @@ -73,15 +71,16 @@ void tile_cache_init (gulong tile_cache_size) { - if (initialize) - { - initialize = FALSE; +#ifdef ENABLE_MP + g_return_if_fail (tile_cache_mutex == NULL); - clean_list.first = clean_list.last = NULL; - dirty_list.first = dirty_list.last = NULL; + tile_cache_mutex = g_mutex_new (); +#endif - max_cache_size = tile_cache_size; - } + clean_list.first = clean_list.last = NULL; + dirty_list.first = dirty_list.last = NULL; + + max_cache_size = tile_cache_size; } void @@ -97,6 +96,11 @@ g_warning ("tile cache not empty (%ld bytes left)", cur_cache_size); tile_cache_set_size (0); + +#ifdef ENABLE_MP + g_mutex_free (tile_cache_mutex); + tile_cache_mutex = NULL; +#endif } void @@ -105,7 +109,7 @@ TileList *list; TileList *newlist; - CACHE_LOCK; + TILE_CACHE_LOCK; if (! tile->data) goto out; @@ -191,23 +195,23 @@ } out: - CACHE_UNLOCK; + TILE_CACHE_UNLOCK; } void tile_cache_flush (Tile *tile) { - CACHE_LOCK; + TILE_CACHE_LOCK; tile_cache_flush_internal (tile); - CACHE_UNLOCK; + TILE_CACHE_UNLOCK; } void tile_cache_set_size (gulong cache_size) { - CACHE_LOCK; + TILE_CACHE_LOCK; max_cache_size = cache_size; @@ -217,7 +221,7 @@ break; } - CACHE_UNLOCK; + TILE_CACHE_UNLOCK; } static void @@ -291,7 +295,7 @@ return FALSE; } - CACHE_LOCK; + TILE_CACHE_LOCK; if ((tile = dirty_list.first)) { @@ -317,7 +321,7 @@ cur_cache_dirty -= tile->size; } - CACHE_UNLOCK; + TILE_CACHE_UNLOCK; return TRUE; } diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/config/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/config/Makefile.am --- gimp-2.6.0/app/config/Makefile.am 2008-08-21 12:33:36.000000000 +0100 +++ gimp-2.6.1/app/config/Makefile.am 2008-10-08 22:16:01.000000000 +0100 @@ -7,6 +7,18 @@ libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Config\" \ + -DGIMP_APP_VERSION_STRING=\"$(GIMP_APP_VERSION)\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappconfig.a libappconfig_a_SOURCES = \ @@ -39,20 +51,6 @@ gimpxmlparser.c \ gimpxmlparser.h -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Config\" \ - -DGIMP_APP_VERSION_STRING=\"$(GIMP_APP_VERSION)\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I$(includedir) - - EXTRA_PROGRAMS = test-config EXTRA_DIST = makefile.msc @@ -104,5 +102,4 @@ $(GEGL_LIBS) \ $(GLIB_LIBS) - CLEANFILES = $(EXTRA_PROGRAMS) foorc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/config/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/config/Makefile.in --- gimp-2.6.0/app/config/Makefile.in 2008-09-29 18:23:16.000000000 +0100 +++ gimp-2.6.1/app/config/Makefile.in 2008-10-08 23:09:39.000000000 +0100 @@ -404,6 +404,18 @@ libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Config\" \ + -DGIMP_APP_VERSION_STRING=\"$(GIMP_APP_VERSION)\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappconfig.a libappconfig_a_SOURCES = \ config-types.h \ @@ -435,19 +447,6 @@ gimpxmlparser.c \ gimpxmlparser.h -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Config\" \ - -DGIMP_APP_VERSION_STRING=\"$(GIMP_APP_VERSION)\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc test_config_DEPENDENCIES = $(gimpconfig_libs) test_config_LDFLAGS = \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/config/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/config/makefile.msc --- gimp-2.6.0/app/config/makefile.msc 2008-08-21 12:33:36.000000000 +0100 +++ gimp-2.6.1/app/config/makefile.msc 2008-10-08 22:16:01.000000000 +0100 @@ -49,7 +49,8 @@ # -DG_DISABLE_CAST_CHECKS DEFINES = \ - -DG_LOG_DOMAIN=\"Gimp-Config\" + -DG_LOG_DOMAIN=\"Gimp-Config\" \ + $(GIMP_VERSION_DEFINES) all : \ $(PRJ_TOP)\config.h \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/gimpcontext.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/gimpcontext.c --- gimp-2.6.0/app/core/gimpcontext.c 2008-08-21 12:33:24.000000000 +0100 +++ gimp-2.6.1/app/core/gimpcontext.c 2008-10-08 22:15:58.000000000 +0100 @@ -1766,9 +1766,13 @@ gimp_context_real_set_display (GimpContext *context, gpointer display) { + GimpObject *old_display; + if (context->display == display) return; + old_display = context->display; + context->display = display; if (context->display) @@ -1782,6 +1786,10 @@ if (image) g_object_unref (image); } + else if (old_display) + { + gimp_context_real_set_image (context, NULL); + } g_object_notify (G_OBJECT (context), "display"); gimp_context_display_changed (context); diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/gimpcurve.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/gimpcurve.c --- gimp-2.6.0/app/core/gimpcurve.c 2008-09-29 18:09:24.000000000 +0100 +++ gimp-2.6.1/app/core/gimpcurve.c 2008-10-08 22:15:58.000000000 +0100 @@ -19,6 +19,7 @@ #include "config.h" #include +#include /* memcmp */ #include diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/gimpimage.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/gimpimage.c --- gimp-2.6.0/app/core/gimpimage.c 2008-09-24 08:40:15.000000000 +0100 +++ gimp-2.6.1/app/core/gimpimage.c 2008-10-08 22:15:58.000000000 +0100 @@ -2875,11 +2875,6 @@ gimp_image_undo_push_layer_add (image, _("Add Layer"), layer, active_layer); - gimp_item_set_image (GIMP_ITEM (layer), image); - - if (layer->mask) - gimp_item_set_image (GIMP_ITEM (layer->mask), image); - /* If the layer is a floating selection, set the ID */ if (gimp_layer_is_floating_sel (layer)) image->floating_sel = layer; @@ -3214,8 +3209,6 @@ gimp_image_undo_push_channel_add (image, _("Add Channel"), channel, active_channel); - gimp_item_set_image (GIMP_ITEM (channel), image); - /* add the layer to the list at the specified position */ if (position == -1) { @@ -3439,8 +3432,6 @@ gimp_image_undo_push_vectors_add (image, _("Add Path"), vectors, active_vectors); - gimp_item_set_image (GIMP_ITEM (vectors), image); - /* add the layer to the list at the specified position */ if (position == -1) { diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/gimpimage-contiguous-region.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/gimpimage-contiguous-region.c --- gimp-2.6.0/app/core/gimpimage-contiguous-region.c 2008-08-21 12:33:24.000000000 +0100 +++ gimp-2.6.1/app/core/gimpimage-contiguous-region.c 2008-10-08 22:15:58.000000000 +0100 @@ -73,7 +73,7 @@ gint y, guchar **s, guchar **m); -static gint find_contiguous_segment (GimpImage *image, +static gboolean find_contiguous_segment (GimpImage *image, const guchar *col, PixelRegion *src, PixelRegion *mask, @@ -458,7 +458,7 @@ *m = tile_data_pointer (*m_tile, x, y); } -static int +static gboolean find_contiguous_segment (GimpImage *image, const guchar *col, PixelRegion *src, @@ -604,7 +604,7 @@ Tile *tile; GQueue *coord_stack; - coord_stack = g_queue_new(); + coord_stack = g_queue_new (); /* To avoid excessive memory allocation (y, start, end) tuples are * stored in interleaved format: @@ -624,7 +624,7 @@ for (x = start + 1; x < end; x++) { tile = tile_manager_get_tile (mask->tiles, x, y, TRUE, FALSE); - val = *(const guchar *) (tile_data_pointer (tile, x, y)); + val = *(const guchar *) tile_data_pointer (tile, x, y); tile_release (tile, FALSE); if (val != 0) continue; @@ -654,7 +654,7 @@ } } } - while (!g_queue_is_empty (coord_stack)); + while (! g_queue_is_empty (coord_stack)); g_queue_free (coord_stack); } diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/gimplayer.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/gimplayer.c --- gimp-2.6.0/app/core/gimplayer.c 2008-09-16 10:26:38.000000000 +0100 +++ gimp-2.6.1/app/core/gimplayer.c 2008-10-08 22:15:58.000000000 +0100 @@ -1250,6 +1250,8 @@ g_return_val_if_fail (GIMP_IS_LAYER (layer), NULL); g_return_val_if_fail (GIMP_IS_LAYER_MASK (mask), NULL); + g_return_val_if_fail (gimp_item_get_image (GIMP_ITEM (layer)) == + gimp_item_get_image (GIMP_ITEM (mask)), NULL); g_return_val_if_fail (error == NULL || *error == NULL, NULL); if (! gimp_item_is_attached (GIMP_ITEM (layer))) diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/Makefile.am --- gimp-2.6.0/app/core/Makefile.am 2008-08-21 12:33:24.000000000 +0100 +++ gimp-2.6.1/app/core/Makefile.am 2008-10-08 22:15:58.000000000 +0100 @@ -9,10 +9,9 @@ -I$(top_srcdir) \ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ $(CAIRO_CFLAGS) \ - $(GLIB_CFLAGS) \ $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libappcore.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/Makefile.in --- gimp-2.6.0/app/core/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/core/Makefile.in 2008-10-08 23:09:39.000000000 +0100 @@ -477,10 +477,9 @@ -I$(top_srcdir) \ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ $(CAIRO_CFLAGS) \ - $(GLIB_CFLAGS) \ $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libappcore.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/core/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/core/makefile.msc --- gimp-2.6.0/app/core/makefile.msc 2008-08-21 12:33:24.000000000 +0100 +++ gimp-2.6.1/app/core/makefile.msc 2008-10-08 22:15:58.000000000 +0100 @@ -33,7 +33,7 @@ OBJECTS = \ core-enums.obj \ gimp-contexts.obj \ - gimp-documents.obj \ +# gimp-documents.obj \ gimp-edit.obj \ gimp-gradients.obj \ gimp-gui.obj \ @@ -174,6 +174,18 @@ gimpundostack.obj \ gimpunit.obj \ gimpviewable.obj \ + gimpcurve-map.obj \ + gimpdrawable-brightness-contrast.obj \ + gimpdrawable-color-balance.obj \ + gimpdrawable-colorize.obj \ + gimpdrawable-curves.obj \ + gimpdrawable-hue-saturation.obj \ + gimpdrawable-posterize.obj \ + gimpdrawable-process.obj \ + gimpdrawable-shadow.obj \ + gimpdrawable-threshold.obj \ + gimpimagemapconfig.obj \ + gimptagged.obj \ OTHER_FILES = \ \ @@ -197,8 +209,8 @@ DEFINES = \ -DGIMP_COMPILATION \ - -DGIMP_APP_VERSION=\"2.4\" \ - -DG_LOG_DOMAIN=\"Gimp-Core\" + -DG_LOG_DOMAIN=\"Gimp-Core\" \ + $(GIMP_VERSION_DEFINES) all : \ $(PRJ_TOP)\config.h \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/dialogs/file-open-dialog.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/dialogs/file-open-dialog.c --- gimp-2.6.0/app/dialogs/file-open-dialog.c 2008-08-21 12:33:30.000000000 +0100 +++ gimp-2.6.1/app/dialogs/file-open-dialog.c 2008-10-08 22:15:59.000000000 +0100 @@ -49,7 +49,7 @@ static void file_open_dialog_response (GtkWidget *open_dialog, gint response_id, Gimp *gimp); -static gboolean file_open_dialog_open_image (GtkWidget *open_dialog, +static GimpImage *file_open_dialog_open_image (GtkWidget *open_dialog, Gimp *gimp, const gchar *uri, const gchar *entered_filename, @@ -138,13 +138,24 @@ continue; } - if (dialog->image) + if (dialog->open_as_layers) { - if (file_open_dialog_open_layers (open_dialog, - dialog->image, - list->data, - list->data, - dialog->file_proc)) + if (! dialog->image) + { + dialog->image = file_open_dialog_open_image (open_dialog, + gimp, + list->data, + list->data, + dialog->file_proc); + + if (dialog->image) + success = TRUE; + } + else if (file_open_dialog_open_layers (open_dialog, + dialog->image, + list->data, + list->data, + dialog->file_proc)) { success = TRUE; } @@ -169,7 +180,7 @@ if (success) { - if (dialog->image) + if (dialog->open_as_layers && dialog->image) gimp_image_flush (dialog->image); gtk_widget_destroy (open_dialog); @@ -183,7 +194,7 @@ g_slist_free (uris); } -static gboolean +static GimpImage * file_open_dialog_open_image (GtkWidget *open_dialog, Gimp *gimp, const gchar *uri, @@ -201,11 +212,7 @@ load_proc, &status, &error); - if (image) - { - return TRUE; - } - else if (status != GIMP_PDB_CANCEL) + if (! image && status != GIMP_PDB_CANCEL) { gchar *filename = file_utils_uri_display_name (uri); @@ -216,7 +223,7 @@ g_free (filename); } - return FALSE; + return image; } static gboolean @@ -247,8 +254,6 @@ g_list_free (new_layers); - gimp_image_flush (image); - return TRUE; } else if (status != GIMP_PDB_CANCEL) diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/dialogs/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/dialogs/makefile.msc --- gimp-2.6.0/app/dialogs/makefile.msc 2008-08-21 12:33:30.000000000 +0100 +++ gimp-2.6.1/app/dialogs/makefile.msc 2008-10-08 22:15:59.000000000 +0100 @@ -27,7 +27,6 @@ about-dialog.obj \ channel-options-dialog.obj \ convert-dialog.obj \ - desaturate-dialog.obj \ dialogs-constructors.obj \ dialogs.obj \ fade-dialog.obj \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/display-enums.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/display-enums.c --- gimp-2.6.0/app/display/display-enums.c 2008-08-21 12:39:29.000000000 +0100 +++ gimp-2.6.1/app/display/display-enums.c 2008-10-08 22:16:01.000000000 +0100 @@ -158,6 +158,36 @@ return type; } +GType +gimp_zoom_focus_get_type (void) +{ + static const GEnumValue values[] = + { + { GIMP_ZOOM_FOCUS_BEST_GUESS, "GIMP_ZOOM_FOCUS_BEST_GUESS", "best-guess" }, + { GIMP_ZOOM_FOCUS_POINTER, "GIMP_ZOOM_FOCUS_POINTER", "pointer" }, + { GIMP_ZOOM_FOCUS_IMAGE_CENTER, "GIMP_ZOOM_FOCUS_IMAGE_CENTER", "image-center" }, + { 0, NULL, NULL } + }; + + static const GimpEnumDesc descs[] = + { + { GIMP_ZOOM_FOCUS_BEST_GUESS, "GIMP_ZOOM_FOCUS_BEST_GUESS", NULL }, + { GIMP_ZOOM_FOCUS_POINTER, "GIMP_ZOOM_FOCUS_POINTER", NULL }, + { GIMP_ZOOM_FOCUS_IMAGE_CENTER, "GIMP_ZOOM_FOCUS_IMAGE_CENTER", NULL }, + { 0, NULL, NULL } + }; + + static GType type = 0; + + if (! type) + { + type = g_enum_register_static ("GimpZoomFocus", values); + gimp_enum_set_value_descriptions (type, descs); + } + + return type; +} + /* Generated data ends here */ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/display-enums.h /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/display-enums.h --- gimp-2.6.0/app/display/display-enums.h 2008-08-21 12:33:37.000000000 +0100 +++ gimp-2.6.1/app/display/display-enums.h 2008-10-08 22:16:01.000000000 +0100 @@ -81,4 +81,16 @@ } GimpZoomQuality; +#define GIMP_TYPE_ZOOM_FOCUS (gimp_zoom_focus_get_type ()) + +GType gimp_zoom_focus_get_type (void) G_GNUC_CONST; + +typedef enum +{ + GIMP_ZOOM_FOCUS_BEST_GUESS, /* Make a best guess */ + GIMP_ZOOM_FOCUS_POINTER, /* Use the mouse cursor (if within canvas) */ + GIMP_ZOOM_FOCUS_IMAGE_CENTER /* Use the image center */ +} GimpZoomFocus; + + #endif /* __DISPLAY_ENUMS_H__ */ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/gimpdisplayshell-callbacks.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/gimpdisplayshell-callbacks.c --- gimp-2.6.0/app/display/gimpdisplayshell-callbacks.c 2008-09-29 18:09:25.000000000 +0100 +++ gimp-2.6.1/app/display/gimpdisplayshell-callbacks.c 2008-10-08 22:16:01.000000000 +0100 @@ -1040,11 +1040,17 @@ switch (direction) { case GDK_SCROLL_UP: - gimp_display_shell_scale (shell, GIMP_ZOOM_IN, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_IN, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; case GDK_SCROLL_DOWN: - gimp_display_shell_scale (shell, GIMP_ZOOM_OUT, 0.0); + gimp_display_shell_scale (shell, + GIMP_ZOOM_OUT, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); break; default: diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/gimpdisplayshell-scale.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/gimpdisplayshell-scale.c --- gimp-2.6.0/app/display/gimpdisplayshell-scale.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/display/gimpdisplayshell-scale.c 2008-10-08 22:16:01.000000000 +0100 @@ -70,7 +70,8 @@ gdouble new_scale, gdouble current_scale, gint *x, - gint *y); + gint *y, + GimpZoomFocus zoom_focus); static gdouble img2real (GimpDisplayShell *shell, gboolean xdir, @@ -89,9 +90,6 @@ { g_return_if_fail (GIMP_IS_DISPLAY_SHELL (shell)); - if (! shell->display) - return; - gimp_display_shell_scale_update_scrollbars (shell); gimp_display_shell_scale_update_rulers (shell); } @@ -108,6 +106,9 @@ gint image_width; gint image_height; + if (! shell->display) + return; + image = shell->display->image; if (image) @@ -164,6 +165,9 @@ gint scaled_viewport_offset_x; gint scaled_viewport_offset_y; + if (! shell->display) + return; + image = shell->display->image; if (image) @@ -334,7 +338,8 @@ void gimp_display_shell_scale (GimpDisplayShell *shell, GimpZoomType zoom_type, - gdouble new_scale) + gdouble new_scale, + GimpZoomFocus zoom_focus) { gint x, y; gdouble current_scale; @@ -375,7 +380,8 @@ real_new_scale, current_scale, &x, - &y); + &y, + zoom_focus); gimp_display_shell_scale_to (shell, real_new_scale, x, y); @@ -438,7 +444,11 @@ zoom_factor = MIN ((gdouble) shell->disp_width / (gdouble) image_width, (gdouble) shell->disp_height / (gdouble) image_height); - gimp_display_shell_scale (shell, GIMP_ZOOM_TO, zoom_factor); + gimp_display_shell_scale (shell, + GIMP_ZOOM_TO, + zoom_factor, + GIMP_ZOOM_FOCUS_BEST_GUESS); + gimp_display_shell_scroll_center_image (shell, TRUE, TRUE); } @@ -510,7 +520,11 @@ zoom_factor = MAX ((gdouble) shell->disp_width / (gdouble) image_width, (gdouble) shell->disp_height / (gdouble) image_height); - gimp_display_shell_scale (shell, GIMP_ZOOM_TO, zoom_factor); + gimp_display_shell_scale (shell, + GIMP_ZOOM_TO, + zoom_factor, + GIMP_ZOOM_FOCUS_BEST_GUESS); + gimp_display_shell_scroll_center_image (shell, TRUE, TRUE); } @@ -883,7 +897,8 @@ gdouble new_scale, gdouble current_scale, gint *x, - gint *y) + gint *y, + GimpZoomFocus zoom_focus) { gint image_center_x, image_center_y; gint other_x, other_y; @@ -949,23 +964,39 @@ } /* Decide which one to use for each axis */ - { - gboolean within_horizontally, within_vertically; - gboolean stops_horizontally, stops_vertically; + switch (zoom_focus) + { + case GIMP_ZOOM_FOCUS_POINTER: + *x = other_x; + *y = other_y; + break; + + case GIMP_ZOOM_FOCUS_IMAGE_CENTER: + *x = image_center_x; + *y = image_center_y; + break; + + case GIMP_ZOOM_FOCUS_BEST_GUESS: + default: + { + gboolean within_horizontally, within_vertically; + gboolean stops_horizontally, stops_vertically; - gimp_display_shell_scale_image_is_within_viewport (shell, - &within_horizontally, - &within_vertically); - - gimp_display_shell_scale_image_stops_to_fit (shell, - new_scale, - current_scale, - &stops_horizontally, - &stops_vertically); + gimp_display_shell_scale_image_is_within_viewport (shell, + &within_horizontally, + &within_vertically); + + gimp_display_shell_scale_image_stops_to_fit (shell, + new_scale, + current_scale, + &stops_horizontally, + &stops_vertically); - *x = within_horizontally && ! stops_horizontally ? image_center_x : other_x; - *y = within_vertically && ! stops_vertically ? image_center_y : other_y; - } + *x = within_horizontally && ! stops_horizontally ? image_center_x : other_x; + *y = within_vertically && ! stops_vertically ? image_center_y : other_y; + } + break; + } } /* scale image coord to realworld units (cm, inches, pixels) diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/gimpdisplayshell-scale-dialog.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/gimpdisplayshell-scale-dialog.c --- gimp-2.6.0/app/display/gimpdisplayshell-scale-dialog.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/display/gimpdisplayshell-scale-dialog.c 2008-10-08 22:16:01.000000000 +0100 @@ -217,7 +217,10 @@ scale = gtk_adjustment_get_value (GTK_ADJUSTMENT (dialog->scale_adj)); - gimp_display_shell_scale (dialog->shell, GIMP_ZOOM_TO, scale / 100.0); + gimp_display_shell_scale (dialog->shell, + GIMP_ZOOM_TO, + scale / 100.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); } else { diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/gimpdisplayshell-scale.h /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/gimpdisplayshell-scale.h --- gimp-2.6.0/app/display/gimpdisplayshell-scale.h 2008-08-21 12:33:37.000000000 +0100 +++ gimp-2.6.1/app/display/gimpdisplayshell-scale.h 2008-10-08 22:16:01.000000000 +0100 @@ -32,7 +32,8 @@ void gimp_display_shell_scale (GimpDisplayShell *shell, GimpZoomType zoom_type, - gdouble scale); + gdouble scale, + GimpZoomFocus zoom_focus); void gimp_display_shell_scale_fit_in (GimpDisplayShell *shell); gboolean gimp_display_shell_scale_image_is_within_viewport (GimpDisplayShell *shell, gboolean *horizontally, diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/gimpnavigationeditor.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/gimpnavigationeditor.c --- gimp-2.6.0/app/display/gimpnavigationeditor.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/display/gimpnavigationeditor.c 2008-10-08 22:16:01.000000000 +0100 @@ -534,7 +534,10 @@ if (editor->shell) { - gimp_display_shell_scale (editor->shell, direction, 0.0); + gimp_display_shell_scale (editor->shell, + direction, + 0.0, + GIMP_ZOOM_FOCUS_BEST_GUESS); } } @@ -588,8 +591,10 @@ gimp_navigation_editor_zoom_adj_changed (GtkAdjustment *adj, GimpNavigationEditor *editor) { - gimp_display_shell_scale (editor->shell, GIMP_ZOOM_TO, - pow (2.0, gtk_adjustment_get_value (adj))); + gimp_display_shell_scale (editor->shell, + GIMP_ZOOM_TO, + pow (2.0, gtk_adjustment_get_value (adj)), + GIMP_ZOOM_FOCUS_BEST_GUESS); } static void diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/gimpstatusbar.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/gimpstatusbar.c --- gimp-2.6.0/app/display/gimpstatusbar.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/display/gimpstatusbar.c 2008-10-08 22:16:01.000000000 +0100 @@ -1386,7 +1386,8 @@ { gimp_display_shell_scale (statusbar->shell, GIMP_ZOOM_TO, - gimp_scale_combo_box_get_scale (combo)); + gimp_scale_combo_box_get_scale (combo), + GIMP_ZOOM_FOCUS_BEST_GUESS); } static guint diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/Makefile.am --- gimp-2.6.0/app/display/Makefile.am 2008-08-21 12:33:37.000000000 +0100 +++ gimp-2.6.1/app/display/Makefile.am 2008-10-08 22:16:01.000000000 +0100 @@ -1,5 +1,17 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Display\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappdisplay.a libappdisplay_a_sources = \ @@ -74,18 +86,6 @@ $(libappdisplay_a_built_sources) \ $(libappdisplay_a_sources) -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Display\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc # diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/Makefile.in --- gimp-2.6.0/app/display/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/display/Makefile.in 2008-10-08 23:09:39.000000000 +0100 @@ -411,6 +411,18 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Display\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappdisplay.a libappdisplay_a_sources = \ display-enums.h \ @@ -483,18 +495,6 @@ $(libappdisplay_a_built_sources) \ $(libappdisplay_a_sources) -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Display\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc # diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/display/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/display/makefile.msc --- gimp-2.6.0/app/display/makefile.msc 2008-08-21 12:33:37.000000000 +0100 +++ gimp-2.6.1/app/display/makefile.msc 2008-10-08 22:16:01.000000000 +0100 @@ -13,7 +13,8 @@ -FImsvc_recommended_pragmas.h \ -I$(PRJ_TOP) \ -I$(PRJ_TOP)/app \ - $(GTK2_CFLAGS) + $(GTK2_CFLAGS) \ + $(GEGL_CFLAGS) DEFINES = \ -DG_LOG_DOMAIN=\"Gimp-Display\" @@ -52,6 +53,8 @@ gimpnavigationeditor.obj \ gimpscalecombobox.obj \ gimpstatusbar.obj \ + gimpdisplayshell-icon.obj \ + gimpdisplayshell-scale-dialog.obj \ # display-enums.obj \ all : \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/file/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/file/Makefile.am --- gimp-2.6.0/app/file/Makefile.am 2008-08-21 12:33:29.000000000 +0100 +++ gimp-2.6.1/app/file/Makefile.am 2008-10-08 22:15:59.000000000 +0100 @@ -1,7 +1,5 @@ ## Process this file with automake to produce Makefile.in -noinst_LIBRARIES = libappfile.a - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-File\" @@ -11,9 +9,10 @@ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) +noinst_LIBRARIES = libappfile.a + libappfile_a_SOURCES = \ file-open.c \ file-open.h \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/file/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/file/Makefile.in --- gimp-2.6.0/app/file/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/file/Makefile.in 2008-10-08 23:09:39.000000000 +0100 @@ -385,7 +385,6 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -noinst_LIBRARIES = libappfile.a AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-File\" @@ -395,9 +394,9 @@ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) +noinst_LIBRARIES = libappfile.a libappfile_a_SOURCES = \ file-open.c \ file-open.h \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/gegl/gegl-types.h /tmp/h4xbGc63vZ/gimp-2.6.1/app/gegl/gegl-types.h --- gimp-2.6.0/app/gegl/gegl-types.h 2008-08-21 12:33:29.000000000 +0100 +++ gimp-2.6.1/app/gegl/gegl-types.h 2008-10-08 22:15:59.000000000 +0100 @@ -23,7 +23,6 @@ #include "core/core-types.h" -#include "gegl/gegl-types.h" /* operations */ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/gegl/gimpcurvesconfig.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/gegl/gimpcurvesconfig.c --- gimp-2.6.0/app/gegl/gimpcurvesconfig.c 2008-09-29 18:09:24.000000000 +0100 +++ gimp-2.6.1/app/gegl/gimpcurvesconfig.c 2008-10-08 22:15:59.000000000 +0100 @@ -21,6 +21,8 @@ #include "config.h" +#include + #include #include diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/gegl/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/gegl/Makefile.am --- gimp-2.6.0/app/gegl/Makefile.am 2008-08-21 12:33:29.000000000 +0100 +++ gimp-2.6.1/app/gegl/Makefile.am 2008-10-08 22:15:59.000000000 +0100 @@ -1,5 +1,17 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-GEGL\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappgegl.a libappgegl_a_SOURCES = \ @@ -50,13 +62,3 @@ gimpoperationtilesink.h \ gimpoperationtilesource.c \ gimpoperationtilesource.h - -INCLUDES = \ - -I. \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GEGL_CFLAGS) \ - $(GDK_PIXBUF_CFLAGS) \ - -I$(includedir) diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/gegl/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/gegl/Makefile.in --- gimp-2.6.0/app/gegl/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/gegl/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -400,6 +400,18 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-GEGL\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappgegl.a libappgegl_a_SOURCES = \ gegl-types.h \ @@ -450,16 +462,6 @@ gimpoperationtilesource.c \ gimpoperationtilesource.h -INCLUDES = \ - -I. \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GEGL_CFLAGS) \ - $(GDK_PIXBUF_CFLAGS) \ - -I$(includedir) - all: all-am .SUFFIXES: diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/gui/gimpdbusservice-glue.h /tmp/h4xbGc63vZ/gimp-2.6.1/app/gui/gimpdbusservice-glue.h --- gimp-2.6.0/app/gui/gimpdbusservice-glue.h 2008-09-29 18:48:46.000000000 +0100 +++ gimp-2.6.1/app/gui/gimpdbusservice-glue.h 2008-10-08 23:24:13.000000000 +0100 @@ -53,7 +53,7 @@ #endif /* !G_ENABLE_DEBUG */ -/* BOOLEAN:STRING,POINTER,POINTER (/tmp/dbus-binding-tool-c-marshallers.VQ5FIU:1) */ +/* BOOLEAN:STRING,POINTER,POINTER (/tmp/dbus-binding-tool-c-marshallers.HE3PIU:1) */ extern void dbus_glib_marshal_gimp_BOOLEAN__STRING_POINTER_POINTER (GClosure *closure, GValue *return_value, guint n_param_values, @@ -102,7 +102,7 @@ g_value_set_boolean (return_value, v_return); } -/* BOOLEAN:POINTER (/tmp/dbus-binding-tool-c-marshallers.VQ5FIU:2) */ +/* BOOLEAN:POINTER (/tmp/dbus-binding-tool-c-marshallers.HE3PIU:2) */ extern void dbus_glib_marshal_gimp_BOOLEAN__POINTER (GClosure *closure, GValue *return_value, guint n_param_values, diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/gui/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/gui/makefile.msc --- gimp-2.6.0/app/gui/makefile.msc 2008-08-21 12:33:31.000000000 +0100 +++ gimp-2.6.1/app/gui/makefile.msc 2008-10-08 22:15:59.000000000 +0100 @@ -35,6 +35,8 @@ session.obj \ splash.obj \ themes.obj \ + gimpdbusservice.obj \ + gui-unique.obj \ INCLUDES = \ -FImsvc_recommended_pragmas.h \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/makefile.msc --- gimp-2.6.0/app/makefile.msc 2008-08-21 12:33:45.000000000 +0100 +++ gimp-2.6.1/app/makefile.msc 2008-10-08 22:16:02.000000000 +0100 @@ -16,7 +16,7 @@ SUBDIRS = composite paint-funcs base config xcf core file text \ dialogs display paint vectors pdb plug-in tools widgets gui \ - actions menus + actions menus gegl sub-all: for %d in ($(SUBDIRS)) do nmake -nologo -f makefile.msc sub-one THIS=%d @@ -101,7 +101,9 @@ batch.obj \ errors.obj \ sanity.obj \ + unique.obj \ units.obj \ + version.obj \ \ actions/appactions.lib \ menus/appmenus.lib \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/menus/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/menus/Makefile.am --- gimp-2.6.0/app/menus/Makefile.am 2008-08-21 12:33:32.000000000 +0100 +++ gimp-2.6.1/app/menus/Makefile.am 2008-10-08 22:16:00.000000000 +0100 @@ -1,5 +1,16 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Menus\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappmenus.a libappmenus_a_SOURCES = \ @@ -21,17 +32,4 @@ windows-menu.c \ windows-menu.h - -EXTRA_DIST = \ - makefile.msc - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Menus\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - -I$(includedir) +EXTRA_DIST = makefile.msc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/menus/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/menus/Makefile.in --- gimp-2.6.0/app/menus/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/menus/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -387,6 +387,17 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Menus\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappmenus.a libappmenus_a_SOURCES = \ menus-types.h \ @@ -407,20 +418,7 @@ windows-menu.c \ windows-menu.h -EXTRA_DIST = \ - makefile.msc - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Menus\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - -I$(includedir) - +EXTRA_DIST = makefile.msc all: all-am .SUFFIXES: diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/menus/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/menus/makefile.msc --- gimp-2.6.0/app/menus/makefile.msc 2008-08-21 12:33:32.000000000 +0100 +++ gimp-2.6.1/app/menus/makefile.msc 2008-10-08 22:16:00.000000000 +0100 @@ -29,9 +29,10 @@ image-menu.obj \ menus.obj \ plug-in-menus.obj \ - toolbox-menu.obj \ +# toolbox-menu.obj \ tool-options-menu.obj \ window-menu.obj \ + windows-menu.obj \ $(PRJ_TOP)\config.h: $(PRJ_TOP)\config.h.win32 copy $(PRJ_TOP)\config.h.win32 $(PRJ_TOP)\config.h diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/paint/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/paint/Makefile.am --- gimp-2.6.0/app/paint/Makefile.am 2008-08-21 12:33:45.000000000 +0100 +++ gimp-2.6.1/app/paint/Makefile.am 2008-10-08 22:16:02.000000000 +0100 @@ -9,7 +9,6 @@ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libapppaint.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/paint/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/paint/Makefile.in --- gimp-2.6.0/app/paint/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/paint/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -409,7 +409,6 @@ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libapppaint.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/paint-funcs/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/paint-funcs/Makefile.am --- gimp-2.6.0/app/paint-funcs/Makefile.am 2008-08-21 12:33:31.000000000 +0100 +++ gimp-2.6.1/app/paint-funcs/Makefile.am 2008-10-08 22:16:00.000000000 +0100 @@ -1,5 +1,21 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" + +AM_CCASFLAGS = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_srcdir)/app + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GLIB_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libapppaint-funcs.a libapppaint_funcs_a_SOURCES = \ @@ -14,20 +30,4 @@ subsample-region.c \ subsample-region.h -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GLIB_CFLAGS) \ - -I$(includedir) - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" - -AM_CCASFLAGS = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/app - EXTRA_DIST = makefile.msc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/paint-funcs/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/paint-funcs/Makefile.in --- gimp-2.6.0/app/paint-funcs/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/paint-funcs/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -386,6 +386,22 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" + +AM_CCASFLAGS = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_srcdir)/app + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GLIB_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libapppaint-funcs.a libapppaint_funcs_a_SOURCES = \ paint-funcs-types.h \ @@ -399,22 +415,6 @@ subsample-region.c \ subsample-region.h -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GLIB_CFLAGS) \ - -I$(includedir) - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" - -AM_CCASFLAGS = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/app - EXTRA_DIST = makefile.msc all: all-am diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/paint-funcs/scale-region.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/paint-funcs/scale-region.c --- gimp-2.6.0/app/paint-funcs/scale-region.c 2008-09-16 10:26:38.000000000 +0100 +++ gimp-2.6.1/app/paint-funcs/scale-region.c 2008-10-08 22:16:00.000000000 +0100 @@ -189,13 +189,8 @@ if (srcPR->tiles != NULL && srcPR->data == NULL) { - GTimer *timer = g_timer_new (); - scale_region_tile (srcPR, dstPR, interpolation, progress_callback, progress_data); - - g_printerr ("scale: %g sec\n", g_timer_elapsed (timer, NULL)); - g_timer_destroy (timer); return; } diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/pdb/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/pdb/Makefile.am --- gimp-2.6.0/app/pdb/Makefile.am 2008-08-21 12:33:35.000000000 +0100 +++ gimp-2.6.1/app/pdb/Makefile.am 2008-10-08 22:16:00.000000000 +0100 @@ -1,5 +1,17 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-PDB\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libapppdb.a libappinternal-procs.a libapppdb_a_SOURCES = \ @@ -69,17 +81,4 @@ unit-cmds.c \ vectors-cmds.c -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-PDB\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ - $(GEGL_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/pdb/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/pdb/Makefile.in --- gimp-2.6.0/app/pdb/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/pdb/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -414,6 +414,18 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-PDB\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libapppdb.a libappinternal-procs.a libapppdb_a_SOURCES = \ pdb-types.h \ @@ -482,19 +494,6 @@ unit-cmds.c \ vectors-cmds.c -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-PDB\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ - $(GEGL_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc all: all-am diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/pdb/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/pdb/makefile.msc --- gimp-2.6.0/app/pdb/makefile.msc 2008-08-21 12:33:35.000000000 +0100 +++ gimp-2.6.1/app/pdb/makefile.msc 2008-10-08 22:16:00.000000000 +0100 @@ -28,56 +28,57 @@ OBJECTS_UI = \ - brush_select_cmds.obj \ - gradient_select_cmds.obj \ - palette_select_cmds.obj \ - pattern_select_cmds.obj \ + brush-select-cmds.obj \ + gradient-select-cmds.obj \ + palette-select-cmds.obj \ + pattern-select-cmds.obj \ OBJECTS = \ $(OBJECTS_UI) \ - internal_procs.obj \ - brush_cmds.obj \ - brushes_cmds.obj \ - buffer_cmds.obj \ - channel_cmds.obj \ - color_cmds.obj \ - context_cmds.obj \ - convert_cmds.obj \ - display_cmds.obj \ - drawable_cmds.obj \ - drawable_transform_cmds.obj \ - edit_cmds.obj \ - fileops_cmds.obj \ - floating_sel_cmds.obj \ - fonts_cmds.obj \ - font_select_cmds.obj \ - gimprc_cmds.obj \ - gradient_cmds.obj \ - gradients_cmds.obj \ - grid_cmds.obj \ - guides_cmds.obj \ - help_cmds.obj \ - image_cmds.obj \ - layer_cmds.obj \ - message_cmds.obj \ - misc_cmds.obj \ - paint_tools_cmds.obj \ - palette_cmds.obj \ - palettes_cmds.obj \ - parasite_cmds.obj \ - paths_cmds.obj \ - pattern_cmds.obj \ - patterns_cmds.obj \ - plug_in_cmds.obj \ - procedural_db_cmds.obj \ - progress_cmds.obj \ - selection_cmds.obj \ - selection_tools_cmds.obj \ - text_tool_cmds.obj \ - transform_tools_cmds.obj \ - undo_cmds.obj \ - unit_cmds.obj \ - vectors_cmds.obj \ + internal-procs.obj \ + brush-cmds.obj \ + brushes-cmds.obj \ + buffer-cmds.obj \ + channel-cmds.obj \ + color-cmds.obj \ + context-cmds.obj \ + convert-cmds.obj \ + display-cmds.obj \ + drawable-cmds.obj \ + drawable-transform-cmds.obj \ + edit-cmds.obj \ + fileops-cmds.obj \ + floating-sel-cmds.obj \ + fonts-cmds.obj \ + font-select-cmds.obj \ + gimprc-cmds.obj \ + gradient-cmds.obj \ + gradients-cmds.obj \ + grid-cmds.obj \ + guides-cmds.obj \ + help-cmds.obj \ + image-cmds.obj \ + layer-cmds.obj \ + message-cmds.obj \ + misc-cmds.obj \ + paint-tools-cmds.obj \ + palette-cmds.obj \ + palettes-cmds.obj \ + parasite-cmds.obj \ + paths-cmds.obj \ + pattern-cmds.obj \ + patterns-cmds.obj \ + plug-in-cmds.obj \ + procedural-db-cmds.obj \ + progress-cmds.obj \ + selection-cmds.obj \ + selection-tools-cmds.obj \ + text-layer-cmds.obj \ + text-tool-cmds.obj \ + transform-tools-cmds.obj \ + undo-cmds.obj \ + unit-cmds.obj \ + vectors-cmds.obj \ \ gimppdb.obj \ gimppdb-utils.obj \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/plug-in/gimpplugin.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/plug-in/gimpplugin.c --- gimp-2.6.0/app/plug-in/gimpplugin.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/plug-in/gimpplugin.c 2008-10-08 22:16:02.000000000 +0100 @@ -20,7 +20,9 @@ #include "config.h" +#ifndef _WIN32 #define _GNU_SOURCE +#endif #include #include diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/plug-in/gimpplugin-cleanup.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/plug-in/gimpplugin-cleanup.c --- gimp-2.6.0/app/plug-in/gimpplugin-cleanup.c 2008-08-21 12:33:44.000000000 +0100 +++ gimp-2.6.1/app/plug-in/gimpplugin-cleanup.c 2008-10-08 22:16:02.000000000 +0100 @@ -20,7 +20,7 @@ #include "config.h" -#include "glib-object.h" +#include #include "plug-in-types.h" diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/plug-in/gimppluginprocframe.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/plug-in/gimppluginprocframe.c --- gimp-2.6.0/app/plug-in/gimppluginprocframe.c 2008-08-21 12:33:44.000000000 +0100 +++ gimp-2.6.1/app/plug-in/gimppluginprocframe.c 2008-10-08 22:16:02.000000000 +0100 @@ -75,7 +75,7 @@ proc_frame->main_context = g_object_ref (context); proc_frame->context_stack = NULL; - proc_frame->procedure = GIMP_PROCEDURE (procedure); + proc_frame->procedure = procedure ? g_object_ref (procedure) : NULL; proc_frame->main_loop = NULL; proc_frame->return_vals = NULL; proc_frame->progress = progress ? g_object_ref (progress) : NULL; @@ -118,6 +118,12 @@ proc_frame->main_context = NULL; } + if (proc_frame->procedure) + { + g_object_unref (proc_frame->procedure); + proc_frame->procedure = NULL; + } + if (proc_frame->return_vals) { g_value_array_free (proc_frame->return_vals); diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/plug-in/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/plug-in/Makefile.am --- gimp-2.6.0/app/plug-in/Makefile.am 2008-08-21 12:33:44.000000000 +0100 +++ gimp-2.6.1/app/plug-in/Makefile.am 2008-10-08 22:16:02.000000000 +0100 @@ -9,7 +9,6 @@ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libappplug-in.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/plug-in/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/plug-in/Makefile.in --- gimp-2.6.0/app/plug-in/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/plug-in/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -411,7 +411,6 @@ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libappplug-in.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/plug-in/plug-in-menu-path.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/plug-in/plug-in-menu-path.c --- gimp-2.6.0/app/plug-in/plug-in-menu-path.c 2008-09-24 08:40:16.000000000 +0100 +++ gimp-2.6.1/app/plug-in/plug-in-menu-path.c 2008-10-08 22:16:02.000000000 +0100 @@ -62,6 +62,7 @@ { "/Help", NULL, "/Help" }, { "/File/Acquire", NULL, "/File/Create/Acquire" }, + { "", NULL, "" }, { "/File/Acquire", NULL, "/File/Create/Acquire" }, { "/File/New", NULL, "/File/Create" }, { NULL, NULL, NULL } diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/text/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/text/Makefile.am --- gimp-2.6.0/app/text/Makefile.am 2008-08-21 12:33:16.000000000 +0100 +++ gimp-2.6.1/app/text/Makefile.am 2008-10-08 22:15:57.000000000 +0100 @@ -10,7 +10,6 @@ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ $(PANGOFT2_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libapptext.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/text/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/text/Makefile.in --- gimp-2.6.0/app/text/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/text/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -403,7 +403,6 @@ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ $(PANGOFT2_CFLAGS) \ - $(GLIB_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libapptext.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/tools/gimpgegltool.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/tools/gimpgegltool.c --- gimp-2.6.0/app/tools/gimpgegltool.c 2008-09-16 10:26:38.000000000 +0100 +++ gimp-2.6.1/app/tools/gimpgegltool.c 2008-10-08 22:15:58.000000000 +0100 @@ -226,7 +226,7 @@ { static const gchar * const blacklist[] = { - "convert-format", "gimp-", "introspect", "stress" + "convert-format", "gimp-", "introspect", "stress", "text" }; gint i; diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/tools/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/tools/Makefile.am --- gimp-2.6.0/app/tools/Makefile.am 2008-08-21 12:33:28.000000000 +0100 +++ gimp-2.6.1/app/tools/Makefile.am 2008-10-08 22:15:58.000000000 +0100 @@ -1,5 +1,17 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Tools\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libapptools.a libapptools_a_sources = \ @@ -183,19 +195,6 @@ libapptools_a_SOURCES = $(libapptools_a_built_sources) $(libapptools_a_sources) - -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Tools\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc # diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/tools/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/tools/Makefile.in --- gimp-2.6.0/app/tools/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/tools/Makefile.in 2008-10-08 23:09:40.000000000 +0100 @@ -432,6 +432,18 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-Tools\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GEGL_CFLAGS) \ + $(GTK_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libapptools.a libapptools_a_sources = \ tools-enums.h \ @@ -612,18 +624,6 @@ libapptools_a_built_sources = tools-enums.c libapptools_a_SOURCES = $(libapptools_a_built_sources) $(libapptools_a_sources) -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-Tools\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc # diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/tools/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/tools/makefile.msc --- gimp-2.6.0/app/tools/makefile.msc 2008-08-21 12:33:28.000000000 +0100 +++ gimp-2.6.1/app/tools/makefile.msc 2008-10-08 22:15:58.000000000 +0100 @@ -108,6 +108,11 @@ gimp-tools.obj \ tools-enums.obj \ tools-utils.obj \ + gimpdesaturatetool.obj \ + gimpgegltool.obj \ + gimpimagemaptool-settings.obj \ + gimpiscissorsoptions.obj \ + gimpregionselectoptions.obj \ INCLUDES = \ -FImsvc_recommended_pragmas.h \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/vectors/gimpanchor.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/vectors/gimpanchor.c --- gimp-2.6.0/app/vectors/gimpanchor.c 2008-08-21 12:33:31.000000000 +0100 +++ gimp-2.6.1/app/vectors/gimpanchor.c 2008-10-08 22:16:00.000000000 +0100 @@ -21,7 +21,7 @@ #include "config.h" -#include "glib-object.h" +#include #include "vectors-types.h" diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/vectors/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/vectors/Makefile.am --- gimp-2.6.0/app/vectors/Makefile.am 2008-08-21 12:33:31.000000000 +0100 +++ gimp-2.6.1/app/vectors/Makefile.am 2008-10-08 22:16:00.000000000 +0100 @@ -8,9 +8,8 @@ -I$(top_srcdir) \ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ $(CAIRO_CFLAGS) \ - $(GLIB_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libappvectors.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/vectors/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/vectors/Makefile.in --- gimp-2.6.0/app/vectors/Makefile.in 2008-09-29 18:23:17.000000000 +0100 +++ gimp-2.6.1/app/vectors/Makefile.in 2008-10-08 23:09:41.000000000 +0100 @@ -398,9 +398,8 @@ -I$(top_srcdir) \ -I$(top_builddir)/app \ -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ $(CAIRO_CFLAGS) \ - $(GLIB_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) noinst_LIBRARIES = libappvectors.a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/widgets/gimpfiledialog.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/widgets/gimpfiledialog.c --- gimp-2.6.0/app/widgets/gimpfiledialog.c 2008-08-21 12:33:42.000000000 +0100 +++ gimp-2.6.1/app/widgets/gimpfiledialog.c 2008-10-08 22:16:02.000000000 +0100 @@ -403,10 +403,22 @@ } void -gimp_file_dialog_set_image (GimpFileDialog *dialog, - GimpImage *image, - gboolean save_a_copy, - gboolean close_after_saving) +gimp_file_dialog_set_open_image (GimpFileDialog *dialog, + GimpImage *image, + gboolean open_as_layers) +{ + g_return_if_fail (GIMP_IS_FILE_DIALOG (dialog)); + g_return_if_fail (image == NULL || GIMP_IS_IMAGE (image)); + + dialog->image = image; + dialog->open_as_layers = open_as_layers; +} + +void +gimp_file_dialog_set_save_image (GimpFileDialog *dialog, + GimpImage *image, + gboolean save_a_copy, + gboolean close_after_saving) { const gchar *uri = NULL; gchar *dirname; diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/widgets/gimpfiledialog.h /tmp/h4xbGc63vZ/gimp-2.6.1/app/widgets/gimpfiledialog.h --- gimp-2.6.0/app/widgets/gimpfiledialog.h 2008-08-21 12:33:42.000000000 +0100 +++ gimp-2.6.1/app/widgets/gimpfiledialog.h 2008-10-08 22:16:02.000000000 +0100 @@ -42,6 +42,7 @@ GimpPlugInProcedure *file_proc; GimpImage *image; + gboolean open_as_layers; gboolean save_a_copy; gboolean close_after_saving; @@ -63,25 +64,28 @@ typedef struct _GimpFileDialogState GimpFileDialogState; -GType gimp_file_dialog_get_type (void) G_GNUC_CONST; +GType gimp_file_dialog_get_type (void) G_GNUC_CONST; -GtkWidget * gimp_file_dialog_new (Gimp *gimp, - GtkFileChooserAction action, - const gchar *title, - const gchar *role, - const gchar *stock_id, - const gchar *help_id); - -void gimp_file_dialog_set_sensitive (GimpFileDialog *dialog, - gboolean sensitive); - -void gimp_file_dialog_set_file_proc (GimpFileDialog *dialog, - GimpPlugInProcedure *file_proc); - -void gimp_file_dialog_set_image (GimpFileDialog *dialog, - GimpImage *image, - gboolean save_a_copy, - gboolean close_after_saving); +GtkWidget * gimp_file_dialog_new (Gimp *gimp, + GtkFileChooserAction action, + const gchar *title, + const gchar *role, + const gchar *stock_id, + const gchar *help_id); + +void gimp_file_dialog_set_sensitive (GimpFileDialog *dialog, + gboolean sensitive); + +void gimp_file_dialog_set_file_proc (GimpFileDialog *dialog, + GimpPlugInProcedure *file_proc); + +void gimp_file_dialog_set_open_image (GimpFileDialog *dialog, + GimpImage *image, + gboolean open_as_layers); +void gimp_file_dialog_set_save_image (GimpFileDialog *dialog, + GimpImage *image, + gboolean save_a_copy, + gboolean close_after_saving); GimpFileDialogState * gimp_file_dialog_get_state (GimpFileDialog *dialog); void gimp_file_dialog_set_state (GimpFileDialog *dialog, diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/widgets/gimphelp.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/widgets/gimphelp.c --- gimp-2.6.0/app/widgets/gimphelp.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/widgets/gimphelp.c 2008-10-08 22:16:02.000000000 +0100 @@ -503,13 +503,13 @@ *domain_names = g_new0 (gchar *, n_domains + 1); *domain_uris = g_new0 (gchar *, n_domains + 1); - *domain_names[0] = g_strdup ("http://www.gimp.org/help"); - *domain_uris[0] = gimp_help_get_default_domain_uri (gimp); + (*domain_names)[0] = g_strdup ("http://www.gimp.org/help"); + (*domain_uris)[0] = gimp_help_get_default_domain_uri (gimp); for (i = 0; i < n_domains; i++) { - *domain_names[i + 1] = plug_in_domains[i]; - *domain_uris[i + 1] = plug_in_uris[i]; + (*domain_names)[i + 1] = plug_in_domains[i]; + (*domain_uris)[i + 1] = plug_in_uris[i]; } g_free (plug_in_domains); diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/widgets/gimptoolbox-dnd.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/widgets/gimptoolbox-dnd.c --- gimp-2.6.0/app/widgets/gimptoolbox-dnd.c 2008-09-24 08:40:16.000000000 +0100 +++ gimp-2.6.1/app/widgets/gimptoolbox-dnd.c 2008-10-08 22:16:02.000000000 +0100 @@ -93,6 +93,9 @@ dock = GIMP_DOCK (toolbox); + gimp_dnd_uri_list_dest_add (GTK_WIDGET (toolbox), + gimp_toolbox_drop_uri_list, + dock->context); gimp_dnd_uri_list_dest_add (toolbox->vbox, gimp_toolbox_drop_uri_list, dock->context); diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/widgets/gtkscalebutton.c /tmp/h4xbGc63vZ/gimp-2.6.1/app/widgets/gtkscalebutton.c --- gimp-2.6.0/app/widgets/gtkscalebutton.c 2008-09-16 10:26:39.000000000 +0100 +++ gimp-2.6.1/app/widgets/gtkscalebutton.c 2008-10-08 22:16:02.000000000 +0100 @@ -35,7 +35,9 @@ #include "config.h" +#ifndef _WIN32 #define _GNU_SOURCE +#endif #include #include #include diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/widgets/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/app/widgets/makefile.msc --- gimp-2.6.0/app/widgets/makefile.msc 2008-08-21 12:33:42.000000000 +0100 +++ gimp-2.6.1/app/widgets/makefile.msc 2008-10-08 22:16:02.000000000 +0100 @@ -178,12 +178,24 @@ gtkhwrapbox.obj \ gtkvwrapbox.obj \ gtkwrapbox.obj \ + gimpactioneditor.obj \ + gimpcairo-wilber.obj \ + gimplanguageentry.obj \ + gimplanguagestore-parser.obj \ + gimplanguagestore.obj \ + gimpradioaction.obj \ + gimpscalebutton.obj \ + gimpsettingsbox.obj \ + gimpsettingseditor.obj \ + gimptoggleaction.obj \ + gimpwindow.obj \ + gtkscalebutton.obj \ # widgets-enums.obj \ INCLUDES = \ -FImsvc_recommended_pragmas.h \ - -I$(top_srcdir) \ - -I$(top_srcdir)/app \ + -I $(PRJ_TOP) \ + -I $(PRJ_TOP)/app \ $(GTK2_CFLAGS) \ -I$(includedir) diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/xcf/Makefile.am /tmp/h4xbGc63vZ/gimp-2.6.1/app/xcf/Makefile.am --- gimp-2.6.0/app/xcf/Makefile.am 2008-08-21 12:33:29.000000000 +0100 +++ gimp-2.6.1/app/xcf/Makefile.am 2008-10-08 22:15:59.000000000 +0100 @@ -1,5 +1,16 @@ ## Process this file with automake to produce Makefile.in +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-XCF\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappxcf.a libappxcf_a_SOURCES = \ @@ -17,16 +28,4 @@ xcf-write.c \ xcf-write.h -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-XCF\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/app/xcf/Makefile.in /tmp/h4xbGc63vZ/gimp-2.6.1/app/xcf/Makefile.in --- gimp-2.6.0/app/xcf/Makefile.in 2008-09-29 18:23:18.000000000 +0100 +++ gimp-2.6.1/app/xcf/Makefile.in 2008-10-08 23:09:41.000000000 +0100 @@ -386,6 +386,17 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-XCF\" + +INCLUDES = \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + noinst_LIBRARIES = libappxcf.a libappxcf_a_SOURCES = \ xcf.c \ @@ -402,18 +413,6 @@ xcf-write.c \ xcf-write.h -AM_CPPFLAGS = \ - -DG_LOG_DOMAIN=\"Gimp-XCF\" - -INCLUDES = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_builddir)/app \ - -I$(top_srcdir)/app \ - $(GDK_PIXBUF_CFLAGS) \ - $(GLIB_CFLAGS) \ - -I$(includedir) - EXTRA_DIST = makefile.msc all: all-am diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/ChangeLog /tmp/h4xbGc63vZ/gimp-2.6.1/ChangeLog --- gimp-2.6.0/ChangeLog 2008-09-30 22:33:37.000000000 +0100 +++ gimp-2.6.1/ChangeLog 2008-10-08 23:09:03.000000000 +0100 @@ -1,16113 +1,313 @@ -2008-09-30 Sven Neumann - - * Made 2.6.0 release. - -2008-09-30 Michael Natterer - - Bug 546924 – "New Image" misscalculating dimensions for non-pixel - sized templates - - * app/core/gimptemplate.h: added private param flag - GIMP_TEMPLATE_PARAM_COPY_FIRST. - - * app/core/gimptemplate.c (gimp_template_class_init): set the flag - on the resolution properties. - - * app/dialogs/image-new-dialog.c (image_new_template_changed): - make sure the resolution properties are copied first. - - * libgimpconfig/gimpconfig-utils.c (gimp_config_sync): remove - comment about fixing the template editor. That's not true any - more. - -2008-09-30 Michael Natterer - - * app/tools/gimpimagemaptool.[ch]: keep a "default_config" object - around and use it to reset the tool if it exists. - - (gimp_image_map_tool_edit_as): set the default_config on the new - tool so "reset" goes back to the values the tool was started with. - - * app/tools/gimpcolorbalencetool.c (gimp_color_balance_tool_reset) - * app/tools/gimpcurvestool.c (gimp_curves_tool_reset) - * app/tools/gimphuesaturationtool.c (gimp_hue_saturation_tool_reset) - * app/tools/gimplevelstool.c (gimp_levels_tool_reset): use the - default config to reset the tool here too if it exists. - -2008-09-30 Sven Neumann - - * app/gui/splash.c: don't make the upper label bold. This change - compensates for the smaller width of the new splash screen. - -2008-09-30 Sven Neumann - - * app/widgets/gimpwidgets-utils.[ch]: added - gimp_pango_layout_set_scale(). - - * app/gui/splash.c: set a smaller font size on the lower label. - -2008-09-30 Sven Neumann - - * app/widgets/gimpwidgets-utils.c (gimp_pango_layout_set_weight): - actually use the passed weight. - -2008-09-30 Sven Neumann - - * app/config/gimpbaseconfig.c - * app/config/gimpguiconfig.c: reverted parts of commit 25812. - Restores compatibility with old gimprc files. - -2008-09-30 Sven Neumann - - * app/config/gimprc-deserialize.c (gimp_rc_deserialize): formatting. - -2008-09-29 Sven Neumann - - * README: prepared for the upcoming 2.6 release. - -2008-09-29 Sven Neumann - - * configure.in: bumped version to 2.6.0. - - * app/Makefile.am - * tools/Makefile.am: changed accordingly. - - * docs/gimprc.5.in - * etc/gimprc: regenerated. - -2008-09-29 Sven Neumann - - * data/images/gimp-splash.png: splash screen for GIMP 2.6. Created - by Alexia Death and edited together with Ville Pätsi. - - * authors.xml: added the two splash screen artists. - - * AUTHORS: regenerated. - -2008-09-29 Sven Neumann - - * INSTALL: prepared for the upcoming 2.6 release. - -2008-09-29 Martin Nordholts - - Bug 554125 – Tab key doesn't hide utility windows when there is no - image open. - - * app/widgets/gimpdialogfactory.[ch]: Add 'toggle_visibility' to - GimpDialogFactory and as a parameter to gimp_dialog_factory_new(), - and set it there. - - (gimp_dialog_factories_hide_foreach): Don't hide dialogs belonging - to factories with toggle_visibility FALSE. - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): Move no-image event - handling to a new helper function, and make pressing Tab hide - windows. - - * app/dialogs/dialogs.c (dialogs_init): Allow toggling visibility - for all factories except the display-factory. - -2008-09-29 Michael Natterer - - * app/core/gimpcurve.c (gimp_curve_copy): no need to memcpy() the - arrays, they are properly copied by gimp_config_sync() now. Add - call to gimp_data_dirty() so GimpCurvesConfig gets notified. - - * app/gegl/gimpcurvesconfig.c (gimp_curves_config_set_property): - use gimp_config_copy() instead of copying the curve menually. - -2008-09-29 Michael Natterer - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factories_show_foreach) - (gimp_dialog_factories_hide_foreach): remove some casts that were - always useless and are even more useless now after the recent - readability improvement. - -2008-09-29 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): reduced - default window height to give a window aspect ratio of roughly 3:1 - as requested by Peter. - -2008-09-28 Martin Nordholts - - Bug 472403 – Add bevel script fu does not work if there is no - selection - - * plug-ins/script-fu/scripts/add-bevel.scm (script-fu-add-bevel): - Applied modified patch from Barak Itkin that when there is no - selection makes the bevel be performed on the whole layer instead - of the whole image (which was broken in the first place). It also - fixes some bugs with setting the selection when there is no - initial selection. - -2008-09-28 Martin Nordholts - - * plug-ins/script-fu/scripts/add-bevel.scm (script-fu-add-bevel): - Rename 'select' to 'selection' since that is what it holds. - -2008-09-28 Martin Nordholts - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factories_show_foreach) - (gimp_dialog_factories_hide_foreach): Increase readability with - widget = list->data. - -2008-09-27 Martin Nordholts - - Bug 551864 – plugin Flame fails for some settings on 64bit - machines +2008-10-09 Sven Neumann - * plug-ins/flame/rect.c (render_rectangle): To handle p[0] and - p[1] being NaN, make sure that they are "within bounds" instead of - "not outside bounds". + * Made 2.6.1 release. -2008-09-26 Michael Natterer +2008-10-08 Martin Nordholts - * app/widgets/gimpnavigationview.c: reorder functions and add - static prototypes. + Bug 555587 – PSD file crashes PSD plug-in -2008-09-25 Michael Natterer + * plug-ins/file-psd/psd-load.c (add_merged_image): Handle + img_a->alpha_names being NULL. - * app/base/colorize.c (colorize_calculate): fix calculation of - final lookup table to not darken the image. +2008-10-08 Michael Natterer -2008-09-25 Michael Natterer + * libgimpwidgets/gimpruler.c: cosmetics. - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_drop_pixbuf): use the new helper function here - too. +2008-10-08 Michael Natterer -2008-09-25 Sven Neumann + Quick hack I needed for debugging and which doesn't hurt: - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_drop_component) - (gimp_display_shell_drop_drawable): moved duplicated code into a - helper function. + * tools/test-clipboard.c (test_clipboard_paste): allow to paste to + STDOUT by passing '-' as filename. -2008-09-25 Michael Natterer +2008-10-08 Martin Nordholts - * plug-ins/print/print-draw-page.c - (print_cairo_surface_from_drawable): free the right array. + * plug-ins/file-psd/psd-load.c (add_layers): Decrease scope of + comp_mode and initialize it. -2008-09-25 Sven Neumann +2008-10-08 Martin Nordholts - * plug-ins/file-jpeg/jpeg.[ch] - * plug-ins/file-jpeg/jpeg-save.[ch] - * plug-ins/file-jpeg/jpeg-settings.[ch]: introduced an enum for - the subsampling factor. + Bug 555222 – PSD Load Plugin: unsupported compression mode -2008-09-25 Sven Neumann + * plug-ins/file-psd/psd-load.c (add_layers): Some PSD files can + have channels where a compression method used for the channel data + is specified, but without any actual channel data. Handle this + case. Fix inspired by patch from Chris Mohler. - Bug 553412 – JPEG sampling factors not set to 1x1 on grayscale - images: +2008-10-08 Sven Neumann - * plug-ins/file-jpeg/jpeg-save.c: always set subsampling to 1x1 - for grayscale images and indicate this properly in the UI. + * app/base/tile-cache.c: use a GMutex instead of a GStaticMutex + as the latter needs API that causes compiler warnings about + dereferencing of type-punned pointers. -2008-09-25 Michael Natterer +2008-10-07 Michael Natterer - Bug 553530 – fatal error: Segmentation fault - when attempting to - bring up color-picker: + Bug 555362 – gimp-remote is not working properly - * modules/color-selector-wheel.c: declare gtk_hsv_get_type() if - not already done by GTK+. Fixes confusion about its return value - being 32 or 64 bit on 64 bit machines. + * app/widgets/gimptoolbox-dnd.c (gimp_toolbox_dnd_init): add the + window itself as drop traget again so gimp-remote works. -2008-09-25 Michael Natterer +2008-10-07 Michael Natterer - Bug 549195 – Color Wheel not working (GtkHSV): + * app/*/Makefile.am: reorder sections consistently. Remove + redundant CFLAGS. - * modules/color-selector-wheel.c: change packing and size requests - of the GtkHSV and its optional GtkAligmnent depending on the GTK+ - version used to make it work with both the old and the new version - of the widget. Evil hacks, better don't look :) +2008-10-06 Sven Neumann -2008-09-25 Sven Neumann + Bug 555280 – some gif files will not be open - * app/core/gimp.[ch]: added a 'restored' flag to the Gimp object - and set it in gimp_real_restore(). Added method gimp_is_restored(). + * plug-ins/common/file-gif-load.c (GetCode): be more tolerant and + continue loading with a warning message if there are bits missing + at the end of the file. - * app/gui/gui.c: call gui_unique_init() in gui_init() instead of - doing that later in gui_restore_after_callback(). By doing so we - start our DBus service (or message proxy window on Win32) much - earlier in the start process, thus reducing the time frame where - two instances of GIMP can be launched. +2008-10-06 Sven Neumann - * app/gui/gui-unique.c - * app/gui/gimpdbusservice.c: wait handling the queued file-open - requests until GIMP is fully restored. + * app/paint-funcs/scale-region.c (scale_region): removed debug + output. - * app/gui/splash.c (splash_update): only run one iteration of the - main loop. Doing it in a while loop can cause us to get stuck if - the gimp-unique service already added an idle handler. +2008-10-06 Michael Natterer -2008-09-24 Martin Nordholts - - Bug 549925 – incorrect math: adding/substracting empty selection - deselects selection - - * app/tools/gimprectangleselecttool.c - (gimp_rectangle_select_tool_execute): Be more intuitive when - clicking outside the current selection for the selection modes Add - and Subtract. More specifically, don't alter the selection mask at - all. - -2008-09-24 Martin Nordholts - - * app/tools/gimprectangleselecttool.c: Added new utility function - gimp_rectangle_select_tool_get_operation(), and started using it. - -2008-09-24 Sven Neumann - - * plug-ins/pygimp/pygimp-image.c: undef GIMP_DISABLE_DEPRECATED - as we need the deprecated gimp_image_free_shadow() here. - - * plug-ins/pygimp/pygimp-drawable.c: added Drawable.free_shadow(). - -2008-09-24 Sven Neumann - - * plug-ins/pygimp/pygimp-drawable.c - * plug-ins/pygimp/pygimp-image.c: added optional interpolation - parameters to the image.scale() and layer.scale() methods. - -2008-09-24 Michael Natterer - - * app/widgets/gimpcontrollereditor.c - (gimp_controller_editor_edit_response): call - gimp_controller_editor_sel_changed() with the right - GtkTreeSelection object (the editor's, not the action - list's). Fixes crash upon selecting an action for a controller - event. Spotted by Alexander Rabtchevich. - -2008-09-24 Martin Nordholts - - * tools/pdbgen/pdb/selection.pdb (selection_layer_alpha): Update - documentation, the layer does not need to have an alpha channel. A - layer without an alpha channel is considered opaque. - - * app/pdb/selection-cmds.c - * libgimp/gimpselection_pdb.c: Regenerated. - -2008-09-24 Sven Neumann - - * tools/pdbgen/pdb/layer.pdb - * tools/pdbgen/pdb/image.pdb: added new scale procedures that - allow to specify the interpolation explicitly. Fixes bug #486977. - Also pass the progress parameter to the scale and rotate functions. - - * app/pdb/image-cmds.c - * app/pdb/internal-procs.c - * app/pdb/layer-cmds.c - * libgimp/gimpimage_pdb.[ch] - * libgimp/gimplayer_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - -2008-09-24 Sven Neumann - - * tools/pdbgen/pdb/image.pdb: fixed error and some typos in the - PDB documentation. - - * app/pdb/image-cmds.c - * libgimp/gimpimage_pdb.c: regenerated. - -2008-09-23 Sven Neumann - - * INSTALL - * configure.in: added --without-wmf option to disable build of the - WMF plug-in. - -2008-09-23 Sven Neumann - - Move the "Use GEGL" check-box to the Colors menu (bug #548760): - - * app/actions/Makefile.am - * app/actions/config-actions.[ch] - * app/actions/config-commands.[ch]: new files holding the "config" - action group that includes the "use-gegl" toggle action. - - * app/actions/debug-actions.c - * app/actions/debug-commands.[ch]: removed the "use-gegl" action - here. - - * app/menus/menus.c - * app/actions/actions.c: added the new action group. - - * app/widgets/gimphelp-ids.h: added a help ID for the "use-gegl" - action. - - * menus/image-menu.xml.in: moved the "Use GEGL" check-box to the - Colors menu. - -2008-09-21 Sven Neumann - - * app/actions/windows-actions.c: don't set a help ID on the - display menu items. - - * app/widgets/gimphelp-ids.h: removed now unused help ID. - - * app/menus/windows-menu.c: show a larger image preview in the - tooltip. - -2008-09-21 Sven Neumann - - * INSTALL: mention more explicitely that the '--without-gvfs' - option should be used with configure if GVfs support is missing. - -2008-09-20 Sven Neumann - - * app/dialogs/about-dialog.c: put translator comment on a single - line, looks better in the .po file. - -2008-09-20 Michael Natterer - - * plug-ins/script-fu/Makefile.am - * plug-ins/script-fu/script-fu-utils.[ch]: new files containing - script_fu_stresacpe(). - - * plug-ins/script-fu/script-fu-script.c - * plug-ins/script-fu/script-fu-scripts.[ch]: changed accordingly. - -2008-09-20 Simon Budig - - * app/core/gimpcurve.c: whitespace fix - - * app/gegl/gimplevelsconfig.c: make sure that the points set by - default gets unset before calculating the levels->curves - transition. We don't want stray points in the corners. - -2008-09-19 Michael Natterer - - * plug-ins/script-fu/script-fu-types.h (struct SFScript): rename - "menu_path" to "menu_label". Having a full path here is just - compat cruft. - - * plug-ins/script-fu/script-fu-scripts.c - * plug-ins/script-fu/script-fu-script.[ch]: changed accordingly. - -2008-09-19 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c: also apply the menu - mapping on scripts that use script-fu-menu-register to add - themselves to the menus. - -2008-09-19 Michael Natterer - - * plug-ins/script-fu/scheme-wrapper.c: move variables to local - scopes, fix some whitespace and indentation, some misc. cleanup, - remove comments about array calling conventions that had lots of - copy and paste errors. - -2008-09-19 Sven Neumann - - * app/actions/file-actions.c: renamed "file-new-menu" to - "file-create-menu" and changed the menu label from "New" to "Create". - - * app/plug-in/plug-in-menu-path.c - * menus/image-menu.xml.in - * plug-ins/common/screenshot.c - * plug-ins/script-fu/script-fu.c - * plug-ins/script-fu/scripts/*.scm - * plug-ins/twain/twain.c - * plug-ins/win-snap/winsnap.c: changed accordingly. - -2008-09-19 Michael Natterer - - * libgimp/gimp.[ch] (gimp_destroy_paramdefs): fix docs: there is - no such thing as gimp_query_procedure(), the function is called - gimp_procedural_db_proc_info(). - -2008-09-19 Sven Neumann - - * plug-ins/script-fu/scheme-wrapper.c - (script_fu_marshal_procedure_call): increased size of the - stack-allocated error string. - -2008-09-19 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): - fix warning about missing braces around array initializer. + * plug-ins/common/file-gih.c + * plug-ins/common/file-xbm.c: setting a spin button's + page_increment to 1 is of no use, set it to 10 instead. -2008-09-19 Michael Natterer +2008-10-06 Michael Natterer - * plug-ins/script-fu/script-fu-script.[ch]: add new functions - script_fu_script_get_title() and script_fu_script_reset(). + * app/plug-in/plug-in-menu-path.c (menu_path_mappings): add a + fallback mapping from to so we catch really + everything that wants to go to . - * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): - don't set all default values *and* values when parsing the script, - just set the defaults and call script_fu_script_reset() afterwards. +2008-10-06 Michael Natterer - * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): - use the new script_fu_script_get_title(). + * app/core/gimpcontext.c (gimp_context_real_set_display): paranoia + fix for hypothetical but harmful misbehavior: when setting the + display from !=NULL to NULL, also set the image to NULL instead of + relying on whatever obscure implicit behavior of other parts of + GIMP which set a new display right away or make sure the image + goes away together with the display. - (script_fu_reset): call script_fu_script_reset() and then update - the UI from the current values, instead of doing slightly - different things for each arg type. +2008-10-06 Michael Natterer -2008-09-19 Sven Neumann + * app/core/gimplayer.c (gimp_layer_add_mask): g_return_if_fail() + on the mask's image being the same as the layer's image. The PDB + already checks for this. - * plug-ins/help-browser/dialog.c (update_actions): allow to copy - selected text to the clipboard using Ctrl-C or the right-click - menu. + * app/core/gimpimage.c (gimp_image_add_layer,channel,vectors): + remove calls to gimp_item_set_image() because we only accept + itmes of this image anyway. -2008-09-19 Sven Neumann +2008-10-05 Michael Natterer - * app/actions/plug-in-actions.c (plug_in_actions_history_changed): - try to use the menu label with ellipsis instead of the result of - gimp_plug_in_procedure_get_label() which has ellipsis and - mnemonics stripped. + * app/plug-in/gimpplugin-cleanup.c + * app/vectors/gimpanchor.c: #include , not + "glib-object.h". -2008-09-19 Sven Neumann +2008-10-05 Michael Natterer - * app/gegl/gimplevelsconfig.c (gimp_levels_config_to_curves_config): - need to set the point at the index corresponding to the x value. + * app/gegl/gegl-types.h: including ourselves serves no purpose. -2008-09-18 Sven Neumann +2008-10-05 Michael Natterer - * app/core/gimpcurve.c (gimp_curve_plot) - * app/gegl/gimplevelsconfig.c (gimp_levels_config_to_curves_config): - formatting. + Allow to "Open as Layers" in the empty display: -2008-09-18 Simon Budig + * app/widgets/gimpfiledialog.[ch]: add member + "gboolean open_as_layers". Rename gimp_file_dialog_set_image() to + gimp_file_dialog_set_save_image() and add + gimp_file_dialog_set_open_image() which sets both the image to + load layers into and the "open_as_layers" boolean. - * app/core/gimpcurve.c: comment fix + * app/dialogs/file-open-dialog.c (file_open_dialog_response): look + at dialog->open_as_layers instead of dialog->image to decide whether + to open as layers (that's much more obvious). Enable open as layers + without existing image by creating the image if it doesn't exist. - * app/gegl/gimplevelsconfig.c: improve the levels->curves - transition. Not perfect, the result does not match a "real" - gamma correction, especially in the dark areas, where the - curves are too dark compared to the levels. + * app/actions/file-commands.c (file_open_dialog_show): add "title" + parameter and take the uri from the image if none was passed. Use the + new gimp_file_dialog_set_open_image() instead of poking into the + dialog struct. Change callers to pass the title and not get the + uri from the image; instead always pass the image. -2008-09-18 Sven Neumann + * app/actions/file-actions.c (file_actions_update): keep + "Open as Layers" sensitive even without image. - * plug-ins/common/edge-dog.c: the plug-in can only run on layers, - not masks and channels. Added a check for this and bail out with - an error message. Fixes bug #552625. +2008-10-05 Michael Natterer - * plug-ins/common/curve-bend.c: return error messages via the - procedure's return values. + * app/core/gimpimage-contiguous-region.c: some formatting cleanups. -2008-09-18 Sven Neumann + (find_contiguous_segment): changed to return gboolean not gint. - * app/plug-in/gimppluginprocedure.c - * libgimp/gimp.c: minor cleanups. +2008-10-05 Sven Neumann -2008-09-18 Sven Neumann + * libgimpwidgets/gimpruler.c: cache the PangoLayout. Use it not + only for drawing the numbers, but also to calculate the size + requisition depending on the actual font size. - * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): - don't leak the GError. +2008-10-05 Sven Neumann -2008-09-18 Michael Natterer + * libgimpwidgets/gimpruler.c: instead of hardcoding a size + request, implement GtkWidget::size_request and set the size + depending on the font-scale. - Bug 552785 – Script-fu run errors do not show in UI +2008-10-05 Sven Neumann - * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): - fix the code that passes the error message back via the pipe. + Bug 554890 – JPEG Save Options Dialog does not remember + Subsampling mode -2008-09-18 Sven Neumann + * plug-ins/file-jpeg/jpeg.c (run): fixed problem introduced by the + use of an enum for the subsampling factor. - * plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command): - plugged a memory leak. +2008-10-04 Michael Natterer - * plug-ins/script-fu/script-fu-console.c - * plug-ins/script-fu/script-fu-server.c: minor cleanup. + * plug-ins/common/web-browser.c: return errors via return_vals + instead of displaying them with g_message(). -2008-09-18 Michael Natterer +2008-10-04 Sven Neumann - * plug-ins/script-fu/script-fu-script.[ch]: add new functions - script_fu_script_collect_standard_args(), - script_fu_script_get_command() and - script_fu_script_get_command_from_params(). + * libgimpwidgets/gimpruler.c: increased ruler font scale from + X_SMALL to SMALL as it appears to be too small for many users. - * plug-ins/script-fu/script-fu-scripts.c: remove the resp. code - here and use above functions instead. + * themes/Default/gtkrc: follow that change here, but keep the + ruler font extra small in the Small theme. - * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): changed - loop over args to only copy all widget content into the script's - values and then call script_fu_script_get_command(). +2008-10-04 Sven Neumann -2008-09-18 Michael Natterer + * plug-ins/file-jpeg/jpeg-save.c: some cleanups to the subsampling + code; in an attempt to fix bug #555031. - * app/widgets/gimpdock.c (gimp_dock_style_set): reset the RC - styles of the dock's children after parsing the RC file snippet - for them. Fixes font size for detached dockables. +2008-10-04 Sven Neumann -2008-09-18 Tor Lillqvist + * INSTALL: updated GTK+ requirement. - * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): - Fix small build break. +2008-10-04 Michael Natterer - * app/plug-in/gimppluginshm.c: Use INVALID_HANDLE_VALUE instead of - INVALID_FILE_HANDLE which was a misunderstanding. + * configure.in: depend on GTK+ 2.12.5 so motion history events of + extended input devices have proper timestamps needed by paint + tools. -2008-09-18 Sven Neumann +2008-10-04 Sven Neumann - * app/widgets/gimpdock.c: made the font scale factor for the docks + * libgimpwidgets/gimpruler.c: make the font scale factor configurable in gtkrc. * themes/Default/gtkrc - * themes/Small/gtkrc: for documentation purposes, added the - default value for GimpDock::font-scale here. Changed all style - property names to use the canonical names. - -2008-09-18 Sven Neumann - - * app/core/gimpdrawable-shadow.c (gimp_drawable_get_shadow_tiles): - no need to check if the drawable is attached as shadow tiles are - per drawable now. - -2008-09-18 Simon Budig + * themes/Small/gtkrc: for documentation, add the default value here. - * app/gegl/gimpbrightnesscontrastconfig.c: fix the - brightness/contrast --> levels step by doing proper math (TM). +2008-10-03 Sven Neumann -2008-09-18 Sven Neumann + * plug-ins/common/web-browser.c (browser_open_url): removed + trailing whitespace and corrected error message. - * tools/pdbgen/pdb/drawable.pdb: gimp_drawable_mask_intersect() - and gimp_drawable_mask_bounds() may only be used on attached - drawables. Added missing checks. +2008-10-03 Hans Breuer - * app/pdb/drawable-cmds.c: regenerated. + * plug-ins/common/web-browser.c : when ShellExecute() is failing give + the detailed (currently intentionally untranslated) error message via + g_message() -2008-09-18 Sven Neumann + * **/makefie.msc gimpdefs.msc app/gimpcore.def : updated + * app/core/gimpcurve.c : include for memcmp() + * app/gegl/gimpcurvesconfig.c : include for strcmp() - * configure.in (CPPFLAGS): removed G*_DISABLE_SINGLE_INCLUDES until - we depend on newer versions of GLib and GTK+. Fixes bug #552669. +2008-10-03 Sven Neumann -2008-09-18 Sven Neumann + Bug 554966 – Gimp crashes creating a new image using a template - * plug-ins/common/lcms.c (run): call gimp_displays_flush() at the - end of all interactive uses. Fixes bug #552104. - -2008-09-17 Sven Neumann - - * app/actions/edit-actions.c (edit_actions_update): formatting. - -2008-09-17 Michael Natterer - - * plug-ins/script-fu/script-fu-types.h: add struct SFArg which - keeps all a script argument's type, label, value and default - value. - - (struct SFScript): replace separate arrays of type, label etc. by - one array of SFArg. Remove array of GimpParamDef because they are - only needed while registering the temp proc. - - * plug-ins/script-fu/Makefile.am - * plug-ins/script-fu/script-fu-script.[ch]: new files implementing - script_fu_script_new(), script_fu_script_free(), - script_fu_script_register_proc() and - script_fu_script_unregister_proc(). - - * plug-ins/script-fu/script-fu-scripts.c: remove lots of code now - implemented in script-fu-script.c. Changed stuff according to the - introduction of SFArg. Moved variables to local scopes. Most - changes are in script_fu_add_script(), almost every line changed - and it's hopefully more readable now. Lots of cleanup all over the - place. - - * plug-ins/script-fu/script-fu-interface.c: changed stuff - according to the introduction of SFArg - -2008-09-17 Sven Neumann - - * plug-ins/pygimp/plug-ins/pyconsole.py: removed she-bang as this - file is not a plug-in. Addresses bug #552601. - -2008-09-17 Sven Neumann - - * libgimp/gimpimage.c (gimp_image_get_colormap): allow to pass - NULL for "num_colors". - - * plug-ins/print/print-draw-page.c: added missing conversion - routines for indexed images. Fixes bug #552609. - -2008-09-17 Michael Natterer - - * app/widgets/gimpdockable.c: cosmetic paranoia. - -2008-09-17 Michael Natterer - - Revert the change which adds GError parameters to - gimp_image_add_{channel,layer,vectors}(): - - * app/actions/channels-commands.c - * app/actions/edit-commands.c - * app/actions/layers-commands.c - * app/actions/vectors-commands.c - * app/core/gimp-edit.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-quick-mask.c - * app/core/gimpimage.[ch] - * app/core/gimplayer-floating-sel.c - * app/core/gimpselection.c - * app/core/gimptemplate.c - * app/display/gimpdisplayshell-dnd.c - * app/text/gimptext-compat.c - * app/tools/gimptexttool.c - * app/tools/gimpvectortool.c - * app/vectors/gimpvectors-import.c - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpitemtreeview.[ch] - * app/widgets/gimplayertreeview.c - * app/widgets/gimptoolbox-dnd.c - * app/widgets/gimpvectorstreeview.c - * app/xcf/xcf-load.c: revert. - - Instead, fix it at the PDB level: - - * app/core/gimpimage.c: turn the "added to wrong image" warning - into a g_return_val_if_fail() assertion. - - * app/pdb/gimppdb-utils.[ch] (gimp_pdb_item_is_floating): add a - "dest_image" parameter and fail if the passed item is not for this - image. - - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/layer.pdb - * tools/pdbgen/pdb/paths.pdb: pass the dest image to - gimp_pdb_item_is_floating(). - - * app/pdb/image-cmds.c - * app/pdb/layer-cmds.c - * app/pdb/paths-cmds.c: regenerated. - -2008-09-17 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script): - tweaked error message. - - * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): set the - PDB error handler to GIMP_PDB_ERROR_HANDLER_PLUGIN while - interpreting the script. - -2008-09-17 Michael Natterer - - * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): - fix indentation. - -2008-09-17 Michael Natterer - - * plug-ins/common/file-header.c - * plug-ins/common/file-psp.c - * plug-ins/common/file-xbm.c - * plug-ins/common/file-xpm.c - * plug-ins/common/hot.c - * plug-ins/common/mail.c: add const plus misc. cleanups. - -2008-09-17 Michael Natterer - - * plug-ins/file-fits/fits.c - * plug-ins/gimpressionist/gimpressionist.h - * plug-ins/gimpressionist/presets.c - * plug-ins/gimpressionist/utils.c - * plug-ins/gradient-flare/gradient-flare.c - * plug-ins/ifs-compose/ifs-compose-storage.c - * plug-ins/imagemap/imap_default_dialog.[ch] - * plug-ins/imagemap/imap_object.h - * plug-ins/map-object/map-object-ui.c: add const plus some minor - unrelated cleanups. - -2008-09-17 Michael Natterer - - * app/core/gimpimage.[ch]: add GError parameter to - gimp_image_add_{channel,layer,vectors}() and remove calls to - g_warning(). Changed checks to be possible failures at all. - - * app/widgets/gimpitemtreeview.h (GimpAddItemFunc): add the GError - here too. - - * app/actions/channels-commands.c - * app/actions/edit-commands.c - * app/actions/layers-commands.c - * app/actions/vectors-commands.c - * app/core/gimp-edit.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-quick-mask.c - * app/core/gimplayer-floating-sel.c - * app/core/gimpselection.c - * app/core/gimptemplate.c - * app/display/gimpdisplayshell-dnd.c - * app/text/gimptext-compat.c - * app/tools/gimptexttool.c - * app/tools/gimpvectortool.c - * app/vectors/gimpvectors-import.c - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimptoolbox-dnd.c - * app/widgets/gimpvectorstreeview.c - * app/xcf/xcf-load.c: pass a NULL error. - - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/paths.pdb: pass the error. - - * app/pdb/image-cmds.c - * app/pdb/paths-cmds.c: regenerated. - -2008-09-16 Sven Neumann - - * configure.in: bumped version to 2.5.5. - -2008-09-16 Sven Neumann - - * Made 2.5.4 development release. - -2008-09-16 Sven Neumann - - * app/core/gimpimage.[ch]: added GError parameter to - gimp_image_{raise,lower}_{channel,layer,vectors} functions and - removed calls to g_message(). - - * app/actions/channels-commands.c - * app/actions/layers-commands.c - * app/actions/vectors-commands.c: pass NULL for the GError - parameter as these actions are insensitive if they would fail. - - * tools/pdbgen/pdb/image.pdb: changed accordingly. Corrected the - documentation. - - * app/pdb/image-cmds.c - * libgimp/gimpimage_pdb.c: regenerated. - -2008-09-16 Sven Neumann - - * app/core/gimppalette-load.c (gimp_palette_load): unified error - messages. - -2008-09-16 Michael Natterer - - * app/actions/actions.c: use the "tool options" icon for the - "context" action group since that's what its actions mostly - control. - - * app/actions/dialogs-actions.c: use the "brush", "gradient" and - "palette" icons also for their resp. editors since that's also the - icons they use in their dockable tabs. - -2008-09-15 Michael Natterer - - * app/core/gimplayer.[ch] (gimp_layer_add_mask): add GError - parameter and replace g_message() by g_set_error(). - - * app/core/gimplayermaskundo.c - * app/xcf/xcf-load.c - * app/actions/layers-commands.c: pass NULL errors since these - places know what they are doing. Ha ha... - - * tools/pdbgen/pdb/layer.pdb - * tools/pdbgen/pdb/image.pdb: pass the error so we get more real - error messages for failed PDB calls. - - * app/pdb/image-cmds.c - * app/pdb/layer-cmds.c: regenerated. - -2008-09-15 Michael Natterer - - Bug 552413 – Script triggers Gimp-Core-CRITICAL - - * tools/pdbgen/pdb/image.pdb - * tools/pdbgen/pdb/layer.pdb: add some more checks that produce - proper PDB error messages when adding and removing layer masks - instead of having the code run into assertions in the called core - functions. Also add some more checks when removing layers, - channels or vectors. - - * app/pdb/image-cmds.c - * app/pdb/layer-cmds.c: regenerated. - -2008-09-14 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c (mk_vector), (opexe_2): - Applied changes from official version of TinyScheme which adds - tests for when mk_vector is out of memory. Can't rely on sc->sink. - -2008-09-13 Michael Schumacher - - * app/actions/edit-actions.c (edit_actions): removed double "the" - from translatable string. Fixes bug #552127. - -2008-09-13 Sven Neumann - - * plug-ins/common/lcms.c (lcms_image_apply_profile): flush the - displays after closing the undo group. Should fix bug #552104. - -2008-09-12 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c - * plug-ins/script-fu/tinyscheme/scheme.h: Applied changes from - official version of TinyScheme which expose more of the internals. - Part of making it more suitable for Scheme->C->Scheme calling. - See SourceForge bug #1599947. - -2008-09-12 Sven Neumann - - * plug-ins/common/guillotine.c: return the list of created images. - Only create displays when running in interactive mode. - -2008-09-12 Michael Natterer - - * app/core/gimpdata.h: changed GimpBrush::get_extension() to return - const gchar* instead of gchar* - - * app/core/gimpbrush.c - * app/core/gimpbrushgenerated.c - * app/core/gimpcurve.c - * app/core/gimpgradient.c - * app/core/gimppalette.c - * app/core/gimppattern.c: changed accordingly. - -2008-09-11 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/CHANGES: Updating to match version - in official version of TinyScheme. - - * plug-ins/script-fu/tinyscheme/scheme.c: Applied changes from - official version of TinyScheme which adds entry point for nested - calling. Part of making it more suitable for Scheme->C->Scheme - calling. See SourceForge bug #1599945. Updated usage information - using text from Manual.txt. - -2008-09-11 Michael Natterer - - * configure.in: forgot to remove plug-ins/script-fu/re here. - -2008-09-11 Michael Natterer - - * plug-ins/script-fu/scheme-wrapper.[ch]: reordered and renamed - functions to be consistent. Got rid of file-global "register_scripts" - variable. Pass more "scheme *sc" pointers around to reduce usage - or the global variable. - - * plug-ins/script-fu/script-fu-eval.c - * plug-ins/script-fu/script-fu-scripts.c - * plug-ins/script-fu/script-fu-server.c - * plug-ins/script-fu/script-fu.c: changed accordingly. - -2008-09-11 Michael Natterer - - * app/core/gimp-modules.c (gimp_modules_unload): make a string - pointer const. - -2008-09-11 Michael Natterer - - * plug-ins/script-fu/script-fu-regex.[ch]: namespace, copyright - headers, indentation, formatting, everything... - - * plug-ins/script-fu/scheme-wrapper.c: changed accordingly. Some - formatting cleanup here too. - -2008-09-11 Michael Natterer - - * libgimp/gimpexport.c (struct ExportAction): make string members - const. - -2008-09-11 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script): - convert the filename to UTF-8 before displaying it in the error - message. - -2008-09-11 Michael Natterer - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command): - use g_set_error() instead of g_set_error_literal() which is only - available in glib 2.18. - -2008-09-11 Michael Natterer - - * plug-ins/script-fu/Makefile.am - * plug-ins/script-fu/re/*: removed.... - - * plug-ins/script-fu/script-fu-regex.[ch]: and replaced with a - few-liner using GRegex. Seems to have some issues that need to be - sorted out. - - * plug-ins/script-fu/scheme-wrapper.c: changed accordingly. - -2008-09-10 Michael Natterer - - Change Script-Fu error handling to properly use the new error - message passing in PDB return values: - - * plug-ins/script-fu/script-fu-scripts.[ch]: remove function - script_fu_error_msg(). - - * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): output - errors of interactive script-fu dialogs directly here with - g_message(). - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command): - add GError and return the error message instead of displaying it. - - (script_fu_load_script): show the returned error here (and make it - more specific than the former script_fu_error_msg() did). - - (script_fu_script_proc): return error messages via the procedure's - return values. - - * plug-ins/script-fu/scheme-wrapper.c - (script_fu_marshal_procedure_call): if an error message was - returned from the PDB call, pass it to foreign_error() so it ends - up where it should (console, text console or error string). - - * plug-ins/script-fu/script-fu-console.c - * plug-ins/script-fu/script-fu-text-console.c: set the error - handler to PLUGIN while interpreting scheme, we handle errors - from calling back into the PDB ourselves now. - -2008-09-10 Michael Natterer - - * plug-ins/script-fu/tinyscheme/scheme.h: fix prototype (foo() is - not a prototype, use foo(void) instead). - -2008-09-10 Tor Lillqvist - - * app/gui/gui-unique.c: Untabify. - - * app/gui/gui-unique.c (gui_unique_win32_exit): Destroy the proxy - window here so that gimp_unique_win32_open() in app/unique.c won't - find it. This is important especially in a developer version where - the debug output window might be left open and the proxy window - otherwise would still exist for a long time after the GTK+ main - loop of the GIMP GUI has finished. Thanks to Michael Schumacher - for pointing this out. - - There is still a small race window here after GIMP has begun - closing down its GUI in gui_exit_callback() and before the proxy - window has gone away. If another GIMP starts during that interval, - it will find the proxy window and send it a message, which will - then either be ignored, or the proxy window will have been - destroyed before it gets the message. Let's ignore that. There is - a much wider time window during which multiple GIMP instances may - be started during GIMP startup anyway. - - * app/gui/gui-unique.c: gui_unique_win32_message_handler() can be - static. Include file/file-open.h for file_open_from_command_line() - declaration. Fix copy/paste glitch in gui_unique_exit(). - -2008-09-10 Michael Natterer - - * app/widgets/gimpactionview.c: factor out function that selects a - path and scrolls to that path. Keep the selected path visible if - it is still there after filtering. - -2008-09-10 Michael Natterer - - * app/actions/context-actions.c: made action labels more - consistent, use '°' instead of 'degrees'. - - * app/actions/context-commands.c: cosmetic change in macro - parameters. - -2008-09-10 Michael Natterer - - * plug-ins/file-uri/uri-backend-wget.c - * plug-ins/file-xjt/xjt.c: s/while (1)/while (TRUE)/ + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_update_scrollbars) + (gimp_display_shell_scale_update_rulers): bail out early if + shell->display is NULL. -2008-09-09 Michael Natterer +2008-10-03 Michael Natterer - * plug-ins/script-fu/scheme-wrapper.c - (script_fu_marshal_procedure_call): remove debug arrays to map the - values of registered enums to strings. Look up the strings - registered with the type system instead. + Bug 554785 – Compile failure on uri-backend-libcurl -2008-09-09 Michael Natterer + * plug-ins/file-uri/uri-backend-libcurl.c: apply patch from Robby + Workman which fixes the build for this file. - * plug-ins/script-fu/scheme-wrapper.c: fix formatting of prototypes. +2008-10-03 Sven Neumann - (script_fu_marshal_procedure_call): move variables to local scopes - where possible. Make this function a bit readable by indenting the - debug code in DEBUG_MARSHAL normally. + * configure.in: removed custom error message from checks for babl + and GEGL. The default error message is a lot more helpful. -2008-09-09 Michael Natterer +2008-10-02 Sven Neumann - * app/Makefile.am - * plug-ins/script-fu/Makefile.am: remove references to $(REGEXREPL). + * app/tools/gimpgegltool.c (gimp_gegl_tool_operation_blacklisted): + add "text" to the list of blacklisted operations. -2008-09-09 Sven Neumann +2008-10-02 Michael Natterer - * plug-ins/file-psd/psd-save.c (create_merged_image): don't leak - the GimpDrawable. + Bug 554646 – Opening Help crashes GIMP with lqr-plugin installed -2008-09-09 Martin Nordholts + * app/widgets/gimphelp.c (gimp_help_get_help_domains): need to + assign (*foo)[i] and not *foo[i] of a gchar** returned via return + value location. - * plug-ins/file-psd/psd-save.c (save_data): Formating. +2008-10-02 Michael Natterer -2008-09-08 Sven Neumann + * app/plug-in/gimppluginprocframe.c: keep a reference to the + proc_frame's procedure. We can't asume it's always there since it + could be a temporary one and its plug-in might die during + procedure execution, taking the temp_proc with it. - * authors.xml: some more updates. +2008-10-02 Martin Nordholts - * AUTHORS: regenerated. + Bug 553534 – centering issues after image scaling and setting zoom + to 100% -2008-09-08 Sven Neumann + * app/display/display-enums.h: Added a GimpZoomFocus enum with + 'best guess', 'pointer' or 'image center' values. - * plug-ins/file-psd/psd-save.c: applied patch from Dennis Ranke as - attached to bug #551231. Changes the PSD save plug-in to store - transparency data in the image data section. Also fixes bug #551232 - (saving an indexed image with multiple layers as PSD modifies the - image). + * app/display/gimpdisplayshell-scale.[ch] + (gimp_display_shell_scale): Take a GimpZoomFocus parameter and + pass it on to -2008-09-08 Sven Neumann + (gimp_display_shell_scale_get_zoom_focus): which returns the + requested zoom focus point if one was given, else makes a best + guess. - * app/paint/gimpbrushcore.c: based on a patch from David Gowers - clamp the brush scale so that the brush never becomes smaller than - 0.5 pixels. Fixes bug #548631. + * app/actions/view-commands.c + * app/display/gimpstatusbar.c + * app/display/gimpnavigationeditor.c + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-scale-dialog.c: For explicit-zoom + commands like "zoom to 100%", always use the image center as the + zoom focus point. For all other zooming, continue to use the + best-guess method. -2008-09-08 Michael Natterer + * app/display/display-enums.c: Regenerated. - Bug 551306 – Color picker for text tool does not show selected - palette +2008-10-02 Sven Neumann - * app/tools/gimptexttool.c (gimp_text_tool_register): add - GIMP_CONTEXT_PALETTE_MASK to the tool option's context mask so the - color popup's palette follows the globally selected palette. + Bug 554898 – Compile failure on uri-backend-wget.c -2008-09-08 Sven Neumann + * plug-ins/file-uri/uri-backend-wget.c: removed spurious commas + that broke the build. - * authors.xml: restored alphabetic order. Use real name instead of - a nick. +2008-10-01 Sven Neumann - * AUTHORS: regenerated. + * Makefile.am (EXTRA_DIST): added ChangeLog.pre-2-6 and NEWS.pre-2-6. - * app/dialogs/authors.xsl: changed rule to only include - contributors from the 2.6 development cycle in the About dialog. +2008-10-01 Sven Neumann -2008-09-08 Roman Joost + * tools/gimptool.c: create the target directory and intermediate + parent directories as needed. Restores the behavior of the + gimptool shell script. - * authors.xml: updated documenters who contributed to the user - manual since 2.4 +2008-10-01 Sven Neumann -2008-09-07 Sven Neumann + * menus/Makefile.am (%.xml): added a dependency on configure.in to + make sure that the image-menu.xml file is rebuilt when the version + number is changed. - Applied 'gimp-decimate.diff' as announced on the mailing-list: +2008-10-01 Tor Lillqvist - * app/gimp-log.[ch]: added log domain "scale". + * app/plug-in/gimpplugin.c + * app/widgets/gtkscalebutton.c: : Don't #define _GNU_SOURCE on + Windows as it confuses newest mingw headers. - * app/paint-funcs/scale-region.c: replaced decimation routines - with box filters. Only use the decimation routines to pre-scale - the image, always apply the interpolation for the final step. +2008-10-01 Sven Neumann -2008-09-07 Martin Nordholts + * configure.in: bumped version to 2.6.1 (interface age 1). - * app/widgets/gimpnavigationview.c - (gimp_navigation_view_set_marker): Invalidating the view renderer - is just plain wrong, revert to redrawing the view. We will need to - solve the flicker in some other way. +2008-09-30 Sven Neumann -2008-09-07 Martin Nordholts - - * plug-ins/common/file-raw.c (load_dialog): Set the allowed max - values for Width and Height to the size of the image to load - instead of an arbitrary max of 4096. - -2008-09-07 Martin Nordholts - - Bug 551141 – "Select all" does not work - - * app/core/gimpchannel.c (gimp_channel_real_all): We don't want to - clear the region, we want to fill it with OPAQUE_OPACITY. - -2008-09-06 Martin Nordholts - - * plug-ins/file-psd/psd-load.c (add_merged_image): Use the new - COMP_MODE_SIZE constant instead of a magic number. - -2008-09-06 Martin Nordholts - - Bug 544939 – PSD Plugin crash (maybe only PSD files created by - Paintshop Pro) - - * plug-ins/file-psd/psd-load.c (add_layers): Fix integer underflow - and only attempt to read channel data if there is any channel - data. - -2008-09-06 Martin Nordholts - - * plug-ins/file-psd/psd-load.c (add_layers): Also consider unknown - compression methods unsupported. This gives an error message - instead of a crash for PSD file attached to bug #544939. The PSD - loader still fails to read the correct compression method however. - -2008-09-06 Michael Natterer - - * app/gegl/gimpoperationhuesaturation.c - (gimp_operation_hue_saturation_process): don't use // for comments. - -2008-09-06 Martin Nordholts - - * app/gegl/gimpoperationhuesaturation.c - (gimp_operation_hue_saturation_process): mapped_* -> mapped_*_hue. - -2008-09-06 Martin Nordholts - - Bug 527085 – Hue/Saturation (working improperly) - - * app/gegl/gimpoperationhuesaturation.c - (gimp_operation_hue_saturation_process): Properly map the - secondary hue. Based on patch by Michael Deal. - -2008-09-05 Sven Neumann - - * app/tools/gimpgegltool.c: blacklist "color-convert" and all GIMP - operations. - -2008-09-05 Sven Neumann - - * app/tools/gimpgegltool.c: added a blacklist of operations that - should not be shown. We may want to add more operations here. - -2008-09-05 Michael Natterer - - * app/plug-in/gimpplugindebug.[ch] (gimp_plug_in_debug_argv): made - the "args" parameter const. - - * app/plug-in/gimpplugin.c (gimp_plug_in_open): made some strings - const. - -2008-09-05 Michael Natterer - - * plug-ins/file-fits/fits-io.[ch]: add some const. - -2008-09-05 Michael Natterer - - Bug 545325 – Scrollbars do not disappear automatically - - * app/widgets/gimpcontainertreeview.c: autosize the columns after - each operation that can reduce the treeview's width. - -2008-09-05 Michael Natterer - - Bug 550983 – The size displayed in the status bar isn't correct - - * app/tools/gimprectangletool.c: use the right precision when - pushing the rectangle's size as coordinates to the statusbar. - -2008-09-05 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpactioneditor.[ch]: new simple widget which - contains a GimpActionView plus the search entry. - - * app/dialogs/keyboard-shortcuts-dialog.c: use the new widget - instead of implementing the search entry here. - - * app/widgets/gimpcontrollereditor.c: use a GimpActionEditor - instead of GimpActionView so the actions become searchable here - too. - -2008-09-04 Sven Neumann - - * app/tools/gimptransformtool.c (gimp_transform_tool_initialize): - expose the preview when the tool is initialized. Fixes missing - redraws when the tool is selected from the menus (bug #550911). - - (gimp_transform_tool_motion): expose the preview after - recalculating the transformation matrix. - -2008-09-04 Sven Neumann - - * app/display/gimpdisplayshell-dnd.c: improved the new DND code. - -2008-09-04 Tor Lillqvist - - * app/base/base-utils.h - * app/base/base-utils.c: The return type of get_pid() should be - gint, not GPid. This matches also the C library on Windows, in - which the return type of getpid() is int, not a pointer or - intptr_t. The use for GPid in the GLib API is as a "handle" to a - descendant processes, returned by the g_spawn_*() functions, and - passed to the g_child_watch_*() functions, not as a "process - identifier". - - * tools/gimptool.c: Make it compile without warnings also with gcc - -Wwrite-strings. Use cmd.exe instead of command.com to execute the - COPY and DEL commands on Windows. - -2008-09-04 Sven Neumann - - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_drop_drawable) (gimp_display_shell_drop_pixbuf): - handle drops on the empty image window. - -2008-09-04 Sven Neumann - - * app/dialogs/keyboard-shortcuts-dialog.c: tweaked spacing between - entry and button and resolved a mnemnic conflict. - -2008-09-04 Michael Natterer - - * app/widgets/gimpactionview.[ch]: add a column for the casefold - label of the action and filter on that. - - * app/dialogs/keyboard-shortcuts-dialog.c: add a button to clear - the filter entry. Changed the label to "Search:". - -2008-09-04 Michael Natterer - - * plug-ins/gfig/gfig-dobject.h - * plug-ins/gfig/gfig-style.c: some more const. - -2008-09-04 Michael Natterer - - * app/widgets/gimpactionview.[ch]: add a GtkTreeModelFilter - between the GtkTreeView and the actual GtkTreeStore. Add API to - set the filter which is simply a string that's matched with - strstr(). Quite some things improvable here... - - * app/dialogs/keyboard-shortcuts-dialog.c: add a "Filter" entry - and set the filter on the action view. - -2008-09-04 Sven Neumann - - * libgimp/gimpprocview.[ch]: made the GimpParamDef parameter in - gimp_proc_view_new() const. - -2008-09-04 Michael Natterer - - * tools/gimptool.c: add tons of const. - -2008-09-04 Michael Natterer - - * libgimpbase/gimpreloc.c (set_gerror): made the error_message - variable const. - -2008-09-04 Michael Natterer - - * libgimpbase/gimpbasetypes.h - (struct GimpEnumDesc) - (struct GimpFlagsDesc): made the value_desc and value_help members - const, just as the corresponding GEnumValue and GFlagsValue - members. This is technically an API change but shouldn't hurt - since it totally reflects how they are used. - -2008-09-04 Michael Natterer - - * plug-ins/color-rotate/color-rotate-callbacks.c - * plug-ins/common/filter-pack.c - * plug-ins/common/nova.c - * plug-ins/common/sample-colorize.c: get rid of calls to - gdk_window_get_pointer(), use the coords from the motion event - and use gdk_event_request_motions(). - - * plug-ins/color-rotate/color-rotate-callbacks.[ch]: some - unrelated cleanup while i was at it. - -2008-09-04 Sven Neumann - - * app/composite/make-installer.py - * app/composite/ns.py - * app/dialogs/tips-dialog.c - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-scroll.c - * app/display/gimpdisplayshell.c - * app/display/gimpnavigationeditor.c - * app/paint/gimppaintcore-stroke.c - * app/tools/gimpcroptool.c - * app/widgets/gtkscalebutton.c - * plug-ins/common/animation-play.c - * plug-ins/common/displace.c - * plug-ins/common/file-raw.c - * plug-ins/imagemap/imap_cern_lex.c - * plug-ins/imagemap/imap_cern_parse.c - * plug-ins/imagemap/imap_csim_lex.c - * plug-ins/imagemap/imap_csim_parse.c - * plug-ins/imagemap/imap_ncsa_lex.c - * plug-ins/imagemap/imap_ncsa_parse.c - * plug-ins/pygimp/gimpfu.py - * plug-ins/pygimp/gimpshelf.py - * plug-ins/pygimp/gimpthumbmodule.c - * plug-ins/pygimp/gimpui.py - * plug-ins/pygimp/gimpuimodule.c - * plug-ins/pygimp/plug-ins/benchmark-foreground-extract.py - * plug-ins/pygimp/plug-ins/foggify.py - * plug-ins/pygimp/plug-ins/palette-offset.py - * plug-ins/pygimp/plug-ins/palette-sort.py - * plug-ins/pygimp/plug-ins/palette-to-gradient.py - * plug-ins/pygimp/plug-ins/py-slice.py - * plug-ins/pygimp/plug-ins/python-console.py - * plug-ins/pygimp/plug-ins/python-eval.py - * plug-ins/pygimp/plug-ins/whirlpinch.py - * plug-ins/pygimp/pygimp-colors.c - * plug-ins/pygimp/pygimp-drawable.c - * plug-ins/pygimp/pygimp-image.c - * plug-ins/script-fu/re/engine.c - * plug-ins/script-fu/re/regerror.c - * plug-ins/script-fu/tinyscheme/dynload.c - * plug-ins/twain/tw_func.c - * plug-ins/twain/tw_util.c - * plug-ins/twain/tw_win.c - * plug-ins/twain/twain.h - * tools/defcheck.py - * tools/gimppath2svg.py: removed trailing whitespace. - -2008-09-03 Lars-Peter Clausen - - * plugin-ins/pygimp/pygimp-tile.c: Removed trailing whitespace. - -2008-09-03 Lars-Peter Clausen - - * plugin-ins/pygimp/pygimp.h: define PyInt_AsSsize_t as PyInt_AsLong - if the python version is smaller then 2.5.0. - * configure.in: Lower required python version to 2.4. - -2008-09-03 Michael Natterer - - * app/pdb/gimpprocedure.[ch] (gimp_procedure_set_static_strings): - made the string parameters const. - -2008-09-03 Michael Natterer - - * app/widgets/gimpcontrollerkeyboard.c (struct _KeyboardEvent) - * app/widgets/gimpcontrollerwheel.c (struct _WheelEvent): made the - blurbs const. - -2008-09-03 Michael Natterer - - * app/widgets/gimpnavigationview.c - (gimp_navigation_view_motion_notify): remove the call to - gdk_window_get_pointer() again. - - (gimp_navigation_view_grab_pointer): instead, grab the pointer - properly with owner_events=FALSE so all events are reported with - respect to the widget's window. - -2008-09-03 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - * libgimpwidgets/gimpcolorselect.c - * modules/color-selector-water.c - * plug-ins/ifs-compose/ifs-compose.c: instead of using - gdk_window_get_pointer() if GdkEventMotion::is_hint is TRUE, - simply always use the coords from the event and call - gdk_event_request_motions() to ask for more motion events. This is - the recommended way and also works for events from devices other - than the core pointer. - - * plug-ins/ifs-compose/ifs-compose.c (design_area_motion): some - code cleanup while i was at it. - -2008-09-03 Michael Natterer - - * libgimpwidgets/gimpbutton.c: massively simplified. Don't fiddle - in GtkButton's internals (like setting "in_button" and forcing - redraws). Instead, simply remember the modifier state in - button_press() and check it in clicked(); if the state is != 0, - stop the "clicked" emission and emit "extended-clicked" instead. - -2008-09-03 Michael Schumacher - - * configure.in: bumped minimum required Python version to 2.5.0, - because of PyInt_AsSsize_t. Fixes bug #550576. - -2008-09-03 Sven Neumann - - * README.i18n: removed lots of outdated information directed at - developers and only kept the most important hints for translators. - -2008-09-02 Sven Neumann - - * app/plug-in/gimppluginshm.c: if INVALID_FILE_HANDLE is undefined, - define it as the constant that we used to use here. - -2008-09-02 Aurimas JuÅĄka - - * libgimp/gimpzoompreview.c (gimp_zoom_preview_draw_buffer), - (gimp_zoom_preview_set_drawable): fixed GimpZoomPreview to handle - layers with offsets and display intersection of layer and selection - in the preview. (bug #156905) - -2008-09-02 Michael Natterer - - * app/display/gimpstatusbar.c: use gtk_widget_get_style() instead - of widget->style. - -2008-09-02 Michael Natterer - - * libgimpwidgets/gimpruler.c: use gtk_widget_get_style() instead - of widget->style. Reduce indentation by one level in - gimp_ruler_draw_pos(). - -2008-09-02 Michael Natterer - - * app/widgets/gimpselectiondata.c: no need to set strlen(sting)+1 - bytes on the GtkSelectionData because gtk_selection_data_set() - zero-terminates all data anyway. - -2008-09-02 Michael Natterer - - * app/widgets/gimpselectiondata.c (gimp_selection_data_get_name): - return a const string, no need to strdup it since it's only used - temporarily in this file. - - (gimp_selection_data_get_image) - (gimp_selection_data_get_component) - (gimp_selection_data_get_item) - (gimp_selection_data_get_object): changed accordingly. Move - variables to local scopes and simplify. - -2008-09-02 Sven Neumann - - * configure.in: removed ALL_LINGUAS definition. - - * po*/LINGUAS: introduced LINGUAS file instead. This allows to - keep individual lists of languages for each textdomain and it - makes it easier for translators to add a new language. - -2008-09-01 Sven Neumann - - * app/plug-in/gimppluginshm.c (gimp_plug_in_shm_new): use the - constant INVALID_FILE_HANDLE instead of 0xFFFFFFFF. Fixes shared - memory tile transport on 64bit Windows systems. - -2008-09-01 Sven Neumann - - * app/paint-funcs/paint-funcs.[ch]: added clear_region(). - - * app/base/tile-manager-crop.c - * app/core/gimpchannel.c - * app/core/gimpimage-merge.c - * app/core/gimpmaskundo.c - * app/core/gimpprojection-construct.c: use it instead of calling - color_region() with a zero color. - -2008-09-01 Sven Neumann - - * app/core/gimpprojection-construct.c (gimp_projection_initialize): - also need to initialize the projection if the layer mask could - introduce transparency. Fixes bug #550024. - -2008-08-31 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_set_initial_scale): We need to set the scale - before using it. Fixes at least gimp_display_shell_fill() and - Image -> Duplicate giving weird initial scales. - -2008-08-30 Michael Natterer - - * tools/test-clipboard.c (test_clipboard_paste): fix length - calculation (in fact, no calculation is needed at all). - -2008-08-29 Sven Neumann - - * authors.xml: fixed role of Aurore Derriennic. - - * AUTHORS: regenerated. - -2008-08-29 Michael Natterer - - * libgimpwidgets/gimppreviewarea.c (gimp_preview_area_expose): - remove g_return_val_if_fail(), this is not a public function. - -2008-08-29 Michael Natterer - - * app/widgets/gimplayertreeview.c - * libgimpwidgets/gimpcolorscales.c - * libgimpwidgets/gimppropwidgets.c - * libgimpwidgets/gimpscaleentry.c - * libgimpwidgets/gimpwidgets.c: use gtk_adjustment_get_value() - instead of adjustment->value. - -2008-08-29 Lars-Peter Clausen - - * plug-ins/pygimp/gimpui.defs - * plug-ins/pygimp/gimpui.override: - Readded wrapper for the new GimpRuler. - -2008-08-29 Sven Neumann - - * libgimpwidgets/gimpruler.c (gimp_ruler_new): fixed gtk-doc comment. - -2008-08-29 Michael Natterer - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimphruler.[ch] - * libgimpwidgets/gimpvruler.[ch]: remove separate H/VRuler classes. - - * libgimpwidgets/gimpruler.[ch]: add an "orientation" property - instead. Add gimp_ruler_new(). - - * libgimpwidgets/gimpwidgets.def: changed accordingly. - - * app/dialogs/resolution-calibrate-dialog.c - * app/display/gimpdisplayshell.c - * plug-ins/gfig/gfig-preview.c - * plug-ins/imagemap/imap_preview.c: ditto. - -2008-08-29 Lars-Peter Clausen - - * plug-ins/pygimp/gimpui.defs - * plug-ins/pygimp/gimpui.override: - Removed wrappers for GimpRuler, GimpHRuler, GimpVRuler, as those - are going to be removed from libgimpwidgets. - -2008-08-29 Michael Natterer - - * app/widgets/gimphelp.c: #include "gimpwidgets-utils.h", not - "gimpwidgets-utils.c" (eek). - -2008-08-28 Lars-Peter Clausen - - * plug-ins/pygimp/gimpui.defs - * plug-ins/pygimp/gimpui.override: - Wrapped GimpRuler, GimpHRuler and GimpVRuler widgets. - -2008-08-28 Lars-Peter Clausen - - * plug-ins/pygimp/gimpui.defs - * plug-ins/pygimp/gimpui.override: - Merged gimpui.{defs,override} from pygimp GSoC project. - Updates gimpui module to have bindings for most widgets functions. - -2008-08-28 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_to): Canonically calculate scale to use - for zoom-focus calculations so that it also works when not in Dot - by dot-mode. - -2008-08-28 Martin Nordholts - - * app/core/gimpimage.[ch]: Make the size-changed-detailed signal - also contain previous image size. - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_size_changed_detailed_handler): Take the - previous image size into account and center the image if it starts - to fit (axis indepentently) in the viewport due to the resize. - - * app/core/gimpundo.h - * app/core/gimpimage-undo.c - * app/core/gimpimageundo.[ch] - * app/core/gimpimage-undo-push.[ch]: Manage the - previous-size-information. - - * app/core/gimpimage-crop.c - * app/core/gimpimage-scale.c - * app/core/gimpimage-rotate.c - * app/core/gimpimage-resize.c: Propagate previous size to the - size-changed-detailed signal emission and the undo-system. - -2008-08-28 Sven Neumann - - * app/config/gimpguiconfig.[ch]: allow to disable the Wilber image - shown at the top of the toolbox. - - * app/widgets/gimptoolbox.c: honor the new gimprc option. - - * app/config/gimprc-blurbs.h: document the old and new toolbox - preferences. - -2008-08-28 Michael Natterer - - * app/tools/gimprectangletool.c: some tiny formatting fixes. - -2008-08-28 Sven Neumann - - * configure.in: use echo, not $echo in the Win32-specific code - that sets up the Python build variables. - -2008-08-28 Sven Neumann - - * app/paint-funcs/scale-region.c (scale_determine_progress): - (scale_region_tile): fixed shift direction. - -2008-08-27 Michael Natterer - - * app/widgets/gimpuimanager.c (gimp_ui_manager_item_key_press): - try the find_widget_under_pointer() hack only if the menu item's - parent is really a GtkMenu (not a GtkMenuBar). Fixes crash spotted - by rubikcube. - -2008-08-27 Lars-Peter Clausen - - * plug-ins/pygimp/pygimp-tile.c - (pr_subscript): Removed some unnecessary g_new/g_free and improved - range checking. - (pr_ass_sub): Improved range checking. - (pygimp_pixel_rgn_new): Clamp pixel region size to the drawable's size. - -2008-08-27 Sven Neumann - - * app/core/gimp-transform-region.c: sprinkled more const qualifiers. - - * app/paint-funcs/scale-region.c: call the progress callback less - often. - -2008-08-27 Sven Neumann - - * app/tools/gimptransformtool.c: moved hiding the dialog from - gimp_transform_tool_real_transform() to gimp_transform_tool_doit(). - Delay undrawing the preview in doit() until the transformation is - done. This removes the annoying flicker at the end. - -2008-08-27 Sven Neumann - - * app/tools/gimptransformtool.c (gimp_transform_tool_real_transform): - hide the tool dialog before starting to perform the transformation. - -2008-08-27 Sven Neumann - - * app/core/gimp-transform-region.c: also use PixelSurround for the - linear interpolation. Sprinkled some const qualifiers. - -2008-08-26 Lars-Peter Clausen - - * plug-ins/pygimp/gimpmodule.c: - Don't set tp_new for PyGimpTile_Type and PyGimpPixelRgn_Type as both - don't have init functions. - -2008-08-26 Lars-Peter Clausen - - * plug-ins/pygimp/pygimp-tile.c - (pf_init): Ensure that the python drawables gimp drawable is set. - (pf_dealloc): Don't crash if the pixel fetchers init function failed. - -2008-08-26 Sven Neumann - - * app/base/pixel-surround.c: updated documentation. - -2008-08-26 Sven Neumann - - * app/paint-funcs/scale-region.c: further simplified the code path - that is executed when a brush is scaled up. We don't need to scale - in several steps here. - -2008-08-26 Sven Neumann - - * app/paint-funcs/scale-region.c: removed some unused parameters - from the code that is used for brush scaling. Added sanity checks. - -2008-08-26 Martin Nordholts - - * libgimpwidgets/gimpwidgets.c - - * plug-ins/common/file-xbm.c - * plug-ins/common/file-wmf.c - * plug-ins/common/file-svg.c - * plug-ins/common/file-gih.c - * plug-ins/common/blur-motion.c - * plug-ins/file-jpeg/jpeg-save.c - * plug-ins/lighting/lighting-ui.c - * plug-ins/map-object/map-object-ui.c - - * app/tools/gimpsheartool.c - * app/tools/gimpaligntool.c - * app/tools/gimprotatetool.c - * app/tools/gimplevelstool.c - * app/dialogs/resize-dialog.c - * app/dialogs/offset-dialog.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimpcolormapeditor.c - * app/dialogs/layer-options-dialog.c - * app/display/gimpdisplayshell-scale-dialog.c: Pass page_size = 0 - to gimp_spin_button_new() to adapt to new and correct value - clamping in GTK+. - -2008-08-26 Sven Neumann - - * app/core/gimpdrawable-colorize.c (gimp_drawable_colorize): - added missing call to colorize_init(). - -2008-08-26 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_scroll_unoverscrollify): New function. - - * app/display/gimpdisplayshell-autoscroll.c - (gimp_display_shell_autoscroll_timeout): Make sure the autoscroll - does not result in overscroll. This more or less finalizes the - implementation of the enhancement request in bug #362915. - -2008-08-26 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll): If no scroll should be applied we can - return early. - -2008-08-26 Martin Nordholts - - * app/display/gimpdisplayshell-autoscroll.c - (gimp_display_shell_autoscroll_timeout): Pass the scroll amount in - variables that we can modify as we please before they actually - reach gimp_display_shell_scroll(). - -2008-08-26 Michael Natterer - - * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): don't - hardcode the attach coords for the fixed containing the dynamics - labels but use the table's real width instead. Fixes broken table - layout in the airbrush options. - -2008-08-26 Sven Neumann - - * app/base/pixel-surround.c: attempt to fix the newly introduced - smear edge mode. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c: use PixelSurround to access the - source pixels in a more efficient way. - -2008-08-25 Sven Neumann - - * app/base/tile-manager.c (read_pixel_data_1): changed to silently - return in case of out-of-bounds access. There's code that relies - on this. - - * app/base/pixel-surround.[ch]: added SMEAR as another edge - strategy for the PixelSurround helper. - - * core/gimp-transform-region.c: changed accordingly. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c: reverted last change; it was bogus. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c: don't scale in several steps if - interpolation is GIMP_INTERPOLATION_NONE. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c (gaussian_decimate) - (gaussian_lanczos2): implemented uses integer arithmetic. - (pixel_average): reduced rounding errors. - -2008-08-25 Sven Neumann - - * app/core/gimpgradient.c (gimp_gradient_get_new_preview): fixed - rounding errors in color conversion. - -2008-08-25 Sven Neumann - - * app/base/tile-private.h: provide a macro version of - tile_data_pointer(). - - * app/base/tile.c (tile_data_pointer): turned into a wrapper - around the TILE_DATA_POINTER() macro. - - * app/base/tile-manager.c (read_pixel_data) (read_pixel_data_1) - (write_pixel_data) (write_pixel_data_1): access tile struct - members directly and use the new macro to access the tile data. - -2008-08-25 Sven Neumann - - * app/display/gimpdisplayshell-render.c (render_image_tile_fault): - formatting. - -2008-08-25 Sven Neumann - - * app/base/tile-manager.c (read_pixel_data_1): removed redundant - check that is already performed by tile_manager_get_tile_num(). - Warn if an out-of-bounds read is requested, instead of silently - doing nothing. - -2008-08-25 Sven Neumann - - * app/dialogs/image-scale-dialog.c: hide the Scale dialog before - starting to perform the scale operation. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c: fixed progress feedback. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c: improved progress bar - calculations. Still buggy though. - -2008-08-25 Sven Neumann - - * app/paint-funcs/scale-region.c: some more cleanups. - -2008-08-24 Lars-Peter Clausen - - * plug-ins/pygimp/plug-ins/python-fu-eval.py: Moved execution into - global namespace. Fixes import statements inside of evaled code. - -2008-08-24 Lars-Peter Clausen - - * plug-ins/pygimp/pygimp-pdb.c (pdb_getattro): Fix wrong strcmp - evaluation. - -2008-08-24 Lars-Peter Clausen - - * plug-ins/pygimp/pygimp-drawable.c (drw_transform_rotate, - drw_transform_flip_simple): Fix method format string, so the - method is actual callable in a script. - -2008-08-24 Martin Nordholts - - * app/tools/gimplevelstool.c (gimp_levels_tool_dialog): Set - page_size for the Ouput/Input Levels lower/upper adjustments to 0 - to adapt to new and more correct value clamping in GTK+. - -2008-08-24 Martin Nordholts - - * authors.xml: Updated for 2.6 release. - - * AUTHORS: Regenerated. - -2008-08-24 Martin Nordholts - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_popup): Prevent the popup from being - positioned far away from the click position. This is further work - on bug #362915. - -2008-08-24 Martin Nordholts - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_popup): Further clarify and simplify. - -2008-08-24 Martin Nordholts - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_popup): Correct the positioning - calculation (while still retaining current overall behaviour). - -2008-08-24 Martin Nordholts - - * app/widgets/gimpnavigationview.c - (gimp_navigation_view_draw_marker): Use a define for border width. - -2008-08-24 Martin Nordholts - - * app/widgets/gimpnavigationview.c - (gimp_navigation_view_set_marker): Don't redraw the view, only - invalidate it. This causes the redraw to occur in an idle-handler - intead of each time this function is called, which reduces flicker - when opening new images. Stil some flicker left though... - -2008-08-24 Sven Neumann - - * app/paint-funcs/scale-region.c (scale) (scale_pr): use a - constant to decide if we should decimate or interpolate. - -2008-08-24 Sven Neumann - - * app/paint-funcs/scale-region.c (scale): instead of iterating - over tiles manually and using write_pixel_data_1() to write the - data, use pixel_region_process() to iterate over the destination. - -2008-08-24 Sven Neumann - - * app/paint-funcs/scale-region.c: added more const qualifiers. - -2008-08-24 Sven Neumann - - * app/paint-funcs/scale-region.c (scale): sprinkled with const - qualifiers. Moved calculations out of the loops. - -2008-08-24 Sven Neumann - - * app/paint-funcs/scale-region.c (scale): removed optimization of - the case where the source and dest regions are the same size. This - should not happen any longer. - -2008-08-24 Sven Neumann - - * app/paint-funcs/scale-region.c (determine_scale): avoid - unnecessary scaling when scaling factor is 2^n. - (pixel_average): replaced with optimized pixel averager from - tile-pyramid.c (from the gimp-2-4 branch with some minor - corrections). - -2008-08-23 Sven Neumann - - * app/paint-funcs/scale-region.c (scale): replaced code that - copies pixels from one tile-manager to another by a call to - copy_region(). - -2008-08-23 Sven Neumann - - * plug-ins/print/print.c: return with a proper PDB status type - depending on the result of gtk_print_operation_run(). When run - non-interactively, pass the error message with the return values. - -2008-08-23 Sven Neumann - - * plug-ins/script-fu/scripts/coolmetal-logo.scm: applied patch - from LightningIsMyName. Changes the script to not break if called - on a floating selection (bug #327681). - -2008-08-23 Lars-Peter Clausen - - * app/core/gimpgradient.c (gimp_gradient_segment_range_delete): - Don't dereference final_start_seg and final_end_seg if NULL. - -2008-08-23 Lars-Peter Clausen - - Fix indentation in previous patch. - - * tools/pdbgen/pdb/gradient.pdb - * app/pdb/gradient-cmds.c - -2008-08-23 Lars-Peter Clausen - - * tools/pdbgen/pdb/gradient.pdb - (gimp_gradient_segment_range_blend_(colors|opacity)): Don't crash - if the index of the last segment is out of range. - - * app/pdb/gradient-cmds.c: regenerated. - -2008-08-23 Sven Neumann - - * plug-ins/twain/Makefile.am: dropped use of AM_LDFLAGS completely - and use target-specific LDFLAGS instead. - -2008-08-23 Sven Neumann - - * app/core/gimpimagemap.c (gimp_image_map_init): only create and - use a timer if GIMP_UNSTABLE is defined. - -2008-08-22 Sven Neumann - - * app/widgets/gimpnavigationview.c - * libgimpwidgets/gimpscrolledpreview.c: hardcode the colors to - black and white. Using theme colors doesn't make sense here. - -2008-08-22 Sven Neumann - - * libgimpwidgets/gimpscrolledpreview.[ch]: draw the navigation - popup using Cairo, just as we do it in the core now. - -2008-08-22 Sven Neumann - - * app/widgets/gimpnavigationview.c: indicate the viewport by - shading the outside region using Cairo. - -2008-08-22 Martin Nordholts - - * app/display/gimpnavigationeditor.c: Align static function - prototypes. - -2008-08-22 Martin Nordholts - - * app/widgets/gimpnavigationview.c - (gimp_navigation_view_grab_pointer): Don't confine the cursor to - the navigation view window because that limitation only feels in - the way with overscroll. - -2008-08-22 Michael Natterer - - * app/display/gimpcanvas.h: #define GIMP_CANVAS_EVENT_MASK. - - * app/display/gimpcanvas.c (gimp_canvas_realize): use it here. - -2008-08-22 Michael Natterer - - * app/display/gimpcanvas.[ch]: add gimp_canvas_scroll() which - scrolls the canvas and makes the result visible immediately. - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll): use the new function. - -2008-08-22 Sven Neumann - - * app/widgets/gimptoolbox.c: removed the "Use GEGL" check-box - from the toolbox. - - * app/config/gimpcoreconfig.c: changed the default for "use-gegl" - to FALSE (in preparation of the 2.6 release). - - * app/actions/debug-commands.[ch] - * app/actions/debug-actions.c - * menus/image-menu.xml.in: added a "Use GEGL" check-box to the - Debug menu. Temporary solution until a final decision is made. - -2008-08-22 Sven Neumann - - * app/widgets/gimpaction.c - * app/widgets/gimpdockable.c - * app/widgets/gimpradioaction.c - * app/widgets/gimpstringaction.c - * app/widgets/gimptoggleaction.c: added basic support for icon - names for actions and dockables. Uses the stock-id as icon name - if the icon theme provides an icon under this name. - - * app/dialogs/dialogs.c - * app/actions/documents-actions.c - * app/actions/dialogs-actions.c: use the "document-open-recent" - icon for the document history. - -2008-08-22 Martin Nordholts - - * app/widgets/gimpnavigationview.c: Adapted to play nicely with - the overscroll feature. Basically remove limitations of the - marker, but also draw the marker frame with an inner and outer - border so it is possible to see on what side the viewport is when - zoomed out and overscrolled to the max. This is further work on - bug #362915. - -2008-08-21 Michael Natterer - - * app/display/gimpcanvas.[ch]: turn into a GtkContainer subclass - mainly to reduce the diff to a local hack I'm at. Also swallow - some code that used to be called on the canvas widget externally. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): remove - the swallowed code. - - * app/display/gimpdisplayshell-callbacks.h: remove canvas event - mask define. - -2008-08-21 Sven Neumann - - * configure.in: bumped version to 2.5.4. - -2008-08-21 Sven Neumann - - * Made 2.5.3 development release. - -2008-08-21 Sven Neumann - - * app/plug-in/gimppluginprocedure.[ch] - * app/plug-in/gimptemporaryprocedure.c: moved error handling for - asynchronous procedure calls to a central place. Use the plug-in - label instead of the procedure name for the error message. - -2008-08-21 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c - * plug-ins/script-fu/script-fu-interface.[ch]: changed to actually - return a meaningful return status when a script-fu procedure is run. - -2008-08-21 Sven Neumann - - * app/plug-in/gimppluginprocedure.c - * app/plug-in/gimptemporaryprocedure.c: don't just free the return - values when running procedures asynchronously. Instead examine - them and display the error message if there's one. - - * app/plug-in/gimppluginmanager-call.c - (gimp_plug_in_manager_call_run_temp): return NULL if - procedure->plug_in is not set. - - * app/plug-in/gimpplugin-message.c: comment. - -2008-08-21 Michael Natterer - - * configure.in: removed indentation from blocks after - AC_ARG_WITH(), it's confusing otherwise because they appeared to - be part of the macro. Added some newlines. Minor cleanups. - -2008-08-21 Sven Neumann - - * plug-ins/script-fu/Makefile.am - * plug-ins/script-fu/script-fu-eval.[ch]: new files split out of - script-fu-console.c[ch]. - - * plug-ins/script-fu/script-fu-text-console.h: fixed comment. - - * plug-ins/script-fu/script-fu-console.[ch]: removed script-fu-eval - procedure here. - - * plug-ins/script-fu/script-fu.c: changed accordingly. - -2008-08-21 Sven Neumann - - * plug-ins/script-fu/script-fu.c (script_fu_run): formatting. - -2008-08-21 Sven Neumann - - * po-*/POTFILES.skip: added desktop/gimp.desktop.in. Seems to work - around what appears to be a bug in intltool-update (version 0.40.1). - -2008-08-21 Sven Neumann - - * Makefile.am (EXTRA_DIST): removed 'mkinstalldirs' which is not - any longer required due to the changes in the po directories. - -2008-08-21 Michael Natterer - - * app/tools/gimpforegroundselecttool.c - (gimp_foreground_select_tool_init): set precision back to - PIXEL_CENTER because it's set to SUBPIXEL by the parent class. - -2008-08-20 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c: Use a constant for the - minimum step amount for scrollbars. - -2008-08-20 Michael Natterer - - * app/widgets/gimpuimanager.c: reindent prototypes. - - Steal find_widget_under_pointer() from gtktooltip.c - - (gimp_ui_manager_item_key_press): use the function to invoke help - for the widget under the pointer if there is no selected menu - item. Makes F1 work on insensitive menu items. - -2008-08-20 Sven Neumann - - * plug-ins/print/print.c (page_setup): use the new API to set the - PDB error handler in order to suppress a warning if the temporary - procedure does not exist (see bug #513291). - -2008-08-20 Michael Natterer - - * app/text/gimptextlayout-render.c (gimp_text_layout_render): add - PANGO_ALIGN_LEFT to the switch to fix warning about unhandled value. - -2008-08-20 Michael Natterer - - Bug 496772 – Position shown in the statusbar needs more - precision (for some tools) - - * app/display/display-enums.[ch]: add enum GimpCursorPrecision - which can be one of { PIXEL_CENTER, PIXEL_BORDER, SUBPIXEL }. - - * app/display/gimpdisplayshell-cursor.[ch]: add "precision" - parameter to gimp_display_shell_update_cursor() and pass it - on to the statusbar. - - * app/display/gimpstatusbar.[ch]: add "precision" parameters to - the cursor coordinates APIs, offset the passed coords accordingly - and display them with one decimal point if SUBPIXEL is requested - and the display's unit is PIXEL. Keep a second floating-point - format string around at any time. - - * app/tools/gimptoolcontrol.[ch]: add a "precision" member and API - so tools can configure the precision they need. Defalt to - PIXEL_CENTER since that's right for almost all tools. - - * app/display/gimpdisplayshell-callbacks.c: pass the tool's - precision to gimp_display_shell_update_cursor(). - - * app/tools/gimptool.[ch]: add "precision" parameter to - gimp_tool_push_status_coords() and pass it on to the statusbar. - - * app/tools/gimpaligntool.c - * app/tools/gimpblendtool.c - * app/tools/gimpcolortool.c - * app/tools/gimpcroptool.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimpfliptool.c - * app/tools/gimpfreeselecttool.c - * app/tools/gimpmovetool.c - * app/tools/gimppainttool.c - * app/tools/gimpperspectiveclonetool.c - * app/tools/gimprectangleselecttool.c - * app/tools/gimprectangletool.c - * app/tools/gimptransformtool.c - * app/tools/gimpvectortool.c: set precision in init() where - needed. Adjust the precision in the fly when needed, e.g. while - moving guides or when toggling hard-edge on paint tools. Also pass - an appropriate precision to gimp_tool_push_status_coords(), which - is not always the tool's precision as used for cursor display. - -2008-08-20 Sven Neumann - - * plug-ins/script-fu/script-fu-console.c (script_fu_eval_run): - pass error message with the return values instead of calling - g_message(). - -2008-08-20 Michael Natterer - - * plug-ins/common/align-layers.c - * plug-ins/common/blur-gauss.c - * plug-ins/common/cartoon.c - * plug-ins/common/edge-dog.c - * plug-ins/common/edge-neon.c - * plug-ins/common/edge-sobel.c - * plug-ins/common/photocopy.c - * plug-ins/common/pixelize.c - * plug-ins/common/softglow.c - * plug-ins/gradient-flare/gradient-flare.c: pass error messages - with the return values instead of calling g_message(). - -2008-08-20 Michael Natterer - - * plug-ins/common/file-gif-load.c: tons of cleanup: proper - prototypes, s/unsigned foo/gufoo/, indentation, ... - -2008-08-20 Sven Neumann - - * plug-ins/common/file-cel.c - * plug-ins/common/file-html-table.c - * plug-ins/common/file-ps.c - * plug-ins/common/file-sunras.c - * plug-ins/common/file-tiff-load.c: pass error messages with the - return values instead of calling g_message(). - -2008-08-20 Sven Neumann - - * plug-ins/file-fits/fits.c - * plug-ins/file-fli/fli-gimp.c: pass error messages with the - return values instead of calling g_message(). - -2008-08-20 Sven Neumann - - * plug-ins/file-xjt/xjt.c: pass error messages with the return - values instead of calling g_message(). - -2008-08-20 Sven Neumann - - * plug-ins/file-sgi/sgi.c - * plug-ins/file-sgi/sgi-lib.[ch]: pass error messages with the - return values instead of calling g_message(). - -2008-08-20 Michael Natterer - - * app/paint/gimpperspectiveclone.[ch]: make - gimp_perspective_clone_get_matrix() static, add - gimp_perspective_clone_set_transform(). - - * app/tools/gimpperspectiveclonetool.c - (gimp_perspective_clone_tool_mode_notify): use above set_transform() - API instead of poking into the object. - - (gimp_perspective_clone_tool_constructor): call - gimp_perspective_clone_tool_mode_notify() to set up things instead - of duplicating code. - -2008-08-20 Michael Natterer - - * app/tools/gimpperspectiveclonetool.[ch]: formatting. - -2008-08-20 Sven Neumann - - * plug-ins/file-psd/psd.c - * plug-ins/file-psd/psd-load.[ch] - * plug-ins/file-psd/psd-save.c - * plug-ins/file-psd/psd-thumb-load.[ch]: pass error messages with - the return values instead of calling g_message(). - -2008-08-20 Sven Neumann - - * plug-ins/file-jpeg/jpeg.[ch] - * plug-ins/file-jpeg/jpeg-load.[ch] - * plug-ins/file-jpeg/jpeg-save.[ch]: pass error messages with the - return values instead of calling g_message(). - -2008-08-20 Sven Neumann - - * app/file/file-save.c (file_save): flush the image when done to - cause the actions to be updated (in particular File->Revert). - -2008-08-20 Sven Neumann - - * plug-ins/file-ico/ico-save.c: create GHashTable with destroy - notifiers. - -2008-08-20 Sven Neumann - - * plug-ins/file-faxg3/faxg3.c - * plug-ins/file-ico/ico.c - * plug-ins/file-ico/ico-load.[ch] - * plug-ins/file-ico/ico-save.[ch]: pass error messages with the - return values instead of calling g_message(). - -2008-08-19 Sven Neumann - - * app/core/gimpimage-guides.c (gimp_image_find_guide): find guides - outside the image as well. This complements the change that we - also draw guides outside the image now. - -2008-08-19 Michael Natterer - - * app/tools/gimpgegltool.c (gimp_gegl_tool_dialog): formatting. - -2008-08-19 Michael Natterer - - * app/plug-in/gimpplugin.[ch] (struct GimpPlugIn) - * app/plug-in/gimppluginprocframe.[ch] (struct GimpPlugInProcFrame): - move the error_handler from the plug-in to the proc-frame. - - * app/plug-in/gimpplugin.c - * app/plug-in/gimpplugin-message.c: changed accordingly. - -2008-08-19 Sven Neumann - - * libgimpbase/gimpbase.def - * libgimp/gimp.def: added new symbols. - -2008-08-19 Sven Neumann - - * plug-ins/file-bmp/bmp.[ch] - * plug-ins/file-bmp/bmp-read.c - * plug-ins/file-bmp/bmp-write.c: for most errors, pass the error - message with the return values instead of calling g_message(). - -2008-08-19 Sven Neumann - - Complements the fix for bug #344818: - - * libgimpbase/gimpbaseenums.[ch]: added new enum GimpPDBErrorHandler. - - * tools/pdbgen/enums.pl: regenerated. - - * app/plug-in/gimpplugin.[ch]: added error_handler to GimpPlugIn. - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): - only display an error message for a failed procedure call if the - plug-in's error-handler is set to GIMP_PDB_ERROR_HANDLER_INTERNAL. - - * tools/pdbgen/pdb/plug_in.pdb: added PDB getter and setter for - the plug-in's error-handler. - - * app/pdb/plug-in-cmds.c - * app/pdb/internal-procs.c - * libgimp/gimpenums.c.tail - * libgimp/gimpplugin_pdb.[ch]: regenerated. - - * plug-ins/common/file-compressor.c - * plug-ins/file-uri/uri.c: set the error-handler to - GIMP_PDB_ERROR_HANDLER_PLUGIN as these plug-ins are forwarding the - error with their return values. - -2008-08-18 Sven Neumann - - * plug-ins/file-uri/uri.c: pass error messages with the return - values instead of calling g_message(). - - * plug-ins/file-uri/uri-backend-libcurl.c - * plug-ins/file-uri/uri-backend-gnomevfs.c - * plug-ins/file-uri/uri-backend-gvfs.c - * plug-ins/file-uri/uri-backend-wget.c: set errors in the - G_FILE_ERROR domain and other minor cleanups. - -2008-08-18 Sven Neumann - - * plug-ins/common/file-compressor.c: open the temporary file - before forking. This allows us to return an error message if the - file can't be opened. Also changed the code to not use g_message() - from the child process. - -2008-08-18 Sven Neumann - - * plug-ins/common/file-compressor.c: pass some error message with - the return values instead of calling g_message(). - -2008-08-18 Sven Neumann - - * plug-ins/common/file-gbr.c - * plug-ins/common/file-gih.c - * plug-ins/common/file-pat.c - * plug-ins/common/file-pix.c - * plug-ins/common/file-sunras.c: for the most common errors, pass - the error message with the return values instead of calling - g_message(). - -2008-08-18 Michael Natterer - - * plug-ins/common/compressor.c: renamed... - * plug-ins/common/file-compressor.c: ...to this. - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/Makefile.am: regenerated. - -2008-08-18 Sven Neumann - - * plug-ins/common/file-xbm.c - * plug-ins/common/file-xpm.c - * plug-ins/common/file-xwd.c: for the most common errors, pass the - error message with the return values instead of calling g_message(). - -2008-08-18 Sven Neumann - - * plug-ins/common/file-wmf.c: pass error message with the return - values instead of calling g_message(). - -2008-08-18 Sven Neumann - - * plug-ins/common/file-raw.c - * plug-ins/common/file-tga.c - * plug-ins/common/file-tiff-load.c - * plug-ins/common/file-tiff-save.c: pass error messages with the - return values instead of calling g_message(). - -2008-08-18 Sven Neumann - - * plug-ins/common/file-pnm.c - * plug-ins/common/file-ps.c - * plug-ins/common/file-psp.c: for the most common errors, pass the - error message with the return values instead of calling g_message(). - -2008-08-18 Sven Neumann - - * plug-ins/common/file-mng.c - * plug-ins/common/file-pcx.c: for the most common errors, pass the - error message with the return values instead of calling g_message(). - - * plug-ins/common/file-gif-save.c - * plug-ins/common/file-pdf.c - * plug-ins/common/file-png.c: minor cleanup. - -2008-08-17 Sven Neumann - - * plug-ins/common/file-pdf.c: in case of an error, pass the error - message with the return values. - -2008-08-17 Sven Neumann - - * plug-ins/common/file-gif-load.c - * plug-ins/common/file-gif-save.c: for the most common errors, - pass the error message with the return values instead of calling - g_message(). - - * plug-ins/common/file-png.c: unmarked a string for translation. - This error condition can't possibly happen. - - * plug-ins/common/file-svg.c: also return an error message when - the thumbnail can't be loaded. - -2008-08-17 Sven Neumann - - * plug-ins/common/file-dicom.c: for the most common errors, pass - the error message with the return values instead of calling - g_message(). - -2008-08-17 Sven Neumann - - * plug-ins/common/file-csource.c: in case of an error, pass the - error message with the return values. - -2008-08-17 Sven Neumann - - * plug-ins/pygimp/plug-ins/whirlpinch.py: don't hardcode the tile - size, use gimp.tile_width() instead. - -2008-08-17 Sven Neumann - - * plug-ins/common/file-desktop-link.c - * plug-ins/common/file-svg.c: changed to pass error messages with - the return values instead of calling g_message(). - -2008-08-17 Sven Neumann - - * plug-ins/script-fu/scripts/frosty-logo.scm - (apply-frosty-logo-effect): unmarked string for translation. - Script-Fu doesn't support i18n outside the register call. - -2008-08-17 Sven Neumann - - * plug-ins/script-fu/scripts/glowing-logo.scm - * plug-ins/script-fu/scripts/neon-logo.scm: changed the "Alpha to - Logo" parts of these scripts so that the user can specify the - effect size directly instead of as some multiple of the size. - -2008-08-17 Sven Neumann - - * plug-ins/script-fu/scripts/starscape-logo.scm: dropped the - "Alpha to Logo" part of the "Starscape logo script. It had a - similar problem as the Starburst script (see bug #486779). - -2008-08-17 Sven Neumann - - * plug-ins/script-fu/scripts/Makefile.am - * plug-ins/script-fu/scripts/starburst-logo.scm: dropped the - "Starburst" logo script. Fixes bug #486779. - -2008-08-17 Sven Neumann - - Next step towards fixing bug #344818: - - * app/pdb/gimpprocedure.c (gimp_procedure_execute): if the error - has not already been set, construct one from the error message - that is optionally passed with the return values. - - * plug-ins/common/file-png.c: changed to pass an error message - with the return values instead of calling g_message() in case of - an error. - -2008-08-17 Sven Neumann - - * app/plug-in/gimppluginprocframe.[ch]: renamed - gimp_plug_in_proc_frame_get_return_vals() to - gimp_plug_in_proc_frame_get_return_values(). - - * app/plug-in/gimppluginmanager-call.c: changed accordingly. - -2008-08-17 Sven Neumann - - * plug-ins/file-psd/psd-util.c (psd_set_error): changed to use - g_set_error(). - -2008-08-17 Sven Neumann - - * app/plug-in/gimpplugin-progress.c - (gimp_plug_in_progress_cancel_callback): introduced a utility - function to reduce code duplication. - - * app/pdb/gimppdb.c (gimp_pdb_execute_procedure_by_name): changed - to use g_error_new_literal(). - -2008-08-17 Martin Nordholts - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_size_allocate): Simplify. - -2008-08-17 Martin Nordholts - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_size_allocate): If the image ends up - below or to the right of the viewport top and left edges, and the - image is not centered on a given axis, align the top left image - edge with the top left viewport edge. This is basically the best - we can do without an API for start and end of a window resize - cycle using the mouse. - -2008-08-17 Martin Nordholts - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_size_allocate): Don't apply the - centering logic on zoom_on_resize. - -2008-08-17 Martin Nordholts - - * app/display/gimpdisplayshell.[ch] - (gimp_display_shell_configure_event): When applying the centering - logic we need to know the size of the new canvas, so instead of - having it here, only make sure that this logic is run on the next - canvas size-allocate. - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_size_allocate): If the size-allocate - comes from a top level window resize, apply centering logic. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_center_image_on_next_size_allocate): - Oops, correct parameter order. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_scroll_center_image_on_next_size_allocate): - Support axis independence. - - * app/display/gimpdisplayshell.c: Adapt. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_center_image_on_next_size_allocate): - Explain that this function needs to be used with care since it is - risky. - - * app/display/gimpdisplayshell.c - (gimp_display_shell_new) - (gimp_display_shell_fill): Clarify that it is safe to use the - risky function. - - (gimp_display_shell_configure_event): Make proper comparisions (<= - not =) and explain that usage of the risky function is safe. - - (gimp_display_shell_shrink_wrap): Always call - gimp_display_shell_scroll_center_image() and let size-requests be - handled by GimpDisplayShell::configure_event(). - - * app/actions/view-commands.c (view_shrink_wrap_cmd_callback): No - need to center anything explicitly any longer. - -2008-08-16 Sven Neumann - - * libgimp/gimp.c (gimp_get_pdb_error): added translator comments. - -2008-08-16 Sven Neumann - - * plug-ins/pygimp/pygimp-pdb.c (pf_call): also use - gimp_get_pdb_error() here. Easier and safer than looking at the - return values to get the error message. - -2008-08-16 Sven Neumann - - Next step towards fixing bug #344818: - - * libgimp/gimp.[ch]: keep the last error status and error message - in libgimp. Added new functon gimp_get_pdb_error() that allows to - retrieve it. - - * libgimp/gimp.def: updated. - - * plug-ins/pygimp/gimpmodule.c (pygimp_vectors_import_from_file) - (pygimp_vectors_import_from_string): use the new function to get - a more useful error message. - -2008-08-16 Sven Neumann - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): - removed the term 'PDB' from the user-visible error messages. - -2008-08-16 Sven Neumann - - * tools/pdbgen/pdb/vectors.pdb: pass error parameter to - gimp_vectors_import functions. - - * app/pdb/vectors-cmds.c: regenerated. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_size_allocate): Remove the centering - logic because we do not always want to run it when the canvas size - changes. For example, the canvas size changes if rulers are - toggled on/off. - - * app/display/gimpdisplayshell.c - (gimp_display_shell_configure_event): Implement - GtkWidget::configure_event() for the display shell and put the - image centering logic here instead, since this class function is - run when the top level window size changes. Run it only if the - size (not position) of the window changes. - -2008-08-16 Michael Natterer - - * app/tools/gimpdrawtool.c: remove #include "core/gimpguide.h" - -2008-08-16 Sven Neumann - - * app/pdb/gimppdb.c (gimp_pdb_execute_procedure_by_name): changed - error message to be similar to the message thrown from - gimp_procedure_validate_args(). - -2008-08-16 Sven Neumann - - If a procedure call fails, pass a string describing the error as - the second return value. First step towards fixing bug #344818. - - * app/pdb/gimpprocedure.[ch] (gimp_procedure_get_return_values): - added a GError parameter. If it is set, pass the error message to - the return values. - - * app/pdb/gimppdberror.h: added some more error codes. - - * app/pdb/gimppdb.c - * app/xcf/xcf.c: pass errors to gimp_procedure_get_return_values(). - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): - show a different error message for execution vs. calling errors. - - * app/plug-in/gimpplugin-progress.c - (gimp_plug_in_progress_cancel_callback): pass the error - GIMP_PDB_CANCELLED to gimp_procedure_get_return_values(). - - * app/plug-in/gimppluginmanager-call.[ch] - (gimp_plug_in_manager_call_run): removed the 'destroy_return_vals' - parameter. - - * app/plug-in/gimppluginprocedure.c: destroy the return values here. - - * app/plug-in/gimppluginprocframe.c: pass an error to - gimp_procedure_get_return_values(). - - * tools/pdbgen/app.pl - * tools/pdbgen/pdb/fileops.pdb: generate code that passes the - error to gimp_procedure_get_return_values(). - - * app/pdb/*-cmds.c: regenerated. - - * plug-ins/pygimp/pygimp-pdb.c: extract the error message from the - return values and pass it to the exception that is thrown. - -2008-08-16 Martin Nordholts - - * app/actions/view-commands.c (view_shrink_wrap_cmd_callback): - Also handle the case when only the offset is wrong. Not pretty but - simple. - -2008-08-16 Sven Neumann - - * app/display/Makefile.am - * app/display/gimpdisplayshell-scale.[ch] - * app/display/gimpdisplayshell-scale-dialog.[ch]: split scale - dialog into a new file. - - * app/actions/view-commands.c: changed accordingly. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_viewport_coord_almost_centered): New - function. - - (gimp_display_shell_scale): Center the image on zoom also if it is - almost centered. This makes the image centered all the way when - zooming out far away. - -2008-08-16 Sven Neumann - - * app/tools/gimpfreeselecttool.c - * app/tools/gimprectangletool.c: formatting. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_to): Reimplement to increase - readability. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_to): Nice-ify. - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scale.[ch] - (gimp_display_shell_scale_get_zoom_focus) - (gimp_display_shell_scale_image_is_within_viewport): Support axis - independence. - - * app/display/gimpdisplayshell.c - (gimp_display_shell_zoom_button_callback): Adapt to new - gimp_display_shell_scale_image_is_within_viewport(). - -2008-08-16 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_image_is_within_viewport): Make proper - tests (>= not >)... - -2008-08-16 Daniel Eddeland - - * app/text/gimptext.c: corrected gimp_text_set_property for - "box-unit" , fixing bug #547126 - -2008-08-15 Sven Neumann - - * plug-ins/common/pixelize.c: formatting. - -2008-08-15 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c (gimp_display_shell_scale): - More elegantly deal with the 'Resize window on zoom'-case. - -2008-08-15 Daniel Eddeland - - * app/text/gimptextlayout-render.c: make text align correctly if - text-box is FIXED. - -2008-08-15 Michael Natterer - - * app/paint/gimppaintcore-stroke.c - (gimp_paint_core_stroke_boundary) - (gimp_paint_core_stroke_vectors): when stroking multiple segments, - set paint_core->cur_coords to the start of each segment. It - normally gets assigned by gimp_paint_core_start(), but that's not - called for subsequent segments. Fixes stroking multiple segments - with the ink tool. The other tools were not affected since they - plot individual brushes rather than a shape from the last to the - current coordinates. Spotted by Alexia. - -2008-08-15 Sven Neumann - - * plug-ins/common/mosaic.c: formatting. - -2008-08-15 Sven Neumann - - * plug-ins/common/mosaic.c (polygon_add_point): converted a - g_print() call to g_warning() and unmarked the string for - translation. - -2008-08-15 Sven Neumann - - * plug-ins/file-ico/ico-save.c: applied patch from Aurimas JuÅĄka - that fixes an endianness issue (bug #529629). - -2008-08-15 Sven Neumann - - * app/display/gimpstatusbar.[ch]: added some logic to avoid that - an info message replaces a warning. Allow info messages to - replace other info messages. - - * app/display/gimpdisplay-handlers.c: changed accordingly. - -2008-08-15 Sven Neumann - - * app/actions/file-commands.c (file_save_cmd_callback): save new - images, even if they are not marked dirty. - -2008-08-14 Sven Neumann - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): - use G_STRFUNC in another error message that I missed earlier. - -2008-08-14 Michael Natterer - - * plug-ins/help-browser/dialog.c (search_entry_key_press): search - the next match when return or enter is pressed in the search - entry. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_image_starts_to_fit) - (gimp_display_shell_scale_image_is_within_viewport): Make - proper tests (<= not <). - -2008-08-14 Sven Neumann - - * app/actions/file-commands.c (file_save_cmd_callback): if we - trust the dirty flag and don't save because there are no changes, - display a message in the status-bar telling the user so. - - * app/config/gimpguiconfig.c: changed the default value for - "trust-dirty-flag" to TRUE. - -2008-08-14 Sven Neumann - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_tile_get): - use G_STRFUNC to get the proper function name in the error message. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_image_stops_to_fit): New function. - (gimp_display_shell_scale_get_zoom_focus): If the image stops - to fit the viewport, we can already now use the mouse cursor - as the zoom focus point. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-draw.[ch] - (gimp_display_shell_draw_get_scaled_image_size_for_scale): New - function. - - * app/display/gimpdisplayshell-scale.[ch] - (gimp_display_shell_scale): When zooming out and the image - starts to fit the viewport on a given axis, center on that - axis. - - (gimp_display_shell_scale_image_starts_to_fit): New function. - - (gimp_display_shell_calculate_scale_x_and_y): New function. - - * app/display/gimpdisplayshell.c - (gimp_display_shell_scale_changed): Use - gimp_display_shell_calculate_scale_x_and_y(). - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_center_image): Bail out if neither - vertical nor horizontal centering is requested. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_get_zoom_focus): When the image is - within the viewport, also use the center of the image as the zoom - focus point when zooming in. It feels way too weird not to do it - this way. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_get_zoom_focus): If the image is within - the viewport and we are zooming out, make the focus point be the - center of the image. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_to): Move calculation of the actual new - scale to use from here - (gimp_display_shell_scale): to here, because we need this - information in order to determine what point to focus on while - zooming. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell.c - (gimp_display_shell_set_unit): No need to update scrollbars, only - rulers. - (gimp_display_shell_reconnect): A - gimp_display_shell_scroll_clamp_and_update() makes more sense - here. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_monitor_res_notify_handler): When the screen - resolution changes and we are not in Dot by dot, we also need to - clamp the display shell offsets. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_resolution_changed_handler): If we are in - dot-by-dot, we only need to update the rulers, and only if the - unit is not pixels. - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_update_scrollbars_and_rulers): Split this up - in gimp_display_shell_scale_update_scrollbars() and - gimp_display_shell_scale_update_rulers(). - -2008-08-14 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_clamp_and_update): New helper function. - - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-scroll.c - * app/display/gimpdisplayshell-callbacks.c: Use it. - -2008-08-14 Sven Neumann - - * plug-ins/pygimp/plug-ins/python-console.py: renamed the dialog - class to ConsoleDialog to avoid confusion with pyconsole.Console. - -2008-08-13 Sven Neumann - - * plug-ins/pygimp/plug-ins/python-console.py: instead of calling - gimp-displays-flush twice a second, call it after each command - that is committed. This is similar to what the Script-Fu console - does. - - * plug-ins/script-fu/script-fu-console.c: formatting. - -2008-08-13 Sven Neumann - - * plug-ins/pygimp/pygimp-colors.c: fix compiler warnings. - -2008-08-13 Sven Neumann - - * plug-ins/help/gimphelplocale.c (gimp_help_locale_parse): - reverted the last change as g_file_query_info() is now also - implemented on Win32. - -2008-08-13 Sven Neumann - - * plug-ins/help/gimphelplocale.c (gimp_help_locale_parse): - continue even if g_file_query_info() fails. We can't show proper - progress information then, but we can still attempt the download. - -2008-08-13 Sven Neumann - - * app/paint-funcs/paint-funcs.c (replace_inten_pixels): applied - patch from Luidnel Maignan (followup to bug #105568). - -2008-08-13 Sven Neumann - - * app/paint-funcs/scale-region.c: applied patch from Geert - Jordaens to fix scaling artifacts in top row (bug #464466). - -2008-08-13 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_get_zoom_focus): New function - responsible for deciding what viewport coordinate to focus on when - zooming in and out. - -2008-08-13 Martin Nordholts - - * app/display/gimpdisplayshell-scale.[ch] - (gimp_display_shell_scale_to): Make this a private function - because we want to be in full control over what pixel to focus on - when zooming in and out. - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): Use - gimp_display_shell_scale() here instead of - gimp_display_shell_scale_to(). We figure out (and can override if - we wish) the coordinates that were previously passed explicitly. - -2008-08-13 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_image_is_within_viewport): New function. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): When - the zoom button is toggled on, implicitly do a View -> Fit Image - in Window if the (scaled) image is within the viewport. - -2008-08-13 Martin Nordholts - - * app/paint/gimppaintcore.c: Include gimpprojection.h for - gimp_projection_get_tiles(). - -2008-08-12 Sven Neumann - - * app/paint-funcs/paint-funcs.c (replace_inten_pixels): applied a - slightly modified version of the patch from Luidnel Maignan as - attached to bug #105568. Fixes incorrect alpha treatment in - plug-in selection masking. - -2008-08-12 Sven Neumann - - * app/widgets/gimphistogrameditor.c - (gimp_histogram_editor_frozen_update): don't do the background - histogram unless the histogram view is actually visible. - -2008-08-12 Sven Neumann - - * app/paint/gimppaintcore.c (gimp_paint_core_start): use - gimp_projection_get_tiles() instead of doing the same through the - GimpPickable interface. - -2008-08-12 Sven Neumann - - * plug-ins/win-snap/Makefile.am: follow the executable name change. - -2008-08-12 Sven Neumann - - * app/core/gimpprojection.c (gimp_projection_paint_area): moved - function calls out of CLAMP macros. - -2008-08-12 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): - removed calls to scale the image and to update the scrollbars and - rulers. Doesn't seem to make sense in an empty display and it - causes a crash. - -2008-08-12 Sven Neumann - - * app/core/gimpitem.c - * app/core/gimpobject.c - * app/dialogs/preferences-dialog.c - * plug-ins/imagemap/imap_main.c - * plug-ins/imagemap/imap_selection.c - * plug-ins/common/filter-pack.c - * plug-ins/common/grid.c - * plug-ins/common/newsprint.c - * plug-ins/fractal-explorer/fractal-explorer-dialogs.c - * plug-ins/fractal-explorer/fractal-explorer.c: use canonical - signal names. - -2008-08-12 Sven Neumann - - * configure.in (sed-po-makefiles): create the stamp-it files in - the po-* directories. - -2008-08-12 Sven Neumann - - * po-*/Makefile.in.in: corrected 'subdir' variables. Spotted by - Tor Lillqvist. - - * modules/controller-midi.c: formatting. - -2008-08-12 Michael Natterer - - * modules/color-selector-wheel.c: override the wheel's - size-request and return a small requisition that allows - it to be resized smaller again. - -2008-08-12 Sven Neumann - - * modules/Makefile.am: fixed library dependencies. - -2008-08-11 Michael Natterer - - * plug-ins/common/cml-explorer.c - * plug-ins/common/depth-merge.c - * plug-ins/common/file-cel.c - * plug-ins/common/oilify.c - * plug-ins/file-bmp/bmp-write.c - * plug-ins/file-bmp/bmp.[ch] - * plug-ins/file-ico/ico-dialog.c - * plug-ins/file-ico/ico-save.c - * plug-ins/file-ico/ico.h - * plug-ins/flame/flame.c - * plug-ins/fractal-explorer/fractal-explorer-dialogs.c - * plug-ins/fractal-explorer/fractal-explorer.[ch] - * plug-ins/gimpressionist/gimp.c - * plug-ins/gimpressionist/gimpressionist.[ch] - * plug-ins/gimpressionist/orientmap.c - * plug-ins/gimpressionist/presets.c - * plug-ins/gimpressionist/sizemap.c - * plug-ins/help-browser/dialog.[ch] - * plug-ins/help-browser/help-browser.c - * plug-ins/ifs-compose/ifs-compose.c - * plug-ins/imagemap/imap_default_dialog.c - * plug-ins/imagemap/imap_main.[ch] - * plug-ins/lighting/lighting-main.[ch] - * plug-ins/lighting/lighting-ui.c - * plug-ins/map-object/map-object-main.[ch] - * plug-ins/map-object/map-object-ui.c - * plug-ins/selection-to-path/selection-to-path.c - * plug-ins/win-snap/winsnap.c: use PLUG_IN_BINARY and PLUG_IN_PROC - defines consistently instead of using literal strings or other - random defines. Define them if not already there or move them to - plugin-global places. - - * plug-ins/win-snap/Makefile.am: rename the binary to "win-snap". - - * plug-ins/win-snap/winsnap.c: changed accordingly. - -2008-08-11 Michael Natterer - - * modules/Makefile.am - * modules/*.c: renamed all modules to color-selector-foo.c, - display-filter-foo.c and controller-foo.c - -2008-08-11 Sven Neumann - - * INSTALL: mention lcms in the list of recommended libraries. - -2008-08-11 Michael Natterer - - * configure.in: check for lcms with PKG_CHECK_MODULES(). Remove - check for vs. because the pc file should - give us the right location now. - - * modules/cdisplay_lcms.c - * modules/cdisplay_proof.c - * modules/colorsel_cmyk_lcms.c - * plug-ins/file-jpeg/jpeg-load.c - * plug-ins/common/lcms.c: #include and nothing else. - - * modules/Makefile.am - * plug-ins/file-jpeg/Makefile.am - * plug-ins/common/plugin-defs.pl: add LCMS_CFLAGS where appropriate. - - * plug-ins/common/Makefile.am: regenerated. - -2008-08-11 Sven Neumann - - Please re-run autogen.sh after this update, and let me know if - there are any problems. - - * po-*/Makefile.in.in: updated to a version that does not require - mkinstalldirs to be present. - - * autogen.sh: removed the call to glib-gettextize and call - intltoolize without the --force command-line option. This change - makes an end to the po/Makefile.in.in being overwritten. - - * HACKING: changed the documentation accordingly. - -2008-08-11 Sven Neumann - - * plug-ins/common/mkgen.pl: removed the LIBFOO hack from this - script. - - * plug-ins/common/plugin-defs.pl: explicitely specify the libs in - the two places where it wasn't done yet. - - * plug-ins/common/Makefile.am: regenerated. - -2008-08-11 Michael Natterer - - * configure.in: change all LIBFOO variables to FOO_LIBS for - consistency, got rid of some variables alltogether since - PNG_CHECK_MODULES() already defined FOO_LIBS. - - * tools/Makefile.am - * modules/Makefile.am - * plug-ins/file-ico/Makefile.am - * plug-ins/file-jpeg/Makefile.am - * plug-ins/file-psd/Makefile.am - * plug-ins/file-xjt/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/mkgen.pl: changed accordingly. - - * plug-ins/common/Makefile.am: regenerated. - -2008-08-11 Michael Natterer - - * plug-ins/bmp/* - * plug-ins/faxg3/* - * plug-ins/fits/* - * plug-ins/fli/* - * plug-ins/ico/* - * plug-ins/jpeg/* - * plug-ins/psd/* - * plug-ins/sgi/* - * plug-ins/uri/* - * plug-ins/xjt/*: removed these... - - * plug-ins/file-bmp/* - * plug-ins/file-faxg3/* - * plug-ins/file-fits/* - * plug-ins/file-fli/* - * plug-ins/file-ico/* - * plug-ins/file-jpeg/* - * plug-ins/file-psd/* - * plug-ins/file-sgi/* - * plug-ins/file-uri/* - * plug-ins/file-xjt/*: and moved them here. Changed executable - names to "file-foo". - - * plug-ins/Makefile.am: changed accordingly. - - * plug-ins/common/*: rename all file plug-ins to file-foo.c. Get - rid of the names "poppler" and "postscript" and call them - "file-pdf" and "file-ps" because the conflict with standard - autofoo targets is gone. - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/mkgen.pl: make sure cflags variables are named - "PLUG_IN_NAME_CFLAGS" and not "PLUG-IN-NAME_CFLAGS" - - * plug-ins/common/Makefile.am: regenerated. - - * configure.in: change folders and variable names to match above - changes. - -2008-08-11 Sven Neumann - - * app/tools/gimptexttool.c: minor coding style cleanups. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_size_allocate): If the image fits - within the display shell canvas on a given axis, center the image - on that axis. This behaviour will certainly require a few tweaks - but let's see how this feels. Feedback welcome. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell.c (gimp_display_shell_fill): Recent - refactorings seems to have made the centering hack obsolete so use - gimp_display_shell_scroll_center_image_on_next_size_allocate() - instead. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell.c (gimp_display_shell_shrink_wrap): - Always center the image after a wrap. I can't think of a case when - that shouldn't happen. - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_size_changed_detailed_handler): Centering - occurs implicitly after wrapping now, no need to do it explicitly. - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_center_image): Handle the no-image - case. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_scroll_set_offset): New low level function for - setting display shell offset. - - (gimp_display_shell_scroll_center_image) - - * app/display/gimpdisplayshell-handlers.c - (gimp_display_shell_size_changed_detailed_handler): Use it instead - of gimp_display_shell_scale_by_values(). - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_handle_zoom_revert): Move the - zoom-revert updating logic into this new helper function so that - we can update zoom-revert from other places. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scale.[ch]: - Rename gimp_display_shell_scale_setup() to - gimp_display_shell_update_scrollbars_and_rulers(), because that's - exactly what that function does. - - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-scroll.c - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell-callbacks.c: Adapt to new name. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): Remove unused local variables sw - and sh. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch]: Renamed - gimp_display_shell_scroll_private() to gimp_display_shell_scroll() - and keep it here. - - * app/display/gimpdisplayshell-private.h: Removed. - - * app/display/Makefile.am - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-scroll.c - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-autoscroll.c: Adapt. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch]: It makes more sense - for gimp_display_shell_get_scaled_image_size() to be moved from - here to - - * app/display/gimpdisplayshell-draw.[ch]: here, and rename it to - gimp_display_shell_draw_get_scaled_image_size(). - - * app/display/gimpdisplayshell.c: Adapt to name change. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-draw.[ch] - * app/display/gimpdisplayshell-render.[ch] - * app/display/gimpdisplayshell-transform.[ch] - * app/display/gimpdisplayshell-appearance.[ch]: Sprinkle as many - const qualifiers we can without any implementation changes. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch]: gimp_display_shell_ -> - gimp_display_shell_scroll_ for functions that are scroll - related. Also did some other minor renamings. - - * app/display/gimpnavigationeditor.c - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-render.c - * app/display/gimpdisplayshell-transform.c - * app/display/gimpdisplayshell-callbacks.c: Adapt to the name - changes. - -2008-08-10 Martin Nordholts - - * app/actions/view-commands.c (view_shrink_wrap_cmd_callback): We - need to center the image after a Shrink Wrap. - -2008-08-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_center_image): There is no need for - special casing depending on image size relative to viewport size. - -2008-08-10 Martin Nordholts - - Put functions to center the image in the display shell where they - belong, and give them proper names. - - * app/display/gimpdisplayshell-scale.[ch]: Get rid of functions - and use the new names. - - * app/display/gimpdisplayshell-scroll.[ch]: Put the functions here - and call them gimp_display_shell_scroll_center_image() and - gimp_display_shell_scroll_center_image_on_next_size_allocate(). - - * app/display/gimpdisplayshell.c: - * app/display/gimpdisplayshell-handlers.c: Use the new names. - -2008-08-08 Michael Natterer - - Bug #545990: GIMP color wheel is not antialiased - - * modules/colorsel_triangle.c: removed. - - * modules/colorsel_wheel.c: new module using the GtkHSV widget - which was originally developed from above triangle selector. - - * modules/Makefile.am: changed accordingly. - -2008-08-08 Sven Neumann - - * app/base/tile-manager.c: implement - tile_manager_get_tile_coordinates() by calling - tile_manager_get_tile_col_row() instead of the other way around. - Saves two multiplications and divisions for each call of - tile_manager_get_tile_col_row(). - -2008-08-08 Sven Neumann - - * app/base/tile-manager.c: introduced utility function - tile_manager_allocate_tiles() to avoid code duplication. - -2008-08-08 Sven Neumann - - * app/base/tile-pyramid.c: improved a comment. - -2008-08-08 Sven Neumann - - * app/core/gimplayer.c (gimp_layer_new_from_tiles) - (gimp_layer_new_from_pixbuf) (gimp_layer_new_from_region): allow - to pass NULL for the 'name' parameter. This will be handled just - like in gimp_layer_new(). - -2008-08-07 Sven Neumann - - * plug-ins/script-fu/scripts/frosty-logo.scm: applied slightly - modified version of a patch provided by LightningIsMyName. - Catches some cases where the script would fail (bug #472316). - -2008-08-07 Sven Neumann - - * app/actions/layers-actions.c (layers_actions): added mnemonic to - the new action. - -2008-08-07 Sven Neumann - - * app/paint-funcs/scale-region.c: sprinkled with const qualifiers. - Fixed some portability problems. - -2008-08-07 Sven Neumann - - * app/base/tile.c (tile_attach): renamed a variable. - -2008-08-07 Sven Neumann - - * plug-ins/print/print.c (print_image): get rid of the - gimp_export_image() hack and use the new procedure - gimp-layer-new-from-visible instead. Finally we can print what the - user sees (including channels). - -2008-08-07 Sven Neumann - - * app/core/gimpbuffer.[ch]: added gimp_buffer_get_tiles(). - - * app/actions/edit-commands.c - * app/core/gimpbrushclipboard.c - * app/core/gimppatternclipboard.c: use the new accessor function. - -2008-08-07 Sven Neumann - - * app/core/gimplayer.c - * app/actions/edit-commands.c - * app/actions/layers-commands.c - * tools/pdbgen/pdb/layer.pdb: corrected the GimpImageType passed - to gimp_layer_new_from_tiles(). - - * app/pdb/layer-cmds.c: regenerated. - -2008-08-07 Sven Neumann - - * app/actions/edit-commands.[ch] - * app/actions/edit-actions.c: added new action - "edit-paste-as-new-layer". - - * app/widgets/gimphelp-ids.h: added new help-id. - - * menus/image-menu.xml.in: added the new action. - -2008-08-07 Tor Lillqvist - - * app/config/gimpbaseconfig.c (gimp_base_config_class_init): Use - G_MAXSIZE instead of G_MAXULONG to limit the max tile cache size, - as long is still 32 bits on Win64 but size_t is 64 bits. - -2008-08-07 Sven Neumann - - * tools/pdbgen/pdb/layer.pdb: added new procedure - 'gimp-layer-new-from-visible'. - - * app/pdb/layer-cmds.c - * app/pdb/internal-procs.c - * libgimp/gimplayer_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - -2008-08-07 Sven Neumann - - * app/actions/layers-actions.c - * app/actions/layers-commands.[ch]: added new action - "layers-new-from-visible". - - * app/widgets/gimphelp-ids.h: added new help-id. - - * menus/layers-menu.xml - * menus/image-menu.xml.in: added the new action. - - * app/actions/edit-actions.c: improved the blurb for - "edit-copy-visible". - -2008-08-07 Tor Lillqvist - - * app/main.c: Code built by the still unstable mingw-w64 toolchain - gets bogus argc and argv when built as subsystem:windows, so use - __argc and __argv instead, which seem to be OK. - - * libgimp/gimp.h: Similar change here. - -2008-08-07 Sven Neumann - - * app/base/tile-manager.c (tile_manager_invalidate_tile): fixed - broken copy-on-write code. The old code did not insert the new - tile in the tile-manager's tile pointer array. - - (tile_manager_map): changed in a similar way as - tile_manager_invalidate_tile(). This code was not broken, but it - is easier to read now. - - * app/base/tile-private.h: moved a comment. - - * app/core/gimpselection.c (gimp_selection_extract): removed - workaround for above bug. - -2008-08-07 Sven Neumann - - * app/core/gimpselection.c (gimp_selection_extract): aded a - comment explaining why copy_region_nocow() is being used here. - -2008-08-07 Sven Neumann - - * app/core/gimplayer.c (gimp_layer_new_from_region): added some - empty lines for readability. - -2008-08-07 Sven Neumann - - * app/core/gimpimage.[ch]: added gimp_image_get_projection(). - - * app/display/gimpdisplay-handlers.c - * app/display/gimpdisplayshell-render.c - * app/display/gimpdisplayshell-scroll.c - * app/paint/gimppaintcore.c - * app/paint/gimpsourcecore.c - * app/tools/gimpbycolorselecttool.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimpimagemaptool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimppainttool.c - * app/widgets/gimpsamplepointeditor.c - * tools/pdbgen/pdb/image.pdb: use the new accessor function. - - * app/pdb/image-cmds.c: regenerated. - -2008-08-07 Sven Neumann - - * app/tools/gimpcurvestool.h: fixed comment. - -2008-08-07 Tor Lillqvist - - * configure.in: Define WIN32_LARGE_ADDRESS_AWARE as - -Wl,--large-address-aware on 32-bit Windows, empty - otherwise. AC_SUBST() it. - - * app/Makefile.am (win32_ldflags): Use WIN32_LARGE_ADDRESS_AWARE - instead of hardcoding the switch, as it isn't valid, and would be - pointless, when building a 64-bit GIMP. - -2008-08-06 Sven Neumann - - * app/core/gimpdrawable-shadow.c: removed unused include. - -2008-08-06 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_center_image): The operation of centering the - image in the display shell has by itself nothing to do with - resizing the display shell window. - -2008-08-06 Sven Neumann - - * libgimp/gimppixelrgn.c (gimp_pixel_rgn_configure): fixed gtk-doc - comment syntax. - -2008-08-06 Sven Neumann - - * app/gui/gimpdbusservice.c: minor cleanups. - -2008-08-05 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c (gimp_display_shell_scale): - Only center on the mouse pointer when zooming if it is within the - canvas. - -2008-08-05 Michael Natterer - - * app/display/gimpdisplayshell-scroll.[ch] - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-transform.c: get rid of the "image" - part in all instances of "scaled_image_viewport_offset", we call - it simply "viewport" in all other places and it makes the code - more readable. - -2008-08-05 Sven Neumann - - * app/gui/gimpdbusservice.[ch]: changed refcounting and fixed a - bug that I had introduced with the latest changes. - -2008-08-05 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): Don't setup scrollbar step - increment here. - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_setup_hscrollbar_with_value) - (gimp_display_shell_setup_vscrollbar_with_value): Setup scrollbar - step increment here and make sure that a step always scrolls at - least a display shell pixel. - -2008-08-05 Martin Nordholts - - * app/core/gimpimage.c (gimp_image_real_size_changed_detailed): - Clarify the design with a comment. - -2008-08-05 Sven Neumann - - * app/gui/gimpdbusservice.[ch]: keep a queue of D-Bus requests and - work on them one after another instead of handling them all in - parallel. Complements the fix for bug #546426. - -2008-08-05 Sven Neumann - - * plug-ins/common/value-propagate.c (value_propagate_body): - reduced number of progress updates. - - * app/core/gimpchannel.c (gimp_channel_scale): don't waste CPU - cycles scaling an empty channel. - -2008-08-05 Sven Neumann - - * app/base/tile-manager.h - * app/base/tile-pyramid.h: moved a misplaced comment to the right - place. - -2008-08-05 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c: move update_range - callbacks where they belong and make them static. - -2008-08-05 Sven Neumann - - * app/dialogs/tips-dialog.c (tips_dialog_create): added a - translator comment for the "Learn more" button. - -2008-08-05 Sven Neumann - - * app/display/gimpdisplayshell-draw.c (gimp_display_shell_draw_guide): - draw the guide all across the canvas, not limiting it to the image. - - * app/tools/gimpdrawtool.[ch]: added new function - gimp_draw_tool_draw_guide_line(). - - * app/tools/gimpmovetool.c (gimp_move_tool_draw): use it. - -2008-08-05 Sven Neumann - - * menus/image-menu.xml.in: moved the Windows menu next to the Help - menu. - -2008-08-05 Sven Neumann - - * app/gui/gimpdbusservice.c: open the files from an idle handler. - Opening a file may take a while (in particular if it involves - asking the user for input) and we need to respond to the D-Bus - call before it times out. - -2008-08-04 Sven Neumann - - * app/paint-funcs/scale-region.c: applied patch from Geert - Jordaens as attached to bug #464466. Improves quality of scaling, - in particular down-scaling. - -2008-08-04 Michael Natterer - - * app/core/gimpimage.[ch] (GimpImage::size-changed-detailed): - change double to int in signal parameters. - - Remove gimp_image_emit_size_changed_signals() and call - gimp_viewable_size_changed() in size-changed-detailed's default - handler. - - * app/core/gimpimageundo.[ch] - * app/core/gimpimage-undo-push.[ch]: change double to int in - previous-origin related code. - - * app/core/gimpimage-undo.c - * app/core/gimpimage-scale.c - * app/core/gimpimage-crop.c - * app/core/gimpimage-rotate.c - * app/core/gimpimage-resize.c: call gimp_image_size_changed_detailed() - instead of the removed gimp_image_emit_size_changed_signals() - - * app/display/gimpdisplayshell-scroll.[ch]: remove - gimp_display_shell_handle_size_changed_detailed() because it - handles both scrolling and scaling and doesn't belong here. - - * app/display/gimpdisplayshell-handlers.c: moved its code back to - gimp_display_shell_size_changed_detailed_handler() and follow the - double -> int change above. - -2008-08-04 Michael Natterer - - * app/core/gimpimagemapconfig.c (gimp_image_map_config_compare): - clarify if() condition. - -2008-08-04 Martin Nordholts - - * app/core/gimpimage.c (gimp_image_emit_size_changed_signals): The - parameters should be named previous_origin_[xy]. - -2008-08-04 Sven Neumann - - * plug-ins/common/blur-motion.c (mblur_dialog): added translation - context to blur-type menu (bug #546204). - -2008-08-04 Sven Neumann - - * plug-ins/common/value-propagate.c: applied patch from Liam Quin - as attached to bug #546159. Fixes bad data access for black and - white propagation and removes unneeded calls to sqrt(). - -2008-08-04 Sven Neumann - - Applied a slightly modified patch from RÃŗman Joost as attached to - bug #545963. This add links to the user manual to the tips dialog: - - * data/tips/gimp-tips.dtd - * data/tips/gimp-tips.xml.in: add optional help IDs to the tips. - - * app/dialogs/tips-dialog.c - - * app/dialogs/tips-parser.[ch]: parse the help IDs from the tips - file and show a "Learn more" link in the tips dialog. - -2008-08-03 Martin Nordholts - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): Center - the image after connecting to it. This is required if the image we - connect to is smaller than the initial canvas size. - -2008-08-03 Martin Nordholts - - Further work for completing bug #362915 that makes changes to the - image size (e.g when cropping) be much more nicely handled by - display shell. - - * app/core/gimpimage.[ch]: Add new signal - GimpImage::size-changed-detailed that is emited whenever - GimpViewable::size-changed is. The new signal provides additional - information, namely the previous origin relative to the current - origin. Cliens choose what specific signal to listen to depending - on how much info they need. - - * app/display/gimpdisplayshell-handlers.c: Connect to - GimpImage::size-changed-detailed instead of - GimpViewable::size-changed since the shell wants information about - the previous image origin. - (gimp_display_shell_resolution_changed_handler): Use - gimp_display_shell_scale_resize() instead to avoid display - garbage. - - * app/display/gimpdisplayshell-scale.[ch]: Add new utility - function gimp_display_shell_center_image_on_next_size_allocate(). - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_handle_size_changed_detailed): New function - that replaces logic in gimp_display_shell_handle_size_changed and - that takes previous-origin of the image into account and adjusts - the offset so that the image content that remains doesn't move. If - the window is resized on image resize, just center the image - afterwards. - - * app/core/gimpimage-undo-push.[ch] - (gimp_image_undo_push_image_size): Add previous-origin paremeters. - - * app/core/gimpimageundo.[ch]: Add and manage previous-origin - properties so that the display shell offset can be appropriately - adjusted also when undoing. - - * app/core/gimpundo.h - * app/core/gimpimage-undo.c: Add previous_origin members to the - undo accumulator and emit that information when the size of the - image changes due to the undo. - - * app/core/gimpimage-crop.c (gimp_image_crop) - * app/core/gimpimage-scale.c (gimp_image_scale) - * app/core/gimpimage-rotate.c (gimp_image_rotate) - * app/core/gimpimage-resize.c (gimp_image_resize_with_layers): - Supply information about the previous-origin of the image to the - size-changed signals and the undo system. - -2008-07-31 Sven Neumann - - * app/core/gimpimage-scale.c (gimp_image_scale): formatting. - -2008-07-30 Jakub Steiner - - * data/images/gimp-splash.png: new devel splash from - Aurore Derriennic - -2008-07-30 Sven Neumann - - * app/dialogs/file-open-dialog.c (file_open_dialog_response): - attach the URI of the last opened image to the Gimp object. - - * app/actions/file-commands.c (file_open_dialog_show): use the - last opened URI as a fallback for initializing the dialog. - -2008-07-29 Sven Neumann - - * plug-ins/common/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/psd-save.c: removed psd-save source here ... - - * plug-ins/psd/Makefile.am - * plug-ins/psd/psd-save.c: ... and added it back here. - -2008-07-29 Sven Neumann - - * tools/pdbgen/pdb/vectors.pdb: added the real name of the author - of the new PDB function. - - * app/pdb/vectors-cmds.c: regenerated. - -2008-07-28 Sven Neumann - - * tools/pdbgen/pdb/edit.pdb (edit_stroke_vectors_invoker): check - that the passed vectors item is attached. - - * app/pdb/edit-cmds.c: regenerated. - -2008-07-28 Sven Neumann - - * tools/pdbgen/pdb/vectors.pdb: applied patch from LightningIsMyName - adding the new PDB function gimp-vectors-copy (bug #544212). - - * app/pdb/internal-procs.c - * app/pdb/vectors-cmds.c - * libgimp/gimpvectors_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - -2008-07-27 Sven Neumann - - * app/text/gimptext-compat.c (text_get_extents): applied the same - workaround for a memory leak in PangoFT2 (bug #143542) as was - applied long ago in gimptextlayout.c. - -2008-07-27 Sven Neumann - - * app/text/gimptext-compat.c (text_get_extents) - * app/text/gimptextlayout-render.c (gimp_text_layout_render): - use the readonly variant of pango_layout_iter_get_line(). - -2008-07-27 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_synthesize_motion): Bail out if there is no - pending rectangle to synthesize a motion on. Fixes bug #544181. - -2008-07-27 Sven Neumann - - * plug-ins/psd/Makefile.am: renamed executable to 'psd-load'. - -2008-07-24 Sven Neumann - - * app/widgets/gtkscalebutton.c: added missing prototypes. - -2008-07-24 Sven Neumann - - * plug-ins/help/gimphelplocale.c: formatting. - -2008-07-24 Sven Neumann - - * configure.in: minor cleanup of the checks for the URI plug-in. - - * plug-ins/uri/Makefile.am: changed accordingly. - -2008-07-24 Sven Neumann - - * plug-ins/uri/uri-backend-libcurl.c: use g_fopen(). - - * plug-ins/uri/uri-backend-gvfs.c: formatting. - -2008-07-24 Sven Neumann - - * app/paint/gimppaintcore-stroke.c - (gimp_paint_core_stroke_emulate_dynamics): renamed variables. - -2008-07-23 Sven Neumann - - * app/paint/gimppaintcore-stroke.[ch]: also implement brush - dynamics emulation for stroking selections. - - * app/core/gimpchannel.c: pass the 'emulate-dynamics' parameter to - gimp_paint_core_stroke_boundary(). - -2008-07-23 Sven Neumann - - * app/widgets/gimpsessioninfo.c (gimp_session_info_get_geometry): - don't report negative offsets, they would be interpreted wrongly. - -2008-07-23 Sven Neumann - - Based on a patch from Alexia Death (bug #543706): - - * app/paint/gimppaintcore-stroke.[ch] - (gimp_paint_core_stroke_vectors): added code to emulate brush - dynamics by modifying pressure and velocity along the stroke. - - * app/vectors/gimpvectors.c (gimp_vectors_stroke): pass the - 'emulate-dynamics' parameter to gimp_paint_core_stroke_vectors(). - -2008-07-23 Sven Neumann - - * app/widgets/gimpcontrollerinfo.c - * app/widgets/gimpcontrollerlist.c - * app/widgets/gimpdasheditor.c - * app/widgets/gimpdock.c - * app/widgets/gimpeditor.c - * app/widgets/gimpgrideditor.c - * app/widgets/gimppdbdialog.c - * app/widgets/gimppluginaction.c - * app/widgets/gimpstrokeeditor.c - * app/widgets/gimptemplateeditor.c - * libgimpwidgets/gimpcolorprofilecombobox.c: no need to cast the - return value of g_value_dup_object(). - -2008-07-23 Sven Neumann - - * app/core/gimpguideundo.c - * app/core/gimpitemundo.c - * app/core/gimplayermaskundo.c - * app/core/gimppdbprogress.c - * app/core/gimpstrokedesc.c - * app/core/gimptooloptions.c - * app/core/gimptoolpresets.c - * app/paint/gimppaintoptions.c - * app/text/gimpfont.c - * app/tools/gimptool.c - * app/widgets/gimpaction.c - * app/widgets/gimpcontrollereditor.c: no need to cast the return - value of g_value_dup_object(). - -2008-07-22 Sven Neumann - - * app/widgets/gimpcellrendererviewable.c: no need to cast the - return value of g_value_dup_object(). - -2008-07-22 Sven Neumann - - * plug-ins/help-browser/dialog.c (build_menu): check the return - value of webkit_web_history_item_get_title() to guard us against - a (reported) bug in WebKit. - -2008-07-22 Michael Natterer - - * app/widgets/gimpviewrendererimagefile.c - (gimp_view_renderer_imagefile_get_icon): guard against - g_file_query_info() returning NULL (if the file doesn't exist or - whatever error). - -2008-07-22 Michael Natterer - - * app/tools/gimpcolortool.c: set scroll_lock to TRUE while moving - or creating sample points so the image doesn't scroll while a new - sample point is dragged from the rulers and sample points can be - deleted by dragging them out of image without scrolling at the - same time. - -2008-07-22 Sven Neumann - - * app/tools/gimpvectortool.c: only use the position from the event - coordinates when creating or modifying strokes. Initialize all - other GimpCoords fields with default values. - -2008-07-22 Sven Neumann - - * app/vectors/gimpbezierstroke.c: formatting. - -2008-07-22 Sven Neumann - - * app/widgets/gimpsessioninfo-aux.c - (gimp_session_info_aux_new_from_props): plugged memory leak. - -2008-07-22 Sven Neumann - - * app/widgets/gimphistogramview.c - (gimp_histogram_view_set_background): fixed refcounting issue. - This plugs the memory leak I tried to fix in GimpHistogramEditor. - -2008-07-22 Sven Neumann - - * app/base/gimphistogram.[ch]: added new method - gimp_histogram_duplicate(). - - * app/widgets/gimphistogrameditor.c - (gimp_histogram_editor_frozen_update): instead of recalculating - the histogram, use a duplicate for the background histogram. - -2008-07-22 Sven Neumann - - * app/widgets/gimphistogrameditor.c (gimp_histogram_editor_set_image): - reverted last change, it did not plug the leak. - -2008-07-22 Sven Neumann - - * app/gui/session.c (session_init): plugged a small memory leak. - -2008-07-21 Sven Neumann - - * app/widgets/gimphistogrameditor.c - (gimp_histogram_editor_set_image): always unset and unref the - histograms. Plugs a memory leak reported by valgrind. - -2008-07-21 Simon Budig - - * app/core/gimpcoords.c: incorporate the velocity. - -2008-07-21 Sven Neumann - - * app/tools/gimpdrawtool.c (gimp_draw_tool_on_vectors_handle): - plugged a not so small memory leak. - -2008-07-21 Sven Neumann - - * app/actions/windows-actions.c (windows_actions_dock_notify): - plugged another small memory leak. - -2008-07-21 Sven Neumann - - * app/menus/file-menu.c (file_menu_open_recent_query_tooltip): - plugged a small memory leak. - -2008-07-21 Sven Neumann - - * app/core/gimpstrokedesc.[ch]: added boolean property - 'emulate-brush-dynamics', in preparation for bug #543706. - - * app/dialogs/stroke-dialog.c: added a toggle for the new parameter. - -2008-07-21 Sven Neumann - - * configure.in (ALL_LINGUAS): updated note to translators. - -2008-07-21 Michael Natterer - - * app/gui/splash.c - * plug-ins/common/*.c: don't use gtk_box_pack_start_defaults(), - it got deprecated in GTK+ trunk. - -2008-07-21 Sven Neumann - - * configure.in (ALL_LINGUAS): added 'be' (Belarusian). - -2008-07-19 Martin Nordholts - - * app/widgets/gimpnavigationview.[ch]: Don't expose implementation - details and extend the interface with trivial new functions. - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_popup): Use the new interface instead of - directly accessing the members of the navigation view. - -2008-07-18 Sven Neumann - - * app/core/core-types.h: removed delta_time, delta_x, delta_y, - distance and random from the GimpCoords struct. These don't need - to be kept here and they can't be properly interpolated. - - * app/core/gimpcoords.c: changed accordingly. - - * app/xcf/xcf-load.c (xcf_load_vector): the size of the GimpCoords - struct changed. - - * app/display/gimpdisplayshell.[ch] (struct _GimpDisplayShell): - added some members to store values from the last event that are - needed in gimp_display_shell_eval_event() and which are not any - longer part of GimpCoords. - - * app/display/gimpdisplayshell-coords.c - (gimp_display_shell_eval_event): changed accordingly. - - * app/paint/gimppaintoptions.c: calculate a random number when one - is needed. - - * app/paint/gimpbrushcore.c (gimp_brush_core_interpolate): - GimpCoords doesn't have a "random" field any longer. - -2008-07-18 Sven Neumann - - * app/core/core-types.h (GIMP_COORDS_DEFAULT_VALUES): initialize - all members of the GimpCoords struct. - -2008-07-17 Sven Neumann - - * app/core/gimpcoords.c (gimp_coords_mix): also mix in the new - members of the GimpCoords struct. - -2008-07-17 Sven Neumann - - * app/core/gimpcoords.c (gimp_coords_mix): formatting. - - * app/vectors/gimpbezierstroke.c: formatting. - -2008-07-17 Sven Neumann - - * app/tools/gimpcolorizetool.c: fixed typo pointed out by - ÅŊygimantas Beručka. - -2008-07-17 Sven Neumann - - * app/paint/gimppaintcore.[ch]: removed 'use_pressure' field from - GimpPaintCore. - - * app/paint/gimppaintoptions.[ch]: removed 'use_pressure' parameter. - - * app/paint/gimpairbrush.c - * app/paint/gimpbrushcore.c - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimpheal.c - * app/paint/gimppaintbrush.c - * app/paint/gimpsmudge.c - * app/tools/gimppainttool.c: changed accordingly. - -2008-07-17 Tor Lillqvist - - * app/Makefile.am (win32_ldflags): Use -Wl,--large-address-aware - on Windows so that we can use more that 2 GB user data space (if - available; i.e. if running on a 64-bit OS, or a 32-bit OS booted - with /3GB). See discussion in bug #522073. - -2008-07-17 Sven Neumann - - * libgimp/gimpui.c: improved the documentation of gimpui_init(). - -2008-07-16 Sven Neumann - - * configure.in: bumped version to 2.5.3. - -2008-07-16 Sven Neumann - - * Made 2.5.2 development release. - -2008-07-16 Sven Neumann - - * plug-ins/help-browser/dialog.c: also start the search when the - slash key is pressed. Added a "find-again" feature bound to Ctrl-G. - -2008-07-16 Sven Neumann - - * plug-ins/help-browser/dialog.c: applied patch from RÃŗman Joost - as attached to bug #542826 (with some minor modifications). This - adds a "Search in this page" feature bound to Ctrl-F. - -2008-07-15 Sven Neumann - - * tools/pdbgen/pdb/edit.pdb: fixed documentation (bug #542972). - - * app/pdb/edit-cmds.c - * libgimp/gimpedit_pdb.c: regenerated. - -2008-07-14 Sven Neumann - - * tools/pdbgen/pdb/palette.pdb: added new PDB function - gimp-palette-get-colors that retrieves all colors from a palette - in a single call. Based on patches from bug #332206. - - * app/pdb/palette-cmds.c - * app/pdb/internal-procs.c - * libgimp/gimppalette_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - -2008-07-14 Sven Neumann - - * tools/pdbgen/app.pl: added support for color arrays. - -2008-07-14 Sven Neumann - - * app/pdb/gimp-pdb-compat.c (gimp_pdb_compat_arg_type_from_gtype): - added mapping from GIMP_TYPE_COLOR_ARRAY to GIMP_PDB_COLORARRAY. - -2008-07-14 Sven Neumann - - Add new PDB data type PDB_COLORARRAY for using arrays of GimpRGB - colors as argument or return value. - - * libgimpbase/gimpbaseenums.[ch] (enum GimpPDBArgType): replaced - the unused GIMP_PDB_BOUNDARY with GIMP_PDB_COLORARRAY. - - * libgimpbase/gimpprotocol.h: increased GIMP_PROTOCOL_VERSION. - (struct _GPParam): added d_colorarray entry to the union. - - * libgimpbase/gimpprotocol.c - * libgimp/gimp.[ch] - * app/pdb/gimp-pdb-compat.c - * app/plug-in/plug-in-params.c - * app/plug-in/gimpplugin-message.c - * tools/pdbgen/pdb.pl: deal with the new data type. - - * tools/pdbgen/enums.pl: regenerated. - - * plug-ins/pygimp/pygimp-pdb.c - * plug-ins/script-fu/scheme-wrapper.c: handle the new data type. - -2008-07-14 Sven Neumann - - * app/widgets/gimpcontrollerkeyboard.c: changed cursor key event - prefix from "key-" to "cursor-". - - * etc/controllerrc: changed accordingly. Also removed default - bindings for cursor keys without modifiers as many tools use the - cursor keys already. - -2008-07-14 Sven Neumann - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): added some line breaks to - improve readability. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell-scale.[ch] - (gimp_display_shell_center_image): Allow to choose what axes to - center on. - - (gimp_display_shell_scale_fill) - (gimp_display_shell_scale_fit_in): Explicitly center on both axes. - - * app/display/gimpdisplayshell.c (gimp_display_shell_fill): Center - the image in the previously empty display shell. Rather hackish, - but seems to work fine. - -2008-07-13 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/gimpdbusservice.[ch] - * app/widgets/dbus-service.xml: removed here ... - - * app/gui/Makefile.am - * app/gui/gimpdbusservice.[ch] - * app/gui/dbus-service.xml: ... and moved here. - (gimp_dbus_service_activate): raise the first display instead of - the toolbox. - - * app/gui/gui-unique.c (gui_unique_win32_idle_open): same change - here, raise the display instead of the toolbox. - - * app/unique.c: changed accordingly. - -2008-07-13 Sven Neumann - - * app/unique.c - * app/gui/gui-unique.c: on Win32, if the gimp binary is started - without filenames, raise the toolbox, just as we do in the DBus - code path. - -2008-07-13 Aurimas JuÅĄka - - * app/unique.c (gimp_unique_win32_open): check for NULL pointer to - prevent crash when there are no filenames provided. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): Get rid - of non-intelligent scrollbar stepper sensitivity code. - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_clamp_offsets): Add intelligent - scrollbar stepper sensitivity code. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_setup_hscrollbar_with_value): Consistency - cleanup. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell-scale.[ch] - (gimp_display_shell_center_image): New function. - (gimp_display_shell_scale_fill) - (gimp_display_shell_scale_fit_in): Center the image at the end. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_setup_hscrollbar_with_value) - (gimp_display_shell_setup_vscrollbar_with_value): Use - gimp_display_shell_get_scaled_image_size() instead of inaccurately - calculate that information locally. - -2008-07-13 Martin Nordholts - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_popup): BORDER_PEN_WIDTH is a normal - constant, no need for voodoo. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_get_scaled_image_size): New function that - contains logic previously kept in gimp_display_shell_draw_area(). - - * app/display/gimpdisplayshell-draw.c - (gimp_display_shell_draw_area): Use the new function. - -2008-07-13 Martin Nordholts - - * app/display/gimpdisplayshell.c (gimp_display_shell_fill): Don't - ask gimp_display_shell_set_initial_scale() for display size, we - don't care anyway. - -2008-07-12 Martin Nordholts - - The following change is conceptually based on a patch by - Alexia Death and implements the core functionality for - bug #362915. - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_scroll_clamp_offsets): Clamp the offsets in - such a way that allows to scroll beyond the image border. - - (gimp_display_shell_setup_hscrollbar_with_value) - (gimp_display_shell_setup_vscrollbar_with_value): Put common - scrollbar range setup code here. - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): Use above helper functions for - setting up scrollbar range. - - * app/display/gimpdisplayshell-callbacks.c: Handle adjustment of - the scrollbar range when they are about to change value. - - * app/display/gimpdisplayshell.c: Always keep the scrollbar - steppers sensitive to user input. - -2008-07-12 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c: - Replace gimp_display_shell_scroll() with - gimp_display_shell_center_around_image_coordinate() since that is - easier to map to something sensible when we allow to scroll beyond - image border. - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_marker_changed): Adapt to the new - interface. - -2008-07-12 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_get_viewport): Remove invalid TODO. - -2008-07-12 Martin Nordholts - - * app/core/gimpmarshal.list: Added - VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE marshaller. - - * app/widgets/gimpnavigationview.c: Make the "marker-changed" - signal also pass the marker width and height as parameters. - - * app/display/gimpnavigationeditor.c: Updated accordingly. - -2008-07-12 Sven Neumann - - * configure.in: fixed check for babl. - -2008-07-12 Martin Nordholts - - * configure.in: Prefered casing of `babl' is `babl'. - -2008-07-12 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): The scrollbars should be setup - using the new offset, not the old counterpart. - -2008-07-12 Sven Neumann - - * app/tools/gimprectangletool.c: formatting. - -2008-07-12 Sven Neumann - - * app/core/gimpparamspecs.[ch]: added GIMP_TYPE_COLOR_ARRAY and - GIMP_TYPE_PARAM_COLOR_ARRAY in preparation for fixing bug #332206. - -2008-07-12 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): Renamed the variables sx and sy - to sw and sh. - -2008-07-12 Martin Nordholts - - In this ChangeLog entry, disp_offset means disp_[xy]offset and - offset means offset_[xy]. - - * app/display/gimpdisplayshell.[ch]: Kill disp_offset! We now - represent that by a negative offset. - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_scroll_clamp_offsets) - (gimp_display_shell_get_scaled_image_viewport_offset): Adjust - accordingly to preserve current behaviour. - - (gimp_display_shell_get_disp_offset): New function to get the old - disp_offset based on the new offset. - - (gimp_display_shell_get_render_start_offset): New function to get - the old offset based on the new offset. - - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-render.c: Get rid of disp_offset - and use gimp_display_shell_get_disp_offset() and - gimp_display_shell_get_render_start_offset() instead. - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): Remove #if zeroed debug output. - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): Restructure the way the rulers - are setup, partly by making use of the new nifty - gimp_display_shell_get_scaled_image_viewport_offset(). - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-transform.c - (gimp_display_shell_transform_xy_f) - (gimp_display_shell_untransform_xy_f): We can use - gimp_display_shell_get_scaled_image_viewport_offset() here - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_get_scaled_viewport): and here. - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_get_viewport) - (gimp_display_shell_get_scaled_viewport) - (gimp_display_shell_get_scaled_image_viewport_offset): const- and - g_return_if_fail-ify. - -2008-07-11 Sven Neumann - - * app/tools/gimprotatetool.c (gimp_rotate_tool_key_press): simplified. - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_get_scaled_image_viewport_offset): New - function to replace any occurance of - - shell->disp_[xy]offset - shell->offset_[xy] - - that is just an implementation specific way of saying the same - thing. - - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-transform.c: Make the code less - implementation dependant by using the new function. - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-draw.c - (gimp_display_shell_draw_area): Update comment. - -2008-07-11 Tor Lillqvist - - * app/app.c: Drop duplicated #include . - - * app/gui/gui-unique.c (idle_open_data_new): Fix g_slice_new() - use. - -2008-07-11 Sven Neumann - - * plug-ins/selection-to-path/pxl-outline.c (append_coordinate): - use g_printerr() for debug output. - -2008-07-11 Sven Neumann - - * app/gui/gui-unique.c: dispatch opening to an idle handler. - -2008-07-11 Sven Neumann - - * docs/gimp.1.in: removed reference to gimp-remote(1). - -2008-07-11 Sven Neumann - - * configure.in - * docs/Makefile.am: made the build of gimp-remote optional and - disable it by default. - - * INSTALL: document the --enable-gimp-remote configure option. - -2008-07-11 Tor Lillqvist - - * app/unique.c (gimp_unique_filename_to_uri): Check GError being - unset correctly. - (gimp_unique_win32_open): Add missing semicolon. - - * app/gui/gui-unique.c: Include on Windows. - (gui_unique_win32_init): Drop unused variable. - -2008-07-11 Sven Neumann - - * app/core/gimpscanconvert.c - * app/vectors/gimpbezierstroke.c - * app/vectors/gimpvectors.c: include instead of - . - -2008-07-11 Sven Neumann - - * app/unique.c - * app/gui/gui-unique.[ch]: merged code from bug #410439 to provide - builtin gimp-win-remote functionality for Win32. This is untested - and most probably doesn't even compile. - -2008-07-11 Sven Neumann - - * app/gui/Makefile.am - * app/gui/gui-unique.[ch]: new files providing functionality to - ensure a unique GUI instance of GIMP. Code split out of gui.c. - - * app/gui/gui.c: changed accordingly. - -2008-07-11 Sven Neumann - - * app/Makefile.am - * app/unique.[ch]: new files containing functionality to check for - an already running instance of GIMP of notifying it about files to - open. Code split out of main.c. - - * app/main.c: changed accordingly. - -2008-07-11 Sven Neumann - - * app/main.c (gimp_init_malloc): removed misleading comment. - -2008-07-11 Sven Neumann - - * app/base/color-balance.c (color_balance_create_lookup_tables): - formatting, to improve readability. - -2008-07-11 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_get_viewport): Extend the interface with this - function. - - * app/display/gimpnavigationeditor.c - (gimp_navigation_editor_update_marker): Use it here. - -2008-07-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch] - (gimp_display_shell_get_scaled_viewport): Extend the interface - with this function - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_update_handle_sizes): Forget anything we knew - about how to interpret the icky GimpDisplayShell offset variables - -2008-07-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch]: Make - gimp_display_shell_scroll() a sane public interface for scrolling - and call the old version gimp_display_shell_scroll_private() - - * app/display/gimpnavigationeditor.c: Adapt to the saner version - of gimp_display_shell_scroll() - - * app/display/gimpdisplayshell-callbacks.c: - * app/display/gimpdisplayshell-autoscroll.c: Use the private - version of gimp_display_shell_scroll() - - * app/display/Makefile.am: Added gimpdisplayshell-private.h - -2008-07-10 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.[ch]: The return value of - gimp_display_shell_scroll() is not used anywhere, make it void. - -2008-07-10 Manish Singh - - * plug-ins/pygimp/pygimp-pdb.c: Allow None to be passed for - PDB_DISPLAY. - -2008-07-10 Sven Neumann - - * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): - changed expander title to "Brush Dynamics". - -2008-07-10 Sven Neumann - - * app/widgets/gimphelp.c: some changes to the dialog that is shown - if the help browser is missing. - -2008-07-10 Sven Neumann - - * docs/gimp.1.in: document the --help-gegl command-line option. - -2008-07-10 Sven Neumann - - * app/display/gimpdisplayshell-progress.c - (gimp_display_shell_progress_message): swallow informational - messages if there aren't handled by the statusbar. - -2008-07-10 Sven Neumann - - * app/core/gimpdata.[ch]: renamed gimp_data_name_compare() to - gimp_data_compare() and changed it to keep the data in three - groups: internal, writable and system resource files. Inside the - groups the sorting order is alphabetical. - - * app/core/gimpdatafactory.c (gimp_data_factory_new): changed - accordingly. - -2008-07-10 Sven Neumann - - * app/core/gimpdatafactory.[ch] (gimp_data_factory_new): renamed - parameter. - -2008-07-09 Sven Neumann - - * app/core/gimp-user-install.c (gimp_user_install_detect_old): - fixed misplaced debug output. - -2008-07-09 Sven Neumann - - * app/display/gimpdisplayshell-close.c (gimp_display_shell_close): - if a save dialog is active for this image, then don't allow to - close it. Fixes bug #511965. - -2008-07-09 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_progress_message): - don't accept a progress message if the status bar is already - showing a temporary message. - -2008-07-09 Sven Neumann - - * plug-ins/common/tiff-load.c (tiff_warning): send warnings about - unknown fields to stderr instead of using the log mechanism. - -2008-07-09 Sven Neumann - - * app/tools/gimppainttool.c (gimp_paint_tool_motion): don't paint - while the Shift key is pressed for line drawing (bug #529434). - -2008-07-08 Martin Nordholts - - * plug-ins/pygimp/gimpmodule.c (gimp_methods): Remove duplicate - entry of gimp.get_foreground(). - -2008-07-08 Sven Neumann - - * plug-ins/help-browser/dialog.c (build_menu): plugged a memory leak. - -2008-07-08 Sven Neumann - - * plug-ins/help-browser/dialog.c (load_finished): select the - current URI in the index. Pointed out by Roman Joost. - -2008-07-07 Sven Neumann - - * app/widgets/gimphelp.c (gimp_help_query_user_manual_online): - changed button label and added an icon. - -2008-07-07 Sven Neumann - - * app/paint/gimppaintoptions.c - (gimp_paint_options_get_dynamic_hardness): applied patch from - Alexia Death fixing a cut'n'paste error. - -2008-07-07 Sven Neumann - - * app/tools/gimppaintoptions-gui.c (tool_has_size_dynamics): check - for tools derived from GimpPaintBrushTool just as we do in - tool_has_opacity_dynamics(). - (tool_has_hardness_dynamics): enable hardness dynamics for the - eraser tool (bug #541691). - -2008-07-07 Sven Neumann - - * app/widgets/gimphelp.c (gimp_help_query_user_manual_online): - command button labels should be capitalized in header style. - -2008-07-07 Sven Neumann - - * themes/Default/images/stock-user-manual-64.png: recreated from SVG. - -2008-07-07 Sven Neumann - - * app/composite/gimp-composite-*test.c: declared test functions as - static. - -2008-07-07 Sven Neumann - - * app/widgets/gimphelp.c: use GIMP_LOG() for debug output. - -2008-07-06 Sven Neumann - - * app/widgets/gimphelp.c: if the user asks for help and the user - manual is not locally installed, show a dialog that allows to - change the preferences so that the online version is used. - -2008-07-06 Sven Neumann - - * plug-ins/help/gimphelpdomain.c: improved error messages. - -2008-07-05 Martin Nordholts - - * app/display/gimpdisplayshell-scroll.c - (gimp_display_shell_scroll_clamp_offsets): Renamed the variables sx - and sy to sw and sh. - -2008-07-05 Sven Neumann - - * app/widgets/gimphelp.c (gimp_help_user_manual_is_installed): - always return TRUE if GIMP2_HELP_URI environment variable is set. - -2008-07-05 Sven Neumann - - * app/dialogs/preferences-dialog.c - * app/widgets/gimphelp.[ch]: improved test for user manual - installation and moved the code out of the prefs dialog. - -2008-07-05 Martin Nordholts - - * app/tools/gimprectangletool.c: - * app/tools/gimpeditselectiontool.c: Simplify math. - -2008-07-05 Martin Nordholts - - * app/tools/gimprectangletool.c: - * app/tools/gimpeditselectiontool.c: Mark the center of - rectangles/bounding rectangles so that it is easier to predict and - see where snapping occurs. Completes the fix for bug #527659. - -2008-07-05 Martin Nordholts - - * app/tools/gimpeditselectiontool.[ch]: Don't expose the icky - implementation details. - -2008-07-05 Martin Nordholts - - * data/tips/gimp-tips.xml.in: Removed tip about how to make a - circular selection. It's much more discoverable now than it was in - GIMP 2.2, and the current description is faulty. (Bug #486599.) - -2008-07-04 Sven Neumann - - * app/widgets/gimphelp.[ch]: added a function to get the location - where the user manual is expected if it is installed locally. - - * app/dialogs/preferences-dialog.c: inform the user about the - presence or absence of the user manual. - -2008-07-04 Sven Neumann - - * plug-ins/help-browser/dialog.c (browser_dialog_make_index_foreach): - improved order of index items with alphabetic counters. - -2008-07-04 Sven Neumann - - * plug-ins/help/gimphelpitem.h: document the purpose of the extra - struct fields. - - * plug-ins/help-browser/dialog.c: limit the depth of the index to 4. - -2008-07-04 Sven Neumann - - * app/core/gimpgrid.c: changed default grid to a 10x10 grid of - solid lines (bug #539318). - -2008-07-03 Sven Neumann - - * app/actions/dialogs-actions.c (dialogs_toplevel_actions): - changed blurb for "dialog-tips". - -2008-07-03 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_events): don't use Escape to quit full-screen - mode, it collides with tools using the Escape key (bug #539949). - -2008-07-03 Lars-Peter Clausen - - * plug-ins/pygimp/pygimp-drawable.c - * plug-ins/pygimp/pygimp-vectors.c - * plug-ins/pygimp/pygimp-display.c - * plug-ins/pygimp/pygimp-image.c: Added checks to ensure that a - python object only is created if its id is valid. Fixes bug #536403. - - * plug-ins/pygimp/pygimp-pdb.c - * plug-ins/pygimp/pygimp-tile.c - * plug-ins/pygimp/pygimp-colors.c - * plug-ins/pygimp/pygimp.h: Fix crashing when pygimp is used with - python-2.5 on 64 bit systems. Fixes bug #540629. - -2008-07-03 Sven Neumann - - * app/widgets/gimpsettingsbox.c (gimp_settings_box_constructor) - * app/widgets/gimpsettingseditor.c (gimp_settings_editor_constructor): - removed trailing period from tooltip texts. - - * app/config/gimprc-blurbs.h: don't mark USER_MANUAL_ONLINE_BLURB - for translation, it is not used in the user interface. - -2008-07-03 Sven Neumann - - * INSTALL: mention the fact that intltool now needs to be - installed in order to build from tarball. - - * HACKING: removed mentioning of intltoolize here. - -2008-07-02 Jakub Steiner - - * themes/Default/images/stock-gegl-16.png - * themes/Default/images/stock-gegl-16.svg - * themes/Default/images/stock-gegl-22.png - * themes/Default/images/stock-gegl-22.svg - * themes/Default/images/stock-gegl.svg: tweak icons to comply with - tango style guidelines - -2008-07-01 Sven Neumann - - * themes/Default/images/stock-gegl-16.png - * themes/Default/images/stock-gegl-22.png: changed GEGL stock icon - based on the new GEGL logo. - - * themes/Default/images/stock-gegl.svg: added SVG version. - -2008-06-30 Michael Natterer - - * app/widgets/gimphistogrambox.c - (gimp_histogram_box_high_adj_update): don't call - gtk_adjustment_get_value() on a gint. - -2008-06-30 Michael Natterer - - * app/dialogs/file-open-dialog.c (file_open_dialog_response): - restore code that sets the dialog back to sensitive when opening - fails because it stays open. Fixes bug #540801. - -2008-06-29 Michael Natterer - - * app/tools/gimpgegltool.c (gimp_gegl_tool_dialog): remove size - group code because the size group doesn't exist if there is no - settings box. - -2008-06-29 Michael Natterer - - * app/dialogs/channel-options-dialog.c - * app/dialogs/palette-import-dialog.c - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpnavigationeditor.c - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/widgets/gimpbrusheditor.c - * app/widgets/gimpbrushfactoryview.c - * app/widgets/gimpbrushselect.c - * app/widgets/gimpcolormapeditor.c - * app/widgets/gimpcontainertreeview-dnd.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimphistogrambox.c - * app/widgets/gimppaletteeditor.c - * app/widgets/gimpscalebutton.c: replace adjustment->value by - gtk_adjustment_get_value (adjustment). - -2008-06-29 Michael Natterer - - * plug-ins/color-rotate/color-rotate-callbacks.c - * plug-ins/gfig/gfig-grid.c - * plug-ins/gimpressionist/general.c - * plug-ins/gimpressionist/orientmap.c - * plug-ins/gimpressionist/paper.c - * plug-ins/gimpressionist/placement.c - * plug-ins/gimpressionist/sizemap.c - * plug-ins/gimpressionist/utils.c - * plug-ins/ifs-compose/ifs-compose.c - * plug-ins/imagemap/imap_grid.c - * plug-ins/jpeg/jpeg-save.c - * plug-ins/print/print-preview.c - * plug-ins/win-snap/winsnap.c: use accessors instead of accessing - members of GTK+ widgets directly. - -2008-06-28 Michael Natterer - - * pygimp-pdb.c: - * pygimp-tile.c: - * pygimp-colors.c: revert last patch because Py_ssize_t is - undefined in some (older?) pythons. Needs more investigation. - -2008-06-28 Michael Natterer - - * app/widgets/gimpviewrendererimagefile.c - (gimp_view_renderer_imagefile_get_icon): add widget parameter so - we can get the right icon theme for the screen. If building - against GTK+ >= 2.13.4, use GFile to get proper file type icons. - - (gimp_view_renderer_imagefile_render): pass the widget. - - (get_icon_fallback): remove this unused function. - -2008-06-28 Martin Nordholts - - * app/widgets/gtkscalebutton.h: Remove uses of GSEAL macro to make - the thing compile on systems without bleeding edge GTK+. - -2008-06-28 Michael Natterer - - This is completely evil: - - * app/widgets/Makefile.am - * app/widgets/gtkscalebutton.[ch]: copy GtkScaleButton from GTK+ - upstream trunk and hack around until symbol conflicts are gone - and it builds. - - * app/widgets/gimppropwidgets.c - * app/widgets/gimpscalebutton.[ch]: use the hacked version instead - of the one from GTK+. Set the orientation to horizontal. - -2008-06-28 Michael Natterer - - * plug-ins/common/animation-play.c - * plug-ins/common/cml-explorer.c - * plug-ins/common/convolution-matrix.c - * plug-ins/common/curve-bend.c - * plug-ins/common/despeckle.c - * plug-ins/common/filter-pack.c - * plug-ins/common/gee-zoom.c - * plug-ins/common/gee.c - * plug-ins/common/lens-flare.c - * plug-ins/common/newsprint.c - * plug-ins/common/nova.c - * plug-ins/common/postscript.c - * plug-ins/common/sample-colorize.c - * plug-ins/common/sphere-designer.c - * plug-ins/common/tile-small.c: use accessors instead of accessing - members of GTK+ widgets directly. - -2008-06-28 Martin Nordholts - - * pygimp-pdb.c: - * pygimp-tile.c: - * pygimp-colors.c: Applied patch from Ed Swartz that makes use of - Py_ssize_t:s instead of int:s to better utilize 64-bit - systems. (Bug #540629.) - -2008-06-28 Michael Natterer - - * app/widgets/gimpcontainertreeview.[ch]: add new function - gimp_container_tree_view_connect_name_edited() which makes the - name cell editable and connects a passed "edited" callback. - - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimpsettingseditor.c - * app/widgets/gimptemplateview.c: use it instead of having the - same code four times. - -2008-06-28 Michael Natterer - - * app/widgets/gimpactionview.c - * app/widgets/gimpblobeditor.c - * app/widgets/gimpbrushfactoryview.c - * app/widgets/gimpbrushselect.c - * app/widgets/gimpcellrendererdashes.c - * app/widgets/gimpcellrendererviewable.c - * app/widgets/gimpcolorbar.c - * app/widgets/gimpcoloreditor.c - * app/widgets/gimpcolorframe.c - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainerbox.c - * app/widgets/gimpcontainergridview.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimpcurveview.c - * app/widgets/gimpdasheditor.c - * app/widgets/gimpdatafactoryview.c - * app/widgets/gimpdock.c - * app/widgets/gimpdockable.c - * app/widgets/gimpdockseparator.c - * app/widgets/gimpfgbgeditor.c - * app/widgets/gimpfgbgview.c - * app/widgets/gimpgradienteditor.c - * app/widgets/gimphandlebar.c - * app/widgets/gimphistogrambox.c - * app/widgets/gimphistogramview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimpmenudock.c - * app/widgets/gimpmessagebox.c - * app/widgets/gimppaletteview.c - * app/widgets/gimpscalebutton.c - * app/widgets/gimpsessioninfo-book.c - * app/widgets/gimpsessioninfo-dock.c - * app/widgets/gimpsettingseditor.c - * app/widgets/gimpstrokeeditor.c - * app/widgets/gimptemplateeditor.c - * app/widgets/gimptemplateview.c - * app/widgets/gimpthumbbox.c - * app/widgets/gimptoolbox.c - * app/widgets/gimptooloptionseditor.c - * app/widgets/gimptoolview.c - * app/widgets/gimpuimanager.c - * app/widgets/gimpviewabledialog.c - * app/widgets/gimpviewrenderervectors.c - * app/widgets/gimpwidgets-utils.c: use accessors instead of - accessing members of GTK+ widgets directly. - -2008-06-28 Michael Natterer - - * plug-ins/uri/uri-backend-gvfs.c (uri_progress_callback): fix - progress display by making sure gimp_progress_update() gets a - gdouble passed. - -2008-06-28 Michael Natterer - - * app/actions/layers-commands.c - * app/actions/view-actions.c - * app/dialogs/about-dialog.c - * app/dialogs/layer-options-dialog.c - * app/dialogs/preferences-dialog.c - * app/display/gimpcanvas.c - * app/display/gimpdisplayshell-appearance.c - * app/display/gimpnavigationeditor.c - * modules/colorsel_water.c: use accessors instead of accessing - members of GTK+ widgets directly. - -2008-06-28 Michael Natterer - - * libgimp/gimpgradientselectbutton.c - * libgimp/gimpmenu.c - * libgimpwidgets/gimpbrowser.c - * libgimpwidgets/gimpcellrenderercolor.c - * libgimpwidgets/gimpcellrenderertoggle.c - * libgimpwidgets/gimpchainbutton.c - * libgimpwidgets/gimpcolorarea.c - * libgimpwidgets/gimpcolorscale.c - * libgimpwidgets/gimpcolorscales.c - * libgimpwidgets/gimpcolorselect.c - * libgimpwidgets/gimpenumwidgets.c - * libgimpwidgets/gimpframe.c - * libgimpwidgets/gimphelpui.c - * libgimpwidgets/gimpoffsetarea.c - * libgimpwidgets/gimppreviewarea.c - * libgimpwidgets/gimppropwidgets.c - * libgimpwidgets/gimpscrolledpreview.c: use accessors instead of - accessing members of GTK+ widgets directly. - -2008-06-28 Michael Natterer - - * app/widgets/gimplanguagestore-parser.c: include - "libgimpbase/gimpbase.h" instead of "libgimpbase/gimpenv.h". - -2008-06-28 Michael Natterer - - * app/widgets/gimpdbusservice.c: eek, include "gimpuimanager.h" - not "gimpuimanager.c". - -2008-06-28 Michael Natterer - - * app/actions/tools-commands.c (tools_activate_enum_action): - simply call gimp_enum_action_selected() instead of poking around - in the action's internals and calling gimp_action_activate() - -2008-06-28 Michael Natterer - - * app/widgets/gimpaction.c (gimp_action_set_proxy): simplify the - logic of setting "color" or "viewable" previews on menuitems. - -2008-06-27 Michael Natterer - - * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): swap - the angles of the dynamics matrix' labels in RTL and LTR mode so - the beginning of the words are aligned and on bottom. - -2008-06-26 Michael Natterer - - * app/widgets/gimpscalebutton.c (gimp_scale_button_init): hide the - popup's plus and minus buttons, they are completely pointless. - -2008-06-25 Michael Natterer - - * app/widgets/gimpsettingsbox.c: make sure the file dialog goes - away when the settings box' toplevel is hidden. Set the - alternative button order on the file dialog. - -2008-06-25 Michael Natterer - - * app/core/gimpmarshal.list: add marshaller BOOLEAN__STRING for - the change below. - - * app/widgets/gimpsettingsbox.[ch]: add the import/export dialogs - here. Add a bunch of parameters to new() to be used by the - dialogs, they are not properties yet. Changed import() and - export() signals to pass the selected filename and return a - boolean indicating success. - - * app/tools/gimpimagemaptool-settings.c: remove the dialog code - here and connect the import/export functions directly to above - GimpSettingsBox signals. - - * app/tools/gimpimagemaptool.[ch]: remove file dialog member. - -2008-06-25 Michael Natterer - - * app/tools/gimpcurvestool.c (gimp_curves_tool_settings_import): - parse the first line of the file manually and detect whether we - are importing an old curves file or a GimpConfig one. - -2008-06-25 Michael Natterer - - * app/gegl/gimpcurvesconfig.c (gimp_curves_config_load_cruft): - set any parsed negative value as -1 in the curves object because - that's the only negative value allowed. - -2008-06-25 Michael Natterer - - * app/widgets/gimpsettingseditor.c - (gimp_settings_editor_delete_clicked): select a neighboring item - after deleting the selected one. - -2008-06-25 Michael Natterer - - * app/widgets/gimpsettingseditor.[ch]: add dummy import and export - buttons, give the list a minimum size. - - * app/widgets/gimpsettingsbox.c: use the correct dialog border. - -2008-06-25 Michael Natterer - - * app/widgets/gimpsettingsbox.c (gimp_settings_box_constructor): - tweak buttons to look the same and have no spacing between them. - -2008-06-25 Michael Natterer - - * app/widgets/gimpsettingsbox.c (gimp_settings_box_constructor): - move "Add to favorites" out of the menu into a small button - showing a '+' icon. Add a separator between the import/export and - the manage menu items. - -2008-06-24 Michael Natterer - - * app/widgets/gimpsettingseditor.[ch]: enable renaming the - settings objects by editing them directly in the list (renaming a - recent setting moves it to the favorites section). Enable deleting - settings. None of these changes is saved yet (need to trigger a - save by confirming the tool or storing the current settings as - favorite). - -2008-06-24 Michael Natterer - - * app/widgets/gimpitemtreeview.c (gimp_item_tree_view_name_edited): - don't dereference a NULL GError. - -2008-06-24 Michael Natterer - - * app/widgets/gimpcontainercombobox.[ch]: made the model column - enum public and namespaced it. - - * app/widgets/gimpsettingsbox.c: use the enum value instead of a - magic number. - - * app/widgets/gimpsettingseditor.c: add a separator between - recently used settings and favorites. - -2008-06-23 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_modifier_key): Make switching selection - mode through modifier keys work again. - -2008-06-22 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpsettingseditor.[ch]: skeleton of a widget to - manage the list of saved settings for the image map tools. Does - absolutely nothing yet apart from displaying the list of settings. - - * app/widgets/gimpsettingsbox.[ch]: add "Manage Settings" menu item - and show a dialog containing the new widget. - -2008-06-21 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_update_motion): When applying angle - constraints on the first segment vertex, base on the last segment - vertex rather than not applying any constraint at all. - -2008-06-20 Martin Nordholts - - Make angle constraints with the Free Select Tool by using Ctrl - work also when moving vertices, not only when creating new ones. - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_active_modifier_key): Implement. - - (gimp_free_select_tool_update_motion): Put motion logic here so we - can apply it from both _motion and _active_modifier_key. - - (gimp_free_select_tool_modifier_key): Ignore key presses from - another display. - -2008-06-20 Martin Nordholts - - * app/tools/gimpfreeselecttool.c: Don't alloc/free - saved_points_(lower|higher)_segment on each move, instead realloc - on demand and free on tool destruction, just as we do e.g. for - points. - -2008-06-20 Martin Nordholts - - * app/tools/gimpfreeselecttool.c: Remove - n_saved_points_(lower|higher)_segment, we don't need them. - -2008-06-20 Martin Nordholts - - * app/tools/gimpfreeselecttool.c (gimp_free_select_tool_finalize): - Plug leak. - -2008-06-20 Michael Natterer - - Latest GTK+ trunk deprecations showed some uglyness in gimp: - - * app/tools/gimpeditselectiontool.h: we were still using GTK_CHECK - macros here, use proper G_TYPE type checking instead. - - * app/widgets/gimpuimanager.c - * app/widgets/gimpdockable.c: s/GtkDestroyNotify/GDestroyNotify/. - - * plug-ins/help-browser/gimpthrobber.c: s/GtkType/GType/. - - * plug-ins/common/filter-pack.c - * plug-ins/common/sample-colorize.c - * plug-ins/imagemap/imap_main.c: s/GtkSignalFunc/GCallback/. - -2008-06-15 Michael Natterer - - * configure.in: in the check for xfixes, add "true" as - action-if-not-found so it doesn't bail out when xfixes is not - found. - - There seems to be something fishy with the PKG_CHECK_MODULES() - macro since adding a simple comma should also count as empty 4th - argument. - -2008-06-15 Sven Neumann - - * configure.in: bumped version to 2.5.2. - -2008-06-15 Sven Neumann - - * Made 2.5.1 development release. - -2008-06-14 Sven Neumann - - * INSTALL - * configure.in (gegl_required_version) - * app/sanity.c (GEGL_REQUIRED_MICRO): depend on the newest - released GEGL, version 0.0.18. - -2008-06-13 Sven Neumann - - * app/dialogs/preferences-dialog.c: added a preliminary user - interface to control the 'user-manual-online' property. - -2008-06-13 Martin Nordholts - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): - Correct the improved display of the rectangle ratio. - -2008-06-13 Sven Neumann - - * app/tools/gimptextoptions.c (gimp_text_options_class_init): - we need to define the 'highlight' property here as well. - -2008-06-13 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpsettingsbox.[ch]: new widget containing the - combo and menu button for the image map tool settings plus most of - their logic. Has "import" and "export" signals that might go away - if I figure a way to nicely abstract that. Contains some minor - bugfixes and cosmetic improvements compared to the old code. - - * app/tools/gimpimagemaptool.[ch] - * app/tools/gimpimagemaptool-settings.[ch]: changed accordingly, - mostly removal of lots of code that is now in the widget. - -2008-06-13 Sven Neumann - - * configure.in (babl_required_version) - * app/sanity.c (BABL_REQUIRED_MICRO): depend on the newest - released babl, version 0.0.22. - -2008-06-13 Sven Neumann - - * plug-ins/help-browser/dialog.c: added a toggle action to - show/hide the index sidebar, bound to Ctrl-I. - -2008-06-12 Sven Neumann - - Added basic support for using the online user manual: - - * app/widgets/gimphelp.c - * plug-ins/help/gimphelp.c: moved some help logic to the core. The - default help domain is now constructed in the core and passed to - the help plug-ins just like the plug-in help domains. - - * app/config/Makefile.am - * app/config/gimprc-blurbs.h - * app/config/gimpguiconfig.[ch]: added gimprc properties to - specify the location of the online user manual and to decide if it - should be used instead of a locally installed copy. - -2008-06-12 Sven Neumann - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): - try to make the display of the aspect ratio somewhat more obvious. - -2008-06-12 Michael Natterer - - * app/plug-in/plug-in-menu-path.c (menu_path_mappings): also map - /File/Acquire to /File/New/Acquire. - -2008-06-12 Sven Neumann - - * plug-ins/help-browser/Makefile.am - * plug-ins/help-browser/wilber-reading.svg - * plug-ins/help-browser/wilber-reading.png: removed here... - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-user-manual.svg - * themes/Default/images/stock-user-manual-16.png - * themes/Default/images/stock-user-manual-24.png - * themes/Default/images/stock-user-manual-32.png - * themes/Default/images/stock-user-manual-64.png - * libgimpwidgets/gimpstock.[ch]: ... and added as stock icon. - - * plug-ins/help-browser/dialog.c - * plug-ins/help-browser/gimpthrobber.c: changed accordingly. - Set the toolbar style to GTK_TOOLBAR_ICONS. - -2008-06-12 Michael Natterer - - * modules/controller_midi.c: applied patch from S. Fielding which - passes the right MIDI channel from the ALSA event to midi_event(). - Fixes bug #537960. - -2008-06-12 Sven Neumann - - * plug-ins/help-browser/dialog.c: use GTK_STOCK_HOME for the - button that navigates to the index page. - - * plug-ins/help-browser/gimpthrobber.c - (gimp_throbber_construct_contents): deal better with toolbar style - GTK_TOOLBAR_ICONS. - -2008-06-12 Sven Neumann - - * plug-ins/help-browser/dialog.c: removed the title - combo-box. Instead display the title in the window title. Added - "copy-location" action to the right-click menu as a replacement - for the drag source that was also removed. - -2008-06-11 Sven Neumann - - * plug-ins/help/help.c (load_help_idle): don't show progress for - local help lookups, they are fast enough. - - * plug-ins/help-browser/help-browser.c: added the same progress - code here. Might want to move it to the dialog window later. - -2008-06-11 Sven Neumann - - * configure.in: reverted last change (use of IT_PO_SUBDIR). - -2008-06-11 Sven Neumann - - * desktop/gimp.desktop.in.in: removed deprecated field "Encoding". - -2008-06-11 Sven Neumann - - * app/config/Makefile.am: make test-config link properly. - -2008-06-11 Sven Neumann - - * configure.in: use IT_PO_SUBDIR() to define the extra po - directories. Removed extra AC_CONFIG_COMMANDS that became - obsolete by this change. - -2008-06-11 Sven Neumann - - * autogen.sh: bumped INTLTOOL_REQUIRED_VERSION to 0.35.5. We - actually need 0.40.0 on the system where the tarball is rolled, - however 0.35.5 should be good enough for almost everyone. - - * configure.in: use IT_PROG_INTLTOOL with minimum version instead - of the deprecated AC_PROG_INTLTOOL. - - * Makefile.am (EXTRA_DIST): removed intltool-foo.in files as - intltool 0.40.0 does not install these any longer. Removed them - from DISTCLEANFILES as well. - -2008-06-11 Sven Neumann - - * configure.in: removed redundant calls to AC_MSG_RESULT() from - inside PKG_CHECK_MODULES(). - -2008-06-11 Sven Neumann - - * cursors/Makefile.am (EXTRA_DIST): added missing modifier-select - XBM files. - -2008-06-11 Sven Neumann - - * app/gegl/gimpoperationcolorbalance.c - * app/gegl/gimpoperationcolorize.c - * app/gegl/gimpoperationcurves.c - * app/gegl/gimpoperationdesaturate.c - * app/gegl/gimpoperationhuesaturation.c - * app/gegl/gimpoperationlevels.c - * app/gegl/gimpoperationposterize.c - * app/gegl/gimpoperationthreshold.c - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c: added const to GeglRectangle* - argument. - -2008-06-11 Sven Neumann - - * configure.in: fixed check for webkit zoom API. - -2008-06-10 Sven Neumann - - * plug-ins/help-browser/queue.[ch]: removed, we don't need this - code any longer. - -2008-06-10 Sven Neumann - - * configure.in: removed check for gtkhtml2 and added a check for - wekbit instead. - - * INSTALL: document the changed dependency. - - * plug-ins/help-browser/Makefile.am - * plug-ins/help-browser/dialog.[ch]: ported the help-browser to - webkit. Offers the same functionality as before and some more. - - * plug-ins/help-browser/help-browser.c: some cleanup. - -2008-06-10 Sven Neumann - - * plug-ins/help/gimphelplocale.c: added some sanity checks. - -2008-06-10 Michael Natterer - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_new): don't set a - width request on the info label. It broke horizontal label - positioning and didn't serve any purpose I can remember. - -2008-06-10 Sven Neumann - - * plug-ins/help/help.c (load_help_idle): show progress while - loading the help index. - -2008-06-10 Sven Neumann - - * app/config/gimpguiconfig.c (DEFAULT_WEB_BROWSER): reverted - change for bug #522483. 'xdg-open' doesn't do the right thing for - file: URIs. - -2008-06-10 Sven Neumann - - * app/core/gimp-gui.[ch] - * app/widgets/gimphelp.[ch] - * app/gui/gui-vtable.c - * app/gui/gui.c: added a GimpProgress parameter to gimp_help(). - - * app/actions/help-commands.c - * app/widgets/gimpuimanager.c - * tools/pdbgen/pdb/help.pdb: changed accordingly. - - * app/pdb/help-cmds.c: regenerated. - -2008-06-10 Sven Neumann - - * app/plug-in/gimpplugin.c - * app/plug-in/gimppluginmanager-call.c - * app/widgets/gimphelp.c: formatting. - -2008-06-09 Michael Natterer - - * app/paint/gimppaintoptions.c: set DEFAULT_VELOCITY_SIZE to FALSE - so the paint tools behave as before and the brush outline is - meaningful at least in the default setup. - -2008-06-05 Sven Neumann - - * app/actions/dialogs-actions.c (dialogs_dockable_actions): added - actions to open/focus the brush, gradient and palette editors - (bug #436131). - -2008-06-04 Sven Neumann - - * plug-ins/common/red-eye-removal.c: fixed weird handling of the - threshold parameter. Some unrelated minor cleanups. - -2008-06-04 Sven Neumann - - * plug-ins/common/tga.c: changed user interface for specifying the - origin. Fixed header for origin at top-left (bug #450070). - -2008-06-04 Michael Natterer - - * app/display/gimpdisplayshell-scale.c - * app/gegl/gimpoperationdesaturate.h - * app/tools/gimprectangletool.c - * app/widgets/gimpradioaction.h - * app/widgets/gimptoggleaction.h: various fixes to make gtk-doc - happy. - -2008-06-04 Sven Neumann - - * app/tools/gimpcropoptions.c - * app/tools/gimprectangleoptions.c - * app/tools/gimprectangleselectoptions.c: fixed handling of the - "highlight" property that needs different default values for the - Crop and Rectangle Select tools (bug #536582). - -2008-06-04 Sven Neumann - - * app/paint/gimpairbrushoptions.c: removed trailing whitespace. - -2008-06-04 Sven Neumann - - * app/core/gimpdrawable-operation.c (gimp_drawable_apply_operation): - no need to check for the 'dont-cache' property now that we depend - on the newer GEGL. - -2008-06-04 Sven Neumann - - * INSTALL: updated GEGL version and also mention babl. - - * app/gegl/gimp-gegl.c (gimp_gegl_init): configure the GEGL tile - size to match the GIMP tile size. - -2008-06-04 Michael Natterer - - * configure.in: depend on GEGL >= 0.0.17, add check for - BABL => 0.0.21. - - * app/sanity.c: bump GEGL sanity check and add BABL check. - - * app/gegl/gimpoperationcolorbalance.c - * app/gegl/gimpoperationcolorize.c - * app/gegl/gimpoperationcurves.c - * app/gegl/gimpoperationdesaturate.c - * app/gegl/gimpoperationhuesaturation.c - * app/gegl/gimpoperationlevels.c - * app/gegl/gimpoperationposterize.c - * app/gegl/gimpoperationthreshold.c: adapt to new process() - signature. - -2008-06-03 Sven Neumann - - * libgimp/gimpitemcombobox.c: fixed comments. - -2008-06-03 Sven Neumann - - * app/widgets/widgets-enums.[ch]: changed descriptions for - GimpHistogramScale enum. - - * app/tools/gimpimagemaptool.[ch] - - * app/tools/gimpimagemaptool-settings.c: added a GtkSizeGroup for - aligning with the "Presets" label. Added an accessor for the - dialog's vbox. - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimpdesaturatetool.c - * app/tools/gimpgegltool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: use the new accessor. Minor - dialog cleanups in a few places. - -2008-06-02 Sven Neumann - - * app/actions/tools-actions.c: added a few more actions to set - tool values to default values. Added "backslash" as the default - shortcut for "tools-value-2-set-to-default", which is effectively - "Reset Brush Scale" (bug #493030). - -2008-06-01 Martin Nordholts - - * plug-ins/common/gif-load.c (GetCode): Applied patch from - Rik Snel that fixes loading of .gif files that contains 1-byte - data blocks. (Bug #535888.) - -2008-05-31 Martin Nordholts - - Add keyboard shortcut support for reseting to default value of - e.g. brush scale. Fixes bug #493030. - - * app/actions/actions.[ch]: Make action_select_value() take a - default-parameter and add support for it. Also use default_value - from gint and gdouble param specs. - - * app/actions/actions-types.h: Added - GIMP_ACTION_SELECT_SET_TO_DEFAULT. - - * app/actions/tools-actions.c: Add _SET_TO_DEFAULT actions. - - * app/actions/view-commands.c: - * app/actions/layers-commands.c: - * app/actions/context-commands.c: Pass defaults to - action_select_property(). - -2008-05-31 Martin Nordholts - - * app/tools/gimprotatetool.c (gimp_rotate_tool_key_press): - Implemented this function to support rotating with arrow keys. See - bug #387779. - -2008-05-30 Martin Nordholts - - Made moving the selection mask in the various ways automatically - commit any pending rectangle/ellipse selection. Fixes bug #349340. - - * app/tools/gimprectangleselecttool.c - (gimp_rectangle_select_tool_oper_update): Don't disable support - for moving the selection mask. - - (gimp_rectangle_select_tool_button_press): Handle delegation to - the selection tool. - - (gimp_rectangle_select_tool_delegate_button_press): New helper - function. - - (gimp_rectangle_select_tool_execute): Guard against NULL - tool->display:s. - -2008-05-30 Sven Neumann - - * app/dialogs/module-dialog.c: tell the user that a restart is - needed for the changes to take effect. - -2008-05-30 Sven Neumann - - * app/dialogs/module-dialog.c: some more internal cleanups. - -2008-05-30 Sven Neumann - - * app/dialogs/module-dialog.c: cleaned up the UI a bit. Removed - some information and a button that was not really useful. Only - show the error state when there is actually an error. - -2008-05-29 Manish Singh - - * plug-ins/pygimp/gimpshelf.py: fix _vectors_id to return a tuple - for the ID. Spotted and fixed by Joao. - -2008-05-29 Sven Neumann - - * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): - reverted last change. - -2008-05-29 Sven Neumann - - * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): - unset the entry's frame instead of reducing the inner border. - -2008-05-29 Sven Neumann - - * themes/Default/images/Makefile.am (STOCK_TOOL_IMAGES): - * themes/Default/images/tools/stock-tool-polygon-select-16.png - * themes/Default/images/tools/stock-tool-polygon-select-22.png: - removed unused tool icon. - - * libgimpwidgets/gimpstock.[ch]: don't register - GIMP_STOCK_TOOL_POLYGON_SELECT. - - * libgimpwidgets/gimphruler.c - * libgimpwidgets/gimpvruler.c: added missing API docs. - -2008-05-29 Sven Neumann - - * plug-ins/common/blur-gauss-selective.c (matrixmult_mmx): avoid - division by zero in the grayscale code path (bug #529280). - -2008-05-29 Sven Neumann - - * plug-ins/imagemap/imap_preview.c (scroll_adj_changed): fixed - ruler type. - -2008-05-29 Martin Nordholts - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): Also - show the plain aspect ratio in the status bar along with the - rectangle size information. Quickfix for bug #508183. - -2008-05-28 Sven Neumann - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_setup): set the display unit on the ruler. - - * libgimpwidgets/gimphruler.c (gimp_hruler_draw_ticks) - * libgimpwidgets/gimpvruler.c (gimp_vruler_draw_ticks): hack around - to get nicer subdivisions for rulers showing pixels. - -2008-05-28 Sven Neumann - - * libgimpwidgets/gimpruler.[ch] - * libgimpwidgets/gimphruler.c - * libgimpwidgets/gimpvruler.c: removed GimpRulerMetric struct from - public API. Removed gimp_ruler_draw_pos() and gimp_ruler_draw_ticks() - methods. Added a "unit" property with getter and setter. - - * libgimpwidgets/gimpwidgets.def: updated. - -2008-05-28 Sven Neumann - - * libgimpwidgets/gimpruler.[ch]: started to sanitize the ruler API. - - * app/dialogs/resolution-calibrate-dialog.c - * app/display/gimpdisplayshell-scale.c - * plug-ins/gfig/gfig-preview.c - * plug-ins/imagemap/imap_preview.c: changed accordingly. - - * libgimpwidgets/gimpwidgets.def: updated. - -2008-05-28 Sven Neumann - - * libgimpwidgets/gimpruler.[ch] - * libgimpwidgets/gimphruler.c - * libgimpwidgets/gimpvruler.c: enlarge the array of scales to - prevent ruler numbers from overlapping (bug #535039). - -2008-05-27 Michael Natterer - - * plug-ins/help-browser/dialog.c: undef - GDK_PIXBUF_DISABLE_SINGLE_INCLUDES around including - . - -2008-05-27 Sven Neumann - - * app/display/gimpdisplayoptions.c: reenabled rulers by default. - -2008-05-27 Sven Neumann - - * libgimpwidgets/gimpruler.[ch] - * libgimpwidgets/gimphruler.c (gimp_hruler_draw_ticks) - * libgimpwidgets/gimpvruler.c (gimp_vruler_draw_ticks): use an - extra small font for the tick labels. - - * themes/Default/gtkrc: don't hardcode a font size for the rulers. - -2008-05-27 Michael Natterer - - * configure.in: add -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES to - CPPFLAGS. - -2008-05-27 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: don't add the gradient box for - the blend tool. Clean up the code by moving the checks for the - tool type out of the utility functions into the main - gimp_paint_options_gui() function. - - * app/tools/gimpblendoptions.c: add the gradient box here. - -2008-05-27 Sven Neumann - - * app/widgets/gimpscalebutton.c: display a tooltip showing the value. - -2008-05-27 Sven Neumann - - * app/widgets/gimpscalebutton.c (gimp_scale_button_image_expose): - rotated the button graphics and fixed it for 'right-to-left' - rendering. - -2008-05-27 Michael Natterer - - * app/display/gimpdisplayshell-coords.c: revert velocity limit to - 1.0, this part of the patch shouldn't have been applied. - -2008-05-27 Sven Neumann - - * app/paint/gimpconvolve.c: make Convolve work with very thin - brushes, then convolving only in one direction (bug #533791). - -2008-05-26 Sven Neumann - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpwidgets.h - * libgimpwidgets/gimpwidgetstypes.h - - * libgimpwidgets/gimpruler.[ch] - * libgimpwidgets/gimphruler.[ch] - * libgimpwidgets/gimpvruler.[ch]: added ruler widgets. These are - mostly copied from GTK+ and work as a drop-in replacement for - GtkRuler and friends. - - * libgimpwidgets/gimpwidgets.def: updated. - - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-scale.c - * app/dialogs/resolution-calibrate-dialog.c - * plug-ins/imagemap/imap_preview.c - * plug-ins/gfig/gfig-preview.c: use the GimpRuler widgets. - -2008-05-26 Sven Neumann - - * libgimp/gimp.def: added gimp_drawable_free_shadow(). - -2008-05-26 Michael Natterer - - * app/widgets/gimpscalebutton.c (gimp_scale_button_new): use - GTK_ICON_SIZE_MENU for the scale button. - -2008-05-26 Michael Natterer - - Applied modified patch from Alexia Death. Addresses bug #534770: - - * app/paint/gimppaintoptions.[ch]: add properties for scaling - the effects of pressure, velocity and hardness and honor them - in the various get_dynamic_foo() functions. - - (gimp_paint_options_get_dynamic_size): look at - pressure_options->size again, that code got lost in one of the - earlier patches. - - * app/tools/gimppaintoptions-gui.c: add GimpScaleButtons to the - table for the new properties. - - * app/display/gimpdisplayshell-coords.c: don't let "velocity" - reach 1.0, use 0.9999 instead. - -2008-05-26 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: remove unused includes. - -2008-05-26 Michael Natterer - - * app/paint/gimppaintoptions.[ch]: replace the identical - GimpPressureOptions, GimpVelocityOptions and GimpRandomOptions - struct by a single GimpDynamicOptions struct. - - * app/tools/gimppaintoptions-gui.c: don't pass the various - sub-structs to the _options_gui() function because they are not - needed. - -2008-05-26 Michael Natterer - - * app/gegl/gimpcolorbalanceconfig.c - * app/gegl/gimpcurvesconfig.c - * app/gegl/gimphuesaturationconfig.c - * app/gegl/gimplevelsconfig.c (equal): sanitize local variable - names: s/a_config/config_a/, s/b_config/config_b/. - -2008-05-26 Michael Natterer - - * app/config/gimpbaseconfig.c - * app/config/gimpguiconfig.c - * app/tools/gimpcolorpickeroptions.[ch]: remove unused compat - properties because the config parser silently skips unknown - properties now. - -2008-05-26 Sven Neumann - - * app/widgets/gimppropwidgets.c - * app/widgets/gimpscalebutton.[ch]: some fiddling to get the step - and page sizes right. - -2008-05-26 Sven Neumann - - * app/widgets/gimppropwidgets.[ch]: support for GimpScaleButton. - -2008-05-26 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpscalebutton.[ch]: added simple scale button widget - derived from GtkScaleButton. - -2008-05-26 Sven Neumann - - * plug-ins/jpeg/jpeg-save.c (save_image): fixed logic that decides - if an EXIF block should be written (bug #529469). - -2008-05-25 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_revert_to_saved_state): Name cleanup. - -2008-05-25 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_prepare_for_move) - (gimp_free_select_tool_revert_to_saved_state) - (gimp_free_select_tool_move_segment_vertex_to): Handle the special - case when there is only one point, so that moving segment vertices - works even if there only is one. - -2008-05-25 Martin Nordholts - - * app/tools/gimpfreeselecttool.c: For completeness, comment on - some uncommented instance-private variables. - -2008-05-25 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_cursor_update): Properly update the cursor. - -2008-05-25 Martin Nordholts - - Added support for supressing handles by holding Shift in the Free - Select Tool so that new segments can be created where handles - would otherwise obstruct. - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_handle_segment_selection): Renamed, and - only select segment vertices if handles are not supressed. - - (gimp_free_select_tool_modifier_key): Make Shift toggle supressing - handles. - - (gimp_free_select_tool_draw): Don't draw the handles if they are - supressed. - - (gimp_free_select_tool_should_close): Only accept distance from - start point as a reason to close the polygon if the handles are - not supressed. - -2008-05-25 Martin Nordholts - - Added support for double-clicking in the Free Select Tool. A - double-click will commit the selection. - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_get_double_click_info): Helper function to - retrive GTK+ double-click settings. - - (gimp_free_select_tool_should_close): Take double-clicking into - account. - - (gimp_free_select_tool_revert_to_saved_state): Bail out if needed. - - (gimp_free_select_tool_button_release): Pass on time when - clicking. - - (gimp_free_select_tool_handle_click): Pass time to this function, - and modify it to handle double-clicks. - -2008-05-25 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_button_release): Remove invalid comment. - -2008-05-25 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_handle_click): A click might have slightly - adjusted the points, so revert before doing the selection. - (gimp_free_select_tool_revert_to_saved_state): Move definition up - a bit. - -2008-05-25 Martin Nordholts - - Make moving selection mask/pixels within the selection work for - the Free Select Tool, as well as interaction with any resulting - floating selection. - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_handle_click): Handle floating selections. - (gimp_free_select_tool_status_update): Show the inital - instructions until there are 3 or more segment vertices, rather - than 3 or more points. - - (gimp_free_select_tool_oper_update): When there is no active tool, - show selection tool status bar help messages instead of the tool - specific ones. - - (gimp_free_select_tool_delegate_button_press): New helper function - to decide wether to delgate operation to the selection tool. - - (gimp_free_select_tool_button_press): Handle delegation to the - selection tool. - -2008-05-24 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: fix dynamics grid label - positions for RTL mode by attaching the fixed to the table *after* - the toggle buttons (eek). See comment in the code. - -2008-05-24 Sven Neumann - - * HACKING: note that we need intltool 0.35.5 or newer. - -2008-05-24 Martin Nordholts - - * menus/image-menu.xml.in: Also Remove the Polygon Select Tool - action from here. - -2008-05-24 Martin Nordholts - - Kill the Polygon Select Tool. The Free Select Tool now provides a - superset of the old Polygon Select Tool functionality. We still - keep the tool icons etc around though, they might come in useful - in the future. - - * app/tools/gimppolygonselecttool.[ch]: Removed. - - * app/tools/Makefile.am: Removed gimppolygonselecttool.[ch]. - - * app/tools/gimp-tools.c (gimp_tools_init): Don't register the - Polygon Select Tool. - - * app/widgets/gimphelp-ids.h: Remove - GIMP_HELP_TOOL_POLYGON_SELECT. - -2008-05-23 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_draw): Draw handles within HANDLE_SIZE * 7 - distance from cursor instead of only showing the hovered handle. - (gimp_free_select_tool_oper_update): Remember last coordinates - given here, so we can do above calculations. - -2008-05-23 Michael Natterer - - Stop including single headers from gtk+ to be prepared - for the upcoming GTK_DISABLE_SINGLE_INCLUDES: - - * configure.in: add -DGTK_DISABLE_SINGLE_INCLUDES to CPPFLAGS. - - * app/display/gimpcanvas.h - * app/display/gimpscalecombobox.h - * app/display/gimpstatusbar.h - * app/widgets/*.h - * libgimp/gimpprogressbar.h - * libgimp/gimpselectbutton.h - * libgimpwidgets/*.h - * libgimpwidgets/gimpstock.c - * plug-ins/uri/gimpmountoperation.h: remove inclusion of parent - classes and single files from gtk+. - - * app/widgets/gtkwrapbox.h - * libgimp/gimpbrushmenu.c - * libgimp/gimpfontmenu.c - * libgimp/gimpgradientmenu.c - * libgimp/gimppalettemenu.c - * libgimp/gimppatternmenu.c - * libgimp/gimpselectbutton.c: #include - - * plug-ins/common/poppler.c: undef GTK_DISABLE_SINGLE_INCLUDES - when including . - -2008-05-23 Sven Neumann - - * app/tools/gimpimagemaptool-settings.c: string change. - -2008-05-23 Sven Neumann - - * app/core/gimpchannel-select.c - * app/core/gimpdrawable-bucket-fill.c - * app/core/gimpdrawable-transform.c - * app/core/gimpimage-crop.c - * app/dialogs/image-scale-dialog.c - * app/tools/gimpbycolorselecttool.c - * app/tools/gimpfliptool.c - * app/tools/gimpforegroundselecttool.c - * app/tools/gimpfreeselecttool.c - * app/tools/gimpfuzzyselecttool.c - * app/tools/gimpmovetool.c - * app/tools/gimpperspectivetool.c - * app/tools/gimppolygonselecttool.c - * app/tools/gimprotatetool.c - * app/tools/gimpscaletool.c - * app/tools/gimpsheartool.c - * libgimpwidgets/gimpcolorprofilestore.c - * plug-ins/gfig/gfig-dialog.c: use C_() instead of Q_() for - translations with context. - -2008-05-23 Sven Neumann - - * autogen.sh (GLIB_REQUIRED_VERSION): require glib-gettextize 2.16. - - * libgimp/libgimp-intl.h - * plug-ins/pygimp/pygimp-intl.h: synced with gi18n-lib.h from glib - 2.16. This adds support for the C_() macro. - - * plug-ins/script-fu/script-fu-intl.h: just include gi18n.h instead - of duplicating things from this header. - -2008-05-23 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: left-align the labels in the - new dynamics matrix. Add some code for RTL layout that doesn't - work properly yet. - -2008-05-22 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c: Added extra check to stop - "(let x 5)" syntax from causing a segfault in Linux. See bug #508020. - Removed some excess whitespace. - -2008-05-22 Michael Natterer - - * app/paint/gimpbrushcore.c (gimp_brush_core_interpolate): move - generating the random axis to the right place. - -2008-05-22 Michael Natterer - - * app/paint/gimppaintoptions.[ch]: replace the pressure-expanded, - velocity-expanded and random-expanded properties by a single - dynamics-expanded property. - - * app/tools/gimppaintoptions-gui.c: pack the toggle matrix into an - expander, some cleanup. - -2008-05-22 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: revert accidential change of - all occurences of "hardness" to "pressure" in strings and function - names. - -2008-05-22 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: factor out a utility function - that creates a dynamics check button. - -2008-05-22 Michael Natterer - - * app/tools/gimppaintoptions-gui.c: first version of a matrix of - toggles for the dynamics parameters instead of three expanders. - -2008-05-22 Martin Nordholts - - * app/tools/gimpfreeselecttool.c: Base a start of a new segment on - the pending point, and enable 15 degree constraints on the pending - point when Ctrl is being held down. - -2008-05-22 Martin Nordholts - - * app/core/gimpcurve-load.c (gimp_curve_load) - * app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): Remove - unused variables. - -2008-05-22 Martin Nordholts - - * app/tools/gimpfreeselecttool.[ch] - * app/tools/gimpforegroundselecttool.c: Fix that some - gimp_free_select_tool_-functions had the wrong name. - -2008-05-22 Michael Natterer - - Applied slightly modified and fixed patch from Alexia Death which - adds a "random" axis to the paint dynamics and fixes some issues - in the previous paint dynamics commits. Fixes bug #529431. - - * app/core/core-types.h: add a "random" axis to GimpCoords. - - * app/display/gimpdisplayshell-coords.c: set it to a random value. - - * app/display/gimpdisplayshell-callbacks.c: on button_press, - use the dynamics from the last motion event to avoid blotches - at the beginning of paint strokes. - - * app/paint/gimppaintoptions.[ch]: add random properties the same - way we do pressure and velocity. Add get_dynamic_size(), - get_dynamic_color() and get_dynamic_hardness() functions which - look at all dynamic parameters of the passed coords. - - * app/tools/gimppaintoptions-gui.c: add gui for the random options. - - * app/paint/gimpbrushcore.[ch]: remove calc_brush_scale() and use - gimp_paint_options_get_dynamic_size_instead(). - Add "dynamic_hardness" parameters to paste_canvas(), - replace_canvas() and get_brush_mask(). - - * app/paint/gimpairbrushoptions.c - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimpheal.c - * app/paint/gimppaintbrush.c - * app/paint/gimpsmudge.c: calculate the dynamic hardness and pass - it to above brush core functions. Use the get_dynamic_color() to - calculate the gradient color. - -2008-05-22 Sven Neumann - - * app/tools/gimpposterizetool.c (gimp_posterize_tool_dialog): - use a logarithmic slider. - -2008-05-22 Martin Nordholts - - * app/tools/gimpfreeselecttool.c: Remember the selection operation - in use when the tool was started, and use that when doing the - selection. Improvements are still to be made with regards to - synchronizing the tool options with the selection operation - actually used. - -2008-05-22 Michael Natterer - - * app/tools/gimpimagemaptool.c: check if the tool class has - the "settings_name" string set to decide whether to add - the settings GUI. - - * app/tools/gimpdesaturatetool.c - * app/tools/gimpposterizetool.c: don't set any settings - strings. Presets make no sense for tools with just one parameter. - -2008-05-22 Sven Neumann - - * app/core/gimpdrawable-operation.[ch] - (gimp_drawable_apply_operation): changed order of parameters to be - consistent with gimp_drawable_process(). - - * app/core/gimpdrawable-process.[ch]: introduced a variant of - gimp_drawable_process() for processing a GimpLut with - gimp_lut_process(). - - * app/core/gimpdrawable-brightness-contrast.c - * app/core/gimpdrawable-color-balance.c - * app/core/gimpdrawable-colorize.c - * app/core/gimpdrawable-curves.c - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-equalize.c - * app/core/gimpdrawable-hue-saturation.c - * app/core/gimpdrawable-invert.c - * app/core/gimpdrawable-levels.c - * app/core/gimpdrawable-posterize.c - * app/core/gimpdrawable-threshold.c: changed accordingly. - -2008-05-22 Michael Natterer - - * app/tools/gimpimagemaptool.[ch]: s/save/export/g, - s/load/import/g, removed button tooltip members. - - * app/tools/gimpimagemaptool-settings.[ch] - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimpdesaturatetool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: changed accordingly. - - * app/tools/gimpimagemaptool-settings.c: clean up menu item creation. - -2008-05-22 Michael Natterer - - * app/tools/gimpfreeselecttool.c: delete trailing whitespace. - -2008-05-22 Sven Neumann - - * app/tools/gimp-tools.c (gimp_tools_init): added a call to - gimp_tool_options_create_folder(). - - * app/core/gimp-user-install.c (gimp_user_install_items): no need - to create the tool-options folder here if we are doing that on - each startup. - -2008-05-22 Sven Neumann - - * app/tools/gimpcurvestool.c (gimp_curves_tool_dialog): use a - combo-box for the curve type. - -2008-05-22 Sven Neumann - - * core/gimpdrawable-brightness-contrast.c - * core/gimpdrawable-color-balance.c - * core/gimpdrawable-colorize.c - * core/gimpdrawable-equalize.c - * core/gimpdrawable-hue-saturation.c - * core/gimpdrawable-posterize.c - * core/gimpdrawable-threshold.c: ported to gimp_drawable_process(). - -2008-05-22 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_cursor_update): Don't return in the middle - of the function. - -2008-05-21 Martin Nordholts - - * app/tools/gimpforegroundselecttool.c - (gimp_foreground_select_tool_oper_update): "Draw a rough circle - around the object to extract" -> "Rougly outline the object to - extract". - -2008-05-21 Martin Nordholts - - * app/tools/gimpfreeselecttool.[ch]: Don't expose implementation - details. - - * app/tools/gimpforegroundselecttool.c - (gimp_foreground_select_tool_select): Use new - gimp_free_select_get_points() functions since we don't know - anything about how the Free Select Tool is implemented any longer. - -2008-05-21 Michael Natterer - - * app/tools/gimpimagemaptool.[ch] - * app/tools/gimpimagemaptool-settings.c: turn the ugly row of - favorites options buttons into a menu that's attached to an arrow - button right of the favorites combo. - -2008-05-21 Michael Natterer - - * app/tools/gimpcurvestool.c: remove unused variable. - -2008-05-21 Martin Nordholts - - * app/core/gimpscanconvert.c (gimp_scan_convert_add_polyline): - constify the points argument. - -2008-05-21 Michael Natterer - - * app/base/pixel-processor.h: remove PixelProcessorFunc typedef. - - * app/base/base-types.h: add it here. - - * app/config/gimpbaseconfig.c: #include "base/base-types.h" - - * app/core/gimpdrawable-curves.c - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-invert.c: remove pixel processor include. - - * app/core/gimpdrawable-levels.c: port to gimp_drawable_process(). - -2008-05-21 Michael Natterer - - * app/core/gimpdrawable-process.c (gimp_drawable_process): add - missing include and missing call to gimp_drawable_mask_intersect(). - -2008-05-21 Michael Natterer - - * app/gegl/gimpdesaturateconfig.c: use a stock_id that exists. - -2008-05-21 Martin Nordholts - - Made the Foreground Select Tool work again. - - * app/tools/gimpforegroundselecttool.c - (gimp_foreground_select_tool_control): Set tool->display = - NULL when halting the tool. - - (gimp_foreground_select_tool_button_press): Only activate the - tool control if it is not active (it might be actived already - by the Free Select Tool). - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_commit): Don't _halt explicitly - here. If a tool implementation wants to halt in this - situation, let them do that in their - GimpFreeSelectTool::select() instead. - -2008-05-21 Sven Neumann - - * app/core/Makefile.am - * app/core/gimpdrawable-process.[ch]: new file holding code to - apply a PixelProcessor to the full drawable. - - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-invert.c: use the new helper function. - - * app/core/gimpdrawable-desaturate.[ch] (gimp_drawable_desaturate): - take a GimpProgress parameter. - - * tools/pdbgen/pdb/color.pdb: changed accordingly. - - * app/pdb/color-cmds.c: regenerated. - -2008-05-21 Martin Nordholts - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_status_update): Slightly improve one of - the status bar messages. - -2008-05-21 Sven Neumann - - * menus/image-menu.xml.in: moved "tools-desaturate" to the other - color tools. Added it to the "tools-color-menu". - -2008-05-21 Sven Neumann - - * app/base/desaturate.[ch]: changed to take a pointer as first - argument like all PixelProcessor functions. - - * app/core/gimpdrawable-desaturate.c: changed accordingly. - - * app/tools/gimpdesaturatetool.[ch]: added legacy code path. - -2008-05-21 Sven Neumann - - * app/base/Makefile.am - * app/base/desaturate.[ch]: moved legacy desaturate code here. - - * app/core/gimpdrawable-desaturate.c: use the code in app/base. - -2008-05-21 Michael Natterer - - * app/gegl/gimpoperationdesaturate.c - (gimp_operation_desaturate_process): bail out if there is no - config object. - -2008-05-21 Sven Neumann - - Add Desaturate as an image-map tool with live preview (bug #533808): - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpdesaturateconfig.[ch]: added config object for the - desaturate point filter. - - * app/gegl/gimpoperationdesaturate.[ch]: derive from - GimpOperationPointFilter. Unrolled the inner loop. - - * app/core/gimpdrawable-desaturate.c: changed accordingly. - - * app/tools/Makefile.am - * app/tools/gimpdesaturatetool.[ch]: added desaturate as an - imagemap tool. So far only the GEGL code path is implemented. - - * app/tools/gimp-tools.c: register the new tool. - - * app/dialogs/dialogs.c: register the new tool dialog. - - * app/dialogs/Makefile.am - * app/dialogs/desaturate-dialog.[ch]: removed the desaturate dialog. - - * app/actions/drawable-actions.c - * app/actions/drawable-commands.[ch]: removed action - "drawable-desaturate". - - * app/widgets/gimphelp-ids.h: changed help IDs accordingly. - - * menus/image-menu.xml.in: replaced "drawable-desaturate" with - "tools-desaturate". - - * libgimpwidgets/gimpstock.h: added a define for - GIMP_STOCK_TOOL_DESATURATE. - -2008-05-21 Sven Neumann - - * plug-ins/jpeg/jpeg-save.c (save_dialog): changed badly chosen - mnemonic, resolved a conflicting mnemonic and added some more. - -2008-05-20 Michael Natterer - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimpimagemapconfig.[ch]: new GimpViewable subclass - which has a "time" property. Sets the object's name to a date - string if a time != 0 gets set. Has a compare function which first - sorts the objects with a timestamp in MRU order and then the - objects without timestamp by name. - - * app/gegl/gimpbrightnesscontrastconfig.[ch] - * app/gegl/gimpcolorbalanceconfig.[ch] - * app/gegl/gimpcolorizeconfig.[ch] - * app/gegl/gimpcurvesconfig.[ch] - * app/gegl/gimphuesaturationconfig.[ch] - * app/gegl/gimplevelsconfig.[ch] - * app/gegl/gimpposterizeconfig.[ch] - * app/gegl/gimpthresholdconfig.[ch]: derive from GimpImageMapConfig. - - * app/tools/gimpimagemaptool.c: sort the settings container with - above compare function. - - * app/tools/gimpimagemaptool-settings.c: add utility functions - for loading and saving the settings container. In the settings - combo, add a separator between MRU items and favorites. - - * app/Makefile.am: make the thing link. - -2008-05-20 Michael Natterer - - * app/core/gimplist.c (gimp_list_uniquefy_name): don't crash if an - object has a NULL name. Move variables to local scopes. Remove - redundant casts. - -2008-05-20 Martin Nordholts - - * app/tools/gimpfreeselecttool.c: Increase handle size to 12 - pixels (the same size as for the Paths Tool). - -2008-05-20 Martin Nordholts - - Added statusbar help-messages for the Free Select Tool. - - * app/tools/gimpfreeselecttool.c - (gimp_free_select_tool_oper_update): Don't bail out if - tool->display is NULL, instead modify the underlying logic to deal - with this. - -2008-05-20 Michael Natterer - - * app/tools/gimpimagemaptool.c: remove - gimp_image_map_tool_add_recent()... - - * app/tools/gimpimagemaptool-settings.[ch]: ...and add it here. - -2008-05-20 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_add_recent): - unref the new settings object after adding it to the recent - container. - - * app/tools/gimpimagemaptool-settings.c: add a "Save to Favorites" - button which pops a string entry dialog and saves the current - settings to the recent container. - -2008-05-20 Michael Natterer - - * app/tools/Makefile.am - * app/tools/gimpimagemaptool-settings.[ch]: new files containing - all the recent settings and settings load/save GUI and code. Got - rid of shortcut loading/saving using shift+click. Added default - implementations of ::settings_load() and ::settings_save(). - The GUI is currently horrible, work in progress! - - * app/tools/gimpimagemaptool.c: removed the settings code here. - - * app/tools/gimpcurvestool.c * app/tools/gimplevelstool.c: don't - pack the load and save buttons, this is done generically for all - tools now. - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: set the load/save related members - of GimpImageMapToolClass. - -2008-05-20 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/gimptoggleaction.[ch] - * app/widgets/gimpradioaction.[ch]: added new action types derived - from GtkToggleAction and GtkRadioAction. These types override the - "connect_proxy" method to enable tooltips in menus. - - * app/widgets/gimpactiongroup.c: use the new action types. - - * app/actions/dockable-actions.c: added a tooltip for the - "dockable-lock-tab" action. - -2008-05-20 Sven Neumann - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimplevelstool.c: fixed grammar. - -2008-05-19 Sven Neumann - - * app/widgets/gimpdockable.[ch] - * app/widgets/gimpdockbook.[ch]: added a "locked" propery to - GimpDockable. A locked dockable cannot be moved by drag-n-drop. - Allows users to protect their dockables from accidental changes, - mainly when working with a tablet. - - * app/widgets/gimpsessioninfo-dockable.[ch]: store the "locked" - property in the session info. - - * app/actions/dockable-actions.c - * app/actions/dockable-commands.[ch]: added an action for toggling - the "locked" state. - - * app/widgets/gimphelp-ids.h: new help-id "gimp-dock-tab-lock". - - * menus/dockable-menu.xml.in: show the new menu item. - - * app/actions/plug-in-actions.c: formatting. - -2008-05-19 Michael Natterer - - Unabstract image map tool settings load/save a bit before it's - turned into generic load/save for all image map tools: - - * app/gegl/gimpcurvesconfig.[ch] - * app/gegl/gimplevelsconfig.[ch]: add GError** to save_cruft() - functions. - - * app/tools/gimpimagemaptool.[ch]: add GError to - ::settings_save(), changed "file" parameter of ::settings_load() - and ::settings_save() to "filename", removed - gimp_image_map_tool_load_save() utility function and moved the - code to the settings_load() and settings_save() utility functions. - - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c: changed accordingly. Open and close - the settings files here. - -2008-05-19 Sven Neumann - - * plug-ins/common/psd-save.c (save_layer_and_mask): corrected - "layer mask disabled" flag in layer mask data section (bug #526811). - -2008-05-19 Sven Neumann - - * app/paint/gimpperspectiveclone.c: removed unused import. - -2008-05-19 Sven Neumann - - * tools/pdbgen/pdb/layer.pdb: corrected description of - gimp-layer-set-show-mask procedure. - - * app/pdb/layer-cmds.c - * libgimp/gimplayer_pdb.c: regenerated. - -2008-05-19 Michael Natterer - - * app/core/gimpcurve.c - (gimp_curve_set_n_points) - (gimp_curve_set_n_samples): set "identity" to TRUE if appropriate. - - (gimp_curve_calculate): don't set it to TRUE when there are no - control points. - -2008-05-19 Sven Neumann - - * app/core/gimpcurve-map.c (gimp_curve_map_pixels): fixed the call - to memcpy() in the CURVE_NONE case. - -2008-05-18 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c: Reverting previous change. - I figured it would break something. It breaks the 'while' macro by - preventing use of a named let. - -2008-05-18 Michael Natterer - - * app/core/gimpcurve.c: implement (de)serializing of the points - and samples arrays using GValueArray. Set "identity" to FALSE - after deserializing. - -2008-05-18 Michael Natterer - - * libgimpconfig/gimpconfig-serialize.[ch] - * libgimpconfig/gimpconfig.def: add - gimp_config_serialize_property_by_name(). - - * app/gegl/gimpcolorbalanceconfig.c - * app/gegl/gimpcurvesconfig.c - * app/gegl/gimphuesaturationconfig.c - * app/gegl/gimplevelsconfig.c: implement serialize() and - deserialize() and make sure the properties which change when the - channel/range property changes are handled correctly. Not too - ugly but it's still a hack... - -2008-05-18 Michael Natterer - - * app/tools/gimpimagemaptool.c: made the lists of recent settings - persistent. Note that the settings of tools that modify multiple - channels or ranges are saved incompletely because their settings - still lack custom serialize() implementations. Work in progress. - -2008-05-18 Michael Natterer - - * app/core/gimptoolinfo.[ch]: add - gimp_tool_info_build_options_filename() which creates a filename - under $GIMPDIR/tool-options/ with an optional suffix. - - * app/core/gimptooloptions.c - * app/core/gimptoolpresets.c: use it and remove own build_filename() - functions. - -2008-05-18 Michael Natterer - - * app/core/gimpstrokeoptions.[ch]: renamed public function - set_dash_pattern() to take_dash_pattern() to clarify memory - management of the passed GArray. - - * app/widgets/gimpdasheditor.c - * app/widgets/gimpstrokeeditor.c: changed accordingly. - -2008-05-18 Michael Natterer - - * app/core/gimpcurve.c: implement the GimpConfig interface and add - the code for equal(), reset() and copy() from GimpCurvesConfig. - - * app/gegl/gimpcurvesconfig.c: remove the copied code and use - GimpConfig methods to compare, reset and copy curve objects. - -2008-05-18 Michael Natterer - - * app/paint/gimpbrushcore.c: clean up last patch. - -2008-05-18 Martin Nordholts - - * plug-ins/script-fu/tinyscheme/scheme.c: Commited patch from gymp - that removes bogus FIXME (bug #533647). - -2008-05-18 Martin Nordholts - - Applied patch from Alexia Death that makes velocity dynamics - controlled scale properly recalculate the brush mask when - necessary (bug #533618). - - * app/paint/gimpbrushcore.[ch] (gimp_brush_core_scale_mask): A - change in scale requires a recalculation of the cached brush mask. - -2008-05-18 Martin Nordholts - - Merged the Polygon Select Tool capabilities with the Free Select - Tool. Among the things still to do is improved help texts, more - suitable graphics, and cursor mangement, but the core - functionality is in place. Thanks to Alexia Death for initial - testing. It will also be neccesary to do some work to adapt the - Foreground Select Tool to the new Free Select Tool implementation. - - Quick instructions on how the tool works: - - o A click adds a polygonal segment, a drag adds a free-hand - segment - o Return-key commits, Escape-key cancels, Backspace-key removes - last segment - o You can grab and move segment vertices - o You can cancel both a move, and the creation of a segment - - * app/tools/gimpfreeselecttool.[ch]: More or less - reimplemented. We keep a sequential array of all the points in the - polygon (including the free segments), and we have another array - with point indices that we use to represent the segments. On top - of this we have a few helper functions that tries to abstract away - the pretty raw nature of the implementation. - - * app/tools/gimpforegroundselecttool.[ch]: Keep track on its own - last_coord, and adjust to the new implementation of the Free - Select Tool. Still needs some work, for example handling that the - Free Select Tool now resets GimpTool::display. - (gimp_foreground_select_tool_key_press): Pass on key event to - parent class when appropriate. (Bails out too early though...) - -2008-05-18 Michael Natterer - - * app/gegl/gimpcurvesconfig.c (gimp_curves_config_set_property): - also copy curve->identity. - -2008-05-17 Sven Neumann - - * app/core/gimpimagemap.c: fixed issues with the profiling code. - -2008-05-17 Michael Natterer - - * app/tools/gimpimagemaptool.[ch]: add gimp_image_map_tool_edit_as(). - - * app/tools/gimplevelstool.c (levels_to_curves_callback): use it. - - * app/gegl/gimpbrightnesscontrastconfig.[ch]: add - gimp_brightness_contrast_config_to_levels_config(). - - * app/tools/gimpbrightnesscontrasttool.c: implement "Edit as Levels". - -2008-05-17 Øyvind KolÃĨs - - * app/core/gimpdrawable-operation.c: - * app/core/gimpimagemap.c: Make the created GEGL graphs have the - "dont-cache" property set to avoid unneeded caches. - -2008-05-17 Michael Natterer - - * app/widgets/gimpwidgets-constructors.[ch]: add new function - gimp_stock_button_new() which creates a button with icon and label - which is *not* the stock_id's label. - - * app/dialogs/preferences-dialog.c (prefs_button_add) - * app/tools/gimplevelstool.c (gimp_levels_tool_dialog): use it. - -2008-05-17 Michael Natterer - - * app/widgets/gimphelp-ids.h: add help IDs for the stuff in the - Windows menu. - - * app/actions/windows-actions.c: use them. - -2008-05-17 Michael Natterer - - * app/dialogs/file-save-dialog.c (file_save_dialog_response): fix - crash (don't dereference dialog after it has been destroyed). Also - put back code that sets the dialog back to sensitive if it still - exists. - -2008-05-17 Michael Natterer - - * app/core/gimpimagefile.c - * app/tools/gimpaligntool.c - * app/tools/gimpselectiontool.c - * app/tools/gimpvectortool.c - * plug-ins/color-rotate/color-rotate-dialog.c - * plug-ins/common/noise-rgb.c - * plug-ins/common/value-propagate.c - * plug-ins/gfig/gfig-dialog.c - * plug-ins/gfig/gfig.h - * plug-ins/gimpressionist/general.c - * plug-ins/gimpressionist/gimpressionist.h - * plug-ins/gimpressionist/orientation.c - * plug-ins/gimpressionist/size.c - * plug-ins/gimpressionist/utils.c - * plug-ins/gradient-flare/gradient-flare.c - * plug-ins/ifs-compose/ifs-compose.c - * plug-ins/imagemap/imap_main.c - * plug-ins/imagemap/imap_preferences.c: in latest GLib _() returns - "const gchar*" as it should. Add const qualifiers to local utility - functions and some explicit casts to fix the warnings caused by - this. - -2008-05-17 Michael Natterer - - * app/actions/windows-actions.c: add tooltips to the menu items of - open and recently closed docks. - - * app/widgets/gimpaction.c: connect to "notify::tooltip" and make - sure gimp_help_set_help_data() gets called when the action's - tooltip changes. - -2008-05-17 Michael Natterer - - * tools/pdbgen/pdb/gradient.pdb: applied patch from Lars-Peter - Clausen which adds gimp-gradient-get-number-of-segments. Fixes - bug #533474. - - * app/pdb/gradient-cmds.c - * app/pdb/internal-procs.c - * libgimp/gimpgradient_pdb.[ch]: regenerated. - - * libgimp/gimp.def: add the new symbol. - -2008-05-17 Michael Natterer - - * plug-ins/twain/Makefile.am: add -framework options to - twain_LDFLAGS instead of AM_LDFLAGS to make whatever layer/version - of autofoo happy on all macs. - -2008-05-16 Sven Neumann - - * app/core/gimpimagemap.c: added some basic benchmarking code. - Will become optional but for now it is enabled by default. - -2008-05-16 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c: Added extra checks to stop - bad syntax in LET from causing a segmentation fault in Linux. - See bug #508020. - -2008-05-16 Michael Natterer - - * app/Makefile.am: formatting. - -2008-05-16 Sven Neumann - - * app/display/gimpdisplayoptions.c: disable rulers by default as - suggested by Peter. Please give feedback. - -2008-05-16 Sven Neumann - - * plug-ins/help/Makefile.am - * plug-ins/help/gimphelpprogress.[ch] - * plug-ins/help/gimphelpprogress-private.h: new files providing a - simple framework for progress indication and cancellation. - - * plug-ins/help/gimphelp.[ch] - * plug-ins/help/gimphelpdomain.[ch] - * plug-ins/help/gimphelpitem.[ch] - * plug-ins/help/gimphelplocale.[ch] - * plug-ins/help/gimphelptypes.h - * plug-ins/help/help.c - * plug-ins/help/locales.[ch]: changed accordingly (passing NULL - as progress for now). Also updated copyright headers. - - * plug-ins/help-browser/help-browser.c: same here. - - * plug-ins/help/gimp-help-lookup.c: use the new API and show some - progress indication when the --verbose command-line option is used. - -2008-05-16 Michael Natterer - - * app/dialogs/dialogs.c (dialogs_load_recent_docks): reverse the - list after loading so it keeps its order. - - * app/menus/windows-menu.c (windows_menu_setup) - (windows_menu_recent_add): keep the recent docks menu in MRU - order. - -2008-05-16 Michael Natterer - - Implement the presistent menu of recently closed docks, still - somewhat hackish but fully functional. Fixes bug #132744. - - * app/actions/dialogs-actions.c - * app/actions/dialogs-commands.[ch] - * menus/image-menu.xml.in: remove the menu items that were - creating the hardcoded preconfigured docks. - - * app/dialogs/dialogs.[ch]: add GimpContainer of recently closed - docks and API to load and save it. - - * app/gui/session.c: call the recent dock load and save functions. - - * app/widgets/gimpsessioninfo.[ch]: implement the GimpConfig interface - and (de)serialize via proper interface methods. - - * app/gui/session.c - * app/widgets/gimpdialogfactory.c: use the GimpConfig API - to (de)serialize session infos and added the code that was - formerly in the info's (de)serialize functions but didn't belong - there. - - * app/widgets/gimpaction.[ch]: add "max-width-chars" property and - set it on proxy menu item labels. - - * app/actions/windows-actions.[ch] - * app/actions/windows-commands.[ch] - * app/menus/windows-menu.c: add actions and menu of recently - closed docks and code to restore the dock when the menu items are - selected. Use above new action property to ensure a minimum - width of the menu. - - * app/widgets/gimpmenudock.c: use '-' instead of '|' for - separating notebooks in the window title. Menu items don't like '|'. - - * app/widgets/gimpdock.c: removed the confirmation dialog when - closing docks and simply add them to the recent docks container. - This code is totally misplaced and will move to another file soon. - -2008-05-14 Sven Neumann - - * app/core/gimpcurve.c (gimp_curve_plot): don't write over the end - of the samples array. Someone should review this code. It looks - as if the loop could be rewritten in a safer and cleaner way. - -2008-05-14 Sven Neumann - - * plug-ins/common/blur-gauss-selective.c: formatting. - -2008-05-14 Sven Neumann - - * app/widgets/gimpcurveview.c (gimp_curve_view_motion_notify): - fixed use of uninitialized value. - -2008-05-14 Sven Neumann - - * app/actions/windows-actions.c (windows_actions): relabeled - submenu to "Recently Closed Docks". - -2008-05-14 Michael Natterer - - * app/menus/windows-menu.c - * app/actions/windows-actions.c - * menus/image-menu.xml.in: move the list of dockable dialogs and - the list of recent docks to submenus and keep the list of open - image windows and docks at the "Windows" menu toplevel. The list - of recent docks doesn't exist yet, its contents are fake. - -2008-05-14 Michael Natterer - - * app/gegl/gimpcurvesconfig.c (gimp_curves_config_copy): also - copy curve->identity. - -2008-05-14 Manish Singh - - * plug-ins/pygimp/gimpfu.py: Add PF_OPTION. Fixes bug #523142. - -2008-05-14 Sven Neumann - - * app/core/gimpbrushclipboard.c - (gimp_brush_clipboard_buffer_changed): for an opaque buffer, - initialize the brush mask with 255 instead of 0. Fixes bug #532886. - -2008-05-14 Sven Neumann - - * plug-ins/gradient-flare/gradient-flare.c - (calc_sample_one_gradient): use G_STRUCT_OFFSET() instead of a - hand-made macro which caused a compiler warning (spotted by gymp, - bug #532853). - -2008-05-14 Michael Natterer - - * app/widgets/gimpsessioninfo-book.[ch]: remove widget member from - struct GimpSessionInfoBook. Return the created GimpDockbook from - restore(). - - * app/widgets/gimpsessioninfo-dock.c (restore): use the returned - book instead of the struct member. - -2008-05-14 Michael Natterer - - Made session info serialization independent from widgets so it can - be used on stored dock layouts which are not open: - - * app/widgets/gimpsessioninfo-book.[ch] - * app/widgets/gimpsessioninfo-dock.[ch] - * app/widgets/gimpsessioninfo-dockable.[ch]: add from_widget() - functions which return newly allocated session info structs. - Changed serialize() functions to take these structs instead of - widgets. Changed deserialize() functions to return the structs - instead of appending them to lists in their parent structs. Don't - free anything in restore(). - - * app/widgets/gimpsessioninfo-aux.[ch] - (gimp_session_info_aux_serialize): take a GList of aux_info - instead of a widget. - - * app/widgets/gimpsessioninfo.[ch]: add new functions get_info() - which collects above session info details from dialogs and - clear_info() which clears that info. Call clear_info() from - finalize(). Don't free anything in restore(). - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factories_save_foreach): collect the session info - detials from the dialogs before serializing because serialize() - doesn't know about the widget any longer. Clear the infos after - serializing. - - (gimp_dialog_factories_restore_foreach): clear the session info - details after creating the dialogs because restore() doesn't clear - the info by itself any longer. - -2008-05-13 Michael Natterer - - * app/widgets/gimpsessioninfo.c: turn "info != NULL" checks into - "GIMP_IS_SESSION_INFO (info)". - -2008-05-13 Michael Natterer - - * app/widgets/gimpsessioninfo.[ch]: turn into a GimpObject - subclass. No logical changes yet. - - * app/widgets/widgets-types.h - * app/widgets/gimpdialogfactory.c: changed accordingly. - -2008-05-13 Michael Natterer - - First prototype of a button in the levels tool dialog that will - jump the the curves tool with the same settings: - - * app/gegl/gimplevelsconfig.[ch]: add new function - gimp_levels_config_to_curves_config() which converts a - GimpLevelsConfig to a GimpCurvesConfig. Still lacks support - for gamma. - - * app/tools/gimplevelstool.c: add "Edit this Settings as Curves" - button and jump to curves when clicked. Still ugly. - -2008-05-13 Sven Neumann - - * app/core/gimpcurve-map.c (gimp_curve_map_pixels): use memcpy() - for the CURVE_NONE case. - -2008-05-13 Sven Neumann - - * app/core/gimpcurve-map.[ch] (gimp_curve_map_pixels): introduced - an enum to clean up the code. Optimize another not so uncommon case. - -2008-05-13 Sven Neumann - - * app/core/gimpcurve-map.c (gimp_curve_map_pixels): create a - bitmask that represents the curves that need to be applied and - optimize the most common cases. - -2008-05-13 Simon Budig - - * app/vectors/vectors-types.h: add a comment explaining the hack. - -2008-05-13 Sven Neumann - - * app/core/gimpcurve-map.c (gimp_curve_map_value): simplified the - general case. - -2008-05-13 Sven Neumann - - * app/core/gimpcurve.[ch]: keep a boolean flag to identify an - identity mapping. Set it to TRUE when the curve is reset. - - * app/core/gimpcurve-map.c (gimp_curve_map_value): optimize for - the case where the curve is an identity mapping. - -2008-05-12 Simon Budig - - * app/vectors/gimpvectors.[ch] - * app/vectors/gimpstroke.[ch] - * app/vectors/gimpbezierstroke.c: Implement functionality to - get a bezier description a la moveto/curveto/closepath. - - * app/vectors/vectors-types.h: implement an evil hack to avoid - the inclusion of cairo.h in most C files... - - * app/vectors/Makefile.am: link against cairo - - * app/widgets/gimpviewrenderervectors.c: use the new functionality - for preview rendering. - -2008-05-11 Sven Neumann - - * app/core/Makefile.am - * app/core/gimpcurve.[ch]: - * app/core/gimpcurve-map.[ch]: split curve map functions into - seperate files. - - * app/gegl/gimpoperationcurves.c - * app/tools/gimpcurvestool.c - * app/widgets/gimpcurveview.c: changed accordingly. - - * app/Makefile.am (AM_LDFLAGS): make it link. - -2008-05-11 Sven Neumann - - * app/core/gimpcurve.[ch]: renamed gimp_curve_map() to - gimp_curve_map_value(). Added new function gimp_curve_map_pixels() - which will allow for better optimization. - - * app/gegl/gimpoperationcurves.c (gimp_operation_curves_process): - use gimp_curve_map_pixels(). - - * app/tools/gimpcurvestool.c - * app/widgets/gimpcurveview.c: follow API change. - -2008-05-11 Martin Nordholts - - * app/tools/gimpcroptool.[ch]: No need to expose definitions of - GimpCropTool or GimpCropToolClass. - -2008-05-11 Martin Nordholts - - * app/tools/gimprectangletool.c: Fix emission of - rectangle-change-complete signals. - - * app/tools/gimpcroptool.c - * app/tools/gimprectangleselecttool.c: - Use the rectangle-change-complete signal to update the default - aspect ratio. Fixes bug #530519. - - * app/tools/gimpcroptool.c - (gimp_crop_tool_button_release) - (gimp_crop_tool_options_notify) - * app/tools/gimprectangleselecttool.c - (gimp_rectangle_select_tool_button_release): No need to explicitly - update option defaults since it is handled through the - rectangle-change-complete signal now. - -2008-05-11 Sven Neumann - - * app/core/gimpcurve.[ch] (gimp_curve_map): minor cleanup. - -2008-05-11 Sven Neumann - - * plug-ins/common/web-browser.c (browser_open_url): improved error - messages as suggested in bug #522483. - -2008-05-11 Sven Neumann - - * app/gegl/gimpoperationlevels.c (gimp_operation_levels_map): - optimized for the case where gamma is 1.0. - -2008-05-11 Michael Natterer - - * app/widgets/gimpaction.[ch]: add an "ellipsize" property that is - applied to all proxy menu items' labels. - - * app/actions/windows-actions.c: set the dock actions to - PANGO_ELLIPSIZE_END because their labels can be insanely long. - -2008-05-11 Michael Natterer - - * app/widgets/gimpaction.c (gimp_action_set_proxy): small cleanup. - -2008-05-11 Michael Natterer - - * app/actions/windows-commands.[ch] - * app/actions/windows-actions.c - * app/menus/windows-menu.c: add dynamic actions and menu items for - all open docks. Present the dock when the menu item is selected. - -2008-05-10 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_button_press): Active the tool control - earlier. - (gimp_rectangle_tool_synthesize_motion): Bail out if the tool - control is active, we don't want to synthesize a motion in this - case as it emits unwanted rectangle-changed signals. - -2008-05-10 Michael Natterer - - * app/widgets/gimpdialogfactory.[ch]: add signals "dock-added" and - "dock-removed". - - (gimp_dialog_factory_add_dialog) - (gimp_dialog_factory_remove_dialog): emit them when docks get - added and removed. - -2008-05-10 Michael Natterer - - * app/actions/windows-actions.c: renamed the "Create New Dock" - submenu to simply "Docks". Its contents are about ti change soon. - - * menus/image-menu.xml.in: changed accordingly. Added a "Docks" - placeholder inside and add the "show toolbox" menu item there. - -2008-05-10 Michael Natterer - - * app/core/gimplist.[ch]: add boolean "append" property which - makes gimp_container_add() append to the list instead of the - default prepend. - - * app/core/gimp.c: create the display list with append = TRUE so - the images menu is in a proper order. - -2008-05-10 Michael Natterer - - * app/actions/windows-actions.c: don't hide the empty images menu, - use gimp_image_get_uri() instead of the object's name. - -2008-05-10 Michael Natterer - - * app/widgets/gimpactiongroup.h: fix parameter name. - -2008-05-10 DindinX - - * plug-ins/flame/cmap.c - * plug-ins/flame/libifs.c - * plug-ins/flame/rect.[ch]: cleaning (mostly code reformating and - converting K&R style function declarations to ansi). - - * plug-ins/common/pcx.c: reformated as well. - -2008-05-10 Michael Natterer - - Start changing the "Dialogs" menu to "Windows", still incomplete. - Addresses bug #309707. - - * app/actions/Makefile.am - * app/actions/windows-actions.[ch] - * app/actions/windows-commands.[ch]: new files which currently - hold the "show toolbox" action and callback and new code which - maintains automatically generated actions for accessing (raising) - all open images. - - * app/actions/actions.c: register the new "windows" action group. - - * app/actions/dialogs-actions.c - * app/actions/dialogs-commands.[ch]: remove "show toolbox" - action and callback and also the action for the "Disalogs" menu. - - * app/menus/Makefile.am - * app/menus/windows-menu.[ch]: new files which create and destroy - the menu items for the image window actions. - - * app/menus/menus.c: register the "windows" action group with - all UI managers that have the "dialogs" action group. - - * app/menus/image-menu.c (image_menu_setup): call - windows_menu_setup(). - - * app/gui/gui.c: s/dialogs_show_toolbox/windows_show_toolbox/g - - * menus/image-menu.xml.in: some minor s/dialogs/windows/ - and add the "Images" submenu. - -2008-05-10 Michael Natterer - - * app/display/gimpdisplay.c (gimp_display_set_image): emit - notify::image. - -2008-05-10 Martin Nordholts - - * app/tools/gimprectangleselecttool.c - (gimp_rectangle_select_tool_cancel): Don't forget updating the - default aspect ratio when cancelling a rectangle select. - -2008-05-10 Sven Neumann - - * app/tools/gimptexttool.c (gimp_text_tool_confirm_response): - rerender the text layer as suggested in bug #532078. - (gimp_text_tool_confirm_dialog): minor dialog improvements. - -2008-05-10 Sven Neumann - - * plug-ins/flame/libifs.c: removed trailing whitespace. - -2008-05-10 Sven Neumann - - * app/core/gimpbrush-scale.c: formatting. - -2008-05-10 Sven Neumann - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_real_draw): - reset the translation on the cairo context. Resurrects brush - emblems which were drawn in the wrong position. - - * app/widgets/gimpviewrendererbrush.c (gimp_view_renderer_brush_draw): - formatting. - -2008-05-10 Michael Natterer - - * plug-ins/common/gtm.c: renamed... - - * plug-ins/common/html-table.c: ...to this and cleaned it up. - - * plugin-defs.pl: changed accordingly. - * Makefile.am: regenerated. - -2008-05-10 Manish Singh - - * plug-ins/common/poppler.c: Support poppler 0.8.x. - -2008-05-10 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_button_release): Don't forget updating the - integer representation when reverting the rectangle after - cancelling a rubber-banding. - -2008-05-10 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_button_release): Update the tool options - after a release; the rectangle might change if a rubber-banding is - cancelled. - -2008-05-10 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_events) (gimp_display_shell_canvas_tool_events): - don't reserve Delete for use by tools. Fixes bug #532116. - - * app/tools/gimpimagemaptool.c - * app/tools/gimptransformtool.c: don't use Delete (you can still - use the Backspace key to achieve the same). - -2008-05-10 Manish Singh - - * plug-ins/imagemap/Makefile.am: tweak the rules for rebuilding the - parser files from lex/yacc source so that they are explicit instead - of potentially being run implicitly because the file dates are off. - -2008-05-10 Michael Natterer - - * app/gimp-log.[ch]: add SHADOW_TILES log domain. - - * app/plug-in/gimpplugin-cleanup.c (gimp_plug_in_cleanup_item): - turn commented-out g_printerr() into a GIMP_LOG() - -2008-05-10 Michael Natterer - - Applied modified patch from Alexia Death which adds velocity - support to paint tools in the spirit of the pressure support we - already have. Fixes bug #529431. - - * app/display/gimpdisplayshell-coords.c - (gimp_display_shell_eval_event): tweak velocity calculation to - work in screen coordinates. - - * app/paint/gimppaintoptions.[ch]: add velocity options in the - same way as there are pressure options. Add utility functions - which return dynamic opatity and dynamic rate according to the - option's settings and some GimpCoords' pressure and velocity. - - * app/tools/gimppaintoptions-gui.c: add GUI for the velocity - options. - - * app/paint/gimpbrushcore.h: remove PRESSURE_SCALE define, it's - now in gimppaintoptions.h. - - * app/paint/gimpbrushcore.c (gimp_brush_core_interpolate): - inerpolate velocity too. - - (gimp_brush_core_calc_brush_scale): take velocity into account. - - (gimp_brush_core_get_brush_mask): always pressurize the mask in - the GIMP_BRUSH_PRESSURE because there always is velocity (unlike - pressure which is only there on tablets). - - * app/paint/gimpairbrush.c - * app/paint/gimpclone.c - * app/paint/gimpconvolve.c - * app/paint/gimpdodgeburn.c - * app/paint/gimperaser.c - * app/paint/gimpheal.c - * app/paint/gimppaintbrush.c - * app/paint/gimpsmudge.c: get opacity and rate from the new paint - options utility functions which take both pressure and velocity - into account. - - * app/paint/gimppaintbrush.c: take velocity into account when - calculating the gradient color offset. - - * app/paint/gimpairbrush.c: do some additional fiddling with - velocity in the asynchronous airbrush timeout. - - * app/paint/gimpairbrushoptions.c: override the velocity-size - property and have it default to FALSE. - -2008-05-10 Martin Nordholts - - * app/tools/gimpcroptool.c: Add a GimpRectangleTool::cancel() - implementation that updates default aspect ratio when cancelling a - crop. - -2008-05-09 Martin Nordholts - - * app/tools/gimpcroptool.[ch]: Keep track of the current image and - manage a subscription to "size-changed" so that default aspect - ratio is properly updated. (Bug #532057.) - (gimp_crop_tool_execute): No need to explicitly call - gimp_crop_tool_update_option_defaults() any longer. - -2008-05-09 Simon Budig - - * app/core/gimpscanconvert.[ch]: expose the internal most - flexible rendering function. Make use of the miter limit - again. - -2008-05-09 Sven Neumann - - * configure.in: lowered minimum required cairo version to 1.4.10. - -2008-05-09 Simon Budig - - * app/core/gimpscanconvert.[ch]: kind of resurrect the - blending modes, although now implemented as compositing - on top of the existing content of a mask. - - * app/tools/gimpforegroundselecttool.c: changed accordingly - -2008-05-09 Simon Budig - - * app/core/gimpscanconvert.c: resurrect dashed strokes. - -2008-05-09 Sven Neumann - - * configure.in: check for a minimum required cairo version (1.4.14). - - * app/core/gimpscanconvert.c: copied some code from cairo until - we depend on cairo 1.6. - -2008-05-09 Sven Neumann - - * HACKING - * INSTALL: removed mentions of libart, added a link for cairo. - -2008-05-09 Simon Budig - - * app/core/gimpscanconvert.[ch]: removed Libart usage, - replaced with Cairo. Dashed strokes do not yet work again, will - happen tomorrow. Also the blending modes need a second look at. - - Also removed deprecated API which made it unnecessarily complicated. - - * app/tools/gimpiscissorstool.c: use the current API. - - * app/core/Makefile.am - * app/Makefile.am - * configure.in: removed libart dependency, added cairo dependency - where necessary. - -2008-05-08 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_events): don't call gtk_widget_grab_focus() here. - - (gimp_display_shell_canvas_tool_events): call it here instead and - add comments about how BUTTON_PRESS and FOCUS_IN interact. - - Return TRUE from BUTTON_PRESS, BUTTON_RELEASE and MOTION_NOTIFY. - -2008-05-08 Sven Neumann - - * themes/Default/gtkrc - * themes/Small/gtkrc: further shrink the status-bar widgets. - -2008-05-08 Sven Neumann - - * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): - removed the entry's inner border to save some precious space in - the status-bar. - -2008-05-08 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_events): move the focus to the canvas on - button-press events. - - * app/widgets/gimpwindow.c (gimp_window_key_press_event): removed - use of G_UNLIKELY() that was somewhat bogus here. - -2008-05-08 Sven Neumann - - * app/widgets/gimpfiledialog.[ch]: added infrastructure to access - and set some state information of the GtkFileChooser. - - * app/dialogs/file-open-dialog.c - * app/dialogs/file-save-dialog.c: don't keep the file-chooser - dialogs around. Instead keep the state attached to the Gimp object - (one state for load, one for save dialogs). Closes bug #528811. - -2008-05-08 Sven Neumann - - * app/widgets/widgets-types.h - * app/widgets/gimpfiledialog.c: formatting. - -2008-05-07 Martin Nordholts - - * app/tools/gimpcroptool.c (gimp_crop_tool_image_changed): Make it - feel like a class member function by G_CONNECT_SWAPPED-izing it. - -2008-05-07 Sven Neumann - - * app/plug-in/gimpplugin-cleanup.c (gimp_plug_in_cleanup_item): - commented out debug message. - -2008-05-07 Sven Neumann - - * plug-ins/common/blur-gauss-selective.c: allocate temporary - memory on the stack. Minor code cleanups. - -2008-05-06 Michael Natterer - - * app/plug-in/gimpplugin-message.c: split - gimp_plug_in_handle_tile_request() into two functions: - gimp_plug_in_handle_tile_put() and gimp_plug_in_handle_tile_get(). - -2008-05-06 Michael Natterer - - * app/plug-in/gimpplugin-message.c - (gimp_plug_in_handle_proc_install): show an error message instead - of crashing when a plug-in registers a prodecure with a NULL - argument or return value name. Also introduce two macros which - make the utf-8 validation of all strings much more readable. - -2008-05-06 Sven Neumann - - * plug-ins/common/gbr.c: improved procedure blurb and help. - - * libgimpcolor/gimpcolorspace.c: inline gimp_hsl_value() and - gimp_hsl_value_int(). - -2008-05-06 Sven Neumann - - * plug-ins/script-fu/scripts/3d-outline.scm: applied patch from - Ulf-D. Ehlert. Makes the vacated region, which is created when - specifying a non-zero shadow offset, to be filled with the - background color (white) instead of transparency (bug #530216). - -2008-05-06 Sven Neumann - - * libgimpwidgets/gimpcolorprofilestore.c - (gimp_color_profile_store_load_profile): check if the file exists - before adding it to the history. Fixes bug #528958. - -2008-05-05 Michael Natterer - - * app/actions/drawable-commands.c - (drawable_levels_stretch_cmd_callback): the second parameter of - gimp_drawable_levels_stretch() is now a GimpProgress. - -2008-05-05 Sven Neumann - - * plug-ins/common/unsharp-mask.c (gen_convolve_matrix): fixed - algorithm to calculate the center value. Fixes bug #530077. - -2008-05-05 Sven Neumann - - * plug-ins/common/blinds.c (MAX_FANS): increased the maximum - number of blinds to 100. - -2008-05-05 Sven Neumann - - * app/tools/gimppainttool.c - * app/display/gimpdisplayshell-coords.c: applied patch from Alexia - Death which changes the maximum smoothing for paint tools to a more - conservative default and adds velocity dependent smooth suppression. - -2008-05-05 Sven Neumann - - * configure.in (ALL_LINGUAS): added Icelandic (is). - -2008-05-02 Martin Nordholts - - * gimptexttool.[ch] - * gimprectangletool.[ch] - * gimprectangleselecttool.c: Renamed the "rectangle-changed" - signal to "rectangle-change-complete" which is much better name - since the signal is not emited when the rectangle is changed, but - when the change is complete. - -2008-05-02 Martin Nordholts - - * plug-ins/flame/libifs.c: Use g_random_int() instead of rand(). - -2008-05-01 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_active_modifier_key): Minor simplification. - -2008-04-30 Martin Nordholts - - * app/tools/gimpcroptool.c: Align static function prototpyes. - -2008-04-30 Sven Neumann - - * app/display/gimpscalecombobox.c - (gimp_scale_combo_box_entry_key_press): also handle the Tab keys - and call the "activate" handler when Tab is pressed. - -2008-04-30 Sven Neumann - - * app/display/gimpscalecombobox.c: install a "key-press-event" - handler and reset the entry when the Escape key is pressed. - -2008-04-29 Sven Neumann - - * themes/Default/gtkrc - * themes/Small/gtkrc: reduce the minimum array size for - GtkComboBox widgets in the image window. - -2008-04-29 Sven Neumann - - * app/display/gimpscalecombobox.[ch]: added signal "entry-activated". - - * app/display/gimpstatusbar.c (gimp_statusbar_new): connect to the - new signal and move the focus to the canvas. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): comment. - -2008-04-29 Sven Neumann - - * app/widgets/gimpwindow.c (gimp_window_key_press_event): formatting. - -2008-04-28 Sven Neumann - - * app/display/gimpscalecombobox.c: keep the current scale value, - beep and reset the entry when the user input cannot be parsed. - Also changed the input parser to interpret a single number as a - percentage. - -2008-04-28 Joao S. O. Bueno - - * app/pdb/drawable-transform-cmds.c - * app/pdb/vectors-cmds.c: regenerated - -2008-04-28 Sven Neumann - - * app/display/gimpscalecombobox.[ch]: derive from GtkComboBoxEntry. - Needs some more work with respect to input validation and focus - handling... - -2008-04-28 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpwindow.[ch]: added GimpWindow class and moved - key-press-event handler from GimpDock to this class. - - * app/widgets/gimpdock.[ch]: - * app/display/gimpdisplayshell.[ch]: derive from GimpWindow. - -2008-04-28 Sven Neumann - - * app/base/hue-saturation.c (hue_saturation): applied patch from - Michael Deal that fixes use of the overlap option (bug #527085). - -2008-04-28 Sven Neumann - - * menus/image-menu.xml.in: removed GEGL tool from the Colors menu - and also moved it out of the color tools menu. - -2008-04-26 JoÃŖo S. O. Bueno - - * AUTHORS - * authors.xml - * tools/pdb/stddefs.pdb: Fix my name back to single - name in most important files. - -2008-04-26 Michael Natterer - - * app/tools/gimpgegltool.c: clean up last commit. - -2008-04-26 Martin Nordholts - - * plug-ins/flame/libifs.c: Applied patch from Aurimas JuÅĄka. Use - the standard rand() instead of random(). - -2008-04-26 Øyvind KolÃĨs - - * app/tools/gimpgegltool.c: (gimp_get_subtype_classes), - (gimp_gegl_tool_compare_operation_names), (gimp_get_geglopclasses), - (gimp_gegl_tool_dialog): made the GEGL tool only show ops from - relevant categories, the list of relevant categories is hard coded - for now. - -2008-04-26 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_options_notify): No need to bail out if there - is no display. - -2008-04-26 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_options_notify): Some more simplifications - and cleanups. - -2008-04-26 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_options_notify): Simplifications and - cleanups. - -2008-04-26 Michael Natterer - - * menus/image-menu.xml.in: the gegl tool was missing from the - "Tools" menu. - -2008-04-26 Martin Nordholts - - * plug-ins/flame/flame.c - * plug-ins/flame/libifs.[ch]: Applied modified patch from Luis - Barrancos that adds 22 new variations to the flame plugin (bug - #389004). - -2008-04-25 Michael Natterer - - * app/paint/gimppaintoptions.c (gimp_paint_options_get_jitter): - add g_return_if_fail(). - - * app/paint/gimpheal.c (gimp_heal_motion) - * app/paint/gimpdodgeburn.c (gimp_dodge_burn_motion): free stuff - right after it's not used any longer, instead of at the end of the - function. - - * app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): move a - statement to improve consistency with other motion() functions. - -2008-04-25 Michael Natterer - - * plug-ins/print/print.c (query): fix help string of the page - setup procedure. - -2008-04-25 Sven Neumann - - * app/app.c - * app/gegl/gimp-gegl.c: reverted change from 2008-01-31. Use the - GEGL option group again now that GEGL provides some commmand-line - options. - -2008-04-25 Michael Natterer - - * app/paint/gimppaintoptions.[ch]: reorder jitter options stuff to - be consistently ordered all over the place. - -2008-04-25 Michael Natterer - - * app/widgets/gimpdock.c - * libgimpwidgets/gimpcellrenderertoggle.c: minor cosmetics. - -2008-04-25 Sven Neumann - - * app/widgets/gimptoolbox.c: do not any longer accept - middle-mouse-button paste on the toolbox buttons but use the - toolbox drop area for that. - -2008-04-25 Sven Neumann - - * app/actions/dock-actions.c (dock_actions): removed default - keyboard shortcut for "dock-close". - -2008-04-24 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_options_notify): Do appropriate equal and - not-equal comparisons for floting point numbers. Fixes - bug #527863. - -2008-04-23 Sven Neumann - - * libgimpwidgets/gimpnumberpairentry.c - (gimp_number_pair_entry_modify_font): formatting. - -2008-04-22 Michael Natterer - - * app/actions/view-actions.c (view_actions_update): simplify call - to window_actions_update() (we already have a local "shell" - variable that is NULL when there is no display). - -2008-04-22 Michael Natterer - - * app/sanity.c: add check for the GEGL version. - -2008-04-22 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_frame_size_request): - take vertical padding into account to avoid resizing the statusbar. - -2008-04-21 Michael Natterer - - * app/plug-in/gimpplugin-cleanup.c: do the actual cleanup in - utility functions and reduce gimp_plug_in_cleanup() to merely - iterating the cleanup lists. - -2008-04-21 Michael Natterer - - Move the shadow tiles from the image to the drawable. - Fixes bug #100469. - - * app/core/Makefile.am - * app/core/gimpdrawable-shadow.[ch]: new files implementing - the shadow tiles. - - * app/core/gimpimage.[ch]: remove the shadow tile manager from the - GimpImage struct. Remove gimp_image_get_shadow_tiles() and - _free_shadow_tiles(). - - * app/core/gimpdrawable.[ch]: add the shadow tile manager - here. Remove get_shadow_tiles() and merge_shadow(). Free the - shadow tiles in finalize and when the drawable gets removed from - the image. - - * app/core/gimpdrawable-brightness-contrast.c - * app/core/gimpdrawable-color-balance.c - * app/core/gimpdrawable-colorize.c - * app/core/gimpdrawable-curves.c - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-equalize.c - * app/core/gimpdrawable-hue-saturation.c - * app/core/gimpdrawable-invert.c - * app/core/gimpdrawable-levels.c - * app/core/gimpdrawable-operation.c - * app/core/gimpdrawable-posterize.c - * app/core/gimpdrawable-threshold.c - * app/core/gimpimagemap.c: changed accordingly. Free the shadow tiles - after using them. - - * app/plug-in/gimpplugin-cleanup.[ch]: add - gimp_plug_in_cleanup_add_shadow() and _remove_shadow() which keep - track of whether shadow tiles were created on behalf of a plug-in - procedure. - - (gimp_plug_in_cleanup): free shadow tiles which were created but - not destroyed by a plug-in procedure. - - * app/plug-in/gimpplugin-message.c (plug_in_handle_tile_request): - call gimp_plug_in_cleanup_add_shadow() whenever a plug-in requests - shadow tiles. - - * tools/pdbgen/pdb/drawable.pdb: use the new drawable shadow - API. Add new procedure gimp-drawable-free-shadow. Call - gimp_plug_in_cleaup_remove_shadow() when it gets called. - - * tools/pdbgen/pdb/image.pdb: deprecate gimp-image-free-shadow. - Calling it has no effect any longer. - - * app/pdb/drawable-cmds.c - * app/pdb/image-cmds.c - * app/pdb/internal-procs.c - * libgimp/gimpimage_pdb.[ch] - * libgimp/gimpdrawable_pdb.[ch]: regenerated. - -2008-04-21 Sven Neumann - - * plug-ins/common/psp.c: applied patch from Christoph Brill which - adds enum values and typedefs used in newer versions of the PSP - file format (see bug #120757). - -2008-04-21 Michael Natterer - - * libgimpmath/gimpmd5.c (gimp_md5_get_digest): moving a cast to - the right parameter fixes two warnings. - -2008-04-21 Sven Neumann - - * plug-ins/common/curve-bend.c (run): fixed handling of - "argc-lower-val-y" PDB parameter. - -2008-04-20 Michael Natterer - - * app/core/gimpdrawable-levels.[ch]: replaced unused parameter - "context" by "progress" and pass the progress on internally. - Factor common code out to gimp_drawable_levels_internal(). - - * tools/pdbgen/pdb/color.pdb: pass progress instead of context. - - * app/pdb/color-cmds.c: regenerated. - -2008-04-19 Sven Neumann - - * plug-ins/common/psp.c: untabified. - -2008-04-19 Michael Natterer - - * app/core/gimpdata.c: prototype indentation and minor declatation - and function reordering for the sake of consistency. - -2008-04-18 Sven Neumann - - * app/tools/gimpblendtool.c (gimp_blend_tool_draw): don't draw the - handles on pixel centers, we don't blend between pixel centers. - -2008-04-17 Michael Natterer - - Add some infrastructure that will be used soon: - - * app/plug-in/gimppluginprocframe.[ch]: replace "cleanup" list - by two lists "image_cleanups" and "item_cleanups" and call - gimp_plug_in_cleanup() if any of them is non-NULL. - - * app/plug-in/gimpplugin-cleanup.c: add private new() and free() - functions for GimpPlugInCleanupImage structs and add the same - infrastructure for GimpPlugInCleanupItem structs which are - currently unused. - -2008-04-17 Michael Natterer - - * configure.in: add G_DISABLE_SINGLE_INCLUDES to CPPFLAGS. - -2008-04-17 Michael Natterer - - * configure.in: remove AC_HEADER_DIRENT, we use GDir all over the - place now. - -2008-04-16 Michael Natterer - - * app/display/gimpdisplayshell-coords.c - (gimp_display_shell_eval_event): remove local "inertia" variable - and simply modify the passed "inertia_factor" when needed. - -2008-04-16 Sven Neumann - - * app/config/test-config.c: initialize the units vtable in - libgimpbase instead of trying to override symbols from it. - Fixes bug #528160. - -2008-04-15 Michael Natterer - - * app/display/gimpdisplayshell-coords.c - (gimp_display_shell_eval_event): fix calculation of filter - distance, it was missing a 1 / zoom_factor. Moved variables to - local scope. Remove redundant thistime variable. Turned const - gdouble into a #define. - -2008-04-14 Sven Neumann - - * plug-ins/pygimp/gimpfu.py (_query.make_params): strip mnemonics - from parameter names before passing them to gimp.install_procedure(). - -2008-04-14 Sven Neumann - - * app/plug-in/gimpplugin-message.c: renamed - gimp_plug_in_handle_tile_req() to gimp_plug_in_handle_tile_request(). - -2008-04-14 Michael Natterer - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_tile_req): - made messages about killed plug-ins due to invalid tile requests - more verbose. They are good for debugging only and not translated, - so more info can't hurt. Also fail (kill the plug-in) if a tile is - requested that lives on the undo stack. - -2008-04-14 Sven Neumann - - * app/tools/gimppolygonselecttool.c: formatting. - -2008-04-14 Michael Natterer - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_button_release): simplify and fix logic - to do the "right" thing. Hard to describe, try youself ;) - -2008-04-14 Sven Neumann - - * app/display/gimpstatusbar.c: introduced a #define for the spacing - between the icon and the statusbar label. - -2008-04-14 Michael Natterer - - * libgimpbase/gimpmemsize.c: #undef GIMP_DISABLE_DEPRECATED so - gimp_memsize_to_string() sees its own prototype. - -2008-04-14 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_label_expose): fixed - icon placement for right-to-left render direction. - -2008-04-14 Sven Neumann - - * app/display/gimpstatusbar.[ch]: rewritten the code that draws - the icon in the statusbar label. The new code gives nicer spacing. - -2008-04-14 Sven Neumann - - * plug-ins/jpeg/jpeg.h - * plug-ins/jpeg/jpeg-exif.c - * plug-ins/jpeg/jpeg-load.c: rotate the thumbnail according to the - EXIF orientation as required by the updated thumbnail spec. - -2008-04-14 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip) - * app/display/gimpstatusbar.c (gimp_statusbar_progress_start) - * app/gui/gui.c (gui_menu_show_tooltip): push a NULL stock-id. - -2008-04-14 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_label_expose): added - a sanity check. - - * app/display/gimpdisplayshell-layer-select.c: formatting. - -2008-04-14 Sven Neumann - - * app/display/gimpstatusbar.[ch]: added stock-id parameters to all - statusbar setters. - - * app/display/gimpdisplayshell-title.c: pass NULL as stock-id. - - * app/tools/gimptool.c: pass the tool icon to the statusbar. - - * app/tools/gimpeditselectiontool.c (gimp_edit_selection_tool_start): - inherit the tool-info from the parent tool. - -2008-04-13 Sven Neumann - - * app/tools/gimptool.h: formatting. - -2008-04-13 Sven Neumann - - * app/widgets/gimpunitcombobox.c: added "label-scale" style property. - - * app/display/gimpscalecombobox.[ch]: ditto. Also removed the - support for extra action items. - - * app/display/gimpstatusbar.c: changed accordingly. - - * themes/Default/gtkrc - * themes/Small/gtkrc: use a smaller font for the combo-box labels - in the statusbar. - -2008-04-13 Michael Natterer - - * app/tools/gimpiscissorstool.c: minor cosmetics. - - * cursors/gimp-tool-cursors.xcf: add the new SELECT modifier. - -2008-04-12 Martin Nordholts - - Applied modified patch from Daniel Hornung that changes the mouse - cursor to a "clicking will create a selection"-icon when hovering - the center of a pending Scissors Select Tool selection (bug #493370) - - * app/tools/gimpiscissorstool.c - (gimp_iscissors_tool_cursor_update): Use the new cursor icon. - - * cursors/modifier-select.png - * cursors/xbm/modifier-select.xbm - * cursors/xbm/modifier-select-mask.xbm: New cursor icon. - - * cursors/makefile.msc - * cursors/Makefile.am - * app/widgets/gimpcursor.c - * app/widgets/widgets-enums.h: Changed accordingly. - -2008-04-12 Martin Nordholts - - * plug-ins/script-fu/scripts/3d-outline.scm - * plug-ins/script-fu/scripts/alien-glow-logo.scm - * plug-ins/script-fu/scripts/alien-neon-logo.scm - * plug-ins/script-fu/scripts/basic1-logo.scm - * plug-ins/script-fu/scripts/basic2-logo.scm - * plug-ins/script-fu/scripts/blended-logo.scm - * plug-ins/script-fu/scripts/bovinated-logo.scm - * plug-ins/script-fu/scripts/chalk.scm - * plug-ins/script-fu/scripts/chip-away.scm - * plug-ins/script-fu/scripts/chrome-logo.scm - * plug-ins/script-fu/scripts/comic-logo.scm - * plug-ins/script-fu/scripts/coolmetal-logo.scm - * plug-ins/script-fu/scripts/frosty-logo.scm - * plug-ins/script-fu/scripts/glossy.scm - * plug-ins/script-fu/scripts/glowing-logo.scm - * plug-ins/script-fu/scripts/gradient-bevel-logo.scm - * plug-ins/script-fu/scripts/neon-logo.scm - * plug-ins/script-fu/scripts/script-fu-util.scm - * plug-ins/script-fu/scripts/starburst-logo.scm - * plug-ins/script-fu/scripts/starscape-logo.scm - * plug-ins/script-fu/scripts/t-o-p-logo.scm - * plug-ins/script-fu/scripts/textured-logo.scm: Applied patch from - Ulf-D. Ehlert that makes the Alpha to Logo-filters more gracefully - handle images with many layers (bug #498480). - -2008-04-12 Martin Nordholts - - * app/core/gimpimage-snap.c (gimp_image_snap_rectangle): Applied - patch from Mark Locascio that makes the center point of rectangles - snap (bug #527659). - -2008-04-11 Michael Natterer - - * app/display/gimpdisplayshell-appearance.c - (gimp_display_shell_appearance_update): don't call - gtk_widget_set_name() on a NULL menubar. - -2008-04-11 Sven Neumann - - * libgimpwidgets/gimppropwidgets.c (gimp_prop_size_entry_new): - reduced spacing between entry and unit menu. - -2008-04-11 Sven Neumann - - * app/tools/gimptextoptions.c (gimp_text_options_gui): tweaked the - layout to save a few pixels. - -2008-04-11 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): - unfullscreen the window before doing anything else. - -2008-04-11 Michael Natterer - - * app/display/gimpdisplayshell-appearance.c - (gimp_display_shell_appearance_update): don't show the status - bar's resize grip in fullscreen mode. - -2008-04-11 Michael Natterer - - * plug-ins/print/print-preview.c: unset the move cursor in - GtkWidget::leave_notify_event() so it always gets unset when the - pointer leaves the widget. - -2008-04-10 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): - fixed compilation on Win32 (bug #527300). - -2008-04-10 Sven Neumann - - * app/display/gimpstatusbar.[ch] (gimp_statusbar_progress_message): - improved the check if the message can be shown in the statusbar. - Do not show messages that don't fit into the given space. - - * app/gui/gui-message.c (gui_message_error_dialog): if there's - already an error dialog associated with a progress, then use it. - -2008-04-10 Michael Natterer - - * app/widgets/gimpcomponenteditor.c: implement - GimpDocked::set_context() and set the GimpViewRenderers' - contexts. Unclear how this could have been missed since it - warned badly about NULL contexts. - -2008-04-10 Michael Natterer - - * plug-ins/pygimp/plug-ins/python-console.py - * plug-ins/script-fu/scripts/ts-helloworld.scm: fix new menu paths. - -2008-04-09 Sven Neumann - - * data/images/gimp-splash.png: flattened splash image. - -2008-04-09 Sven Neumann - - * configure.in: bumped version to 2.5.1. - -2008-04-09 Sven Neumann - - * Made 2.5.0 development release. - -2008-04-09 Sven Neumann - - * app/config/Makefile.am: fixed build of test-config. - -2008-04-09 Sven Neumann - - * plug-ins/script-fu/scripts/ts-helloworld.scm - * plug-ins/script-fu/scripts/test-sphere.scm - * plug-ins/script-fu/scripts/contactsheet.scm: register in new - menu locations. - -2008-04-09 Sven Neumann - - * plug-ins/common/border-average.c: corrected parameter description. - -2008-04-09 Sven Neumann - - * plug-ins/pygimp/plug-ins/benchmark-foreground-extract.py - * plug-ins/pygimp/plug-ins/python-console.py - * plug-ins/pygimp/plug-ins/sphere.py: register in new menu locations. - -2008-04-09 Sven Neumann - - * plug-ins/twain/twain.c: register in new menu location. - -2008-04-09 Sven Neumann - - * app/plug-in/plug-in-menu-path.c (plug_in_menu_path_map): removed - function name from debug output. - -2008-04-09 Sven Neumann - - * plug-ins/win-snap/winsnap.c - * plug-ins/common/screenshot.c - * plug-ins/script-fu/script-fu.c - * plug-ins/script-fu/scripts/*.scm: register in new menu locations. - -2008-04-09 Michael Natterer - - * app/plug-in/plug-in-menu-path.c (plug_in_menu_path_map): enable - and improve debug output for mapped menu paths. - -2008-04-09 Sven Neumann - - * app/core/core-enums.[ch] (enum GimpUndoType): changed - descriptions for the GIMP_UNDO_FS_RIGOR and GIMP_UNDO_FS_RELAX - undo types again. - -2008-04-09 Sven Neumann - - * app/widgets/gimptexteditor.c (gimp_text_editor_new): disabled - the language entry until it works. - -2008-04-09 Sven Neumann - - * app/core/core-enums.[ch] (enum GimpUndoType): better descriptions - for the GIMP_UNDO_FS_RIGOR and GIMP_UNDO_FS_RELAX undo types. - - * app/core/gimplayer-floating-sel.c: corrected a comment. - -2008-04-09 Sven Neumann - - * app/actions/edit-actions.c (edit_actions): added mnemnic for - "edit-paste-as-new" menu item. - -2008-04-09 Michael Natterer - - * menus/image-menu.xml.in: add "File/New" submenu and an "Acquire" - placeholder inside it. Removed "File/Acquire". Removed the "Xtns" - menu. - - * app/plug-in/plug-in-menu-path.[ch] (plug_in_menu_path_map): - add "menu_label" parameter and add support for mapping around - individual menu items while preserving their translation and - mnemonics. Add mappings for the known menus from "Xtns" and map - them to "File/New". - - Map everything else in "Xtns" to "Filters/Extensions". - - * app/plug-in/gimppluginmanager-menu-branch.c - (gimp_plug_in_manager_add_menu_branch): pass the menu_label so - menu branches can be mapped with their translation. - - * app/plug-in/gimppluginprocedure.c - (gimp_plug_in_procedure_add_menu_path): pass NULL because mapping - menu items which have no submenu makes no sense and is redundant. - - * app/actions/image-actions.c: remove the "Xtns" menu action. - - * app/actions/file-actions.c: add action for the "File/New" menu - and removed the "File/Acquire" action. - - * app/actions/edit-actions.c: rename "Paste as New" to - "From Clipboard". - - * menus/image-menu.xml.in: add the "From Clipboard" action to the - "File/New" menu. - -2008-04-09 Sven Neumann - - * app/core/gimpcontainer.[ch]: added new methods - gimp_container_get_{first,last}_child(). - - * app/actions/file-actions.c (file_actions_close_all_update) - * app/dialogs/layer-add-mask-dialog.c (layer_add_mask_dialog_new) - * app/dialogs/palette-import-dialog.c (palette_import_image_callback) - * app/gui/gui-vtable.c (gui_get_empty_display): - * app/widgets/gimpmenudock.c (gimp_menu_dock_image_changed): use - the new GimpContainer methods. - - * app/core/gimpundostack.c: use the new GimpContainer methods and - cleaned up the code. - -2008-04-09 Sven Neumann - - * plug-ins/script-fu/scripts/Makefile.am - * plug-ins/script-fu/scripts/sphere.scm: removed Sphere - script. It's a nice simple example but it has no real value. - - * plug-ins/script-fu/script-fu.c (script_fu_extension_init): - removed "/Xtns/Misc". - -2008-04-09 Sven Neumann - - * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): - marked a message for translation. Declare 'val' as const and use - an extra variable where a not const variable is needed. - -2008-04-09 Sven Neumann - - * menus/image-menu.xml.in: moved Languages to the bottom. Removed - separator from the Filters list as there was really no rule as to - what goes above and what goes below. - - * app/actions/plug-in-actions.c: added Filters->Decor submenu. - - * plug-ins/script-fu/script-fu.c (script_fu_extension_init): - removed registration of redundant menu branches. - -2008-04-08 Michael Natterer - - * menus/image-menu.xml.in: add placeholder "Help/Programming" - - * plug-ins/common/plugin-browser.c - * plug-ins/common/procedure-browser.c: move the plug-in and - procedure browsers there. - - * menus/image-menu.xml.in: moved the (now by default empty) - "Extensions" placeholder from "Xtns" to "Filters". Let's see what - cruft shows up there. - - * app/plug-in/plug-in-menu-path.c: map "Xtns/Extensions" to - "Filters/Extensions". - -2008-04-08 Michael Natterer - - Start getting rid of the "Xtns" menu: - - * app/actions/dialogs-actions.c (dialogs_toplevel_actions): - renamed "Module Manager" to "Modules". - - * menus/image-menu.xml.in: move it to "Edit/Preferences" for the - time being so it doesn't block the removal of the "Xtns" menu. - - Move "Languages" placeholder from "Xtns" to "Filters". - - * app/plug-in/plug-in-menu-path.c (menu_path_mappings): map - "Xtns/Languages" to "Filters/Languages". - -2008-04-08 Sven Neumann - - * plug-ins/common/mng.c (myalloc): removed a redundant (and wrong) - cast. - -2008-04-08 Sven Neumann - - * plug-ins/pygimp/plug-ins/Makefile.am - - * plug-ins/pygimp/plug-ins/happy-valley-relief.py: renamed to ... - * plug-ins/pygimp/plug-ins/python-eval.py: ... this. - - * plug-ins/pygimp/plug-ins/gimpcons.py: renamed to ... - * plug-ins/pygimp/plug-ins/python-console.py: ... this. - -2008-04-08 Michael Natterer - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factory_set_user_pos): set GDK_HINT_MIN_SIZE on - dialogs which had no previous sessionrc entry. Fixes the minimum - size of the very first empty display of a new GIMP installation - and shouldn't have any ill effects on other windows. - -2008-04-07 Sven Neumann - - * app/composite/gimp-composite-3dnow-test.c - * app/composite/gimp-composite-altivec-test.c - * app/composite/gimp-composite-mmx-test.c - * app/composite/gimp-composite-sse-test.c - * app/composite/gimp-composite-sse2-test.c - * app/composite/gimp-composite-vis-test.c: include - -2008-04-07 Michael Natterer - - * plug-ins/common/neon.c: renamed to... - - * plug-ins/common/edge-neon.c: ...this. Some formatting cleanup. - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/Makefile.am: regenerated. - -2008-04-07 Sven Neumann - - * app/gegl/Makefile.am (libappgegl_a_SOURCES): added missing file. - - * app/tools/tools-enums.c: regenerated. - -2008-04-07 Sven Neumann - - * app/version.c (gimp_show_library_version): tweaked verbose - version output. - -2008-04-07 Sven Neumann - - * app/tools/gimprectangletool.[ch] - * app/tools/gimptexttool.c: removed 'force-narrow' mode as it is - hard to use and just looks broken. - -2008-04-07 Sven Neumann - - * app/tools/gimprectangletool.c: formatting. - -2008-04-07 Bill Skaggs - - * app/tools/gimprectangletool.[ch]: add "force_narrow" parameter. - - * app/tools/gimptexttool.c: Force rectangle to always be narrow, - and squash a few bugs. - -2008-04-07 Sven Neumann - - * plug-ins/common/compose.c: use gimp_drawable_is_valid() to check - if a drawable ID is valid. - -2008-04-07 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-coords.[ch] - * app/tools/gimppainttool.c - * app/tools/gimptool.[ch]: applied patch from Alexia Death as - attached to bug #508639. This change makes the smoothing depend on - the active tool. - -2008-04-07 Sven Neumann - - * app/actions/templates-actions.c - * app/actions/templates-commands.c: when creating an image from a - template, skip the New Image dialog as suggested in bug #480802. - -2008-04-07 Sven Neumann - - * plug-ins/map-object/map-object-main.c (query): fixed description - of 'lighttype' parameter (bug #526679). - -2008-04-07 Sven Neumann - - * app/display/gimpdisplay-handlers.c (gimp_display_saved_handler): - use gimp_statusbar_push_temp() directly instead of going through - gimp_message(). Use the GTK_STOCK_SAVE icon for the statusbar - message. - -2008-04-07 Sven Neumann - - * plug-ins/print/print.[ch]: set the number of pages to one before - showing the dialog. Not that it would make a difference, but it - could... - -2008-04-07 Sven Neumann - - * tools/pdbgen/pdb/procedural_db.pdb (procedural_db_proc_exists): - canonicalize the procedure name and also try compat names. - - * app/pdb/procedural-db-cmds.c: regenerated. - -2008-04-06 Sven Neumann - - * tools/pdbgen/pdb/procedural_db.pdb: added new procedure - gimp-procedural-db-proc-exists. - - * app/pdb/internal-procs.c - * app/pdb/procedural-db-cmds.c - * libgimp/gimpproceduraldb_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - - * plug-ins/print/print.c (page_setup): use the new procedure. - -2008-04-06 Sven Neumann - - * plug-ins/print/print.c (page_setup): do a query for the - temporary procedure installed by the 'file-print-gtk' procedure. - Temporary solution until bug #344818 has been addressed. - -2008-04-06 Sven Neumann - - * app/display/gimpstatusbar.c: resurrected the icon in statusbar - messages. - -2008-04-05 Sven Neumann - - * app/display/gimpdisplay.[ch]: added new function - gimp_display_close() which decides if gimp_display_delete() or - gimp_display_empty() needs to be called. - - * app/display/gimpdisplay-foreach.[ch]: added new function - gimp_displays_close() and removed the 'do_quit' parameter from - gimp_displays_delete(). - - * app/gui/gui.c (gui_exit_callback): changed accordingly. - - * app/display/gimpdisplayshell-close.c: removed - gimp_display_shell_really_close() and call gimp_display_close() - instead. - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): moved - code to update the ui managers here. - - * app/actions/file-commands.c (file_save_cmd_callback) - (file_close_cmd_callback) - * app/dialogs/file-save-dialog.c (file_save_dialog_response) - * app/dialogs/quit-dialog.c (quit_close_all_dialog_response): - close displays instead of deleting them. - - * app/gui/gui-vtable.c (gui_display_delete): call - gimp_display_close(). - -2008-04-05 Sven Neumann - - * app/widgets/gimpcolormapeditor.c (gimp_colormap_editor_draw): - corrected fix for bug #511926. - -2008-04-04 Michael Natterer - - * tools/pdbgen/pdb/text_layer.pdb: reorder functions so getters - and setters are together, rename fontsize() functions to - font_size(), fix get_color() implementation. - - * app/pdb/text-layer-cmds.c - * libgimp/gimptextlayer_pdb.[ch]: regenerated. - - * libgimp/gimp.def: changed accordingly. - -2008-04-04 Sven Neumann - - * tools/pdbgen/pdb/vectors.pdb: added - gimp_vectors_new_from_text_layer(). - - * app/pdb/internal-procs.c - * app/pdb/vectors-cmds.c - * libgimp/gimpvectors_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - -2008-04-04 Sven Neumann - - * app/core/gimpselection.c (gimp_selection_float): clear the - selection as gimp_selection_extract() doesn't do this for us any - longer (see bug #510534). - -2008-04-04 Sven Neumann - - * plug-ins/psd/psd-load.c: marked string for translation (the same - string exists in the TIFF loader already). - -2008-04-04 Sven Neumann - - * app/core/gimp.c: follow renaming of internal_procs.h. - -2008-04-04 Sven Neumann - - * HACKING: updated for name change of generated files. - -2008-04-04 Sven Neumann - - * tools/pdbgen/pdb/drawable.pdb: added missing include. - - * app/pdb/drawable-cmds.c: regenerated. - -2008-04-04 Sven Neumann - - * tools/pdbgen/app.pl: changed the names of the generated files. - - * app/pdb/Makefile.am - * app/pdb/*cmds.c: renamed. - -2008-04-04 Sven Neumann - - * tools/pdbgen/app.pl: cosmetic change in the generated code. - - * app/pdb/*_cmds.c: regenerated. - -2008-04-04 Sven Neumann - - * tools/pdbgen/pdb/plug_in.pdb: cosmetics. - - * app/pdb/plug_in_cmds.c: regenerated. - -2008-04-04 Sven Neumann - - * app/pdb/gimppdb-utils.[ch]: added test for floating items. - - * tools/pdbgen/pdb/image.pdb: use it to improve error handling. - - * app/pdb/image_cmds.c: regenerated. - -2008-04-04 Sven Neumann - - * tools/pdbgen/pdb/image.pdb: improved error handling. - - * app/pdb/image_cmds.c: regenerated. - -2008-04-04 Sven Neumann - - * app/pdb/gimppdb-utils.[ch]: added utility functions to check the - image base type. - - * tools/pdbgen/pdb/convert.pdb: use it so that we get a proper - error set on failure. - - * app/pdb/convert_cmds.c: regenerated. - -2008-04-04 Sven Neumann - - * app/core/gimpimage-convert.[ch] - (gimp_image_convert_set_dither_matrix): minor cleanup. - - * tools/pdbgen/pdb/convert.pdb: changed accordingly. - - * app/pdb/convert_cmds.c: regenerated. - -2008-04-03 Michael Natterer - - * app/pdb/gimppdb-utils.c - * tools/pdbgen/pdb/text_layer.pdb: GIMP_PDB_CALLING_ERROR and - GIMP_PDB_EXECUTION_ERROR are not from the GimpPdbErrorCode - enum. Use GIMP_PDB_INVALID_ARGUMENT instead. - - * app/pdb/text_layer_cmds.c: regenerated. - -2008-04-03 Michael Natterer - - * plug-ins/help/gimphelpdomain.h: fix include guards. - -2008-04-03 Michael Natterer - - * app/core/gimpimage-convert.c (gimp_image_convert): don't accept - palettes with more than 256 colors. - - * tools/pdbgen/pdb/convert.pdb: fail here too for palettes - with > 256 colors. Fixes bug #525471. - - * app/pdb/convert_cmds.c: regenerated. - -2008-04-03 Jordi Mallach - - * configure.in (ALL_LINGUAS): Add Valencian-Catalan (ca@valencia). - -2008-04-02 Bill Skaggs - - * app/text/gimptextlayout.c - * app/tools/gimptexttool.[ch] - * app/tools/gimprectangletool.[ch] - * app/tools/gimptextoptions.c: allow resizing of text - box. This is work in progress, and needs some tweaks - and fixes. See bug #122707. - -2008-04-02 Sven Neumann - - * libgimp/gimp.def: added new symbols. - -2008-04-02 Sven Neumann - - * tools/pdbgen/Makefile.am - * tools/pdbgen/pdb/text_layer.pdb: new text layer PDB API created - by Marcus Heese (see bug #164539). - - * app/pdb/Makefile.am - * app/pdb/text_layer_cmds.c: new generated file. - - * libgimp/Makefile.am - * libgimp/gimptextlayer_pdb.[ch]: new generated files. - - * app/pdb/internal_procs.[ch] - * libgimp/gimp_pdb.h - * tools/pdbgen/groups.pl: regenerated. - -2008-04-02 Sven Neumann - - * tools/pdbgen/app.pl: special treatment for gimppdberror.h to get - a saner include order. - - * app/pdb/floating_sel_cmds.c - * app/pdb/image_cmds.c: regenerated. - -2008-04-02 Sven Neumann - - * app/pdb/gimppdb-utils.[ch]: added gimp_pdb_layer_is_text_layer(). - -2008-04-02 Sven Neumann - - * tools/pdbgen/stddefs.pdb: fixed bug in last commit. - - * app/pdb/drawable_cmds.c - * libgimp/gimpdrawable_pdb.c: regenerated. - -2008-04-02 Sven Neumann - - * tools/pdbgen/stddefs.pdb: added shortcut for contributions from - Marcus Heese. - - * tools/pdbgen/pdb/drawable.pdb: added gimp_drawable_is_text_layer(), - taken from the patch attached to bug #164539. - - * app/pdb/internal_procs.c - * app/pdb/drawable_cmds.c - * libgimp/gimpdrawable_pdb.[ch]: regenerated. - - * libgimp/gimp.def: updated. - -2008-04-02 Sven Neumann - - * app/tools/gimpperspectiveclonetool.c: removed frame around the - mode radio buttons (bug #525747). - - * app/tools/gimpdodgeburntool.c: relabelled "Mode" frame to "Range". - -2008-04-02 Sven Neumann - - * app/gui/splash.c: use gimp_pango_layout_set_weight(). - -2008-04-02 Sven Neumann - - * plug-ins/help/gimp-help-lookup.c: fixed typos in descriptions of - the command-line options. - -2008-04-02 Sven Neumann - - * plug-ins/help-browser/Makefile.am (LDADD): added GIO_LIBS. - -2008-04-02 Sven Neumann - - * app/actions/file-actions.c: don't set a help-id on items in the - Open Recent menu. - - * app/menus/file-menu.c (file_menu_setup): show a larger thumbnail - in the tooltips for recently used images. - -2008-04-02 Sven Neumann - - * plug-ins/help/Makefile.am - * plug-ins/help/gimphelpdomain.[ch] - * plug-ins/help/gimphelplocale.[ch] - * plug-ins/help/gimphelp.[ch] - * plug-ins/help/gimp-help-lookup.c: use GIO to access the help index. - -2008-04-01 Sven Neumann - - * app/display/gimpdisplayshell-title.c - (gimp_display_shell_update_title_idle): no need to translate the - empty string. - -2008-03-31 Sven Neumann - - * app/text/text-enums.[ch] - * libgimpbase/gimpbaseenums.[ch]: as a first step towards a new - text PDB API, moved GimpTextDirection and GimpTextJustification - enums to libgimpbase. - - * libgimp/gimpenums.c.tail - * tools/pdbgen/enums.pl: regenerated. - - * libgimpbase/gimpbase.def: updated. - -2008-03-31 Michael Natterer - - * plug-ins/maze/*: renamed most files and added proper headers - instead of duplicating the prototypes in each .c file that uses - them. Indentation, spacing, formatting, some general cleanup. - -2008-03-31 Michael Natterer - - * app/widgets/gimpbrusheditor.c (gimp_brush_editor_notify_brush): - Add missing code for the "spacing" property. Spotted by Jerry Baker. - -2008-03-30 Martin Nordholts - - * app/widgets/gimpcontainertreeview-dnd.c - (gimp_container_tree_view_drag_drop): Make all code paths result - in a call to gtk_drag_finish() if we return TRUE. Fixes bug - #317992. - -2008-03-30 Sven Neumann - - * app/core/gimparea.c (gimp_area_list_process): code cleanup. - -2008-03-30 Sven Neumann - - * app/core/gimparea.c (gimp_area_list_free): don't leak the memory - allocated for the GSList. - -2008-03-30 Sven Neumann - - * app/widgets/gimpcontainertreeview.c: added a finalizer that frees - the memory allocated for the cell lists. - -2008-03-30 Sven Neumann - - * app/xcf/xcf-load.c (xcf_load_image): don't leak the grid. - -2008-03-30 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_scale_changed): - never set the dest_inc and src_dec variables to zero. - -2008-03-30 Sven Neumann - - * app/display/gimpdisplayshell-cursor.[ch]: added new function - gimp_display_shell_unset_cursor(). - (gimp_display_shell_real_set_cursor): deal with cursor_type -1 and - change the cursor to the default desktop cursor. Fixes warnings on - image load. - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): - use gimp_display_shell_unset_cursor(). - -2008-03-30 Sven Neumann - - * gimpheal.c (gimp_heal_motion): applied the same cleanups as in - the gimp-2-4 branch (see bug #521433). - -2008-03-30 Michael Natterer - - * app/display/gimpcanvas.c - * app/widgets/gimpcoloreditor.c - * app/widgets/gimpcolorframe.c - * app/widgets/gimpcursorview.c - * app/widgets/gimpcurveview.c - * app/widgets/gimpdataeditor.c - * app/widgets/gimpdock.c - * app/widgets/gimpdockable.c - * app/widgets/gimpdockbook.c - * app/widgets/gimpdockseparator.c - * app/widgets/gimpeditor.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpmenudock.c - * app/widgets/gimpsamplepointeditor.c - * app/widgets/gimptoolbox.c: chain up unconditionally in - GtkWidget::style_set() because it has a default implementation. - -2008-03-29 Michael Natterer - - * app/widgets/gimpmenudock.c (gimp_menu_dock_auto_clicked): when - the "Auto" button gets enabled, always copy both display and image - to the local context (because there can be displays without image - now). - -2008-03-29 Michael Natterer - - * app/gui/gui-vtable.c (gui_display_create): remove temporary - "object" variable, it's prefectly fine to say GIMP_DISPLAY() on a - NULL pointer. - -2008-03-29 Michael Natterer - - * configure.in: add -Wold-style-definition to CFLAGS. - -2008-03-29 Sven Neumann - - * libgimp/gimpprocview.c (gimp_proc_view_new): code cleanup. - -2008-03-29 Sven Neumann - - * libgimpmath/gimpmd5.[ch]: removed implementation of the MD5 - algorithm and delegate to GChecksum instead. - - * libgimpmath/Makefile.am - * libgimpmath/test-md5.c: removed test of the MD5 implementation. - -2008-03-29 Sven Neumann - - * plug-ins/common/lcms.c (lcms_calculate_checksum): fixed use of - GChecksum. - -2008-03-29 Michael Natterer - - * libgimpmath/gimpmd5.c: undef GIMP_DISABLE_DEPRECATED. - -2008-03-29 Michael Natterer - - * app/gui/gui-vtable.c: needs #ifdef GDK_WINDOWING_X11. - - * app/gui/gui.c: remove the include i accidentially added here. - -2008-03-29 Mukund Sivaraman - - * app/core/gimpdrawable-operation.c: Use #warning only if - compiler is gcc. - -2008-03-29 Mukund Sivaraman - - * plug-ins/imagemap/imap_cmd_move.c - * plug-ins/imagemap/imap_cmd_object_up.c - * plug-ins/imagemap/imap_cmd_move_up.c - * plug-ins/imagemap/imap_cmd_move_selected.c - * plug-ins/imagemap/imap_cmd_move_sash.c - * plug-ins/imagemap/imap_cmd_object_move.c - * plug-ins/imagemap/imap_cmd_object_down.c - * plug-ins/imagemap/imap_object.c - * plug-ins/imagemap/imap_cmd_move_down.c - * plug-ins/map-object/map-object-shade.c - * plug-ins/map-object/map-object-apply.c - * plug-ins/maze/maze.h - * plug-ins/maze/maze_face.c - * plug-ins/selection-to-path/selection-to-path.c - * plug-ins/selection-to-path/edge.c - * plug-ins/selection-to-path/pxl-outline.c - * plug-ins/selection-to-path/fit.c - * plug-ins/xjt/xjt.c - * plug-ins/metadata/xmp-parse.c - * plug-ins/print/print-draw-page.c - * plug-ins/print/print-settings.c - * plug-ins/lighting/lighting-preview.c: Cleanups / fixes for - issues reported by Sparse. - -2008-03-28 Mukund Sivaraman - - * plug-ins/common/sinus.c - * plug-ins/common/compose.c - * plug-ins/common/screenshot.c - * plug-ins/common/mng.c - * plug-ins/common/wind.c - * plug-ins/common/gif-save.c - * plug-ins/common/video.c - * plug-ins/common/sphere-designer.c - * plug-ins/common/hot.c - * plug-ins/common/red-eye-removal.c - * plug-ins/common/tile-small.c - * plug-ins/common/gbr.c - * plug-ins/common/jigsaw.c - * plug-ins/common/glob.c - * plug-ins/common/despeckle.c - * plug-ins/common/noise-randomize.c - * plug-ins/common/convolution-matrix.c - * plug-ins/common/gif-load.c - * plug-ins/common/psd-save.c - * plug-ins/common/emboss.c - * plug-ins/common/csource.c - * plug-ins/common/cml-explorer.c - * plug-ins/common/grid.c - * plug-ins/common/pcx.c - * plug-ins/common/engrave.c - * plug-ins/common/curve-bend.c: Cleanups / fixes for issues - reported by Sparse. - -2008-03-28 Mukund Sivaraman - - * plug-ins/common/lcms.c: gimp_md5_get_digest() is deprecated; - using GChecksum instead. - -2008-03-28 Mukund Sivaraman - - Fixes for some Sparse reported issues in app, libgimp*/ - - * app/gui/gui-vtable.c: Included - - * libgimp/gimpprocview.c: author, date, copyright are pointers. - - * libgimpwidgets/gimpcolorprofilestore.c: Last argument of - g_scanner_scope_add_symbol() is a pointer. - -2008-03-28 Mukund Sivaraman - - Fixes for some Sparse reported issues in app/ - - * app/core/gimpdrawable-operation.c: Added prototype for - gegl_node_add_child(). - - * app/core/gimpcurve.c: Remove C99 code - - * app/tools/gimpcurvestool.c - * app/tools/gimpperspectiveclonetool.c - * app/vectors/gimpstroke.c: Mark functions as static. - - * app/base/siox.c: state is a pointer. - - * app/plug-in/gimppluginprocframe.c: values is a pointer. - - * app/plug-in/plug-in-rc.c: plug_in_rc_parse() returns a pointer. - - * app/plug-in/gimpinterpreterdb.c: Check program[0] for '\0' - instead of the pointer program itself. - -2008-03-28 Mukund Sivaraman - - * plug-ins/common/png.c: Fixed a bug where a pointer to a gint - is passed to a function which expects gsize, which can cause - out of bounds access. - -2008-03-28 Michael Natterer - - * app/gui/gui.c: #include - -2008-03-28 Michael Natterer - - * plug-ins/script-fu/scripts/guides-from-selection.scm - * plug-ins/script-fu/scripts/guides-new-percent.scm - * plug-ins/script-fu/scripts/guides-new.scm - * plug-ins/script-fu/scripts/guides-remove-all.scm: use "*" as - image type (not "") so the menu item is disabled when there is no - image. - -2008-03-28 Sven Neumann - - * libgimpmath/gimpmd5.[ch]: deprecate gimp_md5_get_digest() in - favor of GCheckSum. - - * libgimpmath/test-md5.c: undef GIMP_DISABLE_DEPRECATED. - -2008-03-28 Sven Neumann - - * libgimpthumb/gimpthumb-utils.c (gimp_thumb_png_name): use - GCheckSum instead of the MD5 routine from libgimpmath. - - * gimpthumb.pc.in - * libgimpthumb/Makefile.am: removed libgimpmath dependency from - libgimpthumb. - -2008-03-28 Sven Neumann - - * app/sanity.c (sanity_check_glib): bumped glib version. - -2008-03-28 Sven Neumann - - * libgimpbase/gimpmemsize.[ch]: deprecate gimp_memsize_to_string() - in favor of g_format_size_for_display(). - - * app/actions/edit-commands.c - * app/core/gimpimagefile.c - * app/dialogs/image-new-dialog.c - * app/dialogs/image-scale-dialog.c - * app/display/gimpdisplayshell-title.c - * app/widgets/gimpimagepropview.c - * app/widgets/gimptemplateeditor.c - * app/widgets/gimpthumbbox.c - * plug-ins/uri/uri-backend-gnomevfs.c - * plug-ins/uri/uri-backend-gvfs.c - * plug-ins/uri/uri-backend-libcurl.c - * plug-ins/uri/uri-backend-wget.c: use g_format_size_for_display() - instead of gimp_memsize_to_string(). - -2008-03-28 Sven Neumann - - * configure.in: put GIO check back in as we need it to initialize - GIO_CFLAGS and GIO_LIBS. Renamed --without-gio to --without-gvfs. - - * INSTALL: changed accordingly. - - * plug-ins/uri/Makefile.am - * plug-ins/uri/uri-backend-gio.c - * plug-ins/uri/uri-backend-gvfs.c: renamed the gio backend to gvfs. - -2008-03-28 Michael Natterer - - * plug-ins/script-fu/scripts/line-nova.scm (script-fu-line-nova): - move the call to gimp-selection-save inside the undo group. - - (script-fu-register): use "*" as image type (not "") so the menu - item is disabled when there is no image. - -2008-03-28 Michael Natterer - - * configure.in: require glib >= 2.16.1. Don't warn about - deprecations for glib >= 2.19.0 and gtk+ >= 2.15.0. Remove check - for GIO but keep the --without-gio option for the URI plugin. - -2008-03-28 Sven Neumann - - * libgimpwidgets/gimphelpui.c: show a custom tooltip for menu - items and inform the user that she can get more help by pressing F1. - -2008-03-28 Sven Neumann - - * libgimpwidgets/gimphelpui.c: updated documentation. - -2008-03-28 Sven Neumann - - * app/dialogs/tips-parser.[ch] - * app/dialogs/tips-dialog.c: improved the creation of fallback - tips in case of an error parsing the tips file. - (tips_dialog_create): simplified dialog layout. - - * app/dialogs/preferences-dialog.c: removed the check button for - the "show-tips" option. - -2008-03-28 Sven Neumann - - * data/tips/gimp-tips.dtd - * data/tips/gimp-tips.xml.in - * app/dialogs/tips-parser.[ch]: reverted some of the changes from - yesterday. The simplification went too far and we inadvertently - lost an important feature. - -2008-03-27 Sven Neumann - - * plug-ins/common/pnm.c (load_image): changed message to say - "Unsupported maximum value" instead of "Invalid maximum value" - as suggested in bug #149723. - -2008-03-27 Sven Neumann - - * data/tips/gimp-tips.dtd - * data/tips/gimp-tips.xml.in: simplified the gimp-tips XML format - as we do not any longer need a special welcome tip. - - * app/dialogs/tips-dialog.c - * app/dialogs/tips-parser.[ch]: changed accordingly. - -2008-03-27 Sven Neumann - - * app/config/gimprc-blurbs.h: removed SHOW_TIPS_BLURB. - -2008-03-27 Sven Neumann - - Preparing for a revamp of the "Tip of the Day" feature: - - * app/config/gimpguiconfig.[ch]: removed "show-tips" property. - - * app/gui/gui.[ch]: removed gui_post_init() as it's only purpose was - to show the tips dialog. - - * app/app.c: changed accordingly. - - * app/dialogs/tips-dialog.c: removed some stuff that we are not - going to need any longer. - -2008-03-27 Sven Neumann - - * libgimp/gimp.c: minor improvements to the API docs. - -2008-03-27 Sven Neumann - - Properly pass the focus from the core to plug-in dialogs: - - * libgimpbase/gimpprotocol.[ch]: added a user_time member to the - GimpConfig struct. Bumped the protocol version to 0x0012. - - * app/core/gimp-gui.[ch] - * app/gui/gui-vtable.c: added gimp_get_user_time() to get the - timestamp of the last user interaction. - - * app/plug-in/gimppluginmanager-call.c - (gimp_plug_in_manager_call_run): pass the timestamp to in the - GimpConfig message. - - * libgimp/gimp.[ch]: - * libgimp/gimp.def: added method to access the timestamp as set - in the config message. - - * libgimp/gimpui.c (gimp_ui_init): construct a fake startup ID and - set the DESKTOP_STARTUP_ID environment variable. - -2008-03-27 Sven Neumann - - * app/widgets/gimpdockable.c (gimp_dockable_detach): open the new - dock window at the mouse pointer position. - -2008-03-27 Sven Neumann - - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_drop_uri_list): don't flush if there's no image. - (gimp_display_shell_dnd_flush): use gtk_window_present() instead of - gdk_window_focus(). - -2008-03-27 Sven Neumann - - * app/display/gimpstatusbar.c: use a button with icon for the - progress cancel button. - -2008-03-27 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): - added an arbitrary number to the minimum height. - -2008-03-27 Sven Neumann - - * app/display/gimpstatusbar.c: make sure that the statusbar frame - requests enough space to hold it's children, also the invisible ones. - - * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): - don't add 1 pixel here, this spacing is gone. - -2008-03-27 Sven Neumann - - * app/display/gimpstatusbar.[ch]: derive GimpStatusbar from - GtkStatusbar. Use the normal statusbar label for statusbar - messages and only show the progressbar when progress is active. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): removed - spacing from the main vertical box. - -2008-03-27 Sven Neumann - - * plug-ins/common/dicom.c (dicom_loader): cosmetic changes. - -2008-03-27 Mukund Sivaraman - - * plug-ins/common/dicom.c: Validated samples_per_pixel, changed - the loop counter data type, and patched code to work on big endian - CPUs. - -2008-03-27 Sven Neumann - - * app/gui/gui.c (gui_init): disable automatic startup notification. - (gui_restore_after_callback): notify the display enviroment that - the application has finished loading. - - * app/gui/splash.c: no need to deal with startup notification here - any longer. - -2008-03-26 Mukund Sivaraman - - * plug-ins/common/dicom.c: Forget about negative values in signed - data and scale positive values appropriately. Also fixed signed - values in the 8 bpp case, and added some comments. - -2008-03-26 Mukund Sivaraman - - * plug-ins/common/dicom.c: made the dicom plug-in a bit better. - - 1. Parse the default little-endian encoding correctly. - 2. Handle signed pixel data. - 3. Support "bits stored" and "high bit" meta data fields. - 4. Throw away the bogus "max" value based metering. - -2008-03-26 Michael Natterer - - * app/widgets/gimptoolbox.c: make the wilber area a bit smaller. - -2008-03-26 Michael Natterer - - * app/widgets/gimptoolbox.[ch]: store the toolbox area's vbox in - the widget struct. - - * app/widgets/gimptoolbox-dnd.c (gimp_toolbox_dnd_init): use it as - DND target instead of the wbox with the tool buttons. - -2008-03-26 Michael Natterer - - * app/widgets/gimptoolbox.[ch]: big wilber is watching you from - the toolbox! Removed forgotten menubar cruft. - -2008-03-26 Sven Neumann - - * app/widgets/gimpcairo-wilber.[ch]: - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): hide ugly - details behind a sane API. - -2008-03-26 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): - improve tooltip here too. - -2008-03-26 Sven Neumann - - * app/widgets/gimpcairo-wilber.c: include a better Wilber path, - thanks to Jimmac. - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): undid - scaling "fix", instead take the offset into account. Draw with - transparency. - -2008-03-26 Michael Natterer - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): fix scaling. - -2008-03-26 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/gimpcairo-wilber.[ch]: new files that renders a - Wilber image as a Cairo path. Or at least it is supposed to do - this at some point... - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): use the - scalable Wilber path. Needs more work... - -2008-03-26 Sven Neumann - - * data/images/Makefile.am: install wilber.png. - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): try to - load "wilber.png" from $prefix/share/gimp/2.0/images. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): - improved tooltip. - -2008-03-26 Michael Natterer - - * app/display/gimpcanvas.[ch]: improve wilber scaling and remove - the drop zone layout. - - * app/display/gimpdisplayshell.c: add a tooltip instead. - -2008-03-26 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_realize): don't set an initial cursor - so we get the desktop default cursor after starting GIMP. - -2008-03-26 Sven Neumann - - * plug-ins/common/gif-save.c - * plug-ins/common/psd-save.c (save_image): improved error messages. - -2008-03-26 Michael Natterer - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): add - wilber image to figure the proper scale behavior. Proper image - still missing :) - -2008-03-26 Sven Neumann - - * app/display/gimpdisplayshell-icon.[ch] - * app/display/gimpdisplayshell-handlers.c: moved more icon code to - its new home. - -2008-03-25 Mukund Sivaraman - - * plug-ins/common/mng.c: Cleaned up the rest of the plug-in. - -2008-03-25 Mukund Sivaraman - - * plug-ins/common/mng.c: More code cleanups. - -2008-03-25 Mukund Sivaraman - - * plug-ins/common/mng.c: More code cleanups. - -2008-03-25 Mukund Sivaraman - - * plug-ins/common/mng.c: More code cleanups. - -2008-03-25 Sven Neumann - - * app/display/Makefile.am - * app/display/gimpdisplayshell-icon.[ch]: split icon code to its - own file. - - * app/display/gimpdisplay.c - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-handlers.c: changed accordingly. - -2008-03-25 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_peek): fixed - parameter checks. - - * app/display/gimpdisplayshell-callbacks.c: formatting. - -2008-03-25 Sven Neumann - - * app/display/gimpstatusbar.[ch]: added gimp_statusbar_peek(), a - method to access the contents of the statusbar. - - * app/display/gimpdisplayshell.c - (gimp_display_shell_window_state_event): when the iconfied state - changes, call gimp_display_shell_progress_window_state_changed(). - - * app/display/gimpdisplayshell-progress.[ch]: if the image window - is iconified, display the progress message in the window title so - that it appears in the task bar. - - * app/menus/plug-in-menus.c: formatting. - -2008-03-25 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.[ch]: remove the window - state callback here... - - * app/display/gimpdisplayshell.c: ...add it here and turn it into - a GtkWidget::window_state_event() implementation instead of a - signal callback. - -2008-03-25 Sven Neumann - - * menus/image-menu.xml.in: added a placeholder "Menus" where - plug-ins like GAP can register a top-level menu. - -2008-03-25 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.[ch]: - * app/display/gimpdisplayshell.c (gimp_display_shell_init): moved - handling of window state events to a separate callback. - -2008-03-25 Sven Neumann - - * app/display/gimpdisplayshell.h: formatting. - -2008-03-25 Sven Neumann - - * app/core/gimp-gui.[ch] - * app/gui/gui-vtable.c: added gimp_get_empty_display() to the vtable. - - * app/file/file-open.c (file_open_from_command_line): use the - empty display as progress window when opening an image from the - command-line or via the DBus interface. - -2008-03-25 Michael Natterer - - * app/actions/image-actions.c: remove "image-new-from-image" - action. - - * app/actions/image-commands.[ch]: remove its callback and made - the "image-new" callback use the current image's dimensions - instead. - - * menus/image-menu.xml.in: use the "image-new" action. - -2008-03-25 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): - fix to work without menubar, don't reset GDK_HINT_USER_POS. - -2008-03-25 Sven Neumann - - * app/gui/gui.c (gui_restore_after_callback): focus the image - window after all docks have been created. - - * app/widgets/gimpdock.c (gimp_dock_init): unset focus-on-map on - all dock windows. - - * app/widgets/gimpdialogfactory.c - (gimp_dialog_factories_show_foreach): removed the focus hacks here - as they are not any longer needed. - -2008-03-25 Sven Neumann - - * app/actions/file-actions.c - * app/actions/file-commands.[ch]: renamed - file_last_opened_cmd_callaback() to file_open_recent_cmd_callback(). - Use the empty display as progress object. - -2008-03-25 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): center - the empty image window on first startup. - -2008-03-25 Sven Neumann - - * app/gui/gui-vtable.c (gui_recent_list_load): sort the list into - MRU order on load. - -2008-03-25 Sven Neumann - - * app/actions/documents-commands.c: only fiddle with - GtkRecentManager when "save-document-history" is enabled. - - * app/config/gimprc-blurbs.h - * app/dialogs/preferences-dialog.c: changed description and label - for the "save-document-history" option. - -2008-03-24 Sven Neumann - - * app/widgets/gimplanguagestore.[ch] - * app/widgets/gimplanguageentry.[ch]: code cleanup. - -2008-03-24 Mukund Sivaraman - - * plug-ins/common/mng.c: Code cleanups. - -2008-03-24 Michael Natterer - - * plug-ins/bmp/* - * plug-ins/fits/* - * plug-ins/sgi/*: renamed files. - -2008-03-24 Mukund Sivaraman - - * plug-ins/common/mng.c: - * plug-ins/jpeg/jpeg.c: Changed name of author. - -2008-03-24 Sven Neumann - - * plug-ins/gradient-flare/Makefile.am: fixed variable that was - forgotten during the renaming. - -2008-03-24 Michael Natterer - - * plug-ins/fractal-explorer/*: renamed all files. - -2008-03-24 Michael Natterer - - * plug-ins/ico/*: renamed all files. - -2008-03-24 Michael Natterer - - The icon plugin should simply be "ico" just as the other file - plug-ins. - - * plug-ins/win-icon -> ico - - * configure.in - * plug-ins/Makefile.am: changed accordingly. - -2008-03-24 Michael Natterer - - * plug-ins/color-rotate/*: renamed all files and also changed - function names and stuff in some files. Only the filename change - is 100% complete. - -2008-03-24 Michael Natterer - - There is no colormap involved in this plug-in, rename it again... - - * plug-ins/colormap-rotate -> color-rotate. - - * configure.in - * plug-ins/Makefile.am: changed accordingly. - -2008-03-24 Michael Natterer - - * plug-ins/map-object - * plug-ins/gradient-flare - * plug-ins/ifs-compose - * plug-ins/selection-to-path - * plug-ins/lighting - * plug-ins/help-browser - * plug-ins/fli: rename files in these folders to have no - underscores and match new names of the plug-ins. - - * configure.in: changed accordingly. - -2008-03-24 Sven Neumann - - * app/core/gimp-user-install.c (user_install_migrate_files): don't - migrate "documents". - - * app/actions/documents-commands.c (documents_remove_cmd_callback) - (documents_remove_dangling_foreach): remove from GtkRecentManager - before removing the item from the documents list. - -2008-03-24 Sven Neumann - - * libgimpthumb/gimpthumbnail.c: don't reset the mime-type info - when we can't load a thumbnail. - - * app/core/gimpimagefile.c (gimp_imagefile_get_new_pixbuf): don't - set a stock-id depending on the state. - - * app/widgets/gimpviewrendererimagefile.[ch]: removed commented - out hack that used to access semi-private API from GtkFilesystem. - Instead lifted some code from GtkRecentManager that looks up icons - by mime-type. - -2008-03-24 Michael Natterer - - Renamed folders in plug-ins/. Unfortunately it's impossible to - rename the files inside at the same time, so this is just - part one... - - * plug-ins/FractalExplorer -> fractal-explorer - * plug-ins/Lighting -> lighting - * plug-ins/MapObject -> map-object - * plug-ins/gflare -> gradient-flare - * plug-ins/gfli -> fli - * plug-ins/helpbrowser -> help-browser - * plug-ins/ifscompose -> ifs-compose - * plug-ins/rcm -> colormap-rotate - * plug-ins/sel2path -> selection-to-path - * plug-ins/winicon -> win-icon - * plug-ins/winsnap -> win-snap - - * configure.in - * plug-ins/Makefile.am: changed accordingly. - -2008-03-24 Michael Natterer - - Renamed tons of plug-ins to make more sense and to be consistent: - - * plug-ins/common/AlienMap2.c -> alien-map.c - * plug-ins/common/CEL.c -> cel.c - * plug-ins/common/CML_explorer.c -> cml-explorer.c - * plug-ins/common/align_layers.c -> align-layers.c - * plug-ins/common/animationplay.c -> animation-play.c - * plug-ins/common/animoptimize.c -> animation-optimize.c - * plug-ins/common/apply_lens.c -> lens-apply.c - * plug-ins/common/autocrop.c -> crop-auto.c - * plug-ins/common/autostretch_hsv.c -> contrast-stretch-hsv.c - * plug-ins/common/borderaverage.c -> border-average.c - * plug-ins/common/bumpmap.c -> bump-map.c - * plug-ins/common/c_astretch.c -> contrast-stretch.c - * plug-ins/common/ccanalyze.c -> color-cube-analyze.c - * plug-ins/common/channel_mixer.c -> channel-mixer.c - * plug-ins/common/color_enhance.c -> color-enhance.c - * plug-ins/common/colortoalpha.c -> color-to-alpha.c - * plug-ins/common/convmatrix.c -> convolution-matrix.c - * plug-ins/common/curve_bend.c -> curve-bend.c - * plug-ins/common/depthmerge.c -> depth-merge.c - * plug-ins/common/dog.c -> edge-dog.c - * plug-ins/common/exchange.c -> color-exchange.c - * plug-ins/common/flarefx.c -> lens-flare.c - * plug-ins/common/fp.c -> filter-pack.c - * plug-ins/common/fractaltrace.c -> fractal-trace.c - * plug-ins/common/gauss.c -> blur-gauss.c - * plug-ins/common/gee_zoom.c -> gee-zoom.c - * plug-ins/common/glasstile.c -> tile-glass.c - * plug-ins/common/gqbist.c -> qbist.c - * plug-ins/common/gradmap.c -> gradient-map.c - * plug-ins/common/laplace.c -> edge-laplace.c - * plug-ins/common/lens.c -> lens-distortion.c - * plug-ins/common/lic.c -> van-gogh-lic.c - * plug-ins/common/max_rgb.c -> max-rgb.c - * plug-ins/common/mblur.c -> blur-motion.c - * plug-ins/common/nlfilt.c -> nl-filter.c - * plug-ins/common/noisify.c -> noise-rgb.c - * plug-ins/common/normalize.c -> contrast-normalize.c - * plug-ins/common/papertile.c -> tile-paper.c - * plug-ins/common/polar.c -> polar-coords.c - * plug-ins/common/randomize.c -> noise-randomize.c - * plug-ins/common/redeye.c -> red-eye-removal.c - * plug-ins/common/retinex.c -> contrast-retinex.c - * plug-ins/common/sample_colorize.c -> sample-colorize.c - * plug-ins/common/scatter_hsv.c -> noise-hsv.c - * plug-ins/common/sel_gauss.c -> blur-gauss-selective.c - * plug-ins/common/semiflatten.c -> semi-flatten.c - * plug-ins/common/smooth_palette.c -> smooth-palette.c - * plug-ins/common/snoise.c -> noise-solid.c - * plug-ins/common/sobel.c -> edge-sobel.c - * plug-ins/common/spheredesigner.c -> sphere-designer.c - * plug-ins/common/spread.c -> noise-spread.c - * plug-ins/common/struc.c -> apply-canvas.c - * plug-ins/common/threshold_alpha.c -> threshold-alpha.c - * plug-ins/common/tileit.c -> tile-small.c - * plug-ins/common/tiler.c -> tile-seamless.c - * plug-ins/common/uniteditor.c -> unit-editor.c - * plug-ins/common/unsharp.c -> unsharp-mask.c - * plug-ins/common/vinvert.c -> value-invert.c - * plug-ins/common/vpropagate.c -> value-propagate.c - * plug-ins/common/webbrowser.c -> web-browser.c - * plug-ins/common/whirlpinch.c -> whirl-pinch.c - * plug-ins/common/zealouscrop.c -> crop-zealous.c - - * plug-ins/common/plugin-defs.pl: changed accordingly. - - * plug-ins/common/Makefile.am: regenerated. - -2008-03-24 Sven Neumann - - * app/actions/documents-commands.c - (documents_remove_dangling_foreach): also remove the dangling item - from GtkRecentManager. - -2008-03-24 Sven Neumann - - Do not any longer keep the document history in two places. We only - use GtkRecentManager now: - - * app/core/Makefile.am - * app/core/gimp-documents.[ch]: removed these files. - - * app/core/gimpdocumentlist.c: removed code to load and save the - "documents" file. - (gimp_document_list_add_uri): call gimp_recent_list_add_uri() here. - - * app/core/gimpimagefile.[ch]: added function to set the mime-type. - - * app/core/gimp.c (gimp_restore): removed code to load the - document history. - (gimp_real_exit): removed code to save it. - - * app/core/gimp-gui.[ch]: extended the vtable with a method to - populate the document list. - - * app/gui/gui-vtable.c: added code to populate the document history - from the list of recently used files kept by GtkRecentManager. - - * app/gui/gui.c (gui_restore_callback): load the recent files here. - - * app/file/file-open.c - * app/file/file-save.c: no need to call gimp_recent_list_add_uri() - any longer as gimp_document_list_add_uri() does that for us now. - - * app/actions/documents-commands.c (documents_clear_cmd_callback): - purge the items from GtkRecentManager. Also changed the dialog to - emphasize that this operation now affects the document history in - all applications. - - * docs/gimp.1.in: removed reference to "documents" file. - -2008-03-23 Mukund Sivaraman - - * HACKING: Updated section on getting dependencies, as we don't - want to encourage using deps from svn for building GIMP. - -2008-03-24 Sven Neumann - - * plug-ins/common/dicom.c (dicom_loader): fixed potential crash on - empty 16 bit images. - -2008-03-23 Michael Natterer - - * app/widgets/gimpdialogfactory.c (gimp_dialog_factory_add_dialog): - don't set the dialog's window geometry if it is already visible. - Fixes empty display moving and shouldn't affect anything else - since we always want to position dialogs before they are shown. - -2008-03-23 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): use the - right GimpDisplayOptions to set the initial visibility of the - shell's widgets. - -2008-03-23 Michael Natterer - - * app/display/gimpstatusbar.c: implement GtkWidget::size_request() - and also consider the children which can be invisible when the - display is empty. - - * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): - set the minimum height of the display to menubar + statusbar - height. - -2008-03-23 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_expose): return TRUE after calling - gimp_display_shell_canvas_expose_image(). - -2008-03-23 Sven Neumann - - * app/dialogs/dialogs.c - * app/display/gimpdisplayshell.c: changed "gimp-no-image-window" to - "gimp-empty-image-window". - -2008-03-23 Michael Natterer - - * app/display/gimpdisplayshell-scale.c - (gimp_display_shell_scale_resize): always need to fully expose the - canvas now that "redisplay" was removed. - -2008-03-23 Michael Natterer - - Never shrink the empty display when filling it, only grow: - - * app/display/gimpdisplayshell.[ch] - * app/display/gimpdisplayshell-scale.[ch]: add "gboolean - grow_only" parameters to shrink_wrap() APIs which restricts - resizing of the window to growing. - - * app/display/gimpdisplayshell-scale.[ch] - (gimp_displaY_shell_scale_resize): remove boolean "redisplay" - parameter because is was always passed as TRUE. Add boolean - "grow_only" instead and pass it on to shrink_wrap() - - * app/actions/view-commands.c - * app/display/gimpdisplayshell-handlers.c: pass grow_only = FALSE. - - * app/display/gimpdisplayshell.c (gimp_display_shell_idle_fill): - pass grow_only = TRUE. - -2008-03-23 Michael Natterer - - * app/dialogs/dialogs.[ch]: added a dialog factory for displays - and register "gimp-no-image-window" with it. - - * app/display/gimpdisplay.[ch]: add a GimpDialogFactory parameter - to gimp_display_new() and pass it on to gimp_display_shell_new(). - - * app/display/gimpdisplayshell.[ch]: keep the passed - GimpDialogFactory around. When the shell becomes empty, add it to - the dialog factory and resize it to the remembered size; when it - becomes non-empty, remove it from the dialog factory again. - - * app/gui/gui-vtable.c: pass the display dialog factory to - gimp_display_new(). - -2008-03-23 Michael Natterer - - * app/widgets/gimpdialogfactory.c: cleanup (move variables to - local scopes), improve debugging outout. - - (gimp_dialog_factory_remove_dialog): disconnect signal handlers - and unset any session management data which is attached to the - widget, so this function can really be used to remove a dialog - from the factory. - -2008-03-23 Michael Natterer - - * app/widgets/gimpsessioninfo.c (gimp_session_info_get_geometry): - use gdk_drawable_get_size() instead of looking at - widget->allocation since the latter is not yet updated if this - function is called from the dialog factory's "configure-event" - callback. Fixes remembering of dialog sizes within one session. - -2008-03-23 Michael Natterer - - * app/core/gimpcontext.c (gimp_context_real_set_display): set the - image also if it is NULL. - -2008-03-22 Sven Neumann - - * libgimp/gimppixbuf.c: fixed gtk-doc syntax. - -2008-03-22 Sven Neumann - - * themes/Default/gtkrc - * app/widgets/gimpmenudock.c: reduced minimum dock width to 200 - pixels. - - * etc/sessionrc: use -0 instead of -1, just like in X geometry - strings. Changed default dock sizes to be taller but less wide. - - * app/widgets/gimpsessioninfo.c: changed code to parse -0 from the - sessionrc file and to deal more correctly with negative offsets. - -2008-03-22 Sven Neumann - - * app/widgets/gimpsessioninfo.c (gimp_session_info_set_geometry): - deal with negative positions read from the sessionrc file and - interpret them as a hint to align the window with the right, - respective bottom edge of the screen. - - * etc/sessionrc: position the toolbox in the upper left, the - additional dock in the upper right corner of the screen. - -2008-03-21 Sven Neumann - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): tweaked - opacity calculation so that the opacity is only increased with - smaller font sizes. - -2008-03-21 Sven Neumann - - * app/core/gimptemplate.[ch]: moved defines to the header file and - changed to 640x400 which is actually almost the golden mean as - claimed by the comment. - - * app/display/gimpdisplayshell.c: use the defines here. - -2008-03-21 Sven Neumann - - * app/core/gimptemplate.c: increased the size of the default image - (to the next Fibonacci number for the development version and to - 600x480 for GIMP 2.6). - -2008-03-21 Sven Neumann - - * etc/controllerrc: bind Alt-Cursor Key to tools-value-1 instead - of context-opacity (tools-value-1 is equivalent to context-opacity - for paint tools). - -2008-03-21 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_fill_idle): - gtk_window_present() the image window to make sure that images - aren't opened into a minimized image window. - -2008-03-21 Michael Natterer - - * configure.in: revert new glib dependency. - -2008-03-21 Michael Natterer - - * configure.in: require glib >= 2.16.1. Don't warn about - deprecations for glib >= 2.19.0. - - Also forgot to commit the removal of --enable-toolbox-menu. - -2008-03-21 Sven Neumann - - * app/gimp-log.[ch]: introduced log domain "menus". - - * app/menus/plug-in-menus.c: use gimp-log for debug output. - -2008-03-21 Michael Natterer - - * app/display/gimpdisplayshell-close.c (gimp_display_shell_close): - invoke the quit action instead of calling gimp_exit() so its - sensitivity is taken into account. - -2008-03-21 Michael Natterer - - Remove the toolbox menu: - - * configure.in: remove --enable-toolbox-menu option. - - * menus/Makefile.am - * menus/toolbox-menu.xml.in: removed. - - * menus/image-menu.xml.in: add the debug menu here. - - * menus/menus.xsl: remove transformations depending on whether - there is a toolbox menu or not. - - * app/menus/Makefile.am - * app/menus/toolbox-menu.[ch]: removed. - - * app/menus/menus.c: remove the toolbox menu but keep the - UI manager around so we can configure its actions - separate from normal docks. - - * app/actions/image-actions.c (image_actions): remove the action - for the toolbox menubar. - - * app/widgets/gimptoolbox.c: remove all menu code. - - * app/plug-in/plug-in-menu-path.c: map plug-in registered toolbox - menu items to their new location in the image menu - unconditionally. - - * plug-ins/common/screenshot.c - * plug-ins/common/uniteditor.c - * plug-ins/script-fu/script-fu.c - * plug-ins/script-fu/scripts/web-browser.scm - * plug-ins/twain/twain.c - * plug-ins/winsnap/winsnap.c: remove menu registrations under - /File and change /Help to /Help. Leave - /Xtns untouched until its final location and name are - decided. - -2008-03-21 Michael Natterer - - * app/widgets/gimpdock.h (struct GimpDock): added member "ID" - for themeing. - - * app/widgets/gimpdock.c (gimp_dock_init): assign unique IDs - and set unique widget names based on the ID. - - (gimp_dock_style_set): set individual styles for each dock based - on the widget name so docks on different screens get the correct - font size. Use PANGO_SCALE_SMALL instead of a hardcoded factor of - 0.8. - -2008-03-21 Sven Neumann - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-gegl-24.png: removed... - - * themes/Default/images/stock-gegl-22.png: ... and added a cropped - version that goes better with the other tool icons. - - * libgimpwidgets/gimpstock.c: changed accordingly. - -2008-03-21 Michael Natterer - - * app/widgets/gimpdock.c (gimp_dock_style_set): some experimental - and pretty evil code which reduces the font size in docks by 20%. - -2008-03-21 Michael Natterer - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): make sure - the drop label's opacity scales with its size so we don't end up - with tiny text at 10% opacity. - -2008-03-20 Michael Natterer - - * app/gui/gui-vtable.c (gui_display_create): add back code that - made sure the newly created display/image combo is the user - context's active one. - -2008-03-20 Martin Nordholts - - * app/display/gimpdisplayshell-close.c - (gimp_display_shell_close): gimp_exit() when closing the "no - image" window. - -2008-03-20 Martin Nordholts - - * app/gui/gui-vtable.c: Fix stupid mistake in previous commit... - -2008-03-20 Martin Nordholts - - * app/gui/gui-vtable.c - (gui_display_create): Make the logic clearer. - (gui_get_empty_display): New helper function. - -2008-03-20 Sven Neumann - - * app/gui/gui.c (gui_restore_after_callback): create the empty - display before the other windows. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): center - the empty window and create additional image windows under the - mouse cursor. Just an experiment ... - -2008-03-20 Sven Neumann - - * app/config/gimpguiconfig.c: changed default values for - "toolbox-window-hint" and "dock-window-hint" to "utility". - - * app/widgets/gimptoolbox.c (gimp_toolbox_new): changed window - title to "Toolbox". - -2008-03-20 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): make it - work when called with display->image == NULL. Use a randomly - picked canvas size for now, more later. - - (gimp_display_shell_fill): add missing call to - gimp_display_shell_scale_changed(). - - * app/gui/gui.c (gui_restore_after_callback): create an empty - display. - -2008-03-20 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c (get_protocols): guard against - g_vfs_get_supported_uri_schemes() returning NULL. - -2008-03-20 Sven Neumann - - * app/plug-in/gimppluginprocedure.c - (gimp_plug_in_procedure_set_file_proc): don't allow "file:" to be - registered as prefix. This seems to happen with the uri-gio plug-in - when no gvfs backends are installed. - -2008-03-20 Michael Natterer - - * app/display/gimpdisplayshell.[ch]: shrink-wrap the newly filled - empty display in an idle function. - -2008-03-20 Sven Neumann - - * plug-ins/uri/gimpmountoperation.c: make the dialogs transient to - the progress window if no parent or screen has been set. - -2008-03-20 Sven Neumann - - * plug-ins/common/gif-save.c: added a sanity check and abort when - the image is too large. - -2008-03-19 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): enable the right click - menu on the empty display. - -2008-03-19 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): use - the desktop default cursor for the empty display. - -2008-03-19 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_empty): the - code to reset the cursor got lost when introducing this function. - - * app/display/gimpdisplayshell-dnd.c - (gimp_display_shell_dnd_init): remove redundant casts. - -2008-03-19 Michael Natterer - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): make the - scale factor of the label 4/5 instead of 2/3 of the canvas and - move the factor out of the MIN(). - -2008-03-19 Michael Natterer - - * app/display/gimpdisplay-foreach.[ch] (gimp_displays_delete): add - boolean "quit" parameter and leave the empty display open when it - is FALSE. - - * app/dialogs/quit-dialog.c - * app/actions/file-commands.c: pass quit = FALSE for "close all". - - * app/gui/gui.c: pass quit = TRUE when quitting. - - * app/actions/file-actions.c: fix sensitivity of "Close all". - - * app/actions/view-actions.c: fix sensitivity of "Close". - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c: clean up after Martin. - -2008-03-19 Michael Natterer - - * app/actions/view-commands.c: remove useless include. - -2008-03-19 Martin Nordholts - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_expose): Refactor to emphasize logic. - (gimp_display_shell_canvas_expose_image) - (gimp_display_shell_canvas_expose_drop_zone): New helper - functions. - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_expose): return FALSE so that the - default drag highlighting works. - - * app/display/gimpdisplayshell-dnd.c: only set the canvas as drop - target, not the whole shell. - - * app/display/gimpdisplayshell.c: delay the call to - gimp_display_shell_dnd_init() until after the canvas has been - created. - -2008-03-19 Sven Neumann - - * app/core/gimppalette-load.c (gimp_palette_load): skip empty lines. - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpstatusbar.[ch]: hide/show the cursor label and - the unit and scale combo-boxes. - -2008-03-19 Michael Natterer - - * app/display/gimpdisplay.[ch]: add gimp_display_empty()/fill() - which turns it into an empty display and back. - - * app/display/gimpdisplayshell.[ch]: add same api here. - - * app/display/gimpdisplayshell-close.c - * app/gui/gui-vtable.c: use the new functions instead of having - the code here. - - * app/display/gimpdisplayshell-selection.c - (gimp_display_shell_selection_control): stop the timeout and free - the segments when this function is called on an empty display. - -2008-03-19 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c (copy_uri): fixed stupid bug. - -2008-03-19 Sven Neumann - - * app/paint-funcs/paint-funcs.c: minor formatting cleanup. - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayshell-title.c: changed to only append - GIMP_ACRONYM in the window title and not affect the status-bar. - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayshell.[ch] - * app/display/gimpdisplayshell-scale.[ch]: moved - gimp_display_shell_set_initial_scale() to gimpdisplayshell-scale.c. - - * app/display/gimpdisplayoptions.c: reverted last change, we want - to keep the status-bar around. - -2008-03-19 Michael Natterer - - * app/display/gimpdisplayshell.[ch] - (gimp_display_shell_set_initial_scale): factored out this function - which calculates the zoom factor for new images. Also returns the - size of the canvas for that zoom factor. - - * app/gui/gui-vtable.c (gui_display_create): use it to set the - initial scale of images loaded into the empty display, but don't - set the display's size yet. - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayoptions.c - (gimp_display_options_no_image_class_init): hide the status-bar, - at least for now. - -2008-03-19 Sven Neumann - - * app/widgets/gimpdockable.c - * app/widgets/gimpwidgets-utils.[ch]: moved utility function for - setting attributes on a PangoLayout out of gimpdockable.c. - - * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): use a - bold font and paint the layout with transparency. - -2008-03-19 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_update_icon): - deal with NULL image and unset the icon. - - * app/display/gimpdisplay.c (gimp_display_set_image): unset the - icon when no image is set. - - * app/display/gimpdisplayshell-title.c - (gimp_display_shell_format_title): use GIMP_NAME as the window - title when no image is set. Append GIMP_ACRONYM otherwise. - -2008-03-18 Michael Natterer - - * app/display/gimpdisplayoptions.[ch]: add new options object - for the "no image" display appearance. - - * app/display/gimpdisplayshell.[ch]: keep one of them around. - - * app/display/gimpdisplayshell-appearance.[ch]: use the options - object when the display is empty. Add guards against no image - to some functions. Add gimp_display_shell_appearance_update() - which sets all options according to the current display state - (normal, fullscreen, no image). - - * app/actions/view-actions.c: don't allow to configure the GUI - of the empty display. - - * app/display/gimpdisplayshell-callbacks.c: use the new appearance - update function instead of doing it all here. - - * app/display/gimpdisplayshell-close.c - * app/gui/gui-vtable.c: update the appearance when clearing or - filling the display. - - * app/display/gimpdisplayshell-selection.c: forgot some guards - against empty displays. - -2008-03-18 Michael Natterer - - First draft of the "no image open" window, which is implemented as - a display without image (a view with NULL model). Didn't change - the display's appearance yet so I can first make sure the display - without image works properly in all details before hiding these - details. - - * app/core/gimp-gui.[ch]: add "gimp" parameter to display_create() - and allow "image" to be NULL. - - * app/core/gimpcontext.c (gimp_context_real_set_display): a - display's image can be NULL now. - - * app/display/gimpdisplay.[ch]: add Gimp and GimpDisplayConfig - members. Add Gimp parameter to gimp_display_shell_new(). Changed - gimp_display_reconnect() to gimp_display_set_image() and allow to - set a NULL image. - - * app/gui/gui-vtable.c (gui_display_create): if there is a single - display without an image, call gimp_display_set_image() on that - display instead of creating a new one. - - * app/display/gimpdisplayshell-close.c: if the last display is - closed, don't close it but make it empty. Factored out that code - to gimp_display_shell_really_close(). - - * app/display/gimpdisplayshell-dnd.c: when dropping uris on an - empty display, open the first one into that display and the other - ones as layers of the newly opened image. This is consistent with - dropping on an existing image but maybe needs some discussion. - - * app/display/gimpdisplayshell-callbacks.c: bail out early in the - tool event callback so tools never have to deal with empty - displays. In expose(), draw the drop zone on the empty display. - - * app/display/gimpdisplayshell-title.c: set the empty display's - title to "Gimp - Drop Files". - - * app/display/gimpdisplay-foreach.c - * app/display/gimpdisplay-handlers.c - * app/display/gimpdisplayshell-appearance.c - * app/display/gimpdisplayshell-autoscroll.c - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-cursor.c - * app/display/gimpdisplayshell-dnd.c - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-filter-dialog.c - * app/display/gimpdisplayshell-handlers.c - * app/display/gimpdisplayshell-layer-select.c - * app/display/gimpdisplayshell-preview.c - * app/display/gimpdisplayshell-render.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-scroll.c - * app/display/gimpdisplayshell-selection.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpdisplayshell.c - * app/display/gimpnavigationeditor.c - * app/display/gimpstatusbar.c: use display->gimp and - display->config instead of going via the image. Guard against - empty displays in some few places (most places can't be - called). Where needed, use the canvas' dimensions instead of the - image's dimensions so scroll offsets and scrollbars still have - sane values instead of the last image's ones. - - * app/actions/actions.c (action_data_get_gimp) - (action_data_get_context): use display->gimp instead of - display->image->gimp. - - * app/actions/edit-commands.c (edit_paste_cmd_callback): redirect - to "paste as new" if there is an empty display. - - * app/actions/tools-commands.c (tools_select_cmd_callback): don't - initialize the new tool on an empty display. - - * app/actions/view-actions.c (view_actions_update): changed lots - of sensitivity settings to be insensitive when there is no image - (instead of no display). - - * app/actions/view-commands.c: use the display's config object - instead of gimp's. - -2008-03-18 Michael Natterer - - * app/display/gimpcanvas.[ch]: add gimp_canvas_draw_drop_zone() - which simply renders a big "Drop Here" on the canvas. Replaced - Gimp member and construct property by GimpDisplayConfig. - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): changed - accordingly. - -2008-03-18 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c (uri_progress_callback): - corrected last change. - -2008-03-18 Sven Neumann - - * app/config/gimpguiconfig.c (DEFAULT_WEB_BROWSER): changed - default web-browser to xdg-open. Fixes bug #522483. - -2008-03-18 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c: only update the progress up to - ten times per second. - -2008-03-18 Sven Neumann - - * plug-ins/uri/gimpmountoperation.c: set alternative button order - on the password dialog (same change done in GTK+). - -2008-03-18 Sven Neumann - - * plug-ins/uri/Makefile.am - * plug-ins/uri/gimpmountoperation.[ch]: added a temporary copy of - GtkMountOperation until we depend on the next stable GTK+ release. - Converted to GIMP namespace to avoid symbol collisions. - - * plug-ins/uri/uri-backend-gio.c: use the new mount operation. - -2008-03-17 Sven Neumann - - * plug-ins/common/png.c: formatting. - -2008-03-13 Michael Natterer - - * plug-ins/common/tiff-load.c (load_image): set the original - filename only if all pages were loaded as layers; if a subset was - loaded, set the filename to ".tiff-n-of-m-pages" so a - simple "save" won't overwrite the original file without the user - changing the filename explicitely. - -2008-03-13 Sven Neumann - - * plug-ins/common/tiff-load.c (load_image): set a filename on the - image, even when not all images are imported as layers (bug #521436). - -2008-03-12 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c: improved password dialog. - -2008-03-12 Michael Natterer - - * app/actions/data-commands.c - * app/actions/debug-commands.c - * app/actions/dockable-commands.c - * app/dialogs/stroke-dialog.c - * app/display/gimpdisplayshell-handlers.c - * app/gui/gui-message.c - * app/gui/gui.c - * app/tools/gimpforegroundselectoptions.c - * app/tools/gimpinkoptions-gui.c - * app/widgets/gimpcolordialog.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimpcontainerview-utils.c - * app/widgets/gimpdock.c - * app/widgets/gimpdockable.c - * app/widgets/gimpsessioninfo-book.c - * app/widgets/gimpsessioninfo-dock.c - * app/widgets/gimptoolbox.c - * app/widgets/gimpunitcombobox.c - * app/widgets/gimpviewablebox.c - * libgimp/gimpexport.c - * libgimpmodule/gimpmodule.h - * libgimpwidgets/gimpenumwidgets.c - * libgimpwidgets/gimpframe.c - * libgimpwidgets/gimpoldwidgets.c - * libgimpwidgets/gimpwidgets.c - * plug-ins/MapObject/mapobject_ui.c - * plug-ins/common/papertile.c - * plug-ins/common/sinus.c - * plug-ins/flame/flame.c - * plug-ins/helpbrowser/gimpthrobber.c - * plug-ins/script-fu/scheme-wrapper.c - * plug-ins/script-fu/script-fu-console.c: use accessors instead of - accessing GtkBin.child and GtkPaned.child1,2 directly. - -2008-03-12 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c: added password and question - dialogs needed for mounting volumes. This code is untested. - -2008-03-12 Åsmund SkjÃĻveland - - * configure.in: Added nn to ALL_LINGUAS. - -2008-03-12 Sven Neumann - - * plug-ins/uri/uri.c: updated copyright. - - * plug-ins/uri/uri-backend-gio.c: ask the GVfs backend for the - supported URI schemes. - -2008-03-11 Sven Neumann - - * plug-ins/uri/uri-backend-gio.c: improved error handling. - -2008-03-11 Sven Neumann - - * INSTALL - * configure.in: added --without-gio configure option. - - * plug-ins/uri/Makefile.am: prefer the GIO backend. - - * plug-ins/uri/uri-backend-gio.c - * plug-ins/uri/uri-backend-libcurl.c - * plug-ins/uri/uri-backend-gnomevfs.c: improved progress messages. - -2008-03-11 Sven Neumann - - * configure.in: added a check for gio-2.0. - - * plug-ins/uri/Makefile.am - * plug-ins/uri/uri-backend-gio.c: added a first draft of an URI - plug-in based on GIO/GVfs. - -2008-03-11 Michael Natterer - - * app/core/gimpbrushgenerated.c: reorder and rename local - functions and prototypes to be consistent with other objects. Misc - minor cleanup. - -2008-03-10 Sven Neumann - - * app/widgets/gimpdockable.[ch] - * app/widgets/gimpdockbook.c: moved code for the drag widget to - GimpDockable. Use semi-bold text for the drag widget also. - -2008-03-10 Sven Neumann - - * app/paint/gimpink.c (gimp_ink_motion): formatting. - -2008-03-10 Michael Natterer - - * app/vectors/gimpanchor.c (gimp_anchor_copy): use g_slice_dup() - instead of copying the struct contents manually. - -2008-03-09 Michael Natterer - - Fix mishandling of the "antialias" GParamSpec. Fixes bug #521069: - - * app/tools/gimpselectionoptions.c: remove - gimp_selection_options_reset() which used to set the default for - "antialias" depending on the tool type (which is impossible since - the antialias GParamSpec only exists once, and not once for each - subclass). - - * app/tools/gimpforegroundselectoptions.c: override the antialias - property here and default to FALSE. - -2008-03-09 Michael Natterer - - * app/tools/gimprectangleselecttool.[ch] - * app/tools/gimprectangleselectoptions.[ch] - * app/tools/gimpellipseselecttool.[ch] - * app/tools/gimp-tools.c: s/Rect/Rectangle/ and s/rect/rectangle/ - in types and function names. - -2008-03-09 Michael Natterer - - * app/tools/Makefile.am - * app/tools/gimpiscissorsoptions.[ch] - * app/tools/gimpregionselectoptions.[ch]: new options classes. - - * app/tools/gimpselectionoptions.[ch]: remove the options here. - Also remove some leftover rectangle options cruft that is in its - own files since long ago. - - * app/tools/gimpbycolorselecttool.c - * app/tools/gimpfuzzyselecttool.c - * app/tools/gimpiscissorstool.[ch] - * app/tools/gimpregionselecttool.[ch] - * app/widgets/gimpselectioneditor.c: changed accordingly. - -2008-03-09 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_setup_snap_offsets): Make the GimpCoords used - for snap calculations depend on the precision mode of the - rectangle. This gives a more pleasant experience when resizing and - moving the rectangle with an image zoom factor larger than 100%. - -2008-03-08 Sven Neumann - - Experimental attempt to gain a little more horizontal space for - the tool options: - - * app/widgets/gimptooloptionseditor.c: removed the shadow from the - viewport and the border from the vbox. - - * app/widgets/gimpdockable.c: use a semibold label for the title. - -2008-03-08 Sven Neumann - - * app/tools/gimpflipoptions.c - * app/tools/gimpmoveoptions.c - * app/tools/gimpselectionoptions.c - * app/tools/gimptransformoptions.c: don't add the label into the - stock box, use an extra hbox with 2 pixels spacing. - -2008-03-08 Martin Nordholts - - * app/tools/gimppolygonselecttool.c: Don't draw the handle for a - vertex while it is being moved. - -2008-03-08 Martin Nordholts - - * app/tools/gimprectangletool.c: Added TODO on how to improve the - code by changing the way the rectangle is represented internally. - -2008-03-07 Sven Neumann - - * etc/controllerrc: changed default mouse-wheel bindings to act on - the active tool instead of controlling the context. - -2008-03-07 Sven Neumann - - * app/display/gimpdisplayshell-preview.c: minor optimization. - -2008-03-06 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): minor formatting fixes. - -2008-03-06 Michael Natterer - - * app/pdb/gimppdb-utils.[ch]: add gimp_pdb_get_vectors_stroke() - which is a replacement for gimp_vectors_stroke_get_by_ID() and - sets an error message if the stroke doesn't exist. - - * tools/pdbgen/pdb/vectors.pdb: use it. - - * app/pdb/vectors_cmds.c: regenerated. - -2008-03-06 Sven Neumann - - * app/actions/tools-actions.c - * app/actions/tools-commands.[ch] - * app/tools/gimptransformtool.c: allow to control the preview - opacity by actions (defaults to < to > keys). - -2008-03-06 Sven Neumann - - * app/tools/gimptransformtool.c - * app/tools/gimptransformoptions.[ch] - * app/display/gimpdisplayshell-preview.c: take the preview opacity - from the transform tool options. Based on a patch from Tom Lechner. - Closes bug #520690. - -2008-03-06 Sven Neumann - - * app/display/gimpdisplayshell-preview.c: don't do the blending - here, just apply the opacity on the pixbuf's alpha channel. - -2008-03-05 Sven Neumann - - * app/display/gimpdisplayshell-preview.c: applied a modified and - further optimized version of the patch from Tom Lechner as - attached to bug #167926. This makes the transform preview take - the layer opacity into account. Needs some more work... - -2008-03-05 Sven Neumann - - * app/tools/gimptransformtool.[ch]: applied some unrelated - cleanups from a patch from Tom Lechner (from bug #167926). - -2008-03-05 Michael Natterer - - * app/display/gimpdisplayshell.h: changed PROJ_ROUND() macros to - use RINT() so they work correctly with negative numbers. - - * app/tools/gimpdrawtool.c - (gimp_draw_tool_draw_line) - (gimp_draw_tool_draw_dashed_line) - (gimp_draw_tool_draw_rectangle) - (gimp_draw_tool_draw_arc) - (gimp_draw_tool_draw_boundary): use floating-point coordinate - transform functions again. These functions were changed to use - integer transform functions in 2004 (!!) which broke sub-pixel - precision drawing for stuff like straight-line and blend tool - and also sub-pixel drawing of the brush outline. - - Should be backported to 2.4 after it has shown no ill effects in - trunk. - -2008-03-04 Sven Neumann - - * app/actions/edit-commands.c (edit_copy_visible_cmd_callback) - (edit_cut_cmd_callback): added statusbar messages informing the - user that pixels have been transferred to the clipboard. - -2008-03-04 Sven Neumann - - * app/core/gimpdrawable-transform.c (gimp_drawable_transform_cut): - clear the selection after cutting it as gimp_selection_extract() - doesn't do this for us any longer. See bug #510534. - -2008-03-02 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-coords.c - (gimp_display_shell_eval_event): applied slightly modified patch - from Alexia Death as attached to bug #508639. - -2008-03-01 Martin Nordholts - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_draw): Only draw the grabbed point, not - all points. Drawing all points adds unnecessary clutter to the - user interface. - (gimp_polygon_select_tool_select_closest_point): Handle drawing of - grabbed points. - -2008-02-29 Michael Natterer - - * app/gui/ige-mac-menu.[ch]: synced copies from upstream. - -2008-02-28 Michael Natterer - - * app/core/gimpcurve.[ch]: get rid of fixed-size arrays and - allocate the points and curve arrays dynamically. Added "n-points" - and "n-samples" CONSTRUCT_ONLY properties. Renamed member "curve" - to "samples". Lots of code changes to work with dynamic limits - rather than 17 and 256. - - * app/core/gimpdrawable-curves.c - * app/gegl/gimpcurvesconfig.c - * app/tools/gimpcurvestool.c - * app/widgets/gimpcurveview.c: changed accordingly. - -2008-02-28 Michael Natterer - - * cursors/Makefile.am - * cursors/gimp-tool-cursors.xcf - * cursors/tool-polygon-select.png - * cursors/xbm/tool-polygon-select.xbm - * cursors/xbm/tool-polygon-select-mask.xbm - * app/widgets/widgets-enums.h - * app/widgets/gimpcursor.c: new cursor for polygon select. - - * app/tools/gimppolygonselecttool.c: use it. - -2008-02-27 Sven Neumann - - * INSTALL - * configure.in: depend on GEGL 0.0.16 or newer. - -2008-02-27 Sven Neumann - - * app/core/gimpdrawable-transform.c (gimp_drawable_transform_affine): - pass the direction parameter down to - gimp_drawable_transform_tiles_affine() instead of hardcoding it to - GIMP_TRANSFORM_FORWARD. Fixes bug #518910. - -2008-02-27 Sven Neumann - - * app/gui/gui-vtable.c (gui_display_create): added a sanity check - which might help to catch the problem reported in bug #518905. - -2008-02-26 Sven Neumann - - * app/Makefile.am (gimp_2_5_LDFLAGS): don't assume that global - AM_LDFLAGS and per-target LD_FLAGS would sum up and explicitly add - AM_LDFLAGS to gimp_2_5_LDFLAGS. - -2008-02-26 Sven Neumann - - * plug-ins/print/print.h (struct PrintData): removed unused field. - - * plug-ins/print/print-page-layout.c: set a minimum size of 1/100 - of the paper size. - -2008-02-26 Michael Natterer - - * app/tools/gimppolygonselecttool.c: draw handles at the corners - and use the MOVE cursor modifier when we are moving them. Fix draw - tool pause/resume in button_press() plus some minor cleanup. - -2008-02-26 Sven Neumann - - * plug-ins/print/print-page-layout.[ch] - * plug-ins/print/print.c: pressing F1 on the "Image Settings" tab - calls the GIMP help browser. - -2008-02-26 Sven Neumann - - * libgimpwidgets/gimpchainbutton.c: use a private inner class - directly derived from GtkWidget for drawing the lines. This saves - us two input windows. - -2008-02-26 Sven Neumann - - * plug-ins/print/print-preview.c: take the reading direction into - account and do the right thing for RTL languages. - -2008-02-26 Kevin Cozens - - * plug-ins/script-fu/scripts/frosty-logo.scm: Commited slightly - modified patch from LightningIsMyName. Fixes bug #472316. The - appearance of the sparkle layer could be better. - -2008-02-26 Michael Natterer - - * app/display/gimpdisplayshell-transform.[ch] - (gimp_display_shell_transform_points) - * app/tools/gimpdrawtool.[ch] (gimp_draw_tool_draw_lines): take - arrays of GimpVector2 instead of arrays of gdouble to represent - the input points. - - * app/display/gimpdisplayshell-draw.c - * app/tools/gimppolygonselecttool.c - * app/tools/gimpfreeselecttool.c: don't cast the GimpVector2 arrays - to double arrays when passing them to above functions. - - * app/tools/gimpiscissorstool.c: create a temporary GimpVector2 - array instead of a temporary gdouble array. - -2008-02-26 Michael Natterer - - * app/tools/gimppolygonselecttool.c: rename member num_points to - n_points and various small cleanups all over the place. - -2008-02-26 Sven Neumann - - * configure.in: use AM_PROG_CC_C_O to fix warning with automake 1.10. - Removed obsolete call to AM_PROG_CC_STDC. - -2008-02-26 Sven Neumann - - * app/version.c (gimp_show_library_version): made the library - version information easier to translate. - -2008-02-26 Tor Lillqvist - - * app/version.c (gimp_show_library_versions): Show also GEGL - version. - -2008-02-26 Sven Neumann - - * plug-ins/print/print-preview.c: create a Cairo image surface - from the data returned from gimp_drawable_get_thumbnail() instead - of using an intermediate GdkPixbuf. This code should eventually - end up in libgimpui. - -2008-02-26 Sven Neumann - - * docs/gimp.1.in: document the "--version --verbose" option. - -2008-02-26 Tor Lillqvist - - * app/version.[ch]: New files. Rename gimp_show_version() to - gimp_version_show() and move here. When given both --version and - --verbose, print build-time and run-time versions of the most - important dependencies. - - * app/Makefile.am: Add them. - - * app/main.c: Call gimp_version_show(). - - * app/Makefile.am: Use -mwindows only for the GUI gimp, not for - gimp-console. - -2008-02-26 Sven Neumann - - * plug-ins/print/print-preview.c - * plug-ins/print/print-page-layout.c: let the preview widget - allocate a reasonable size. - -2008-02-26 Sven Neumann - - * plug-ins/print/print-preview.c: use a different cursor when - dragging, just like GimpScrolledPreview. - -2008-02-26 Sven Neumann - - * libgimpwidgets/gimpchainbutton.c: use event boxes without - visible window instead of drawing areas for the lines besides the - button. Fixes the background which was drawn wrongly for many - themes. - -2008-02-26 Sven Neumann - - * plug-ins/print/print-preview.[ch]: derive from GtkEventBox and - draw on the parent window. - - * plug-ins/print/print-page-layout.c: tweaked dialog layout. - -2008-02-25 Sven Neumann - - * plug-ins/print/Makefile.am - * plug-ins/print/print-utils.[ch]: added new files with utility - functions. - - * plug-ins/print/print-settings.c: use the new utility - functions for loading and saving GKeyFile. - - * plug-ins/print/print-page-setup.[ch] - * plug-ins/print/print.c: also store the page setup in an image - parasite. Fixes most of what remained to be done for bug #513291. - -2008-02-25 Sven Neumann - - * plug-ins/print/print-settings.[ch] - * plug-ins/print/print.c: code cleanup. - -2008-02-25 Sven Neumann - - * plug-ins/print/print.c (end_print): use g_timeout_add_seconds(). - -2008-02-24 Sven Neumann - - * app/actions/edit-actions.c: removed default keyboard shortcuts - from actions that work with named buffers. Use Ctrl-Shift-V as the - default keyboard shortcut for "Paste As New Image" and - Ctrl-Shift-C for "Copy Visible". - -2008-02-24 Sven Neumann - - * plug-ins/print/print.c (print_image): added missing call to - gtk_print_operation_set_unit(). - -2008-02-22 Sven Neumann - - * plug-ins/print/print.c: use GTK_STOCK_PAGE_SETUP when compiled - against GTK+ >= 2.13.0. - -2008-02-22 Sven Neumann - - * plug-ins/print/print-draw-page.c: added support for grayscale - images so we don't need to go through an extra export step. - -2008-02-22 Sven Neumann - - * plug-ins/print/print.c - * plug-ins/print/print-draw-page.[ch]: code cleanup. - -2008-02-22 Sven Neumann - - * plug-ins/common/tileit.c - * plug-ins/common/warp.c - * plug-ins/common/struc.c: fixed the same problem as in the Wind - plug-in here as well (see bug #516369). - -2008-02-22 Sven Neumann - - * plug-ins/print/print-draw-page.c (draw_page_cairo): when - printing an image with alpha channel, use a Cairo surface with - alpha channel instead of doing a blend on a white background. - -2008-02-22 Sven Neumann - - * plug-ins/print/print-draw-page.c (draw_page_cairo): access the - pixels tile-by-tile instead of row-by-row. - -2008-02-22 Sven Neumann - - * plug-ins/common/wind.c (render_wind) (render_blast): fixed calls - to gimp_drawable_mask_intersect() which was causing a crash as - reported in bug #516369. - -2008-02-21 Michael Natterer - - * app/actions/plug-in-actions.c (plug_in_actions_history_changed): - don't call plug_in_actions_update() because that updated the - sensitivity of *all* plug-in actions according to the properties - of the *current* image. Instead, look up the original GtkAction of - the history items of *this* action group and copy the sensitivity - from that action. Fixes bug #517683. - -2008-02-21 Sven Neumann - - * tools/pdbgen/app.pl (marshal_outargs): insert a missing newline - for procedures without additional return values. - - * tools/pdbgen/pdb/display.pdb: cosmetics. - - * app/pdb/brushes_cmds.c - * app/pdb/context_cmds.c - * app/pdb/display_cmds.c - * app/pdb/fonts_cmds.c - * app/pdb/gradients_cmds.c - * app/pdb/palettes_cmds.c - * app/pdb/patterns_cmds.c: regenerated. - -2008-02-21 Sven Neumann - - * plug-ins/print/print-preview.[ch]: code cleanup. - -2008-02-21 Sven Neumann - - * plug-ins/print/print-preview.[ch]: provide feedback when hovering - over the preview. - -2008-02-21 Sven Neumann - - * plug-ins/print/print-preview.c (gimp_print_preview_expose_event): - changed drawing so that strokes are not scaled. - -2008-02-20 Michael Natterer - - * app/core/gimpcurve.c: add precondition checks. - - * app/core/gimpdrawable-curves.c (gimp_drawable_curves_spline): - divide values by 255 before setting them on the curve. Fixes crash - when using curves from the PDB. - -2008-02-19 Sven Neumann - - * plug-ins/print/print-preview.c (gimp_print_preview_expose_event): - code cleanup. Always draw the preview. - -2008-02-19 Bill Skaggs - - * plug-ins/jpeg/jpeg-exif.c: correctly record dimensions when - saving an image. Fixes bug #517077. - -2008-02-19 Sven Neumann - - * app/app.c - * app/batch.c - * app/core/gimp.c - * app/gui/gui.c: use G_STRFUNC instead of hardcoding the function - name in verbose output. - -2008-02-19 Sven Neumann - - * plug-ins/script-fu/scripts/glossy.scm: actually use the "Default - Bumpmap Settings" parameter. Problem spotted by Ulf-D. Ehlert. - -2008-02-19 Sven Neumann - - * plug-ins/script-fu/scripts/glossy.scm: applied patch from - Ulf-D. Ehlert that fixes a bug in the Glossy script when used with - a pattern instead of a gradient blend (bug #517285). - -2008-02-19 Manish Singh - - * plug-ins/pygimp/gimpmodule.c: add gimp.exit(), a wrapper around - the PDB function gimp-quit. - -2008-02-18 Sven Neumann - - * app/batch.c (batch_exit_after_callback): synced cleanup - procedure with app_exit_after_callback() and documented its purpose. - -2008-02-18 Michael Natterer - - * app/tools/gimpgegltool.c (gimp_gegl_tool_config_get_property): - clean up generic property handling of generated settings classes. - -2008-02-18 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_initialize): - don't create the recent settings menu if the tool did not set a - config object. - - * app/tools/gimpgegltool.[ch]: pack the operation's settings in a - frame and add a label when there is no operation selected. - -2008-02-16 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - * app/tools/gimpforegroundselecttool.c - * app/tools/gimpimagemaptool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimppolygonselecttool.c - * app/tools/gimprectangletool.c - * app/tools/gimptransformtool.c - * app/tools/gimpvectortool.c - * app/widgets/gimpcontainerpopup.c - * app/widgets/gimppaletteview.c - * libgimpwidgets/gimpcolorhexentry.c - * libgimpwidgets/gimpnumberpairentry.c - * plug-ins/script-fu/script-fu-console.c: Unify the handling of - various "Enter" and "Space" keysyms all over the place. Fixes bug - #516544 (also see gtk bug #515047). - -2008-02-15 Kevin Cozens - - * configure.in: Adding a ; to the end of the list of mime types in - the gimp.desktop file. Fixes 'make dist'. - -2008-02-14 Michael Natterer - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpscaleentry.[ch]: cleanup. - -2008-02-14 Bill Skaggs - - Merged from weskaggs branch at Mitch's request. Will - need to update devel docs. - - Place scale entry code into separate files, no - functional changes. - - * libgimpwidgets/gimpscaleentry.c - * libgimpwidgets/gimpscaleentry.h: new files. - - * libgimpwidgets/gimpwidgets.[ch] - * libgimpwidgets/Makefile.am: changed accordingly. - -2008-02-14 Sven Neumann - - * app/text/gimpfont.c (gimp_font_get_sample_string): check if the - font has the glyphs from the sample string. Fixes bug #514021. - -2008-02-13 Bill Skaggs - - * plug-ins/common/vpropagate.c: change "darker" to "lighter" - in blurb, in response to comment #24 in bug #156545. - -2008-02-13 Bill Skaggs - - * app/widgets/gimpcolormapeditor.c: change wording of new - hint for non-indexed images. - -2008-02-12 Michael Natterer - - * app/gegl/gimpoperationcolorbalance.c - * app/gegl/gimpoperationcolorize.c - * app/gegl/gimpoperationcurves.c - * app/gegl/gimpoperationdesaturate.c - * app/gegl/gimpoperationhuesaturation.c - * app/gegl/gimpoperationlevels.c - * app/gegl/gimpoperationposterize.c - * app/gegl/gimpoperationthreshold.c - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c: added categories and very - lame descriptions. Dunno if the categories are good that way but - at least they are not NULL now. - -2008-02-12 Sven Neumann - - * app/widgets/gimpcolormapeditor.[ch]: show a hint on non-indexed - images. Based on a patch from Olof Frahm. Closes bug #438217. - -2008-02-12 Sven Neumann - - * plug-ins/gfli/fli.c: applied patch from David Capello that fixes - loading of fli files that specify width and height as zero - (interpreting this as 320x200). It also fixes a problem in an - unused code path (writing of differential color chunks). - -2008-02-12 Sven Neumann - - * app/widgets/gimplanguagestore-parser.c: inverted logic; #ifdef - is IMO easier to read than #ifndef. - -2008-02-12 Tor Lillqvist - - * app/widgets/gimplanguagestore-parser.c - (gimp_language_store_populate): Don't use the compile-time paths - to iso-codes on Windows. Instead assume iso-codes is installed in - the same location as GIMP. Make sure translated language names are - in UTF-8 by calling bind_textdomain_codeset(). - -2008-02-11 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimplanguageentry.[ch] - * app/widgets/gimptexteditor.c: turned language entry into a widget. - -2008-02-11 Michael Natterer - - * app/widgets/gimptexteditor.c (gimp_text_editor_new): enable - wrapping so the text doesn't scroll out horizontally. - -2008-02-11 Sven Neumann - - * plug-ins/pygimp/plug-ins/pyconsole.py: formatting. - -2008-02-11 Michael Natterer - - * app/core/gimpcurve.[ch]: add gimp_curve_get_point(). - - * app/gegl/gimpcurvesconfig.c - * app/widgets/gimpcurveview.c: use it instead of accessing the - points array directly. - -2008-02-11 Sven Neumann - - * libgimpthumb/Makefile.am (libgimpthumb_2_0_la_LIBADD): - explicitly added GLIB_LIBS. Fixes bug #515566. - -2008-02-11 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesource.c: context_id argument was - removed from the process() call of GeglOperationSource. - -2008-02-10 Michael Natterer - - * app/widgets/gimpeditor.c: add button-relief style property which - defaults to NONE. - -2008-02-10 Bill Skaggs - - * app/widgets/gimpeditor.c: draw editor buttons without - relief, see bug #515621. - -2008-02-09 Bill Skaggs - - * plug-ins/common/ripple.c: add a "phase shift" control, - for interactive use only. Fixes bug #515144. - -2008-02-09 Michael Natterer - - * tools/pdbgen/pdb/color.pdb: don't include - - * app/pdb/color_cmds.c: regenerated. - -2008-02-09 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesource.c: - %s/get_defined_region/get_bounding_box/ - %s/adjust_result_region/get_cached_region/ - -2008-02-09 Michael Natterer - - * app/core/gimpcurve.[ch]: keep the anchor points as an array of - GimpVector2 instead of plain doubles. - - * app/gegl/gimpcurvesconfig.c - * app/widgets/gimpcurveview.c: changed accordingly. - -2008-02-09 Michael Natterer - - * app/widgets/gimpcurveview.c (gimp_curve_view_draw_point): cleanup. - -2008-02-09 Michael Natterer - - * app/widgets/gimpcurveview.[ch]: port internal cursor stuff to - gdouble, fix off-by-one in curve drawing, fix drawing artefact in - handle drawing by starting drawing on the handle's outline and not - its center. - -2008-02-09 Michael Natterer - - * app/widgets/gimpcurveview.[ch]: port the "xpos" API - to [0.0..1.0] doubles too. - - * app/tools/gimpcurvestool.[ch]: rename "col_value" member to - "picked_color" and use gdouble instead of gint. Also use GimpCurve - API to map the values instead of accessing the curve directly. - Fixes setting curve anchor points by color picking. - -2008-02-09 Michael Natterer - - * app/core/gimpcurve.[ch]: changed all values to be [0.0..1.0] - doubles instead of [0..255] integers. Also changed the API to use - doubles instead of ints. Still have the fixed-size arrays though. - - (gimp_curve_map): new function to map values. - - * app/gegl/gimpoperationcurves.c: remove private map() function - and use the one from GimpCurve. - - * app/gegl/gimpcurvesconfig.c - * app/core/gimpdrawable-curves.c: port to the new gdouble API. - - * app/tools/gimpcurvestool.c: use gimp_curve_get_uchar() to get - the arrays for the color bars. - - * app/widgets/gimpcurveview.[ch]: port to gdouble and some cleanup. - -2008-02-08 Sven Neumann - - * app/widgets/gimptexteditor.c: use an entry with completion for - language selection. Still not functional. - -2008-02-08 Sven Neumann - - * app/widgets/gimplanguagestore.[ch] - * app/widgets/gimplanguagestore-parser.c: actually populate the - language store. Still work in progress... - - * app/widgets/gimptexteditor.c: added a combo-box for language - selection. Not functional yet; just something to play with. - -2008-02-08 Sven Neumann - - * app/widgets/gimplanguagestore-parser.c: implemented the parser. - - * app/dialogs/tips-parser.c: minor cleanup. - -2008-02-08 Tor Lillqvist - - * libgimpconfig/gimpconfig.def: Add gimp_config_copy. - -2008-02-07 Michael Natterer - - * tools/pdbgen/app.pl: add some perl evilness to make the includes - in the generated files look almost like they should. - - * tools/pdbgen/pdb/*.pdb: remove inclusion of "core/gimp.h" where - not needed, clean up lists of includes and functions and reorder - some functions to make more sense. Zero logic changed. - - * app/pdb/*_cmds.c - * libgimp/gimpcontext_pdb.[ch] - * libgimp/gimpbrush_pdb.[ch]: regenerated. - -2008-02-07 Sven Neumann - - * configure.in: added configure checks for the iso-codes package. - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimplanguagestore.[ch]: - * app/widgets/gimplanguagestore-parser.[ch]: added rough outline - of GtkListStore for language selection. - -2008-02-07 Michael Natterer - - * app/base/base-utils.[ch]: add get_pid() which returns getpid(). - - * app/base/base.c - * app/base/tile-swap.c - * app/core/gimp-utils.c - * app/plug-in/gimppluginshm.c - * app/widgets/gimpselectiondata.c - * tools/pdbgen/pdb/misc.pdb: use it instead of getpid() and remove - all the #ifdef'ed includes getpid() needs. - - * tools/pdbgen/app.pl: remove support for these includes. Also - remove some perl cruft in the include handling which is not needed - any longer. - - * app/pdb/misc_cmds.c: regenerated. - -2008-02-07 Michael Natterer - - * app/app.c: #include instead of - -2008-02-07 Sven Neumann - - * app/text/gimptext-parasite.c: formatting. - -2008-02-06 Michael Natterer - - * app/tools/gimpgegltool.c (gimp_param_spec_duplicate) - * app/widgets/gimppropwidgets.c (gimp_prop_table_new): add support - for GParamSpecEnum. - - * app/core/gimpimagemap.c (gimp_image_map_apply): add even better - checks for input and output pads of the passed operation. - -2008-02-06 Michael Natterer - - * app/paint/gimpclone.c - * app/paint/gimpheal.c - * app/paint/gimpink.c - * app/widgets/gimphistogrameditor.c: remove includes that are - not needed any longer. - -2008-02-06 Michael Natterer - - * app/gegl/gimpoperationposterize.c - * app/gegl/gimpoperationhuesaturation.c (process): don't crash if - there is no config object. - -2008-02-06 Michael Natterer - - * app/core/gimpimagemap.c (gimp_image_map_apply): when using a - source operation, blend its output over the original image using - "over" instead of simply replacing the original image. - -2008-02-06 Michael Natterer - - * app/tools/gimpgegltool.c (gimp_param_spec_duplicate) - * app/widgets/gimppropwidgets.c (gimp_prop_table_new): support - multiline text and file paths. The multiline support is hacked up - and needs some proper solution. - -2008-02-05 Michael Natterer - - * app/tools/gimpgegltool.c: don't include any longer. - -2008-02-05 Michael Natterer - - * app/widgets/gimppropwidgets.c (gimp_prop_table_new): don't forget - the label for entry widgets. - -2008-02-05 Martin Nordholts - - Applied patch from Olof Frahm which makes loading of data - files (brushes and so on) happen recursively (bug #514160). - - * app/core/gimpdatafactory.c - (gimp_data_factory_data_load): Recursively search sub directories - for data files using the new helper function - (gimp_data_factory_load_data_recursive) - -2008-02-05 Sven Neumann - - * app/tools/gimpgegltool.c: spelling fix. - -2008-02-05 Michael Natterer - - * app/core/gimpimagemap.c (gimp_image_map_apply): use - gegl_node_get_pad() instead of gegl_node_find_property() to find - out whether the node has an "input" pad. - - * app/tools/gimpgegltool.c: #include "core/gimpimagemap.h" - -2008-02-05 Sven Neumann - - * themes/Default/images/stock-gegl-24.png - * themes/Default/images/stock-gegl-16.png: replaced placeholder - icon by a crappy drawing of a genetically engineered goat, large. - -2008-02-05 Michael Natterer - - * app/core/gimpimagemap.c (gimp_image_map_apply): do the right - thing for operations without "input" pad so we can use all source - operations too. - - * app/tools/gimpimagemaptool.[ch]: make - gimp_image_map_tool_create_map() public for the time being. - - * app/tools/gimpgegltool.c (gimp_gegl_tool_operation_changed): - recreate the GimpImageMap so we can switch from filter to source - operations and back. - -2008-02-05 Michael Natterer - - * app/widgets/gimppropwidgets.[ch] (gimp_prop_table_new): new - function which creates a table of prop widgets for all properties - of an object (pretty incomplete, does exactly what's needed in - GimpGeglTool, or even less). - - * app/tools/gimpgegltool.c: create a proxy config class for each - GegÄēOperation and create a prop table on the config class' - properties as GUI for the GEGL operation. Write the proxy object's - properties back to the GeglNode in map(). - -2008-02-05 Sven Neumann - - * app/display/gimpdisplayshell-transform.c: changed coordinate - transformation for floats. Fixes bug #510294. - -2008-02-05 Sven Neumann - - * app/dialogs/image-new-dialog.c (image_new_create_image): - use the user context when creating the new image. Fixes bug #514082. - -2008-02-05 Sven Neumann - - * plug-ins/common/mail.c: simplified code and user interface by - removing the uuencode option and the comment field which only - duplicated the message body. - (to64): fixed a bug in the base64 encoding. - -2008-02-05 Sven Neumann - - * plug-ins/common/mail.c: changed menu label and dialog title to - "Send by Email". - -2008-02-05 Sven Neumann - - * plug-ins/print/print.c: removed ellipsis from "Page Setup" menu - entry as specified in the HIG. - -2008-02-05 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_response): don't - try to add a NULL config to the recent settings menu. - -2008-02-05 Michael Natterer - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-gegl-16.png - * themes/Default/images/stock-gegl-24.png - * libgimpwidgets/gimpstock.[ch]: new stock icon to be replaced by - somebody who can draw ;) - - * app/tools/gimpgegltool.c: use it. - -2008-02-05 Michael Natterer - - * app/tools/Makefile.am - * app/tools/gimpgegltool.[ch]: add experimental GEGL tool which - will allow to try arbitrary GEGL operations. 100% unusable at the - moment. - - * app/tools/gimp-tools.c: register it. - - * app/dialogs/dialogs.c: register its dialog. - - * menus/image-menu.xml.in: add it to the tools menu. - -2008-02-05 Sven Neumann - - * plug-ins/common/psd-save.c (write_pixel_data): check if drawable - is a layer before trying to access the layer mask. - -2008-02-04 Sven Neumann - - * app/display/gimpdisplayshell-preview.c - (gimp_display_shell_trace_tri_edge): use a gint for direction, not - a gchar which might be unsigned. Patch from Giuliano Pochini; - fixes bug #340965. - -2008-02-04 Sven Neumann - - * plug-ins/print/print-page-layout.c: only connect to page layout - changes for the lifetime of the dialog. - - * plug-ins/print/print-page-setup.[ch] - * plug-ins/print/print.c: use a temporary procedure to notify the - Print procedure about changes to the page setup. - -2008-02-04 Michael Natterer - - * app/base/gimphistogram.[ch]: add refcounting and replace free() - API by ref() and unref(). - - * app/core/gimpdrawable-equalize.c - * app/core/gimpdrawable-levels.c - * app/widgets/gimphistogrameditor.c - * tools/pdbgen/pdb/color.pdb: replace calls to - gimp_histogram_free() by gimp_histogram_unref(). - - * app/pdb/color_cmds.c: regenerated. - - * app/widgets/gimphistogramview.c: reference the histograms so we - don't need the widget's users to keep them around while the widget - exists. - - * app/tools/gimpcurvestool.[ch]: remove the histogram from the - tool struct and just create one locally to set it on the histogram - view widget. - - Unrelated: - - * app/tools/gimplevelstool.[ch] - * app/tools/gimpthresholdtool.[ch]: renamed "hist" members to - "histogram" plus some cleanup. - -2008-02-04 Michael Natterer - - * plug-ins/script-fu/script-fu.c: rename "Script-Fu Console" menu - item to simply "Console". - -2008-02-04 Michael Natterer - - * app/pdb/gimppdb-utils.[ch]: add gimp_pdb_item_is_attached() - which is a replacement for gimp_item_is_attached() and returns a - proper error message. - - * tools/pdbgen/pdb/color.pdb - * tools/pdbgen/pdb/drawable.pdb - * tools/pdbgen/pdb/drawable_transform.pdb - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/floating_sel.pdb - * tools/pdbgen/pdb/layer.pdb - * tools/pdbgen/pdb/paint_tools.pdb - * tools/pdbgen/pdb/selection.pdb - * tools/pdbgen/pdb/text_tool.pdb - * tools/pdbgen/pdb/transform_tools.pdb: use it. - - * app/pdb/color_cmds.c - * app/pdb/drawable_cmds.c - * app/pdb/drawable_transform_cmds.c - * app/pdb/edit_cmds.c - * app/pdb/floating_sel_cmds.c - * app/pdb/layer_cmds.c - * app/pdb/paint_tools_cmds.c - * app/pdb/selection_cmds.c - * app/pdb/text_tool_cmds.c - * app/pdb/transform_tools_cmds.c: regenerated. - -2008-02-04 Sven Neumann - - * plug-ins/print/Makefile.am - * plug-ins/print/print-page-setup.[ch]: new files. - - * plug-ins/print/print-page-layout.c - * plug-ins/print/print-settings.c - * plug-ins/print/print.c: first draft of a Page Setup menu entry - instead of the "Adjust Page Size" button (bug #513291). - - * plug-ins/print/print.h - * plug-ins/print/print-draw-page.c: removed unused code. - -2008-02-04 Sven Neumann - - * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): - changed workaround to look at the brush size instead (bug #514309). - -2008-02-04 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_add_recent): - use localtime() instead of localtime_r() and don't use %F in - strftime(). Fixes bug #513966. - -2008-02-04 Michael Natterer - - * app/core/Makefile.am - * app/core/gimpdrawable-brightness-contrast.[ch] - * app/core/gimpdrawable-color-balance.[ch] - * app/core/gimpdrawable-colorize.[ch] - * app/core/gimpdrawable-curves.[ch] - * app/core/gimpdrawable-hue-saturation.[ch] - * app/core/gimpdrawable-posterize.[ch] - * app/core/gimpdrawable-threshold.[ch]: new files containing all - the code that was in pdb/color_cmds.c. Cleaned up and GEGL-enabled - everyting. - - * tools/pdbgen/pdb/color.pdb: remove almost all code and simply call - the new functions. - - * app/pdb/color_cmds.c: regenerated. - -2008-02-04 Sven Neumann - - * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): - only smooth the inner area of the mask so that we don't enlarge - the boundary for hard brushes (bug #304798). - -2008-02-04 Michael Natterer - - * app/tools/gimplevelstool.[ch] - * app/tools/gimpcurvestool.[ch]: remove boolean "color" and "alpha" - members from the tool structs and ask the drawable instead when - needed. - -2008-02-04 Michael Natterer - - * app/gegl/gimpthresholdconfig.[ch]: add "gboolean color" - parameter to gimp_threshold_config_to_cruft() and set the "color" - boolean in the Threshold cruft struct. - - * app/tools/gimpthresholdtool.c: don't fiddle with the cruft - struct any longer and pass gimp_drawable_is_rgb() to above - function instead. - -2008-02-02 Martin Nordholts - - * INSTALL: Update GEGL dependency to GEGL trunk. - -2008-02-02 Martin Nordholts - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_commit): Only create a selection from - the polygon if there are 3 or more vertices. - -2008-02-02 Martin Nordholts - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_oper_update): Don't hide the pending - point line if we are grabbing the first point. - (gimp_polygon_select_tool_motion): Also update the pending point - if we are moving the first point. - -2008-02-02 Martin Nordholts - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_remove_last): Properly halt the tool - when there are no vertices left. - -2008-02-02 Martin Nordholts - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_commit): Add a call to - gimp_image_flush() so that the undo state gets updated. - -2008-02-01 Martin Nordholts - - * themes/Default/images/tools/stock-tool-polygon-select-22.png: - Lower opacity of shadow to mimic appearance of other tool icons. - -2008-02-01 Michael Natterer - - * app/tools/gimpcurvestool.c: fix various curves tool brokenness. - Should behave (TM) now. - -2008-02-01 Michael Natterer - - * app/core/core-types.h - * app/gegl/gegl-types.h: have app/gegl know app/core's namespace. - - * app/gegl/gimpoperationcurves.h: remove temp hack includes. - - * app/gegl/gimpoperationcurves.c: include "core/gimpcurve.h" - - * app/gegl/gimpbrightnesscontrastconfig.[ch] - * app/gegl/gimpcolorbalanceconfig.[ch] - * app/gegl/gimpcolorizeconfig.[ch] - * app/gegl/gimpcurvesconfig.[ch] - * app/gegl/gimphuesaturationconfig.[ch] - * app/gegl/gimplevelsconfig.[ch] - * app/gegl/gimpoperationcurves.[ch] - * app/gegl/gimpposterizeconfig.[ch] - * app/gegl/gimpthresholdconfig.[ch]: derive from GimpViewable, install - properties using the GimpConfig macros, add implementations of - GimpConfigInterface::equal() and ::copy() where needed. - - * app/tools/gimpimagemaptool.[ch]: add prototype of a menu of - recently used settings so the same color correction can easily be - applied to many images. - -2008-02-01 Michael Natterer - - * app/widgets/gimpcontainerview.c - (gimp_container_view_set_container): refuse containers if their - children are not GimpViewables instead of crashing later. - -2008-02-01 Michael Natterer - - * app/tools/gimppolygonselecttool.h: fix include guards. - -2008-02-01 Michael Natterer - - * libgimpconfig/gimpconfig-iface.[ch]: add new method - GimpConfigInterface::copy() which by default calls - gimp_config_sync() but is overridable for objects which are not - entirely property-defined or otherwise evil. - - Freeze/thaw property notifications in deserialize() and reset(). - - * libgimpconfig/gimpconfig-utils.c (gimp_config_sync): freeze/thaw - property notifications on the dest object. - -2008-02-01 Sven Neumann - - * plug-ins/print/print.c: some minor cleanups and preparation for - adding a dedicated Page Setup menu entry (bug #513291). - -2008-01-31 Sven Neumann - - * plug-ins/common/mail.c: string change. - -2008-01-31 Sven Neumann - - Delay GEGL initialisation until after the command-line parsing so - that we can detect an already running GIMP instance and delegate - to that without going through the GEGL and babl initialisation. - - * app/app.c (app_libs_init): don't add the GEGL options group - here. GEGL doesn't add any command-line options and it doesn't - look as if it would do that anytime soon. - - * app/gegl/gimp-gegl.c (gimp_gegl_init): initialize GEGL here. - -2008-01-31 Sven Neumann - - * plug-ins/common/iwarp.c: choose a better tile cache size. - -2008-01-31 Martin Nordholts - - * app/tools/gimppolygonselecttool.[ch]: Code formating overhaul. - -2008-01-31 Martin Nordholts - - * app/tools/gimppolygonselecttool.[ch]: Made object instance - struct definition completely a private implementation detail. - -2008-01-31 Martin Nordholts - - * app/tools/gimppolygonselecttool.c - (gimp_polygon_select_tool_real_select): Correct undo description. - -2008-01-30 Martin Nordholts - - Added a Polygon Select Tool which is a primitive selection tool - based on Free Select Tool. Code filtered through David Gowers who - also made the tool icon. This version of the tool is a for-now - solution to bug #119646. - - * app/tools/gimppolygonselecttool.[ch]: The new tool. - - * app/tools/gimp-tools.c: Add the tool. - - * app/tools/Makefile.am: Add tool source. - - * app/widgets/gimphelp-ids.h: Add help id for the tool. - - * libgimpwidgets/gimpstock.[ch]: Setup for the new tool icon. - - * menus/image-menu.xml.in: Add action entry for the tool. - - * themes/Default/images/tools/stock-tool-polygon-select-{16,22}.png: - Tool icon graphics. - - * themes/Default/images/Makefile.am: Add tool icon graphics. - -2008-01-30 Michael Natterer - - * app/tools/gimpimagemaptool.[ch]: add "GObject **config" return - value to GimpImageMapTool::get_operation() and memory-manage the - config object here. - - Add default implementation of GimpImageMapTool::reset() which - calls gimp_config_reset() on the config object. - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: return the config object in - get_operation() and don't unref it in finalize(). - - Connect to the config object's "notify" signal and update the GUI - in the callback. Also call gimp_image_map_tool_preview() there. - Removed all other GUI update functions and all calls to preview(). - - Removed reset() implementations which only called - gimp_config_reset(). - -2008-01-30 Michael Natterer - - * app/widgets/gimphistogramview.c - (gimp_histogram_view_set_channel) - (gimp_histogram_view_set_scale) - (gimp_histogram_view_set_range): don't emit signals/notifications - if the setting didn't change. - -2008-01-30 Øyvind KolÃĨs - - * app/gegl/gimpoperationcolorbalance.c: - * app/gegl/gimpoperationcolorize.c: - * app/gegl/gimpoperationcurves.c: - * app/gegl/gimpoperationdesaturate.c: - * app/gegl/gimpoperationhuesaturation.c: - * app/gegl/gimpoperationlevels.c: - * app/gegl/gimpoperationposterize.c: - * app/gegl/gimpoperationthreshold.c: - * app/gegl/gimpoperationtilesink.c: - * app/gegl/gimpoperationtilesource.c: - * app/gegl/gimpoperationdesaturate.c: stop using - gegl_operation_class_set_name() for gimp gegl ops. - -2008-01-30 Michael Natterer - - * app/gegl/gimpcolorbalanceconfig.c - * app/gegl/gimpcurvesconfig.c - * app/gegl/gimphuesaturationconfig.c - * app/gegl/gimplevelsconfig.c: add missing notifications on - property changes. - -2008-01-28 Michael Natterer - - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c (process): return FALSE when - there is no tile manager. - -2008-01-28 Sven Neumann - - * plug-ins/gimpressionist/*.[ch]: added missing copyright header. - -2008-01-28 Michael Natterer - - * app/gegl/gimpoperationcolorbalance.c - * app/gegl/gimpoperationcolorize.c - * app/gegl/gimpoperationcurves.c - * app/gegl/gimpoperationdesaturate.c - * app/gegl/gimpoperationhuesaturation.c - * app/gegl/gimpoperationlevels.c - * app/gegl/gimpoperationposterize.c - * app/gegl/gimpoperationthreshold.c: replace for() loops over the - samples by while() loop counting down the passed "samples" - parameter. - -2008-01-28 Michael Natterer - - * app/gegl/gimpcolorbalanceconfig.c - * app/gegl/gimpcolorizeconfig.c - * app/gegl/gimpcurvesconfig.c - * app/gegl/gimphuesaturationconfig.c - * app/gegl/gimplevelsconfig.c - * app/gegl/gimpoperationdesaturate.c - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c - * app/gegl/gimpposterizeconfig.c - * app/gegl/gimpthresholdconfig.c: coding style paranoia: changed - one byte per file. - -2008-01-28 Michael Natterer - - * libgimpconfig/gimpconfig-serialize.c - (gimp_config_serialize_property): fix API docs. - -2008-01-28 Michael Natterer - - * app/gegl/gegl-types.h - * app/gegl/Makefile.am - * app/gegl/gimpbrightnesscontrastconfig.[ch]: new config object. - - * app/tools/gimpbrightnesscontrasttool.[ch]: use it. - -2008-01-28 Sven Neumann - - * plug-ins/common/lcms.c (lcms_dialog): fixed crash on missing - profile (bug #512529). - -2008-01-28 Sven Neumann - - * plug-ins/common/lcms.c (lcms_load_profile) - * plug-ins/common/wmf.c (load_image): fixed error messages. - -2008-01-28 Michael Natterer - - * app/dialogs/keyboard-shortcuts-dialog.c - (keyboard_shortcuts_dialog_new): don't show the horizontal - scrollbar if it's not needed. - -2008-01-28 Sven Neumann - - * app/display/gimpdisplayshell.[ch] (gimp_display_shell_snap_coords): - removed redundant GimpCoords parameter that use to cause valgrind - warnings about overlapping memory regions in memcpy(). - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-autoscroll.c: changed accordingly. - -2008-01-28 Sven Neumann - - * plug-ins/common/cubism.c: minor cleanups. - -2008-01-28 Michael Natterer - - * app/base/tile-manager.c - * plug-ins/common/lcms.c: use G_STRLOC instead of - G_GNUC_FUNCTION (which is now deprecated). - -2008-01-28 Tor Lillqvist - - * modules/controller_dx_dinput.c: Make it compile again. - -2008-01-28 Sven Neumann - - * plug-ins/gimpressionist/gimp.c: minor cleanup. - -2008-01-27 Michael Natterer - - * app/gegl/gimpcolorbalanceconfig.[ch] - * app/gegl/gimpcolorizeconfig.[ch] - * app/gegl/gimpcurvesconfig.[ch] - * app/gegl/gimphuesaturationconfig.[ch] - * app/gegl/gimplevelsconfig.[ch] - * app/gegl/gimpposterizeconfig.[ch] - * app/gegl/gimpthresholdconfig.[ch]: implement the GimpConfig - interface and remove public reset() functions except special ones - which reset only parts of the objects. Add lots of property - notifications. - - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: use gimp_config_reset(), misc. - related changes and cleanups. - -2008-01-27 Kevin Cozens - - * plug-ins/imagemap/imap_cern.[ly] - * plug-ins/imagemap/imap_csim.[ly] - * plug-ins/imagemap/imap_ncsa.[ly]: Dynamically allocate space to - hold comments, links, strings, and co-ordinate lists. - Fixes bug #511072. - - * plug-ins/imagemap/imap_cern_lex.c - * plug-ins/imagemap/imap_cern_parse.[ch] - * plug-ins/imagemap/imap_csim_lex.c - * plug-ins/imagemap/imap_csim_parse.[ch] - * plug-ins/imagemap/imap_ncsa_lex.c - * plug-ins/imagemap/imap_ncsa_parse.[ch]: Regenerated. - -2008-01-27 Sven Neumann - - * plug-ins/gimpressionist/gimp.c (gimpressionist_main): transfer - the pixels to the core on a tile-by-tile basis. - -2008-01-27 Sven Neumann - - * plug-ins/gimpressionist/gimp.c (grabarea): changed code that - retrieves the source drawable to iterate over the data tile-by-tile. - Improves GIMPressionist startup time (bug #512126). - -2008-01-26 Manish Singh - - * plug-ins/pygimp/pygimp-colors.c (pygimp_rgb_from_pyobject): no - need to use a temporary in tuple translation, and clamp the result. - - * plug-ins/pygimp/gimpmodule.c (pygimp_set_background, - pygimp_set_foreground): restore support for passing in 3 args for - color components, for backward compatibility. - -2008-01-26 Joao S. O. Bueno - - * plug-ins/pygimp/pygimp-colors.c (pygimp_rgb_from_pyobject): fix - subsequent error (calculated parameters where not used) - -2008-01-26 Manish Singh - - * plug-ins/pygimp/pygimp-colors.c (pygimp_rgb_from_pyobject): fix - error reporting. - -2008-01-25 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationpointfilter.[ch]: new parent class for all - image map operations. Features a "config" member and "public" - get_property() and set_property() functions to be used by - subclasses. - - * app/gegl/gimpoperationcolorbalance.[ch] - * app/gegl/gimpoperationcolorize.[ch] - * app/gegl/gimpoperationcurves.[ch] - * app/gegl/gimpoperationhuesaturation.[ch] - * app/gegl/gimpoperationlevels.[ch] - * app/gegl/gimpoperationposterize.[ch] - * app/gegl/gimpoperationthreshold.[ch]: derive from - GimpOperationPointFilter, remove "config" members, remove - finalize(), get_property() and set_property() implementations and - use the ones provided by the parent class. - -2008-01-25 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpposterizeconfig.[ch]: new config object. - - * app/gegl/gimpoperationposterize.[ch] - * app/tools/gimpposterizetool.[ch]: use it. - -2008-01-25 Michael Natterer - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimpimagemaptool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: remove includes which are no - longer needed. - -2008-01-25 Michael Natterer - - * app/gegl/gimpcurvesconfig.[ch] - * app/gegl/gimplevelsconfig.[ch]: add load_cruft() and - save_cruft() functions which load/save the old (current) curves - and levels file formats. - - * app/tools/gimpcurvestool.c - * app/tools/gimplevelstool.c: use them here and remove a lot of - includes. - -2008-01-25 Michael Natterer - - * app/tools/gimphuesaturationtool.[ch]: removed the GimpHueRange - member from the tool struct and use the one from the config object - instead. Also did a global s/partition/range/. - -2008-01-25 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpthresholdconfig.[ch]: new config object. - - * app/gegl/gimpoperationthreshold.[ch]: use it. - - * app/tools/gimpthresholdtool.[ch]: ditto. - -2008-01-25 Michael Natterer - - * app/tools/gimpcurvestool.[ch] - * app/tools/gimplevelstool.[ch]: remove the "channel" member from - the tool struct and use the channel from the options object - instead. - -2008-01-25 Sven Neumann - - * app/widgets/gimpcolormapeditor.c (gimp_colormap_editor_draw): - avoid crashing when the widget allocation is small (bug #511926). - -2008-01-24 Sven Neumann - - * app/about.h (GIMP_COPYRIGHT): updated copyright. - -2008-01-24 Sven Neumann - - * themes/Default/images/stock-wilber-48.png: removed unused image. - - * themes/Default/images/Makefile.am - * themes/Default/images/stock-wilber-22.png: moved here from - libgimpwidgets. - - * libgimpwidgets/gimpstock.c: register Wilber icon in button size. - - * data/images/wilber.png: moved 256x256 icon here from - libgimpwidgets. - -2008-01-24 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpcolorbalanceconfig.[ch]: new config object. - - * app/gegl/gimpoperationcolorbalance.[ch]: use it. - - * app/tools/gimpcolorbalancetool.[ch]: port to - GimpColorBalanceConfig and use the old ColorBalance cruft only in - map(). The effect of the GEGL operator is now even more different - from the cruft code because I removed a hack that was applying an - additional factor when mapping between the ColorBalance values and - the new properties, but that was only a workaround to make it look - more similar anyway. Will have to fix this properly. - - * app/base/color-balance.[ch]: remove API that is now obsolete. - -2008-01-24 Sven Neumann - - * app/core/gimpimage.c - * app/core/gimpimage-undo.c: fixed handling of the image undo - counter for the case where the user has undone the image to a - state before the last save and then pushes a new undo. Fixes - bug #509822. - -2008-01-24 Michael Natterer - - * app/gegl/gimpcolorizeconfig.[ch]: added reset() and to_cruft() - functions. - - * app/tools/gimpcolorizetool.c: use them. - -2008-01-23 Martin Nordholts - - * app/tools/gimprectangleselecttool.c - (gimp_rect_select_tool_execute): Reset the automatic undo/redo - mechanism so that commiting pending rectangles with Return - works (bug #511599). - -2008-01-23 Sven Neumann - - * app/display/gimpdisplayshell-selection.c: show the selection, - even if the window is flagged as invisible, but don't start the - animation. Addresses bug #505758. - -2008-01-23 Michael Natterer - - * app/gegl/gimphuesaturationconfig.[ch] - (gimp_hue_saturation_config_to_cruft): call - hue_saturation_calculate_transfers() here... - - * app/tools/gimphuesaturationtool.c (gimp_hue_saturation_tool_map): - ...instead of here. - -2008-01-23 Michael Natterer - - * app/gegl/gimplevelsconfig.[ch]: to_levels_cruft() -> to_cruft(). - - * app/core/gimpdrawable-levels.c - * app/tools/gimplevelstool.c: changed accordingly. - -2008-01-23 Michael Natterer - - * app/tools/gimphuesaturationtool.c: change signature of widget - callbacks to take a GimpHueSaturationTool pointer instead of - "gpointer data". - - * app/tools/gimpposterizetool.c: remove redundant GTK_ADJUSTMENT() - casts. - -2008-01-23 Sven Neumann - - * app/sanity.c - * app/gui/gui.c (gui_sanity_check): minor cleanup. - -2008-01-23 Sven Neumann - - * app/dialogs/about-dialog.c (about_dialog_create): removed - obsolete version check. - -2008-01-23 Sven Neumann - - * plug-ins/imagemap/imap_mru.c (mru_remove_link): gracefully - handle a NULL link. - (mru_destruct): plugged a memory leak. - - * plug-ins/imagemap/imap_about.c: use "program-name" instead - of "name". - -2008-01-23 Michael Natterer - - * app/tools/gimpimagemaptool.h: don't #include - - * app/actions/tools-commands.c - * app/display/gimpdisplayshell-callbacks.c - * app/tools/gimp-tools.c: include it here. Whenever the build - breaks because of some GEGL change in GIMP, please inlcude - instead of or before in the - affected .c files. - -2008-01-23 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpcurvesconfig.[ch] - * app/gegl/gimpoperationcurves.[ch]: add curves operation and its - config object. Hack around badly to be able to use GimpCurve from - app/core. - - * app/gegl/gimp-gegl.c: register the curves operation. - - * app/tools/gimpcurvestool.[ch]: added get_operation() implementation - and use the new config object instead of keeping around 5 curves. - -2008-01-23 Michael Natterer - - * app/gegl/gimpoperationlevels.[ch] - (gimp_operation_levels_map_input): new utility function which maps - a single value. - - * app/tools/gimplevelstool.[ch] (levels_update_adjustments): use the - new function to create the input arrays for gimp_color_bar_set_buffer(). - - Removed the Levels struct from the GimpLevelsTool struct and only - use it in map() when needed. - - * app/base/levels.[ch]: remove obsolete API and struct members. - -2008-01-22 Sven Neumann - - * app/core/gimpprojection.c (gimp_projection_idle_render_init): - decreased the priority of the projection idle renderer to 150, - halfway between G_PRIORITY_HIGH_IDLE and G_PRIORITY_DEFAULT_IDLE. - Fixes bug #511214. - -2008-01-22 Sven Neumann - - * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): - smooth the mask instead of dilating. - -2008-01-22 Sven Neumann - - * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): - dilate the brush mask in order to obtain a simpler boundary. - Addresses bug #304798. - - * app/tools/gimpbrushtool.c (gimp_brush_tool_draw_brush): removed - redundant casts. - -2008-01-22 Sven Neumann - - * app/base/boundary.c: minor cleanups. - -2008-01-22 Sven Neumann - - * plug-ins/imagemap/imap_csim.y: increased buffer size. Addresses - bug #511072. - - * plug-ins/imagemap/imap_csim_parse.[ch]: regenerated. - -2008-01-22 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-coords.[ch]: applied patch from - Alexia Death with further event filter improvements (bug #508639). - -2008-01-22 Sven Neumann - - * plug-ins/common/pcx.c: corrected check of the bytesperline field - which caused monochrome PCX images to be rejected (bug #510658). - -2008-01-22 Sven Neumann - - * app/core/gimp.[ch]: added new function gimp_use_gegl(). - - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-levels.c - * app/core/gimpdrawable-invert.c - * app/tools/gimpimagemaptool.c - * app/pdb/color_cmds.c - * tools/pdbgen/pdb/color.pdb: use it instead of accessing the - GimpCoreConfig struct directly. - -2008-01-22 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimphuesaturationconfig.[ch]: new config object. - - * app/gegl/gimpoperationhuesaturation.[ch]: remove all properties - and add a "config" property. Also add API to map a single GimpRGB - needed by the hue-saturation tool's color areas. - - * app/tools/gimphuesaturationtool.[ch]: switch to using - GimpHueSaturationConfig, use the old HueSaturation struct only in - map(). - - * app/base/hue-saturation.[ch]: remove API that's no longer needed. - -2008-01-22 Øyvind KolÃĨs - - * app/gegl/gimpoperationcolorbalance.h: - * app/gegl/gimpoperationcolorize.h: - * app/gegl/gimpoperationdesaturate.h: - * app/gegl/gimpoperationhuesaturation.h: - * app/gegl/gimpoperationlevels.h: - * app/gegl/gimpoperationposterize.h: - * app/gegl/gimpoperationthreshold.h: - * app/gegl/gimpoperationtilesink.h: - * app/gegl/gimpoperationtilesource.h: #include - -2008-01-21 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_set_other_side_coord): Don't foget to update - the integer representation of the rectangle. - -2008-01-21 Martin Nordholts - - * app/tools/gimpeditselectiontool.[ch]: Moved the logic in _motion - to a new helper function _update_motion that is also called in - _active_modifier_key. Makes toggling Ctrl immediately apply/remove - movement constraints for the Move Tool when a move has been - initiated. This completes the fix for bug #78730. - -2008-01-21 Sven Neumann - - * app/core/gimpselection.c (gimp_selection_extract): don't clear - the selection as a side-effect of "Edit->Cut" (bug #510534). - -2008-01-21 Michael Natterer - - * app/widgets/gimpcolorbar.c (gimp_color_bar_class_init): fix the - ID of the "histogram-channel" property. - -2008-01-21 Michael Natterer - - * app/core/gimpdrawable-levels.c: port to GEGL and use the new - code path when use-gegl is TRUE. - - * app/base/levels.[ch]: remove stretch and pick APIs which are not - used any longer. - -2008-01-21 Michael Natterer - - * app/gegl/gimplevelsconfig.[ch]: add utility function - gimp_levels_config_to_levels_cruft() which fills the old Levels - struct from a GimpLevelsConfig object. - - * app/tools/gimplevelstool.c: use it. - -2008-01-21 Michael Natterer - - * app/gegl/gimpcolorizeconfig.h - * app/gegl/gimpoperationcolorize.h: add missing type macros. - -2008-01-19 Martin Nordholts - - * app/tools/gimpeditselectiontool.c - (gimp_edit_selection_tool_motion): Reformat a bit, essentially - just removed one pointless level of indentation. - -2008-01-18 Øyvind KolÃĨs - - Removed copies of GEGL headers from GIMP source, depend on installed - headers instead. GIMP trunk still depends on GEGL trunk but we're - moving towards a time when GIMP can depend on a GEGL tarball instead. - - * app/gegl/gegl/gegl-operation-filter.h: - * app/gegl/gegl/gegl-operation-point-filter.h: - * app/gegl/gegl/gegl-operation-sink.h: - * app/gegl/gegl/gegl-operation-source.h: - * app/gegl/gegl/gegl-operation.h: - * app/gegl/gegl/gegl-types.h: - * app/gegl/gegl/: removed. - - * app/gegl/gimpoperationcolorbalance.h: - * app/gegl/gimpoperationcolorize.h: - * app/gegl/gimpoperationdesaturate.h: - * app/gegl/gimpoperationhuesaturation.h: - * app/gegl/gimpoperationlevels.h: - * app/gegl/gimpoperationposterize.h: - * app/gegl/gimpoperationthreshold.h: - * app/gegl/gimpoperationtilesink.h: - * app/gegl/gimpoperationtilesource.h: modified path to parent class' - header file. - -2008-01-18 Bill Skaggs - - * app/base/lut-funcs.c (equalize_lut_func): Don't - equalize the alpha channel. Fixes bug #510210. - -2008-01-18 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpcolorizeconfig.[ch]: new config object. - - * app/gegl/gimpoperationcolorize.[ch]: remove all properties and - add a "config" property. - - * app/tools/gimpcolorizetool.[ch]: port to GimpColorizeConfig, use - the old Colorize struct only in map(). - -2008-01-18 Michael Natterer - - * app/gegl/gimplevelsconfig.[ch]: ported the stretch and pick - functions from base/levels.c. - - * app/tools/gimplevelstool.[ch]: use them instead of the old - stuff. Also switch to GimpLevelsConfig as primary storage for all - settings and fill the old Levels struct only when needed in map(). - Remove all hackish fiddling with levels_tool->channel because it - is now always what is set in the menu. - -2008-01-18 Michael Natterer - - * app/gegl/gimpoperationtilesink.c (class_init) - * app/gegl/gimpoperationcolorize.c (class_init): cosmetic. - -2008-01-17 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesink.c: - * app/gegl/gimpoperationtilesource.c: Some changes due to changed - location of where the various GEGL headers get installed on the - system. - * app/gegl/gegl/gegl-operation.h: synced from GEGL. - -2008-01-17 Martin Nordholts - - * app/tools/gimpeditselectiontool.c - (gimp_edit_selection_tool_get_active_item): Use this new helper - function instead of duplicating its logic. - -2008-01-17 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimplevelsconfig.[ch]: new config object for the levels - operation's settings. - - * app/gegl/gimpoperationlevels.[ch]: remove all properties and add - a "config" property instead. - - * app/tools/gimplevelstool.[ch]: keep a GimpLevelsConfig around. - -2008-01-17 Michael Natterer - - * app/gegl/gimpoperationcolorize.c - * app/gegl/gimpoperationhuesaturation.c (process): move some - calculations and assignments out of the inner loop. - -2008-01-17 Michael Natterer - - * app/tools/gimpimagemaptool.c: create the operation in - GObject::constructor() so it's available during the entire tool - life time (needed soon). - -2008-01-17 Michael Natterer - - * app/gegl/gegl/gegl-operation.h - * app/gegl/gegl/gegl-operation-filter.h: synced from GEGL. - -2008-01-17 Sven Neumann - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimptagged.[ch]: define a simple interface for tagged - objects. - - * app/core/gimpdata.[ch]: implement the GimpTagged interface. - -2008-01-17 Sven Neumann - - * app/core/gimpviewable.h: formatting. - -2008-01-16 Øyvind KolÃĨs - - * app/gegl/gegl/gegl-operation.h: synced from GEGL. - * app/gegl/gegl/graph/gegl-node-context.h: removed, since none - of it's provided functionlity is any longer used by the GIMP - implemented ops. - * app/gegl/gegl/graph/: removed. - -2008-01-16 Øyvind KolÃĨs - - * app/gegl/gegl/buffer/gegl-buffer-types.h: removed. - * app/gegl/gegl/buffer/: removed. - * app/gegl/gegl/gegl-operation.h: synced from GEGL. Now includes - the installed gegl-buffer.h which contains the public typedefs - needed for implementing operations anyways. - -2008-01-16 Sven Neumann - - * app/base/boundary.c: minor cleanup. - -2008-01-16 Michael Natterer - - Fix gegl types and includes so we can include operations from - app/gegl in other gimp files (needed soon): - - * app/gegl/gegl/gegl-types.h: not copied from gegl any longer. - Now contains only two typedefs needed by the copied operation - headers. - - * app/gegl/gegl-types.h: include above types file. - - * app/gegl/gimp-gegl.c - * app/gegl/gimpoperationcolorbalance.c - * app/gegl/gimpoperationcolorize.c - * app/gegl/gimpoperationdesaturate.c - * app/gegl/gimpoperationhuesaturation.c - * app/gegl/gimpoperationlevels.c - * app/gegl/gimpoperationposterize.c - * app/gegl/gimpoperationthreshold.c - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c: include only and - "gegl-types.h" from this directory, which is much more gimpish - now. Include "gegl/buffer/gegl-buffer.h" in the source and sink - operations. - - * app/tools/gimpimagemaptool.h: warn about inclusion of - only if it hasn't been included before, so it only warns in the - files where we still have to address this issue. - -2008-01-16 Sven Neumann - - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-coords.c: applied parts of a change - from Alexia Death. This improves the event smoothing (bug #508639). - -2008-01-15 Martin Nordholts - - * app/tools/tools-utils.h: Added symbolic constants for common - values to the n_snap_lines parameter of - gimp_tool_motion_constrain. - - * app/tools/gimpblendtool.c: - * app/tools/gimpeditselectiontool.c: - * app/tools/gimpmeasuretool.c: - * app/tools/gimppainttool.c: Use these new symbolic constants. - -2008-01-15 Martin Nordholts - - * app/tools/gimpeditselectiontool.[ch]: Made it possible to - constrain movement with the Move Tool in 45 degree angles by - holding Ctrl when a move has been initiated. This fixes the - essential part of bug #78730. - -2008-01-15 Michael Natterer - - * app/gegl/gimpoperationcolorize.[ch] - * app/gegl/gimpoperationlevels.[ch] - * app/gegl/gimpoperationthreshold.[ch]: changed all properties from - float to double. - - * app/gegl/gimpoperationcolorize.c: normalized property ranges to - [0.0..1.0] or [-1.0..1.0] resp. - - * app/tools/gimpcolorizetool.c: changed accordingly. - -2008-01-15 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_notify_preview): - check for image_map_tool->image_map also when the preview is - switched on, not only when it's switched off. - -2008-01-15 Sven Neumann - - * plug-ins/common/bumpmap.c - * plug-ins/script-fu/scripts/swirltile.scm: applied patch from - Ulf-D. Ehlert that catches a potential division by zero in the - Bumpmap plug-in and adjusts the range of the Depth parameter in - the Swirl-Tile script (bug #509608). - -2008-01-15 Kevin Cozens - - * plug-ins/script-fu/scripts/3d-outline.scm - * plug-ins/script-fu/scripts/add-bevel.scm - * plug-ins/script-fu/scripts/burn-in-anim.scm - * plug-ins/script-fu/scripts/camo.scm - * plug-ins/script-fu/scripts/circuit.scm - * plug-ins/script-fu/scripts/clothify.scm - * plug-ins/script-fu/scripts/coffee.scm - * plug-ins/script-fu/scripts/contactsheet.scm - * plug-ins/script-fu/scripts/distress-selection.scm - * plug-ins/script-fu/scripts/flatland.scm - * plug-ins/script-fu/scripts/font-map.scm - * plug-ins/script-fu/scripts/fuzzyborder.scm - * plug-ins/script-fu/scripts/glossy.scm - * plug-ins/script-fu/scripts/land.scm - * plug-ins/script-fu/scripts/lava.scm - * plug-ins/script-fu/scripts/old-photo.scm - * plug-ins/script-fu/scripts/predator.scm - * plug-ins/script-fu/scripts/rendermap.scm - * plug-ins/script-fu/scripts/ripply-anim.scm - * plug-ins/script-fu/scripts/script-fu-set-cmap.scm - * plug-ins/script-fu/scripts/select-to-brush.scm - * plug-ins/script-fu/scripts/select-to-image.scm - * plug-ins/script-fu/scripts/select-to-pattern.scm - * plug-ins/script-fu/scripts/speed-text.scm - * plug-ins/script-fu/scripts/spinning-globe.scm - * plug-ins/script-fu/scripts/test-sphere.scm - * plug-ins/script-fu/scripts/text-circle.scm - * plug-ins/script-fu/scripts/unsharp-mask.scm - * plug-ins/script-fu/scripts/xach-effect.scm: Variables in a let - block must be of the form (variable value) per the R5RS. - -2008-01-14 Kevin Cozens - - * plug-ins/script-fu/scripts/script-fu-compat.init: Fixed definition - of 'prog1' due to recent fixes enforcing R5RS syntax for 'let'. - -2008-01-15 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_preview): - don't call map() if image_map_tool->image_map is NULL. - -2008-01-14 Martin Nordholts - - * app/tools/tools-utils.[ch] - (gimp_tool_motion_constrain): Generalized to allow a variable - number of lines for snapping, and rewritten to make snapping - happen more intuitively; snap the shortest distance rather than - only horizontally or vertically. - (gimp_tool_utils_point_to_line_distance): New helper function. - - * app/tools/gimpblendtool.c - * app/tools/gimpmeasuretool.c - * app/tools/gimppainttool.c: Adjust to the new function signature. - -2008-01-14 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationhuesaturation.[ch]: new operation. - - * app/gegl/gimp-gegl.c: register it. - - * app/tools/gimphuesaturationtool.c: use it. - -2008-01-14 Sven Neumann - - * app/core/core-types.h - * app/display/gimpdisplayshell-callbacks.c - * app/display/gimpdisplayshell-coords.[ch] - * app/display/gimpdisplayshell.h - * app/paint/gimpink.[ch] - * app/paint/gimpinkundo.[ch]: applied patch from Alexia Death that - adds an event evaluation function that decides if an event is - needed or can be discarded. As a side-product some useful dynamics - parameters like velocity are added to the GimpCoords struct. The - Ink tool is changed to use this information. See bug #508639. - -2008-01-13 Michael Natterer - - * modules/colorsel_cmyk_lcms.c (colorsel_cmyk_config_changed): set - a tooltip on the profile name label because it's often ellipsized. - -2008-01-12 Michael Natterer - - * app/base/color-balance.c: minor formatting fix. - -2008-01-11 Michael Natterer - - * modules/gimpinputdevicestore.h - * modules/gimpinputdevicestore-hal.c - * modules/gimpinputdevicestore-dx.c: use G_DEFINE_DYNAMIC_TYPE(). - - * modules/controller_dx_dinput.c - * modules/controller_linux_input.c: changed accordingly. - -2008-01-10 Manish Singh - - * plug-ins/pygimp/pygimp-pdb.c (pdb_getattro): Handle __members__ - specially to return the current PDB procedure list, and pass-through - any attributes that start with "_" without looking them up in the - PDB. - -2008-01-10 Sven Neumann - - * app/widgets/gimpuimanager.c (gimp_ui_manager_ui_popup): - gracefully deal with a NULL return value from - gtk_ui_manager_get_widget(). This happens when the XML menu - definitions are not found. - -2008-01-10 Sven Neumann - - * plug-ins/pygimp/plug-ins/gimpcons.py: fixed spelling of GIMP. - -2008-01-10 Sven Neumann - - * plug-ins/jpeg/Makefile.am: fixed conditional build of the JPEG - plug-in. - -2008-01-10 Bill Skaggs - - * libgimpbase/gimpenv.c: fix editing error in documentation. - -2008-01-10 Michael Natterer - - Simplify things a bit and enable gegl-only color correction - tools (without legacy functions). - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_create_map): - always create the operation if ::get_operation() is implemented - and always use it when creating the GimpImageMap if there is no - legacy apply_func. - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c (map): set the operation's - properties unconditionally since it always exists now if we also - implement ::get_operation(). - -2008-01-10 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationcolorbalance.[ch]: new operator. - - * app/gegl/gimp-gegl.c: register it. - - * app/tools/gimpcolorbalancetool.c: use it. - -2008-01-09 Joao S. O. Bueno - - * plug-ins/pygimp/pygimp-vectors.c: Allow Vectors.remove_stroke - method to accept VectorStroke objects besides stroke IDs. Fix - method names in error strings. - -2008-01-09 Michael Natterer - - * modules/cdisplay_colorblind.c - * modules/cdisplay_gamma.c - * modules/cdisplay_highcontrast.c - * modules/cdisplay_lcms.c - * modules/cdisplay_proof.c - * modules/colorsel_cmyk.c - * modules/colorsel_triangle.c - * modules/colorsel_water.c - * modules/controller_dx_dinput.c - * modules/controller_linux_input.c - * modules/controller_midi.c: use G_DEFINE_DYNAMIC_TYPE() instead - of boilerplate code. - -2008-01-09 Sven Neumann - - * modules/colorsel_cmyk_lcms.c (colorsel_cmyk_class_init): don't - abort on errors in lcms. - -2008-01-09 Sven Neumann - - * app/gegl/gimpoperationtilesink.c: use the marshaller from GLib; - don't include gimpmarshal.h from app/core. - -2008-01-09 Michael Natterer - - * app/tools/gimplevelstool.c (gimp_levels_tool_map): fix alpha - handling on greyscale images. - -2008-01-09 Sven Neumann - - * plug-ins/common/convmatrix.c (convolve_image): round the result - of the convolution. Fixes bug #508114. - -2008-01-09 Michael Natterer - - * app/core/core-types.h: add typedef GimpImageMapApplyFunc here. - - * app/core/gimpimagemap.[ch] (gimp_image_map_new): add apply_func - and apply_data parameters. - - (gimp_image_map_apply): remove them here and add a GeglRectangle - parameter which is the visible area of the affected drawable. - - * app/tools/gimpimagemaptool.[ch]: keep apply_func and apply_data - around in the GimpImageMapTool struct. - - (gimp_image_map_tool_create_map): pass them to gimp_image_map_new(). - - (gimp_image_map_tool_map): call gimp_image_map_apply() here and - pass the drawable's visible rectangle. - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c (init): set apply_func and - apply_data in the parent instance. - - (map): remove calls to gimp_image_map_apply(). - -2008-01-08 Sven Neumann - - * plug-ins/psd/psd-image-res-load.[ch] - * plug-ins/psd/psd-layer-res-load.[ch] - * plug-ins/psd/psd-load.c - * plug-ins/psd/psd-thumb-load.c - * plug-ins/psd/psd-util.[ch] - * plug-ins/psd/psd.[ch]: applied a patch from John Marshall that - improves error handling of the new PSD load plug-in (bug #448181). - -2008-01-08 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesink.c: removed no longer needed - context_id. - * app/gegl/gegl/gegl-operation-sink.h: resynced from GEGL. - * app/gegl/gegl/gegl-types.h: resynced from GEGL. - -2008-01-08 Sven Neumann - - * app/core/gimpitem.[ch]: removed "add_alpha" parameter from - gimp_item_duplicate() and gimp_item_convert(). This is a relict - from the time when only the bottom layer was allowed to have no - alpha channel. - - * app/actions/channels-commands.c - * app/actions/layers-commands.c - * app/actions/vectors-commands.c - * app/core/gimpchannel.c - * app/core/gimpdrawable.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-quick-mask.c - * app/core/gimplayer.c - * app/core/gimplayermask.c - * app/core/gimpselection.c - * app/display/gimpdisplayshell-dnd.c - * app/file/file-open.c - * app/pdb/channel_cmds.c - * app/pdb/layer_cmds.c - * app/text/gimptextlayer.c - * app/vectors/gimpvectors.c - * app/vectors/gimpvectorsmodundo.c - * app/widgets/gimpchanneltreeview.c - * app/widgets/gimpitemtreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimptoolbox-dnd.c - * tools/pdbgen/pdb/channel.pdb - * tools/pdbgen/pdb/layer.pdb: changed accordingly. - -2008-01-08 Sven Neumann - - * app/file/file-open.c (file_open_layers): moved code to a utility - function, in preparation for a possible fix for bug #507116. - -2008-01-08 Kevin Cozens - - * plug-ins/script-fu/ftx/ftx.c (foreign_filetype): Test for symlink - before testing for other file types. Spotted by David Martin. - -2008-01-07 Michael Natterer - - * app/gegl/gimpoperationlevels.[ch]: add properties, some cleanup. - - * app/tools/gimplevelstool.c: use gegl_node_set() instead of - accessing the operation directly. - -2008-01-07 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationlevels.[ch]: new operator. - - * app/gegl/gimp-gegl.c: register it. - - * app/tools/gimplevelstool.c: use it, - -2008-01-07 Michael Natterer - - * app/gegl/gimpoperationcolorize.c (process): add some comments - about how this code is different from base/colorize.c - -2008-01-07 Michael Natterer - - * app/core/core-types.h: include gegl/gegl-types.h instead of - base/base-types.h. - - * app/gegl/gegl/gegl-types.h: add ugly #ifdefs so we can include - gegl.h and this file at the same time. - -2008-01-07 Michael Natterer - - * app/core/gimplayer.c (gimp_layer_transform_color): reordered - and renamed parameters to make more sense. - -2008-01-07 Michael Natterer - - * app/gegl/Makefile.am (INCLUDES): remove GTK_CFLAGS. - -2008-01-07 Øyvind KolÃĨs - - * app/tools/gimpbrightnesscontrasttool.c: make the mapping between - slider values and gegl-op properties more closely resemble gimp for - the brightness property. - -2008-01-07 Michael Natterer - - * app/gegl/gegl/gegl-operation.h: updated from GEGL. - - * app/gegl/gimpoperationtilesource.c: use the passed buffer in - process() and add prepare() implementation which sets the format. - -2008-01-05 Joao S. O. Bueno - - * plug-ins/pygimp/pygimp-vectors.c: fixed incorrect function name - in error message for vs_flip - -2008-01-07 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesink.c: - * app/gegl/gimpoperationtilesource.c: modified to match newer API in - GEGL. - - * app/gegl/gegl/gegl-operation-sink.h: - * app/gegl/gegl/gegl-operation-source.h: updated from GEGL. - -2008-01-06 Michael Natterer - - * app/gegl/gegl/buffer/gegl-buffer-types.h - * app/gegl/gegl/gegl-operation-filter.h - * app/gegl/gegl/gegl-operation-point-filter.h - * app/gegl/gegl/gegl-operation-sink.h - * app/gegl/gegl/gegl-operation-source.h - * app/gegl/gegl/gegl-operation.h: updated from GEGL. - -2008-01-06 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_create_map): - don't call a NULL GimpImageMapToolClass::get_operation(). - -2008-01-06 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_gegl_notify): - toggle the image map mode only if an image map currently exists. - Fixes crash when toggling "Use GEGL" while the tool is not active. - -2008-01-06 Sven Neumann - - * configure.in: compile a list of MIME types that GIMP can read. - - * desktop/gimp.desktop.in.in: use the list of MIME types as - compiled by the configure script. Fixes bug #507318. - - * desktop/Makefile.am - * desktop/gimp.applications.in - * desktop/gimp.keys.in: removed; the gimp.applications and - gimp.keys files are obsolete. - - * plug-ins/psd/psd.c (MAIN): corrected MIME type in unused code. - -2008-01-06 Sven Neumann - - * configure.in: applied patch from Matt Smith that adds a - --without-hal configure option (bug #507595). - - * INSTALL: document the new option. - -2008-01-06 Sven Neumann - - * configure.in - * plug-ins/Makefile.am: fixed --without-jpeg configure option - (bug #507572). - -2008-01-06 Michael Natterer - - * app/gegl/gimpoperationtilesource.c - * app/gegl/gimpoperationtilesink.c: formatting. - -2008-01-06 Sven Neumann - - * libgimpbase/gimpchecks.c - * libgimp/gimpunitcache.c - * libgimpwidgets/gimppageselector.c - * libgimpwidgets/gimpcolorscales.c: removed redundant checks for - enum values (which are unsigned) >= 0. - -2008-01-06 Sven Neumann - - * plug-ins/common/convmatrix.c (convolve_image): fixed out-of-bounds - array access. - -2008-01-06 Sven Neumann - - * libgimpwidgets/gimpmemsizeentry.c: use G_GUINT64_CONSTANT() - instead of a cast. - -2008-01-06 Sven Neumann - - * plug-ins/common/tile.c (tile): update the progress less often. - -2008-01-05 Manish Singh - - * plug-ins/pygimp/pygimp-image.c: new Image.new_layer() method, - which is convenience for creating, filling, and attaching a new - layer onto an image. Based on a idea and patch by JoÃŖo S. O. Bueno - in bug #505982. - -2008-01-05 Manish Singh - - * app/core/gimpimagemap.c: hardcode a declaration of - gegl_node_add_child() in here for now. - -2008-01-05 Øyvind KolÃĨs - - * app/gegl/gegl/gegl-operation-sink.h: - * app/gegl/gegl/gegl-operation-source.h: - * app/gegl/gegl/gegl-operation.h: - * app/gegl/gegl/gegl-types.h: - * app/gegl/gegl/graph/: - * app/gegl/gegl/graph/gegl-node-context.h: synchronoised with GEGL - headers. - - * app/gegl/gimpoperationtilesink.c: - * app/gegl/gimpoperationtilesource.c: updated to new API, where a - GeglNodeContext is used in process methods instead of gpointer - context_id. - -2008-01-04 Øyvind KolÃĨs - - * app/gegl/gegl/gegl-operation-sink.h: - * app/gegl/gegl/gegl-operation-source.h: - * app/gegl/gegl/gegl-operation.h: synchronised with GEGL headers. - - * app/gegl/gimpoperationtilesink.c: - * app/gegl/gimpoperationtilesource.c: added const GeglRectangle - *result to arguments of _process(). - -2008-01-04 Sven Neumann - - * app/config/gimpdisplayconfig.c: changed the default marching ants - speed to 200. - -2008-01-04 Hans Breuer - - **/makefile.msc app/gimpcore.def : updated so it compiles and links - (almost, see bug #507298) - -2008-01-04 Sven Neumann - - Merged from gimp-2-4 branch: - - * app/display/gimpdisplayshell-selection.c: - draw marching ants with G_PRIORITY_DEFAULT_IDLE; fixes bug #479875. - -2008-01-04 Michael Natterer - - * tools/pdbgen/pdb/color.pdb: optionally use gegl where we already - have operations (breaking the indentation to keep the diff small - and readable). - - * app/pdb/Makefile.am: add GEGL_CFLAGS. - - * app/pdb/color_cmds.c: regenerated. - -2008-01-04 Michael Natterer - - * app/config/gimpcoreconfig.[ch]: add "use-gegl" property but - don't serialize it. - - * app/widgets/gimptoolbox.c: add super ugly "Use GEGL" toggle to - the toolbox so we don't need to have prefs open all the time when - experimenting with gegl. - - * app/tools/gimpimagemaptool.[ch]: remove "Use GEGL" toggle from - the tool dialogs and connect to the config property instead. - - * app/core/gimpdrawable-desaturate.c - * app/core/gimpdrawable-invert.c: made them runtime-switchable by - looking at the config property. - -2008-01-04 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationcolorize.[ch] - * app/gegl/gimpoperationposterize.[ch]: new operators which still - use a lot of gimp stuff they shouldn't use, but at least the - infrastructure for improving them is there now. - - * app/gegl/gimp-gegl.c: register them. - - * app/tools/gimpcolorizetool.c - * app/tools/gimpposterizetool.c: use them. - -2008-01-04 Michael Natterer - - * app/core/gimpimagemap.c (gimp_image_map_apply): switch tile - sources and sinks to assume linear data. - -2008-01-04 Michael Natterer - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_create_map): - enable disabling gegl again, which i broke with my last commit. - -2008-01-04 Jakub Steiner - - * data/images/wilber-devel-icon.png - * data/images/wilber-icon.png - * data/images/wilber-devel.png - * data/images/gimp-logo.png: sync to the latest wilber version. - -2008-01-04 Jakub Steiner - - * libgimpwidgets/wilber-16.png: - * libgimpwidgets/wilber-22.png: - * libgimpwidgets/wilber-32.png: - * libgimpwidgets/wilber-48.png: - * libgimpwidgets/wilber-64.png: - * libgimpwidgets/wilber-256.png: update app icon. Add 256x256px - for OS X and Vista - -2008-01-04 Sven Neumann - - * app/tools/gimprotatetool.c (rotate_angle_changed): also update - trans_info[REAL_ANGLE]. Fixes bug #507167. - -2008-01-03 Bill Skaggs - - committing patch by Simon Budig to give an indication - when working on a layer mask, updated to fix staleness - and respond to "edit-changed". Might fix bug #132204. - - * app/core/core-enums.[ch]: add GIMP_SELECTION_LAYER_ON. - - * app/core/gimplayermask.c: add handler for "edit-changed". - - * app/core/gimpcanvas.[ch]: add new style - GIMP_CANVAS_STYLE_LAYER_MASK_ACTIVE. - - * app/display/gimpdisplayshell-selection.c: use new style - when layer mask is active. - - -2008-01-03 Michael Natterer - - * app/tools/gimpimagemaptool.[ch]: keep the central processing - node around here... - - * app/tools/gimpbrightnesscontrasttool.[ch] - * app/tools/gimpthresholdtool.[ch]: ...instead of here. - -2008-01-03 Michael Natterer - - * app/core/gimpimagemap.c: quite some cleanup (use GeglRectangle - more globally and don't leave stuff around if we abort for - whatever reason). - -2008-01-03 Michael Natterer - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationthreshold.[ch]: gimpish threshold operator - which has "low" and "high" properties. - - * app/gegl/gimp-gegl.c: register it. - - * app/gegl/gimpoperationdesaturate.[ch]: fix copyright. - - * app/tools/gimpthresholdtool.[ch]: use the new operator. - -2008-01-03 Michael Natterer - - Some more gegl code to have some playground for experimenting. - - * app/gegl/Makefile.am - * app/gegl/gegl-types.h - * app/gegl/gimpoperationdesaturate.[ch]: ported desaturate. - - * app/gegl/gimp-gegl.c: register it. - - * app/gegl/gimpoperationtilesink.h: fix name of parent class member. - - * app/core/gimpdrawable-desaturate.c: use the new operator, but - keep the old code around (prepared for runtime switching). - - * app/core/gimpdrawable-invert.c: prepare for runtime switching - here too. - -2008-01-03 Michael Natterer - - * app/gegl/gegl/gegl-operation-sink.h - * app/gegl/gegl/gegl-operation-source.h: updated copies from gegl. - - * app/gegl/gegl/gegl-operation-filter.h - * app/gegl/gegl/gegl-operation-point-filter.h: new files from gegl. - -2008-01-03 Bill Skaggs - - * plug-ins/common/randomize.c: added previews for hurl, - pick, and slur. - -2008-01-02 Michael Natterer - - * app/core/Makefile.am - * app/core/gimpdrawable-operation.[ch]: new files containing - gimp_drawable_apply_operation() which applies a gegl operation - to a drawable's selected pixels using shadow tiles. Will soon - be used in more places than just invert. - - * app/core/gimpdrawable-invert.c: use it here, makes - gimp_drawable_invert() a 3-liner. - -2008-01-01 Martin Nordholts - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_start): Use × - instead of x when initializing the rectangle size in the status - bar. - -2007-12-30 Sven Neumann - - * app/gegl/gimp-gegl-utils.[ch]: added new function - gimp_bpp_to_babl_format_linear(). - - * app/gegl/gimpoperationtilesink.[ch] - * app/gegl/gimpoperationtilesource.[ch]: added boolean property to - toggle between linear and gamma-corrected data. - - * app/core/gimpdrawable-invert.c: assume linear data to be closer - to the original definition of the invert operation in GIMP. - Enable the GEGL code path per default. - -2007-12-30 Sven Neumann - - * app/core/gimpdrawable-invert.c (gimp_drawable_invert): moved - processing in the GEGL code path back to the main loop. - -2007-12-30 Michael Natterer - - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimpcurvestool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpposterizetool.c - * app/tools/gimpthresholdtool.c: #include . Fixes the build. - -2007-12-30 Michael Natterer - - First actual image processing with GEGL! Wheeeee :-) - - * app/core/gimpimagemap.[ch]: added code to use gegl instead of the - old apply_func and apply_data. - - (gimp_image_map_new): add GeglNode parameter that, if passed, - switches the whole thing to using a gegl graph with this node - as central processing node. - - * app/tools/gimpimagemaptool.[ch]: add virtual function - get_operation() which, if implemented, returns a GeglNode to pass - to gimp_image_map_new(). Added a "Use GEGL" toggle so we can - switch between legacy and gegl code for the migration period. - - * app/tools/gimpbrightnesscontrasttool.[ch]: implement - get_operation() and return a brightness-contrast node. - - (gimp_briughtness_contrast_tool_map): set the node's properties - from the GUI. - -2007-12-30 Sven Neumann - - * app/display/gimpstatusbar.[ch] - * app/widgets/gimpprogressbox.[ch]: only update the GtkProgressBar - if that would cause a visible change. - -2007-12-30 Manish Singh - - * plug-ins/pygimp/pygimp-tile.c: subscript API for PixelFetcher. - -2007-12-30 Michael Natterer - - * app/gegl/gimpoperationtilesource.c: minor cleanup. - - * app/gegl/gimpoperationtilesink.[ch]: add "data-written" signal - that is emitted whenever pixels have been written to the tile - manager. - -2007-12-30 Øyvind KolÃĨs - - * app/core/Makefile.am: added GEGL_CFLAGS. - * app/core/gimpdrawable-invert.c: added an alternate GEGL code path - that can be enabled by uncommenting ENABLE_GEGL in the file. - -2007-12-30 Manish Singh - - * plug-ins/pygimp/gimpmodule.c - * plug-ins/pygimp/pygimp-pdb.c - * plug-ins/pygimp/pygimp-colors.c - * plug-ins/pygimp/pygimpcolor-api.h - * plug-ins/pygimp/pygimpcolor.h: Move pygimp_rgb_from_pyobject into - the gimpcolor module, and make it handle translation of sequences - into colors too. Make the GimpParam translation code use it. - - * plug-ins/pygimp/gimpcolormodule.c: Initial wrapping of - gimp_bilinear color functions. - - * plug-ins/pygimp/gimpenumsmodule.c - * plug-ins/pygimp/gimpmodule.c - * plug-ins/pygimp/pygimp.h - * plug-ins/pygimp/pygimp-tile.c: Basic wrapping of GimpPixelFetcher. - -2007-12-30 Øyvind KolÃĨs - - reviewed by: - - * app/core/Makefile.am: - * app/core/gimpdrawable-invert.c: (idle_fun), - (gimp_drawable_invert): - -2007-12-30 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesink.c: specify that this operation does - not need the full buffer available before "flushing" the sink. - - * app/gegl/gegl/gegl-operation-sink.h: - * app/gegl/gegl/gegl-operation.h: updated copy of headers. - -2007-12-30 Sven Neumann - - * plug-ins/jpeg/jpegqual.c (quant_info): added entry for Canon - Digital Ixus v2 and removed duplicate entry. - -2007-12-30 Sven Neumann - - * plug-ins/jpeg/jpegqual.c: use G_OPTION_REMAINING to access the - filenames passed as command-line arguments. - -2007-12-30 Sven Neumann - - * plug-ins/script-fu/scripts/chip-away.scm: applied another patch - from Ulf-D. Ehlert for the parameter range (bug #506110). - -2007-12-29 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesource.c: override the default behaviour - of GeglOperationSource to expand the result rect to the full have - rect with a NULL (nop) implementation. - -2007-12-30 Sven Neumann - - * app/core/gimpdrawable-invert.[ch]: let gimp_drawable_invert() - take a GimpProgress parameter. - - * tools/pdbgen/pdb/color.pdb - * app/pdb/color_cmds.c - * app/actions/drawable-commands.c: changed accordingly. - -2007-12-29 Michael Natterer - - * app/actions/Makefile.am - * app/core/Makefile.am - * app/display/Makefile.am - * app/tools/Makefile.am: use GEGL_CFLAGS. - -2007-12-29 Sven Neumann - - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c: formatting. - -2007-12-29 Øyvind KolÃĨs - - * app/gegl/gimpoperationtilesource.c: do not fetch the full extent - of the TileManager but only the needed pixels. Pass rowstride - correctly when fecting subregions. - -2007-12-29 Øyvind KolÃĨs - - * configure.in: depend on GEGL 0.0.15 (version ends in odd, thus - depending on svn trunk of GEGL). - - * app/gegl/gimpoperationtilesource.c: - (gimp_operation_tile_source_process): just use GEGL_AUTO_ROWSTRIDE for - the rowstride in gegl_buffer_set for now. - -2007-12-29 Michael Natterer - - * app/tools/gimpbrightnesscontrasttool.c - * app/tools/gimpcolorbalancetool.c - * app/tools/gimpcolorizetool.c - * app/tools/gimphuesaturationtool.c - * app/tools/gimplevelstool.c - * app/tools/gimpthresholdtool.c: more cleanup in preparation of - migrating to gegl. - -2007-12-29 Michael Natterer - - * app/gegl/gimp-gegl.c - * app/gegl/gimpoperationtilesource.c - * app/gegl/gimpoperationtilesink.c: fixup includes a bit. - -2007-12-29 Øyvind KolÃĨs - - * app/gegl/gegl/buffer/: added. - * app/gegl/gegl/buffer/gegl-buffer-types.h: added from GEGL trunk. - - * app/gegl/gegl/gegl-operation.h: .. - * app/gegl/gegl/gegl-types.h: updated copy from GEGL trunk. - - * app/gegl/gimp-gegl.c: - * app/gegl/gimpoperationtilesink.c: - * app/gegl/gimpoperationtilesource.c: Modified to build with direct - copies of GEGL headers. - -2007-12-29 Michael Natterer - - * app/base/tile-manager.[ch]: add boxed type GIMP_TYPE_TILE_MANAGER. - - * app/gegl/gimpoperationtilesink.c - * app/gegl/gimpoperationtilesource.c: use GParamSpecBoxed instead - of GParamSpecPointer for the tile-manager properties and ref them - properly. Some cleanup. - -2007-12-29 Sven Neumann - - * app/gegl/gimp-gegl-utils.h: declare gimp_bpp_to_babl_format() as - G_GNUC_CONST. - -2007-12-29 Michael Natterer - - * app/gegl/gimpoperationtilesink.c (tile_sink_process): add - some const that should also be in the gegl api *cough*. - -2007-12-29 Michael Natterer - - * app/gegl/gimp-gegl-utils.c (gimp_bpp_to_babl_format): use - g_return_val_if_fail() instead of g_warning(). - -2007-12-29 Michael Natterer - - * app/gegl/gimp-gegl-utils.c: new files containing - gimp_bpp_to_babl_format(). - - * app/gegl/gimpoptilesink.[ch] - * app/gegl/gimpoptilesource.[ch]: renamed.. - - * app/gegl/gimpoperationtilesink.[ch] - * app/gegl/gimpoperationtilesource.[ch]: ...to these. Cleaned them - up quite a bit more. - - * app/gegl/Makefile.am - * app/gegl/gimp-gegl.c: changed accordingly. - -2007-12-29 Michael Natterer - - Some cleanup... - - * app/Makefile.am: change linking order. - - * app/main.c: move gegl initialization from here... - - * app/app.c: ...to here. - - * app/gegl/gimpops.c: removed. - - * app/gegl/gimp-gegl.[ch] - * app/gegl/gegl-types.h: added. - - * app/gegl/Makefile.am: changed accordingly. - - * app/gegl/gimpoptilesink.[ch] - * app/gegl/gimpoptilesource.[ch]: made more gimpish. - -2007-12-29 Øyvind KolÃĨs - - Added adapter GEGL operations for reading and writing to TileManagers. - - * configure.in: - * app/Makefile.am: added gegl subdir. - * app/gegl/Makefile.am: added. - * app/gegl/gimpops.c: (gimp_gegl_ops_init): - * app/gegl/gimpoptilesink.[ch]: adapter GEGL operation for writing to - GIMP tile managers. - * app/gegl/gimpoptilesource.[ch]: adapter GEGL operation for reading - from GIMP tile managers. - * app/main.c: (main): call gimp_gegl_ops_init() - * app/gegl/gegl/: added some headers from GEGL that are not installed - since they are not public API yet. - -2007-12-29 Simon Budig - - * app/display/gimpdisplayshell.c: don't use ceil, use SCALEX. - * app/display/gimpdisplayshell-transform.c: Round hopefully more - properly. - - This probably exchanges one set of artefacts for another one... - - * app/display/gimpdisplayshell-render.c: minor fixes. - * app/display/gimpdisplayshell-selection.c: whitespace fix - -2007-12-28 Sven Neumann - - * app/widgets/gimprender.h: removed GIMP_RENDER_BUF_WIDTH and - GIMP_RENDER_BUF_HEIGHT definitions. - - * app/display/gimpdisplayshell.h: define the size of the display - render buffer here. - - * app/display/gimpdisplayshell.c - * app/display/gimpdisplayshell-draw.c - * app/widgets/gimprender.c: changed accordingly. - -2007-12-28 Sven Neumann - - * app/widgets/gimpcolormapeditor.c: don't use the render buffer. - Use a white background until this widget is rewritten. - -2007-12-28 Michael Natterer - - * app/widgets/gimpsamplepointeditor.c - (gimp_sample_point_editor_points_changed): fix my last commit to - this file (don't access sample points of NULL images). - -2007-12-28 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_update_highlight): When setting the - highlight, use the external rectangle representation, not the - internal one. - -2007-12-28 Sven Neumann - - * libgimpwidgets/gimpcairo-utils.[ch]: addec const qualifiers to - GimpRGB parameters. - - * app/widgets/gimprender.[ch]: removed global variables for - checkerboard colors and introduced functions to get the - checkerboard colors as pointers to GimpRGB structs. - - * app/actions/view-actions.c - * app/display/gimpdisplayshell-appearance.c - * app/widgets/gimpviewrenderer.c - * app/widgets/gimpcolormapeditor.c: changed accordingly. - -2007-12-28 Sven Neumann - - * libgimpwidgets/gimpcairo-utils.[ch]: added light and dark check - color parameters to gimp_cairo_checkerboard_create(). - - * libgimpwidgets/gimpcellrenderercolor.c - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_real_draw): - changed accordingly. - -2007-12-28 Sven Neumann - - * plug-ins/script-fu/scripts/chip-away.scm: applied patch from - Ulf-D. Ehlert that fixes the range of the "Chip amount" parameter - (bug #506110). - -2007-12-28 Sven Neumann - - * app/widgets/gimpviewrenderer.c: cache the checkerboard pattern. - -2007-12-28 Sven Neumann - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_real_draw): - if the surface has CAIRO_CONTENT_COLOR_ALPHA, render it on a - checkerboard background. - - * app/widgets/gimpviewrenderergradient.[ch]: just draw the - gradient with alpha-transparency instead of doing the blend on the - checkerboard here. - - * app/widgets/gimpcolormapeditor.c: formatting. - -2007-12-27 Michael Natterer - - * app/tools/gimpcolorbalancetool.c: remove the same cruft here. - -2007-12-27 Michael Natterer - - * app/tools/gimpbrightnesscontrasttool.c: remove unused cruft. - -2007-12-27 Sven Neumann - - * app/widgets/gimpthumbbox.c (gimp_thumb_box_new): enable line - wrapping on the info label. - -2007-12-26 Michael Natterer - - * app/actions/image-commands.c - * app/actions/select-commands.c - * app/core/gimp-edit.c - * app/core/gimpdrawable-stroke.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-preview.c - * app/core/gimpimage-rotate.c - * app/core/gimpimageundo.c - * app/core/gimpitem-preview.c - * app/dialogs/grid-dialog.c - * app/dialogs/layer-options-dialog.c - * app/dialogs/offset-dialog.c - * app/dialogs/stroke-dialog.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpdisplayshell.c - * app/display/gimpstatusbar.c - * app/paint/gimppaintoptions.c - * app/tools/gimpmagnifytool.c - * app/tools/gimpmeasuretool.c - * app/tools/gimppainttool.c - * app/tools/gimprectangletool.c - * app/tools/gimprotatetool.c - * app/tools/gimpscaletool.c - * app/tools/gimptexttool.c - * app/vectors/gimpvectors-export.c - * app/vectors/gimpvectors-import.c - * app/widgets/gimpcursorview.c - * app/widgets/gimpimagepropview.c - * app/widgets/gimptoolbox-dnd.c - * app/widgets/gimpviewrendererdrawable.c - * app/widgets/gimpviewrendererimage.c - * app/xcf/xcf-load.c - * app/xcf/xcf-save.c: use gimp_image_get/set_resolution() instead - of accessing the GimpImage members directly. - -2007-12-26 Sven Neumann - - * app/paint/gimpbrushcore.c: sprinkled with const qualifiers. - -2007-12-25 Michael Natterer - - * app/core/gimpimage-guides.[ch] - * app/core/gimpimage-sample-points.[ch]: add accessors for the lists - of guides and sample points. - - * app/core/gimpimage-crop.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-flip.c - * app/core/gimpimage-resize.c - * app/core/gimpimage-rotate.c - * app/core/gimpimage-scale.c - * app/core/gimpimage-snap.c - * app/core/gimpimage.c - * app/display/gimpdisplayshell-appearance.c - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell.c - * app/widgets/gimpsamplepointeditor.c - * app/xcf/xcf-save.c: use the new accessors. - -2007-12-25 Michael Natterer - - * app/core/gimpimage.h (struct GimpImage):: renamed "cmap" to - "colormap" and "num_cols" to "n_colors". - - * app/core/gimpimage.c - * app/core/gimpimage-colormap.[ch] - * app/widgets/gimpcolormapeditor.c: changed accordingly. - -2007-12-25 Michael Natterer - - * app/actions/channels-commands.c - * app/actions/colormap-actions.c - * app/actions/colormap-commands.c - * app/actions/image-commands.c - * app/core/gimp-edit.c - * app/core/gimpdrawable-preview.c - * app/core/gimpimage-colorhash.c - * app/core/gimpimage-colormap.c - * app/core/gimpimage-convert.c - * app/core/gimpimage-crop.c - * app/core/gimpimage-duplicate.c - * app/core/gimpimage-flip.c - * app/core/gimpimage-guides.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-preview.c - * app/core/gimpimage-quick-mask.c - * app/core/gimpimage-resize.c - * app/core/gimpimage-rotate.c - * app/core/gimpimage-sample-points.c - * app/core/gimpimage-scale.c - * app/core/gimpimage-snap.c - * app/core/gimpimage.c - * app/core/gimpimagefile.c - * app/core/gimpimageundo.c - * app/core/gimpitem-preview.c - * app/core/gimpitem.c - * app/core/gimplayer.c - * app/core/gimppalette-import.c - * app/core/gimpprojection-construct.c - * app/core/gimpprojection.c - * app/core/gimpselection.c - * app/core/gimpundo.c - * app/dialogs/layer-options-dialog.c - * app/dialogs/print-size-dialog.c - * app/display/gimpdisplay.c - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-scale.c - * app/display/gimpdisplayshell-scroll.c - * app/display/gimpdisplayshell-title.c - * app/display/gimpdisplayshell-transform.c - * app/display/gimpdisplayshell.c - * app/display/gimpstatusbar.c - * app/file/file-open.c - * app/paint/gimppaintoptions.c - * app/tools/gimpaligntool.c - * app/tools/gimpcolortool.c - * app/tools/gimpeditselectiontool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimpmeasuretool.c - * app/tools/gimpmovetool.c - * app/tools/gimpperspectiveclonetool.c - * app/tools/gimprectangleselecttool.c - * app/tools/gimprectangletool.c - * app/tools/gimprotatetool.c - * app/vectors/gimpvectors-export.c - * app/vectors/gimpvectors-import.c - * app/vectors/gimpvectors.c - * app/widgets/gimpimagepropview.c - * app/widgets/gimpnavigationview.c - * app/widgets/gimpselectioneditor.c - * app/widgets/gimpviewrendererdrawable.c - * app/widgets/gimpviewrendererimage.c - * app/xcf/xcf-load.c - * app/xcf/xcf-save.c - * tools/pdbgen/pdb/guides.pdb - * tools/pdbgen/pdb/image.pdb: use accessors for many image properties. - - * app/pdb/guides_cmds.c - * app/pdb/image_cmds.c: regenerated. - -2007-12-25 Michael Natterer - - * app/dialogs/file-save-dialog.c: forgot to port some debug output - to GIMP_LOG(). - -2007-12-23 Michael Natterer - - * app/actions/layers-commands.c - * app/core/gimpchannel-combine.c - * app/core/gimpchannel-select.c - * app/core/gimpchannel.c - * app/core/gimpdrawable-convert.c - * app/core/gimpdrawable.c - * app/core/gimpdrawablemodundo.c - * app/core/gimpfloatingselundo.c - * app/core/gimpimage-convert.c - * app/core/gimpimage-merge.c - * app/core/gimpimage-resize.c - * app/core/gimpimage.c - * app/core/gimpitem-preview.c - * app/core/gimpitem.c - * app/core/gimplayer-floating-sel.c - * app/core/gimplayer.c - * app/core/gimplayermask.c - * app/core/gimplayerundo.c - * app/core/gimpmaskundo.c - * app/core/gimppalette-import.c - * app/core/gimpprojection-construct.c - * app/core/gimpselection.c - * app/dialogs/offset-dialog.c - * app/text/gimptextlayer-xcf.c - * app/text/gimptextlayer.c - * app/vectors/gimpvectors-compat.c - * app/vectors/gimpvectors.c - * app/vectors/gimpvectorsmodundo.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpviewrendererdrawable.c - * app/widgets/gimpviewrenderervectors.c: use accessors for item, - layer, channel and mask attributes. - -2007-12-22 Sven Neumann - - * app/core/gimpimage-sample-points.c - (gimp_image_add_sample_point_at_pos): corrected undo description. - -2007-12-22 Sven Neumann - - * data/palettes/Tango.gpl: removed duplicate entry ("Untitled"). - -2007-12-21 Michael Natterer - - * app/tools/gimpeditselectiontool.c - * app/tools/gimpiscissorstool.c - * app/tools/gimptexttool.c - * app/tools/gimptransformtool.c: use accessors for drawable and - item properties. - -2007-12-21 Michael Natterer - - * app/xcf/xcf-save.c - * app/xcf/xcf-load.c: use accessors for colormap, parasites and - more item, layer, channel and mask properties instead of accessing - the object structs directly. Some minor style cleanups. - -2007-12-20 Sven Neumann - - * app/plug-in/gimppluginmanager-menu-branch.[ch]: added accessor - for the list of menu branches. - - * app/actions/plug-in-actions.c (plug_in_actions_setup): use it. - -2007-12-20 Sven Neumann - - * configure.in: readded some AC_SUBST() that were removed under - the wrong assumption they would not be needed any longer. - Consistently use # to mark comments in configure.in. - -2007-12-20 Sven Neumann - - * app/app.c: call gegl_exit() on shutdown. - -2007-12-20 Sven Neumann - - * INSTALL - * configure.in: require GEGL >= 0.0.14. - - * app/Makefile.am - * app/app.c: initialize the GEGL library. - -2007-12-20 Sven Neumann - - * app/paint/gimpink.c: minor cleanup. - -2007-12-20 Sven Neumann - - * authors.xml: updated last-active attribute for recent contributors. - -2007-12-20 Sven Neumann - - * configure.in - * plug-ins/Makefile.am - * plug-ins/psd: added new PSD load plug-in written by John Marshall. - This plug-in adds a couple of features. See bug #448181 for details. - - * plug-ins/common/Makefile.am - * plug-ins/common/plugin-defs.pl - * plug-ins/common/psd-load.c: removed old psd-load plug-in. - -2007-12-20 Sven Neumann - - * app/widgets/gimpprofilechooserdialog.c: added code for adding a - shortcut to the default ICC profile location on Windows. Based on - a patch by John Marshall (bug #503410). - -2007-12-20 Sven Neumann - - * app/actions/documents-commands.c (documents_clear_cmd_callback): - adapt to changed gimp_documents_save() API. - -2007-12-19 Michael Natterer - - * app/core/gimp-contexts.[ch] - * app/core/gimp-documents.[ch]: add GErrors to save() and load(). - - * app/core/gimp.c - * app/tools/gimp-tools.c: handle the returned errors. - -2007-12-18 Sven Neumann - - * plug-ins/common/psd-load.c: applied patch from John Marshall - that fixes handling of PSD files with blank layer names (bug #504149). - -2007-12-18 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c: Added extra checks to stop - bad syntax in LET*, LET, and LETREC from causing a segmentation fault - in Linux. See SourceForge bug #1817986. - -2007-12-18 Bill Skaggs - - * libgimpwidgets/gimpstock.h: fix typo that probably caused - bug #503834. - -2007-12-18 Michael Natterer - - * app/xcf/xcf-load.c - * app/xcf/xcf-save.c: use the proper APIs to get/set many item, - layer, channel and vectors properties instead of reading/writing - their struct members directly. - -2007-12-18 Sven Neumann - - * libgimpwidgets/gimpscrolledpreview.c - * libgimpwidgets/gimpcolorselect.c: don't rely on the pointer - position in the GdkEventMotion struct, query the pointer instead. - -2007-12-18 Sven Neumann - - * app/widgets/gimpgradienteditor.c: don't rely on the pointer - position in the GdkEventMotion struct, query the pointer instead. - -2007-12-18 Sven Neumann - - * app/display/gimpnavigationeditor.c: minor cleanup. - - * app/widgets/gimpnavigationview.c - (gimp_navigation_view_motion_notify): fixed handling of motion - events that broke when I introduced the call to - gdk_event_request_motions(). - -2007-12-18 Sven Neumann - - * app/core/gimppalette-import.c - * app/core/gimppalette-load.[ch]: applied slightly modified patch - from Nicola Archibald that adds import of colors from CSS files - (bug #464480). - - * app/core/gimppalette.c (gimp_palette_find_entry): allow to call - this function on an empty palette. - -2007-12-18 Sven Neumann - - * app/base/tile-pyramid.c: use the coordinate parameters in - tile_data_pointer() instead of adjusting the pointer manually. - -2007-12-18 Sven Neumann - - * app/base/tile-pyramid.c - * app/paint-funcs/paint-funcs.c: sprinkled with const qualifiers. - -2007-12-18 Sven Neumann - - * app/base/tile-manager.[ch]: renamed tile_manager_validate() to - tile_manager_validate_tile(). If no validate_proc is set, - initialize the tile data to all zero when validating it. This way - we never hand out uninitialized data and valgrind doesn't need to - complain any longer. - - * app/base/tile.c: changed accordingly. - - * app/core/gimpselection.c: no need to set an extra validate_proc - here as the default implementation now does the job for us. - -2007-12-18 Sven Neumann - - * app/core/gimpdrawable.[ch]: made get_tiles() a method of - GimpDrawable. - -2007-12-18 Sven Neumann - - * app/display/gimpdisplayshell-render.c - (render_image_tile_fault_nearest): added code for 1 and 3 bytes - per pixel. Fixes bug #504115. - -2007-12-16 Bill Skaggs - - * plug-ins/common/edge.c: reverted to state pre-12/16. - -2007-12-17 Sven Neumann - - * app/core/gimpprojection-construct.c (project_intensity): minor - cleanup. - -2007-12-17 Sven Neumann - - * libgimp/gimpregioniterator.c: code cleanup; reduced number of - progress updates. - -2007-12-16 Bill Skaggs - - * plug-ins/common/edge.c: name reverted to "Edge", - label in combo reverted to "Prewitt", other changes kept. - -2007-12-16 Bill Skaggs - - * plug-ins/common/edge.c: renamed to "Sharp Edges", - added "invert" option, other usability tweaks. - -2007-12-16 Bill Skaggs - - * menus/image-menu.xml.in: missed this yesterday - -2007-12-16 Sven Neumann - - * plug-ins/common/plugin-defs.pl - * plug-ins/common/Makefile.am: re-added psd-load. Looks like Bill - accidentally removed it. - -2007-12-16 Sven Neumann - - * libgimpwidgets/gimpcairo-utils.[ch]: added new function - gimp_cairo_set_focus_line_pattern(). - - * libgimpwidgets/gimpcellrenderercolor.c - (gimp_cell_renderer_color_render): use the focus line pattern to - emphasize the selected entry. - - * app/widgets/gimppaletteview.c (gimp_palette_view_expose): use the - new utility function. - - * libgimpwidgets/gimpwidgets.def: updated. - -2007-12-15 Bill Skaggs - - * app/widgets/gimphelp-ids.h - * app/display/gimpdisplayshell-scale.[ch] - * app/display/gimpnavigationeditor.[ch] - * app/actions/view-commands.[ch] - * app/actions/view-commands.c: - - Changed "Fit Image to Window" to "Fill Window", and changed - "fit-to" to "fill" in all the related things. Fixes - bug #490364. - -2007-12-15 Bill Skaggs - - * plug-ins/common/mapcolor.c: removed - * plug-ins/common/plugin-defs.pl - * plug-ins/common/Makefile.am: updated accordingly - - See bug #436145 for the reasons for removing this plug-in. - -2007-12-14 Sven Neumann - - * app/widgets/gimpfiledialog.c: added utility function to reduce - code duplication. - -2007-12-14 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c (eqv): Only return true - when numbers are of equal value AND of the same type (ie. both - exact or inexact). R5RS compliance fix. - -2007-12-14 Martin Nordholts - - Reverted the changes that made GimpRectangleTool keep track of its - active display in GimpRectangleToolPrivate, the approach is - broken. - -2007-12-14 Michael Natterer - - * tools/pdbgen/pdb/edit.pdb: use gimp_pdb_get_buffer() which - sets a proper error instead of looking up the buffers manually. - - * app/pdb/edit_cmds.c - * libgimp/gimpedit_pdb.c: regenerated. - -2007-12-14 Michael Natterer - - * app/core/gimp-edit.[ch]: added GErrors when functions can fail. - - * app/actions/edit-commands.c: handle the returned errors. - - * tools/pdbgen/pdb/edit.pdb: same here (*don't* pass the error as - usual since these functions never fail but have a boolean return - value indicating success instead; ugly, but better than having the - gimp_message() calls in the core). Also changed the named buffer - cut and copy functions to do the same (never fail but return a - NULL buffer name on failure), so they behave as documented. - - * app/pdb/edit_cmds.c: regenerated. - -2007-12-14 Sven Neumann - - * app/base/tile-pyramid.c: reduced rounding errors. - -2007-12-13 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Changed name of - `gimp_rectangle_tool_is_active_at' to - `gimp_rectangle_tool_is_active_on_display'. - - * app/tools/gimpcroptool.c - * app/tools/gimprectangleselecttool.c: Use the new name. - -2007-12-13 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Don't use the `display' member - of GimpTool for keeping track of what display the rectangle is - active on. Instead store the active display in - GimpRectangleToolPrivate. This change is based on a patch by Bill - Skaggs. - (gimp_rectangle_tool_is_active) - (gimp_rectangle_tool_is_active_at) - (gimp_rectangle_tool_get_active_display): New public functions for - GimpRectangleTool active-display interaction. - - * app/tools/gimpcroptool.c - * app/tools/gimprectangleselecttool.c - * app/tools/gimpellipseselecttool.c: Use the active display of - GimpRectangleTool instead of tool->display. - -2007-12-13 Bill Skaggs - - * app/widgets/gimpfiledialog.c (gimp_file_dialog_new): add - shortcut to user's DOCUMENTS dir, fixes bug #325294. - -2007-12-13 Sven Neumann - - * app/base/temp-buf.c (temp_buf_demultiply): corrected formula for - demultiplying the alpha value. - -2007-12-13 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_button_release): Make canceling work a bit - better. - -2007-12-13 Sven Neumann - - * app/base/tile-pyramid.c (tile_pyramid_write_quarter) - * app/display/gimpdisplayshell-render.c - (render_image_tile_fault_nearest): corrected formula used for - pre-multiplying the alpha value. - -2007-12-13 Sven Neumann - - Speed up our display rendering code paths by keeping data with - pre-multiplied alpha where possible. The projection tile-manager - at 100 % zoom is not affected. So we can still always get the - non-pre-multiplied pixel data. - - * app/core/gimpprojection.[ch]: removed - gimp_projection_get_opacity(), the projection is always opaque. - - * app/base/tile-pyramid.[ch]: use pre-multiplied alpha for the - upper levels of the pyramid. This speeds up validation of the - upper levels significantly. - - * app/base/temp-buf.[ch]: added temp_buf_demultiply(). - - * app/core/gimpimage-preview.c: demultiply the preview temp-buf - obtained from the projection's tile tyramid. - - * app/display/gimpdisplayshell-draw.c - * app/display/gimpdisplayshell-render.c: added code to deal with - pre-multiplied data. In fact all data returned by - render_image_tile_fault() is now pre-multiplied so that - render_image_rgb_a() and render_image_gray_a() don't need to use - the large lookup tables from gimprender.[ch] any longer. - -2007-12-13 Sven Neumann - - * app/widgets/gimprender.[ch]: export the light and dark check - color so that places that just need this information don't have to - access the gimp_render_blend_{dark,light}_check arrays. - - * app/actions/view-actions.c - * app/display/gimpdisplayshell-appearance.c - * app/widgets/gimpcolormapeditor.c: changed accordingly. - -2007-12-13 Sven Neumann - - * app/gimp-log.h: code cleanup. - -2007-12-13 Sven Neumann - - * app/base/tile-manager-crop.c (tile_manager_crop): code cleanup. - -2007-12-12 Tor Lillqvist - - * libgimpbase/gimpenv.c (gimp_locale_directory) [Win32]: Use - g_win32_locale_filename_from_utf8() instead of duplicating its - code. - -2007-12-12 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Extended public interface a - bit. - (gimp_rectangle_tool_point_in_rectangle): New convenience function - to test if a point is within the rectangle (if active). - (gimp_rectangle_tool_rectangle_is_new): New function so that - clients can determine if the rectangle currently being - rubber-banded was created from scatch or not. - -2007-12-12 Sven Neumann - - * libgimpwidgets/gimpcairo-utils.[ch]: renamed - gimp_cairo_set_source_color() to gimp_cairo_set_source_rgb() and - added an RGBA variant. - - * libgimpwidgets/gimpcellrenderercolor.c - (gimp_cell_renderer_color_render) - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): changed - accordingly. - - * libgimpwidgets/gimpwidgets.def: updated. - -2007-12-12 Sven Neumann - - * libgimpwidgets/gimpcairo-utils.[ch]: added new function - gimp_cairo_checkerboard_create() and renamed - gimp_cairo_create_surface_from_pixbuf() to - gimp_cairo_surface_create_from_pixbuf(). - - * libgimpwidgets/gimpcellrenderercolor.c - (gimp_cell_renderer_color_render): use Cairo utils here. - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_create_pattern): - changed accordingly. - - * libgimpwidgets/gimpwidgets.def: updated. - -2007-12-12 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/gimpcairo-utils.[ch]: removed here... - - * libgimpwidgets/Makefile.am - * libgimpwidgets/gimpcairo-utils.[ch]: and added here after some - cleanup. - - * libgimpwidgets/gimpwidgets.h: include gimpcairo-utils.h. - - * app/widgets/gimpviewrenderer.c - * app/widgets/gimpviewrenderergradient.c - * app/widgets/gimpviewrendererpalette.c: changed accordingly. - - * libgimpwidgets/gimpwidgets.def: updated for Cairo utils. - - * libgimp/gimp.def: added gimp_image_get_vectors_by_tattoo. - -2007-12-12 Michael Natterer - - * app/core/gimpitem.[ch]: added GError to GimpItem::rename(). - - * app/core/gimplayer.c - * app/core/gimplayermask.c: set errors when renaming is impossible. - - * app/text/gimptextlayer.c - * app/core/gimpimage-quick-mask.c: changed accordingly. - - * app/actions/channels-commands.c - * app/actions/layers-commands.c - * app/actions/vectors-commands.c - * app/widgets/gimpitemtreeview.c: handle the returned errors. - - * tools/pdbgen/pdb/drawable.pdb - * tools/pdbgen/pdb/vectors.pdb: pass the error. - - * app/pdb/drawable_cmds.c - * app/pdb/vectors_cmds.c: regenerated. - -2007-12-12 Michael Natterer - - * app/paint/gimpheal.c: no need to declare init() and class_init(), - these declarations come for free with G_DEFINE_TYPE(). - -2007-12-12 Michael Natterer - - * app/core/gimplayer-floating-sel.c (floating_sel_to_layer): add - missing return value, this is no void function any more. - -2007-12-12 Sven Neumann - - * plug-ins/common/whirlpinch.c: extended the range allowed for the - whirl angle (bug #499398). - -2007-12-12 Sven Neumann - - * INSTALL - * configure.in - * app/gui/gui.c (GTK_REQUIRED_MICRO): bumped minimum required - version of gtk+ to 2.12.1. - - * app/widgets/gimpdockbook.c (gimp_dockbook_tab_drag_motion): - removed unused parameter that was needed for gtk+ < 2.12.1. - -2007-12-12 Tor Lillqvist - - * libgimpbase/gimpenv.c (gimp_toplevel_directory) [Win32]: Use the - location of the libgimpbase DLL and not that of the main - executable (which will be the Python interpreter in the case of - python-fu) to determine the top-level GIMP installation - folder. (#502506) - - (gimp_locale_directory) [Win32]: Guard against the possibility - that we can't get the system codepage form of the locale - directory, in case the installation folder contains characters not - in the system codepage. In that case use the short name instead. - -2007-12-12 Sven Neumann - - * libgimpwidgets/gimpcellrenderercolor.c: draw using Cairo. - -2007-12-12 Tor Lillqvist - - * app/base/tile-private.h - * app/base/tile-swap.c: Move the LARGE_SEEK and LARGE_TRUNCATE - macros from tile-private.h to tile-swap.c as they aren't used - anywhere else, and the helper function used on Windows was static - in tile-swap.c anyway. (#503124) - -2007-12-11 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c (get_consecutive_cells): - Fix to prevent reporting out of memory when there should be plenty - of cells still available. See SourceForge bug #1794369. - -2007-12-11 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c: Don't abort the top-level - s-exp when loading a file. See SourceForge bug #1589711. - -2007-12-11 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme.c: Applied changes from - official version of TinyScheme which fix is_integer(). See - SourceForge bug #1593861. - -2007-12-11 Bill Skaggs - - * app/paint/gimpheal.c: heal from edge of brush mask - instead of edges of paint area. - - * app/paint/gimpbrushcore.[ch]: export - gimp_brush_core_get_brush_mask() to enable use of mask. - -2007-12-11 Michael Natterer - - * app/pdb/Makefile.am - * app/pdb/gimppdb-utils.[ch]: new utility functions which look up - brushes, patterns etc. and set appropriate error messages if the - objects are not found. - - * tools/pdbgen/pdb/brush.pdb - * tools/pdbgen/pdb/brushes.pdb - * tools/pdbgen/pdb/buffer.pdb - * tools/pdbgen/pdb/context.pdb - * tools/pdbgen/pdb/convert.pdb - * tools/pdbgen/pdb/gradient.pdb - * tools/pdbgen/pdb/gradients.pdb - * tools/pdbgen/pdb/paint_tools.pdb - * tools/pdbgen/pdb/palette.pdb - * tools/pdbgen/pdb/palettes.pdb - * tools/pdbgen/pdb/pattern.pdb - * tools/pdbgen/pdb/patterns.pdb: use them here. Also set non_empty - to TRUE for all brush, pattern etc. names. - - * app/pdb/brush_cmds.c - * app/pdb/brushes_cmds.c - * app/pdb/buffer_cmds.c - * app/pdb/context_cmds.c - * app/pdb/convert_cmds.c - * app/pdb/gradient_cmds.c - * app/pdb/gradients_cmds.c - * app/pdb/paint_tools_cmds.c - * app/pdb/palette_cmds.c - * app/pdb/palettes_cmds.c - * app/pdb/pattern_cmds.c - * app/pdb/patterns_cmds.c: regenerated. - -2007-12-11 Sven Neumann - - * app/plug-in/gimpplugin-message.c: added sanity checks to message - handlers. This doesn't keep us from crashing on invalid input, but - we will at least get some warnings before that happens. - - * libgimpbase/gimpprotocol.c: made the code more robust against - errors on the wire protocol level. - -2007-12-11 Sven Neumann - - * libgimpbase/gimpwire.c (_gimp_wire_read_string): use g_try_new() - so a plug-in can't easily crash the core by sending an invalid - string message. - -2007-12-11 Sven Neumann - - * libgimpbase/gimpwire.c (gimp_wire_register): allocate - GimpWireHandler structs using GSlice. - -2007-12-11 Sven Neumann - - * libgimpbase/gimpwire.c (_gimp_read_read_string): NULL-terminate - all strings coming in over the wire protocol. Should help with bug - #498207. - (gimp_wire_register): - -2007-12-10 Sven Neumann - - * plug-ins/pygimp/gimpmodule.c (pygimp_set_background) - (pygimp_set_foreground): allow the use of CSS color names and - hexadecimal color notation. - -2007-12-10 Bill Skaggs - - * app/paint/gimpheal.c: make the healing brush work properly - when dragged. Fixes bug #492575. - -2007-12-09 Hans Breuer - - * app/gimp-log.h : an ugly but working variant for no varargs macros - - * app/base/base-utils.c(get_physical_memory_size) : fallback to - GetMemoryStatus() for older compiler/sdk - - * app/core/gimplayer-floating-sel.c : second argument to g_set_error() - is an uint32, not a pointer - - * **/makefile.msc : updated and removed -GD to let msvc9 complain less - -2007-12-09 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Added - gimp_rectangle_tool_init() (and minor code cleanup). - - * app/tools/gimprectangleselecttool.c - (gimp_rect_select_tool_init): Call gimp_rectangle_tool_init(). - - * app/tools/gimpcroptool.c - (gimp_crop_tool_init): Call gimp_rectangle_tool_init(). - -2007-12-08 Sven Neumann - - * plug-ins/pygimp/gimpfu.py (_run): fixed logic that decides if a - dialog should be shown or not. - -2007-12-07 Bill Skaggs - - * app/core/gimpimage-snap.c: fix typo in previous commit. - -2007-12-07 Bill Skaggs - - * app/display/gimpdisplayshell-draw.c: draw grid correctly when - non-integer spacing is combined with a large offset. Fixes - bug #502374. - - * app/core/gimpimage-snap.c: make snapping to grid work when - coord is less than the grid offset. - -2007-12-07 Sven Neumann - - * configure.in: fixed indentation of --help output. - -2007-12-07 Sven Neumann - - * plug-ins/pygimp/pygimp-colors.c - * plug-ins/pygimp/gimpcolormodule.c: removed calls to PyMem_Free(). - -2007-12-07 Sven Neumann - - * libgimpcolor/test-color-parser.c: removed unused import. - -2007-12-07 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_tool_events): if a device change happens, make - sure we update the new active tool's focus display and modifier - state. Fixes most of bug #493176. - -2007-12-07 Michael Natterer - - * app/gimp-log.[ch]: renamed log domain TOOLS to TOOL_EVENTS and - added domain TOOL_FOCUS. - - * app/display/gimpdisplayshell-callbacks.c: s/TOOLS/TOOL_EVENTS/ - - * app/tools/gimptool.c: port focus debug output to GIMP_LOG(). - -2007-12-07 Michael Natterer - - * app/core/gimpselection.[ch]: added GErrors to - gimp_selection_extract() and gimp_selection_float(). - - * app/core/gimp-edit.c - * app/tools/gimpeditselectiontool.c - * app/actions/select-commands.c: handle the returned error. - - * app/core/gimpdrawable-transform.c: pass NULL errors since this - file knows what it does and won't get errors. - - * tools/pdbgen/pdb/selection.pdb: pass the error. - - * app/pdb/selection_cmds.c: regenerated. - -2007-12-07 Sven Neumann - - * plug-ins/pygimp/gimpui.py (ColorSelector.__init__): accept a - string and parse it using gimpcolor.rgb_parse_css(). - - * plug-ins/pygimp/plug-ins/sphere.py: show off the new feature. - -2007-12-07 Sven Neumann - - * plug-ins/pygimp/plug-ins/foggify.py: push/pop a context instead - of manually restoring the background color. - -2007-12-07 Sven Neumann - - * app/batch.c (batch_run): only show the message about using the - default batch interpreter when running in verbose mode. - -2007-12-06 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_set_property): Also update the integer - representation of the rect when the GObject properties has been - set. - -2007-12-06 Michael Natterer - - * app/core/gimpimage-merge.[ch] - * app/core/gimpimage-convert.[ch]: added GError parameters. - - * app/dialogs/convert-dialog.c - * app/actions/image-commands.c - * app/actions/vectors-commands.c: handle the returned error. - - * tools/pdbgen/pdb/convert.pdb: pass the error. - - * app/pdb/convert_cmds.c: regenerated. - -2007-12-06 Michael Natterer - - * app/core/gimpdrawable-bucket-fill.[ch]: add GError parameter. - - * app/tools/gimpbucketfilltool.c: handle the returned error. - - * tools/pdbgen/pdb/edit.pdb: pass the error. - - * app/pdb/edit_cmds.c: regenerated. - -2007-12-06 Michael Natterer - - * app/paint/gimppaintcore-stroke.[ch]: added GError arguments and - fixed all functions to abort when the first call to - gimp_paint_core_start() fails (it won't succeed either for the - next path or whatever segemts). - - * app/core/gimpitem.[ch]: added GError to gimp_item_stroke() - - * app/core/gimpselection.c - * app/core/gimpchannel.c - * app/vectors/gimpvectors.c: don't gimp_message() in - GimpItem::stroke() but set the error. - - * app/dialogs/stroke-dialog.c - * app/actions/vectors-commands.c - * app/actions/select-commands.c: handle the returned errors. - - * tools/pdbgen/pdb/edit.pdb - * tools/pdbgen/pdb/paths.pdb - * tools/pdbgen/pdb/paint_tools.pdb: pass the error to the stroke - functions. - - * app/pdb/paint_tools_cmds.c - * app/pdb/edit_cmds.c - * app/pdb/paths_cmds.c: regenerated. - -2007-12-06 Michael Natterer - - Move some gimp_message() calls where they belong: - - * app/core/gimplayer-floating-sel.[ch]: removed unreachable - gimp_message() in floating_sel_anchor() and added GError parameter - to floating_sel_to_layer(). - - * app/core/gimplayer.c - * app/core/gimpimage-quick-mask.c - * app/actions/layers-commands.c: pass NULL or an error as - appropriate and show the error message. - - * tools/pdbgen/pdb/floating_sel.pdb: set the error when the passed - layer was no floating selection. - - * app/pdb/floating_sel_cmds.c: regenerated. - -2007-12-05 Martin Nordholts - - * app/actions/tool-options-commands.c - (tool_options_save_to_cmd_callback) - (tool_options_restore_from_cmd_callback): Only care about - GIMP_CONFIG_PARAM_SERIALIZE properties, fixes bug #498948. - -2007-12-05 Michael Natterer - - * tools/pdbgen/pdb/fileops.pdb: pass the error also to - file_utils_filename_to_uri(). - - * app/pdb/fileops_cmds.c: regenerated. - -2007-12-05 Sven Neumann - - * modules/gimpinputdevicestore-dx.c - * modules/gimpinputdevicestore-hal.c: the code for !HAVE_LIBHAL - ended up in the wrong file. - -2007-12-05 Michael Natterer - - * tools/pdbgen/pdb/image.pdb (set_resolution): set the error - instead of using gimp_message(). - - * app/pdb/image_cmds.c: regenerated. - -2007-12-05 Michael Natterer - - * app/pdb/gimppdb-query.[ch]: added GError arguments and reduce - number of labels: to one by simply checking if the regex exists - before unreffing it. - - * tools/pdbgen/pdb/procedural_db.pdb: pass the error to the query - functions. - - * app/pdb/procedural_db_cmds.c: regenerated. - -2007-12-05 Michael Natterer - - * configure.in: disable deprecated API also for the current - develoment versions of glib, pango and gtk+, so we can fix new - deprecations as soon as they pop up. - -2007-12-04 Bill Skaggs - - * tools/pdbgen/pdb/image.pdb: pass "error" instead of NULL. - * app/pdb/image_cmds.c: regenerated. - -2007-12-04 Bill Skaggs - - * tools/pdbgen/pdb/gradient.pdb - * tools/pdbgen/pdb/palette.pdb - * tools/pdbgen/pdb/brush.pdb: use the new error arg instead - of creating a GError and handling it internally. - - * app/pdb/palette_cmds.c - * app/pdb/gradient_cmds.c - * app/pdb/brush_cmds.c: regenerated. - -2007-12-04 Michael Natterer - - * app/core/gimpdrawable.[ch]: added new API - gimp_drawable_estimate_memsize() and virtual function - GimpDrawable::estimate_memsize() which estimate the memsize of a - drawable after scaling/resizing. - - * app/core/gimplayer.c: implement the virtual function and take - the layer mask into account. - - * app/core/gimpimage-item-list.[ch] (gimp_image_item_list_get_list): - added const qualifiers. - - * app/core/gimpimage-scale.c (gimp_image_scale_check): use the new - function to correctly estimate the new size instead of scaling the - drawables' memsizes including all constant parts. Fixes bug #329468. - - * app/gimp-log.[ch]: added IMAGE_SCALE log domain. - - * app/core/gimpimage-scale.c: use it here for debugging output. - -2007-12-04 Sven Neumann - - * modules/Makefile.am - * modules/gimpinputdevicestore.c: split into two new files: - - * modules/gimpinputdevicestore-dx.c: DirectX Input implementation - * modules/gimpinputdevicestore-hal.c: HAL implementation - -2007-12-03 Michael Natterer - - * tools/pdbgen/pdb/fileops.pdb: pass the new error down to all - file functions which take GError arguments. - - * app/pdb/fileops_cmds.c: regenerated. - -2007-12-02 Manish Singh - - * app/dialogs/about-dialog.c (about_dialog_load_url): pass NULL - GError arg to gimp_pdb_execute_procedure_by_name. - - * app/xcf/xcf.c - * app/xcf/xcf-load.[ch] - * app/xcf/xcf-save.[ch]: throw GErrors from load/save invokers instead - of gimp_messages. - -2007-12-02 Sven Neumann - - * tools/pdbgen/app.pl: use GError for error reporting in PDB - invoker methods. - - * tools/pdbgen/pdb/vectors.pdb: use the GError for the procedures - introduced for bug #497159. - - * tools/pdbgen/pdb/fileops.pdb: use the GError from file-load and - file-save procedures. - - * app/pdb/*_cmds.c: regenerated. - - * app/pdb/Makefile.am - - * app/pdb/gimppdberror.[ch]: new file introducing the - GIMP_PDB_ERROR domain. - - * app/actions/plug-in-commands.c - * app/actions/vectors-commands.c - * app/batch.c - * app/core/gimpimagefile.c - * app/core/gimppdbprogress.c - * app/file/file-open.[ch] - * app/file/file-save.c - * app/plug-in/gimpplugin-message.c - * app/plug-in/gimppluginmanager-restore.c - * app/plug-in/gimppluginprocedure.c - * app/plug-in/gimptemporaryprocedure.c - * app/plug-in/plug-in-icc-profile.c - * app/widgets/gimpbrushselect.c - * app/widgets/gimpfontselect.c - * app/widgets/gimpgradientselect.c - * app/widgets/gimphelp.c - * app/widgets/gimppaletteselect.c - * app/widgets/gimppatternselect.c - * app/widgets/gimppdbdialog.[ch]: changed accordingly. - -2007-12-02 Sven Neumann - - * plug-ins/common/tiff-load.c (load_image): removed pointless and - untranslated warning. - -2007-12-02 Sven Neumann - - * plug-ins/jpeg/jpeg-load.c (jpeg_load_resolution): only set the - resolution if X_density and Y_density are not zero. Otherwise the - default resolution would be used anyway and the user sees an - annoying and confusion warning. - -2007-12-01 Sven Neumann - - * app/core/gimpviewable.h: changed GIMP_VIEWABLE_PRIORITY_IDLE to - G_PRIORITY_LOW. The reason for the very low priority was to keep - it lower than the projection idle renderer. - -2007-12-01 Martin Nordholts - - * docs/Makefile.am: Applied patch from Jesper de Jong that removes - an errant leading space in a command. Fixes bug #500826. - -2007-11-30 Sven Neumann - - * app/core/gimpprojection.c (gimp_projection_idle_render_init): - raised the idle renderer priority even higher (bug #499150). - -2007-11-30 Sven Neumann - - * app/base/tile-manager.c (tile_manager_invalidate_area): if no - tiles have been allocated, there's no need to invalidate any. - Should fix bug #500178. - -2007-11-29 Sven Neumann - - * app/core/gimpprojection.c (gimp_projection_idle_render_init): - raise the priority of the idle renderer to G_PRIORITY_DEFAULT_IDLE. - Should fix bug #499150. - -2007-11-29 Bill Skaggs - - * plug-ins/Lighting/lighting_ui.c: make sure to update bumpmap - when combo is changed. Addresses bug #500317. - -2007-11-28 Sven Neumann - - * app/actions/drawable-commands.c (drawable_flip_cmd_callback): - fixed orientation type used for linked items (bug #499161). - - * app/core/gimpdrawable-transform.c - (gimp_drawable_transform_tiles_flip): fixed typo in if condition - and added more sanity checks. - -2007-11-27 Bill Skaggs - - * app/tools/gimprectangletool.c: initialize vars to quiet - stupid compile warnings. - -2007-11-26 Sven Neumann - - * app/widgets/gimpwidgets-utils.c (gimp_widget_accel_changed): - escape text before using it in Pango text markup. - -2007-11-26 Sven Neumann - - * plug-ins/common/wmf.c (load_image): improved error reporting. - -2007-11-26 Sven Neumann - - * plug-ins/common/wmf.c: avoid filename encoding problems by not - using wmf_file_open() but mapping the file into memory with - GMappedFile. Fixes bug #499329. - -2007-11-26 Sven Neumann - - * app/widgets/gimpblobeditor.c (gimp_blob_editor_draw_blob): - corrected rendering of the blob (bug #499281). - -2007-11-24 Martin Nordholts - - * app/tools/gimprectangleoptions.c - (gimp_rectangle_options_iface_base_init): Fix indentation. - -2007-11-24 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Renamed RECT_* identifiers of - the GimpRectangleFunction enum to GIMP_RECTANGLE_TOOL_*. - - * app/tools/gimprectangleselecttool.c: Use the new names. - -2007-11-24 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Ported the internal - representation of the rectangle to gdouble:s instead of - gint:s. This solves problems like not being able to swap portrait - for landscape on very small rectangles and bug #442027, as well as - provides a nice base to solve other similar problems when they are - discovered. It is possible to choose what precision the - GimpRectangleTool:s will appear to have externally through a new - GimpRectanglePrecision enum and property, but the gdouble mode - still requires some work in order to be useful. Internally the - rectangle always is represented using gdouble:s of course. In the - processes quite some refactoring has taken place, mostly - restructuring code and splitting larger functions into smaller - more managable ones. - (gimp_rectangle_tool_rect_rubber_banding_func) - (gimp_rectangle_tool_setup_snap_offsets) - (gimp_rectangle_tool_apply_fixed_rule) - (gimp_rectangle_tool_update_int_rect) - (gimp_rectangle_tool_get_public_rect): New helper functions. - - * app/tools/tools-enums.h: Added GimpRectanglePrecision. - -2007-11-23 Sven Neumann - - * plug-ins/flame/rect.c: reduced progress updates based on a patch - from Tobias Jakobs (bug #499255). Untabified. - -2007-11-23 Sven Neumann - - * tools/pdbgen/pdb/procedural_db.pdb: removed outdated information - from comment. - - * app/pdb/procedural_db_cmds.c - * libgimp/gimpproceduraldb_pdb.c: regenerated. - -2007-11-22 Michael Natterer - - * app/widgets/gimpcolorbar.[ch]: derive from GtkEventBox instead - of GtkMisc, but use an input-only window. - - * app/tools/gimplevelstool.c: redirect the events of the color - bars to the handle bars. The histogram dialog has this change - already. Functionality should be 100% restored now. - -2007-11-22 Sven Neumann - - * libgimpwidgets/gimphelpui.[ch]: use - gtk_widget_set_tooltip_text() from gimp_help_set_help() and added - gimp_help_set_help_data_with_markup() for the cases where markup - is needed. - - * libgimpwidgets/gimpwidgets.def: updated. - - * app/tools/gimpselectionoptions.c - * app/widgets/gimpeditor.c - * app/widgets/gimpwidgets-utils.c: use the new function where markup - in tooltips is being used. - - * app/widgets/gimptoolbox-color-area.c: no need to escape the - ampersand any longer. - -2007-11-22 Jakub Steiner - - * data/images/gimp-splash.png: New unstable splash - * data/images/gimp-splash-2.4.png: looks like we keep stable - splashes around - -2007-11-22 Michael Natterer - - * app/tools/gimplevelstool.[ch]: use a GimpHandleBar also for the - input frame, added a second adjustment for gamma and map between - the linear and logarithmic gamma values in the adjustment - callbacks, get rid of one GtkFrame just as in the histogram - dialog. Still not finished since mouse events on the color bars - are currently not handled. - -2007-11-21 Sven Neumann - - * app/config/gimpguiconfig.c: use "open %s" as the default - web-browser command on Mac OS X. - -2007-11-21 Sven Neumann - - * HACKING - * autogen.sh: dropped support for automake 1.8 and require - automake >= 1.9.6. Require libtool 1.5 for all platforms. - -2007-11-20 Michael Natterer - - * app/widgets/gimpcontainercombobox.c: set the combo insensitive - when it has no items. Fixes bug #498511. - -2007-11-20 Michael Natterer - - * app/tools/gimplevelstool.[ch]: use a GimpHandleBar widget for - the output sliders. Removes a bunch of code already, more to - come... - -2007-11-20 Sven Neumann - - * plug-ins/script-fu/scripts/t-o-p-logo.scm: applied patch from - Ulf-D. Ehlert that fixes the background color used in the Particle - Trace filter (bug #498282). - -2007-11-20 Sven Neumann - - * app/widgets/gimpcolorbar.c (gimp_color_bar_expose): added const - qualifiers. - -2007-11-20 Michael Natterer - - * app/widgets/widgets-types.h - * app/widgets/Makefile.am - * app/widgets/gimphandlebar.[ch]: new widget implementing the slider - bar known from histogram and levels. - - * app/widgets/gimphistogrambox.[ch]: use the new widget. General - cleanup and UI streamlining. - -2007-11-20 Michael Natterer - - * app/widgets/gimpcolorbar.c - * app/widgets/gimphistogramview.c: cosmetic. - -2007-11-19 Sven Neumann - - * app/widgets/gimpcurveview.[ch]: draw a base-line with the grid. - Not sure if this should stay enabled for the Curves tool... - -2007-11-19 Tor Lillqvist - - * libgimpwidgets/gimpcolorscale.c (gimp_color_scale_render_stipple): - Don't write past end of buffer (bug #399484). - -2007-11-18 Martin Nordholts - - * app/tools/gimprectangleselecttool.c: Cosmitics. More strictly - align static function prototypes and consistently use the name - rect_sel_tool for pointers to GimpRectSelectTool. - -2007-11-18 Bill Skaggs - - * libgimp/gimp.def: forgot in previous commit - -2007-11-18 Bill Skaggs - - * tools/pdbgen/pdb/vectors.pdb: add code for - vectors-export-to-file and vectors-export-to-string, as - requested in bug #497159. - - * app/pdb/vectors_cmds.c - * app/pdb/internal_procs.c - * libgimp/gimpvectors_pdb.c - * libgimp/gimpvectors_pdb.h: rebuilt accordingly. - -2007-11-18 Sven Neumann - - * gimptool-2.0.in: removed. - - * configure.in: removed leftover references to the gimptool script. - -2007-11-18 Michael Natterer - - * app/gimp-log.[ch]: add SAVE_DIALOG log domain. - - * app/dialogs/file-save-dialog: port debug output to GIMP_LOG(). - -2007-11-18 Michael Natterer - - * app/gimp-log.[ch]: add DIALOG_FACTORY log domain. - - * app/widgets/gimpdialogfactory.c: port debug output to GIMP_LOG(). - -2007-11-18 Michael Natterer - - * app/gimp-log.[ch]: changed to work with different - compiler-specific ways of doing macro varargs. Also cope with no - macro vararg support at all. Pointed out by Hans Breuer. - -2007-11-18 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_canvas_tool_events): improve debug output. - -2007-11-17 Sven Neumann - - * app/base/base-utils.c (get_physical_memory_size): added a cast - to avoid an integer overflow on 32bit machines. - -2007-11-17 Sven Neumann - - * tools/gimptool.c: minor cleanup, hopefully not breaking anything. - -2007-11-17 Sven Neumann - - * app/base/base-utils.[ch]: changed to get_physical_memory_size() - and added an implementation for POSIX.2 platforms. - -2007-11-17 Tor Lillqvist - - * tools/gimptool.c: Ignore --msvc-syntax unless on Windows. Put - some Windows-only stuff inside ifdef. - -2007-11-16 Tor Lillqvist - - Use the gimptool program on Unix, too, instead of the gimptool - script. - - * configure.in - * Makefile.am: Drop gimptool script and gimptool-win32.c(.in) - - * tools/gimptool.c - * tools/Makefile.am: Move gimptool-win32.c.in here and call it - just gimptool.c. Build and install on all platforms. - - * tools/gimptool.c: Change accordingly. - - * doc/gimptool.1.in: Document the --msvc-syntax option. - -2007-11-16 Michael Natterer - - * app/gimp-log.[ch]: add HELP log domain. - - * app/widgets/gimphelp.c: port debug output to GIMP_LOG() and - improve it. - -2007-11-16 Tor Lillqvist - - * app/base/base-utils.c - * app/base/base-utils.h (get_physical_memory_size_megabytes): New - function that Sven asked for. Somebody please fill in Unix - implementation(s). Feel free to change the name, change to return - as bytes in a gint64, etc. - -2007-11-16 Michael Natterer - - * app/base/temp-buf.c - * app/base/tile-manager.c - * app/core/gimpobject.c: accept NULL in all get_memsize() functions. - - * app/core/gimp-utils.[ch]: ditto. Added gimp_string_get_memsize(). - - * app/core/gimp.c - * app/core/gimpbrush.c - * app/core/gimpbuffer.c - * app/core/gimpcontainer.c - * app/core/gimpcontext.c - * app/core/gimpdata.c - * app/core/gimpdrawable.c - * app/core/gimpdrawablemodundo.c - * app/core/gimpdrawableundo.c - * app/core/gimpimage.c - * app/core/gimpitempropundo.c - * app/core/gimplayer.c - * app/core/gimpmaskundo.c - * app/core/gimppalette.c - * app/core/gimpparasitelist.c - * app/core/gimppattern.c - * app/core/gimppreviewcache.c - * app/core/gimpundo.c - * app/core/gimpundostack.c - * app/core/gimpviewable.c - * app/pdb/gimpprocedure.c - * app/plug-in/gimpplugindef.c - * app/plug-in/gimppluginmanager.c - * app/plug-in/gimppluginprocedure.c - * app/text/gimptext.c - * app/text/gimptextlayer.c - * app/text/gimptextundo.c - * app/vectors/gimpvectorsmodundo.c: simplify - GimpObject::get_memsize() implementations accordingly. - - * app/core/gimpimageundo.c: ditto. Always keep around colormaps in - chunks of GIMP_IMAGE_COLORMAP_SIZE to be coonsistent with the - other colormap handling code. - -2007-11-16 Sven Neumann - - * app/base/lut-funcs.c (equalize_lut_setup): make sure we don't - get stuck in a loop if all pixels are transparent (bug #497291). - -2007-11-16 Sven Neumann - - * libgimpconfig/gimpcolorconfig.c: changed default value for using - the system monitor profile. Many users seem to have broken monitor - profiles and it's hard to figure out how to fix this (bug #496890). - -2007-11-15 Sven Neumann - - * app/tools/gimpselectionoptions.c (gimp_selection_options_gui): - plugged a memory leak. - - * libgimpwidgets/gimpintstore.c (gimp_int_store_add_empty): - initialize the iter to avoid using uninitialized memory. - -2007-11-15 Sven Neumann - - * plug-ins/common/screenshot.c: don't call gimp_edit_clear() if - the selection mask is empty after selecting the window shape and - inverting that selection. Fixes bug #493182. - -2007-11-15 Sven Neumann - - * plug-ins/common/tiff-save.c (save_image): fixed bug in colormap - handling (bug #497103). - -2007-11-15 Michael Natterer - - * app/display/gimpdisplayshell-dnd.c - * app/widgets/gimpdnd-xds.c - * app/widgets/gimpselectiondata.c: use GIMP_LOG(DND) here too. - -2007-11-15 Michael Natterer - - * app/gimp-log.[ch]: add DND log domain. - - * app/widgets/gimpdnd.c: use GIMP_LOG(). - -2007-11-15 Sven Neumann - - * app/core/gimpcurve-save.c: added sanity checks. - -2007-11-15 Michael Natterer - - * app/Makefile.am - * app/gimp-log.[ch]: new files implementing a log facility which - can be enabled using the GIMP_LOG environment variable. - - * app/main.c: initialize it. - - * app/display/gimpdisplayshell-callbacks.c: use it instead of - private debugging macros that need to be enabled at compile time. - -2007-11-15 Michael Natterer - - * app/core/gimpviewable.[ch]: add read-only property "frozen" and - new API gimp_viewable_preview_is_fozen(). Emit property notifications. - - * app/widgets/gimphistogramview.[ch]: add API to show a second - histogram in the background. Remove member "light_histogram" from - the GimpHistogramViewClass struct. - - * app/widgets/gimpcurveview.c: don't set "light_histogram". - - * app/tools/gimpcurvestool.c: set the background histogram instead. - - * app/widgets/gimphistogrameditor.[ch]: connect to "notify::frozen" - of the drawable and show its histogram at the freezing point in - the background. This way the original histogram is visible while - we are doing color corrections. - -2007-11-14 Michael Natterer - - * app/display/gimpcanvas.c - * app/widgets/gimpcurveview.c: free the cached PangoLayouts in - GtkWidget::style_set(). - - * app/widgets/gimppaletteview.c: draw the focus rectangle in - hardcoded black/white since we also hardcode the grid color to - black. - - * app/display/gimpstatusbar.c - * app/widgets/gimpdockable.c: small cleanups while reviewing - layout code. - -2007-11-14 Michael Natterer - - * app/widgets/gimpcolorframe.[ch]: replaced the number label with - a big Cairo-drawn number below the color value labels. - -2007-11-14 Michael Natterer - - * app/widgets/gimppaletteview.[ch]: port to Cairo drawing. - -2007-11-13 Martin Nordholts - - * app/tools/gimprectangletool.c: Avoid GimpRectangleTool internals - to make use of its own public interface by making - gimp_rectangle_tool_get_other_side() work on pointers to members - instead of GObject property names. - (gimp_rectangle_tool_set_other_side_coord) - (gimp_rectangle_tool_get_other_side_coord): Use - gimp_rectangle_tool_get_other_side() in the new way. - -2007-11-13 Martin Nordholts - - Fixed warnings about negative rectangle widths/heights when - toggling 'Fixed center' while rubber banding a rectangle. - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_set_other_side_coord): Finnishing off with a - call to gimp_rectangle_tool_check_function() as changing the - coordinates of the opposite side might swap the orientation of the - rectangle. - -2007-11-13 Sven Neumann - - * app/core/gimpimage-merge.c (gimp_image_merge_layers): when we - encounter an unsupported merge operation (merging an opaque - indexed layer onto an indexed layer with alpha channel), then add - an alpha channel and try again. Fixes bug #496437. - -2007-11-13 Michael Natterer - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): use - cairo_save()/cairo_restore() around calling the virtual function - instead of restoring the clipping area manually. - -2007-11-13 Michael Natterer - - * app/widgets/gimpviewrenderervectors.c - (gimp_view_renderer_vectors_draw): naive port to Cairo. Somebody - should check if this isn't better done with proper curve_to() - drawing using the original vectors data instead of interpolation. - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): reset - clipping before drawing the border because a subclass' draw() - might have done additional clipping. - -2007-11-13 Tor Lillqvist - - * gimptool-win32.c.in: Some cleanups, more coming. - -2007-11-13 Sven Neumann - - Fix for bug #494049 (painting doesn't update the histogram): - - * app/paint/gimppaintcore.c: freeze the drawable preview while we - are painting. Update the drawable instead of the image. - - * app/widgets/gimphistogrameditor.c: use a short timeout instead - of an idle handler to update the histogram. - -2007-11-13 Tor Lillqvist - - * gimp-zip.in: Drop the timestamp from the zip file names. Add the - .pc files to the developer package. - -2007-11-13 Michael Natterer - - Enable brush scaling for smudge (but only before, not while - painting). Fixes bug #471348. - - * app/paint/gimpbrushcore.[ch] (struct GimpBrushCoreClass): rename - member "use_scale" to "handles_scaling_brush". - - (gimp_brush_core_calc_brush_scale): apply pressure scale only if - both "handles_scaling_brush" and "use_pressure" are TRUE, and - apply the scaling from the options unconditionally. - - (gimp_brush_core_get_paint_area): don't re-fetch core->scale if - "handles_scaling_brush" is FALSE to keep the brush from scaling - *while* painting. - - (gimp_brush_core_create_bound_segs): use the brush scale from the - options unconditionally since that's always used now. - - * app/paint/gimpsmudge.c (gimp_smudge_brush_coords): use - gimp_brush_scale_size() to figure the accum_buffer's size instead - of using the brush mask's size directly. - - * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): show - the brush scale controls for all brush tools. - -2007-11-12 Sven Neumann - - * app/core/gimp-utils.c (gimp_get_default_unit): return - GIMP_UNIT_MM in case that we can't query the locale. - - * plug-ins/common/postscript.c: use gboolean for boolean variables. - -2007-11-12 Sven Neumann - - * app/core/gimpimage-merge.c (gimp_image_merge_layers): corrected - the size of the pixel region passed to color_region() in case of - an indexed image. Fixes bug #495990. - -2007-11-12 Michael Natterer - - * app/display/gimpdisplayshell-callbacks.c - (gimp_display_shell_ruler_button_press): don't let - GimpImageMapTools move sample points. They fail badly and leave - the display in a paused state. - -2007-11-12 Michael Natterer - - * app/sanity.c: added Pango version sanity check. - -2007-11-12 Sven Neumann - - * plug-ins/common/tiff-load.c (run): properly handle a failure of - TIFFFdOpen() instead of crashing on TIFF files we can't handle. - -2007-11-12 Michael Natterer - - * app/display/gimpdisplayshell.c (gimp_display_shell_new): don't - crash if gimp_display_shell_filter_new() returns NULL. - Fixes bug #495863. - -2007-11-11 Kevin Cozens - - * plug-ins/script-fu/scripts/script-fu-compat.init: Return a list - from cons-array when type is 'string. - -2007-11-11 Martin Nordholts - - * app/tools/gimprectangletool.[ch]: Removed - gimp_rectangle_tool_get_press_coords() as it doesn't make sense - for a rectangle tool interface to provide this functionality. - Clients should take care of that themselves. Also adjusted - internal code accordingly. - - * app/tools/gimprectangleselecttool.c: Remember the pressed - coordinates on _button_press instead of asking GimpRectangleTool - about it. - -2007-11-11 Michael Natterer - - * configure.in: depend on pango 1.18 - - * app/text/gimpfontlist.c (gimp_font_list_add_font): remove - workaround for old pango appending "Non-Rotated" to font names. - -2007-11-11 Martin Nordholts - - * app/tools/gimprectangleselecttool.[ch]: Don't expose private - instance members, use g_type_class_add_private() instead. - -2007-11-11 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_update_with_coord): Updated comments to - reflect current behaviour. - -2007-11-11 Martin Nordholts - - * app/tools/gimprectangletool.c: Lessen code bloat by removing - code that manages center-[xy] properies of GimpRectangleOptions. - Instead use x1, y1 and x2, y2 when working with the rectangle - center. - - * app/tools/gimprectangleoptions.[ch]: Removed "center-x" and - "center-y" properties. - -2007-11-10 Sven Neumann - - * libgimpwidgets/gimppageselector.c: formatting. - -2007-11-10 Sven Neumann - - * app/actions/view-actions.c (view_zoom_explicit_actions): fixed - incorrect tooltip (bug #495564). - - * app/dialogs/preferences-dialog.c (prefs_display_options_frame_add): - adapt to the changed return value of gimp_prop_enum_combo_box_new(). - -2007-11-10 Michael Natterer - - * libgimpwidgets/gimppropwidgets.c - (gimp_prop_file_chooser_button_*): remove all sorts of workarounds - for bugs of GtkFileChooserButton in GTK+ versions prior to 2.12. - -2007-11-10 Michael Natterer - - * libgimpwidgets/gimppropwidgets.c: remove event boxes that were - only there for the old tooltips. - - * modules/cdisplay_lcms.c: ditto. Also remove some code that was - only needed because of the event box hack. - -2007-11-10 Michael Natterer - - * app/tools/gimpairbrushtool.c (gimp_airbrush_tool_init) - * app/tools/gimppenciltool.c (gimp_pencil_tool_init): don't enable - color picking, it already gets enabled by the parent class. - -2007-11-10 Sven Neumann - - * plug-ins/helpbrowser/dialog.c (browser_dialog_make_index_foreach): - deal gracefully with NULL titles. - -2007-11-09 Sven Neumann - - * app/widgets/gimpcurveview.c (gimp_curve_view_expose): align the - overlay with the pixel grid. - -2007-11-09 Sven Neumann - - * app/widgets/gimpcurveview.c: draw the selected point filled and - outlines for the unselected points. - -2007-11-09 Sven Neumann - - * app/widgets/gimpcurveview.c (gimp_curve_view_expose): draw the - center grid lines slightly stronger than the other grid lines. - -2007-11-09 Sven Neumann - - * app/widgets/gimpcurveview.c (gimp_curve_view_expose): draw the - cursor position using a translucent overlay. - -2007-11-09 Sven Neumann - - * app/widgets/gimpcurveview.[ch]: added construct-only properties - to control the number of grid rows and columns. Increased the - default values to 8. - -2007-11-09 Michael Natterer - - * libgimpwidgets/gimphelpui.[ch]: use the new tooltip API instead - of the old deprecated one. Removed _gimp_help_init(). Remember - whether tooltips are enabled or not in a local variable that can - only be altered at startup time and not after. The API now expects - markup instead of plain text which might cause warnings and - perhaps needs to be changed. - - * libgimpwidgets/gimpwidgets-private.c: don't call _gimp_help_init(). - - * app/config/gimpguiconfig.c: made show-tooltips a - GIMP_CONFIG_PARAM_RESTART property. - - * app/widgets/gimptoolbox-color-area.c: don't add the tooltip here... - - * app/widgets/gimptoolbox.c: ...but here (as for all other - indicators). Also escape '&' properly because we now use markup. - - * app/tools/gimpselectionoptions.c - * app/widgets/gimpeditor.c - * app/widgets/gimpwidgets-utils.c: print modifiers and - shortcuts in bold instead of in (). - - * app/widgets/gimpcontainertreeview.c: show tooltips on rows if - gimp_viewable_get_description() returns a tip. - - * app/dialogs/preferences-dialog.c - * plug-ins/jpeg/jpeg-save.c - * plug-ins/MapObject/mapobject_ui.c - * plug-ins/Lighting/lighting_ui.c - * plug-ins/common/animationplay.c - * plug-ins/common/warp.c: no need to add event boxes just to have - tooltips, the new ones work on all widgets. - -2007-11-08 Sven Neumann - - * app/display/gimpstatusbar.c (gimp_statusbar_vprintf): also cut - the message at a '\r' character. Fixes the remaining aspect of - bug #492718. - -2007-11-08 Michael Natterer - - * libgimp/gimpenums.c.tail: replaced by generated version. - -2007-11-08 Sven Neumann - - * app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip): - don't directly pass a message to gimp_statusbar_push(), it expects - a format string and printf-like varargs. Fixes the crash reported - in bug #492718. - -2007-11-08 Michael Natterer - - * app/core/gimpimage.c (gimp_image_clean_all): pass GIMP_DIRTY_ALL - to the "clean" signal instead of uninitialized memory. - -2007-11-06 Martin Nordholts - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_update_handle_sizes): don't use any dead - areas in narrow-mode, and enter narrow-mode earlier. - - * app/tools/gimpdrawtool.c (gimp_draw_tool_draw_corner): adjusted - to always draw side handles in narrow mode without dead areas. - -2007-11-06 Michael Natterer - - * configure.in: remove check for putenv(). - - * app/composite/gimp-composite-3dnow-test.c - * app/composite/gimp-composite-altivec-test.c - * app/composite/gimp-composite-mmx-test.c - * app/composite/gimp-composite-sse-test.c - * app/composite/gimp-composite-sse2-test.c - * app/composite/gimp-composite-vis-test.c - * libgimp/gimpui.c - * plug-ins/uri/uri-backend-wget.c - * tools/gimp-remote-x11.c: use g_setenv() instead of putenv(). - -2007-11-06 Sven Neumann - - * tools/pdbgen/pdb/plug_in.pdb: improved documentation for - gimp-plugin-menu-register. - - * app/pdb/plug_in_cmds.c - * libgimp/gimpplugin_pdb.c: regenerated. - -2007-11-06 Sven Neumann - - * app/widgets/gimpblobeditor.c: ported to Cairo drawing. - -2007-11-05 Michael Natterer - - * app/widgets/gimpcurveview.c (gimp_curve_view_expose): translate - by 0.5,0.5 instead of adding 0.5 to all coordinates (we always - want to draw on pixel centers here). Some cleanup. - -2007-11-05 Martin Nordholts - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): Bail - out early if the rectangle function is RECT_DEAD. This prevents - flickering. - -2007-11-05 Martin Nordholts - - * app/tools/gimprectangletool.c: also don't show the shell - highlight when a rectangle is being moved. Achieved through - slightly modifying code logic and renaming variables and functions - a bit. - -2007-11-05 Sven Neumann - - * app/widgets/gimpgradienteditor.[ch]: use Cairo to draw the controls. - -2007-11-05 Sven Neumann - - * configure.in: don't bail out if the XFixes extension is not - available. - -2007-11-05 Sven Neumann - - * tools/pdbgen/pdb/image.pdb: create a libgimp C wrapper for - gimp-image-get-vectors-by-tattoo; this function was accidentally - forgotten in the 2.4 libgimp API. - - * app/pdb/image_cmds.c - * libgimp/gimpimage_pdb.[ch]: regenerated. - -2007-11-05 Sven Neumann - - * app/widgets/gimpcairo-utils.h: introduced macros to set a single - pixel in a Cairo surface without having to worry about endianness. - - * app/widgets/gimpcairo-utils.c - * app/widgets/gimpviewrenderer.c - * app/widgets/gimpviewrenderergradient.c - * app/widgets/gimpviewrendererpalette.c: use the new macros. - -2007-11-05 Michael Natterer - - * app/widgets/gimpcurveview.c (gimp_curve_view_expose): port to - Cairo. - -2007-11-05 Michael Natterer - - * app/core/gimpcurve.[ch]: don't recalculate the curve if the data - object is frozen. Recalculate on thaw instead. Made - gimp_curve_calculate() private and emit some GimpData::dirty - signals where appropriate. - - * app/tools/gimpcurvestool.c - * app/widgets/gimpcurveview.c - * tools/pdbgen/pdb/color.pdb: changed accodingly (connect to "dirty" - instead of "notify" and added some freeze/thaw where approproate). - - * app/pdb/color_cmds.c: regenerated. - -2007-11-05 Sven Neumann - - * app/core/gimpimagemap.c (gimp_image_map_clear): update the - drawable, not the image. This change was missing in the fix for - bug #490182. Fixes bug #493639. - -2007-11-05 Michael Natterer - - * app/widgets/gimpcurveview.[ch]: added event handling and - completely edit the curve here. - - * app/tools/gimpcurvestool.[ch]: remove all event handling and - curve editing code and only listen to curve signals. - -2007-11-04 Martin Nordholts - - Do not do shell darkening while GimpRectangleTool rectangles are - being rubber-banded. - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_button_press) - (gimp_rectangle_tool_button_release): Maintain a variable keeping - track of if the rectangle is being rubber banded or not. - (gimp_rectangle_tool_update_highlight): Do not set a shell - highligt if the rectangle is being rubber-banded. - (gimp_rectangle_tool_rubber_banding_func): New helper function. - -2007-11-04 Sven Neumann - - * app/widgets/gimpviewrendererbrush.c: implement - GimpViewRenderer::draw and draw the overlays with Cairo. - - * app/widgets/gimpviewrenderer.[ch] - * app/widgets/gimpviewrenderervectors.c: minor cleanups. - -2007-11-04 Sven Neumann - - * app/widgets/gimpviewrenderer.[ch]: replaced the RGB buffer with - a Cairo surface. - - * app/widgets/gimpviewrendererbuffer.c - * app/widgets/gimpviewrendererbrush.c - * app/widgets/gimpviewrendererdrawable.c - * app/widgets/gimpviewrenderergradient.c - * app/widgets/gimpviewrendererimage.c - * app/widgets/gimpviewrendererpalette.c - * app/widgets/gimpviewrenderervectors.c: changed accordingly. There - are some loose ends here that will be fixed over the next days. - - * app/widgets/gimprender.c: removed gimp_render_temp_buf; it is - not any longer needed. - - * app/core/gimpgradient.c (gimp_gradient_get_preview_size) - * app/core/gimppalette.c (gimp_palette_get_preview_size): return - an odd preview height to make the border align with the pixel grid. - -2007-11-04 Sven Neumann - - * app/tools/gimplevelstool.c (levels_input_area_event): minor cleanup. - -2007-11-04 Martin Nordholts - - * app/tools/gimprectangletool.c: Consistently use the name - `rect_tool' instead of `rectangle' or `rectangle_tool' for - pointers to GimpRectangleTool. - -2007-11-04 Martin Nordholts - - Put GimpRectangleTool handles on the outside of the rectangle when - it has a small width or height. Some polishing left to do but the - base functionality works nicely. - - * app/tools/gimpdrawtool.[ch] (gimp_draw_tool_draw_corner): Add a - put_outside boolean parameter that if true draws the handles on - the outside of the rectangle. - - * app/tools/gimprectangletool.c - (gimp_rectangle_tool_update_handle_sizes) - (gimp_rectangle_tool_coord_on_handle) - (gimp_rectangle_tool_draw): Take into account if the rectangle is - in narrow-mode or not. - -2007-11-04 Sven Neumann - - * app/widgets/gimpgradienteditor.c - * app/widgets/gimpnavigationview.c: use - gdk_event_request_motions() to handle motion hint events. - -2007-11-04 Michael Natterer - - * app/widgets/Makefile.am - * app/widgets/widgets-types.h - * app/widgets/gimpcurveview.[ch]: new GimpHistogramView subclass - which does all the curve stuff. - - * app/widgets/gimphistorgramview.[ch]: removed all curve code again. - - * app/tools/gimpcurvestool.c: changed accordingly. - -2007-11-04 Sven Neumann - - * libgimpwidgets/gimpcolorselect.c - * libgimpwidgets/gimpscrolledpreview.c: use - gdk_event_request_motions() to handle motion hint events. - -2007-11-04 Sven Neumann - - * INSTALL - * configure.in: bumped required version of GTK+ to 2.12.0. - - * app/sanity.c (sanity_check_glib) - * app/gui/gui.c (gui_sanity_check): updated sanity checks. - -2007-11-02 Michael Natterer - - * app/widgets/gimphistogramview.[ch]: added API to set the - selected point. - - * app/tools/gimpcurvestool.c: use it. - -2007-11-02 Michael Natterer - - * app/core/gimpcurve.[ch]: added API to modify free-form curves - and properties to listen to curve changes. - - * app/widgets/gimphistogramview.[ch]: added everything that's - needed for rendering a curve with all its color and cursor - indicators on top of a histogram. This code will move to a - subclass soon. - - * app/tools/gimpcurvestool.[ch]: removed all curve rendering here. - Also removed all explicit updating by connecting to curve signals - and updating in the callback. - -2007-11-02 Sven Neumann - - * app/widgets/gimpcairo-utils.[ch]: added utility function to create - a Cairo surface from a GdkPixbuf. - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_create_pattern): - use it from here. - -2007-11-02 Sven Neumann - - * core/gimplist.h: formatting. - -2007-11-02 Michael Natterer - - * app/core/Makefile.am - * app/core/core-types.h - * app/core/gimpcurve-save.[ch] - * app/core/gimpcurve-load.[ch] - * app/core/gimpcurve.[ch]: new GimpData subclass which keeps a - curve as known from the curves tool. Pretty much unfinished, but - can do everything that used to be done by base/curves.c and more. - - * app/base/curves.[ch]: stripped down to plain arrays of - uchar (the actual curve) and the LUT setup function. All the rest - is done by GimpCurve now. - - * app/tools/gimpcurvestool.[ch]: use an array of GimpCurves - instead of the old Curves cruft. Use Curves only for the last step - of creating the LUT. Pretty much unfinished migration here too. - - * tools/pdbgen/pdb/color.pdb: use a GimpCurve here too. - - * app/pdb/color_cmds.c: regenerated. - -2007-11-02 Sven Neumann - - * app/widgets/gimpcairo-utils.c (gimp_cairo_set_source_color): - also use the color's alpha channel. Added gtk-doc documentation. - -2007-11-02 Sven Neumann - - * app/widgets/Makefile.am - * app/widgets/gimpcairo-utils.[ch]: new files holding Cairo - utility functions. - - * app/widgets/gimpviewrenderer.[ch]: ported partly to Cairo drawing. - - * app/widgets/gimpcomponenteditor.c - * app/widgets/gimpcontainercombobox.c - * app/widgets/gimpcontainertreeview.c - * app/widgets/gimplayertreeview.c - * app/widgets/gimpview.c: removed calls to - gimp_view_renderer_unrealize() which are not needed anymore - because we don't allocate a GC in the renderer any longer. - - * app/widgets/gimpcellrendererdashes.c: removed a redundant cast. - -2007-11-01 Sven Neumann - - * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): - removed code that draws a diagonal line across a renderer without - context. Emit a warning instead; this shouldn't happen any longer. - -2007-11-01 Sven Neumann - - * app/widgets/gimpdasheditor.c (gimp_dash_editor_expose): draw - using Cairo. - -2007-11-01 Sven Neumann - - * app/widgets/gimpcellrendererdashes.c - (gimp_cell_renderer_dashes_render): draw using Cairo. - -2007-11-01 Sven Neumann - - * plug-ins/script-fu/scripts/Makefile.am (scripts): - * plug-ins/script-fu/scripts/hsv-graph.scm: removed this script. - Fixes bug #491311. - -2007-11-01 Sven Neumann - - * libgimpwidgets/gimpscrolledpreview.c: changed move cursor to - GDK_HAND1 and switch to GDK_FLEUR while the mouse button is down. - -2007-11-01 Tor Lillqvist - - * app/base/base-utils.c - * app/base/base-utils.h: New files, with just one function so far, - get_number_of_processors(). Include implementation also for Win32. - - * app/base/Makefile.am (libappbase_a_SOURCES): Add new files. - - * app/config/gimpbaseconfig.c (gimp_base_config_class_init): Use - get_number_of_processors(). - -2007-11-01 Manish Singh - - * app/core/gimpcontainer-filter.c - * app/pdb/gimppdb-query.c - * app/plug-in/gimppluginmanager-query.c: replace usage of POSIX - regex API with GRegex. - - * configure.in: remove check for regex support in glibc. - - * app/Makefile.am - * plug-ins/script-fu/Makefile.am: remove REGEXREPL references. - - * tools/pdbgen/app.pl: remove code that references HAVE_GLIBC_REGEX. - - * regexrepl/* - * makefile.msc - * Makefile.am: remove regexrepl directory. - -2007-10-31 Sven Neumann - - * app/core/gimp-user-install.c: improved detection of old gimp - user directories and handle migration from 2.4. - -2007-10-31 Michael Natterer - - * app/core/gimpparamspecs.[ch] (GimpParamSpecString): remove - member "null_ok" and use GParamSpecString's "ensure_non_null" - instead. - -2007-10-31 Tor Lillqvist - - * README.win32: Remove. This kind of information belongs in the - wiki. - * Makefile.am (EXTRA_DIST): Drop from here, too. - -2007-10-31 Michael Natterer - - * libgimpbase/Makefile.am - * libgimpbase/xdg-user-dir.[ch]: removed. - - * libgimpbase/gimpbaseenums.[ch]: deprecate enum GimpUserDirectory. - - * libgimpbase/gimpenv.[ch]: deprecate gimp_user_directory() and make - the implementation call g_get_user_special_dir(). - - * libgimp/Makefile.am: #undef GIMP_DISABLE_DEPRECATED in gimpenums.c - - * app/widgets/gimpfiledialog.c: use g_get_user_special_dir() instead. - - * plug-ins/pygimp/gimpmodule.c: #undef GIMP_DISABLE_DEPRECATED. - -2007-10-31 Michael Natterer - - * configure.in - * app/Makefile.am - * tools/Makefile.am: bump some more hardcoded 2.4 to 2.5 - -2007-10-31 Sven Neumann - - * app/display/gimpdisplayshell-close.c - (gimp_display_shell_close_dialog): use g_timeout_source_new_seconds(). - -2007-10-31 Sven Neumann - - * INSTALL - * README - * NEWS: updated for 2.5. - -2007-10-31 Michael Natterer - - * configure.in: depend on glib 2.14.1 - - * app/tools/gimpdrawtool.c - * app/vectors/gimpvectors-import.c: use g_slice_dup() instead of - g_slice_new() and memcpy(). - -2007-10-31 Sven Neumann - - * plug-ins/common/retinex.c: use a combo-box instead of radio - buttons (bug #484838). - -2007-10-31 Michael Natterer - - * app/tools/gimprectangletool.c: some general indentation, spacing - and coding style convention paranoia cleanups. - - (gimp_rectangle_tool_get_constraints): set all return values also - when bailing out early to avoid valgrind warnings about - uninitialized memory. - -2007-10-31 Sven Neumann - - * configure.in: check for the XFIXES extension. - - * plug-ins/common/plugin-defs.pl - * plug-ins/common/Makefile.am: use XFIXES_CFLAGS for compiling the - screenshot plug-in. - - * plug-ins/common/screenshot.c: optionally add the mouse cursor - image on an extra layer. Work in progress... (bug #490779). - -2007-10-31 Sven Neumann - - * configure.in: bumped version to 2.5.0. - - Created branch gimp-2-4 for bug-fixes in the stable 2.4 series. - -2007-10-31 Sven Neumann - - * Made 2.4.1 release. - -2007-10-30 Sven Neumann - - * app/display/gimpdisplayshell-render.c (box_filter): shift only - by 4 bits instead of 8. Should still keep us from overflowing 32 - bit integers but reduces the rounding error and seems to really - fix bug #491503. - -2007-10-30 Martin Nordholts - - * app/tools/gimprectangleselecttool.c - (gimp_rect_select_tool_round_corners_notify): Update the selection - when Rounded corners is toggled or the radius is changed as - discussed in bug #418284. - -2007-10-30 Michael Natterer - - * modules/cdisplay_lcms.c: applied patch from Sven Neumann and - Marianne Gagnon which adds support for getting the system monitor - profile on OS/X. Fixes bug #488170. - -2007-10-30 Sven Neumann - - * app/display/gimpdisplayshell-handlers.c: reverted change that - was made for bug #490785. - -2007-10-30 Sven Neumann - - Fix drawing of straight lines using the Shift key and a tablet - (bug #164240): - - * app/tools/gimppainttool.c (gimp_paint_tool_button_press): set - use_pressure to FALSE when drawing a straight line. - - * app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): respect - the use_pressure flag. - -2007-10-30 Sven Neumann - - * app/display/gimpdisplayshell-render.c (box_filter): reduce - rounding errors. Fixes bug #491503. - - * app/base/tile-pyramid.c (tile_pyramid_write_quarter): reduce - rounding errors. - -2007-10-29 Sven Neumann - - * libgimpcolor/gimpadaptivesupersample.c - (gimp_adaptive_supersample_area): return with a warning if called - with NULL render_func or put_pixel_func. - -2007-10-29 Sven Neumann - - Fix bug #491272 (no cursor drawn for small brush sizes): - - * app/tools/gimpbrushtool.[ch] - (gimp_brush_tool_draw_brush): don't draw the brush outline if it - becomes too small. Instead draw a small cross, but only if - "draw_fallback" was passed as TRUE. - (gimp_brush_tool_draw_brush): pass TRUE for "draw_fallback" if - cursor drawing is disabled for the paint tools. - - * app/tools/gimpsourcetool.c (gimp_source_tool_draw): pass FALSE - for "draw_fallback". - - * app/tools/gimpdrawtool.c (gimp_draw_tool_draw_cross_by_anchor): - draw a symmetric cross for odd handle sizes. - -2007-10-29 Sven Neumann - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_coord_on_handle): - initialize variables to suppress a compiler warning. - -2007-10-28 Sven Neumann - - * app/pdb/gimppdb.c (gimp_pdb_execute_procedure_by_name): also - call va_end() in the error cases. - -2007-10-28 Sven Neumann - - * libgimpwidgets/gimpcolorscales.c (gimp_color_scales_set_channel): - fixed range check. - -2007-10-28 Sven Neumann - - * libgimpwidgets/gimpscrolledpreview.c - (gimp_scrolled_preview_nav_button_press): use small-checks for the - navigation popup and inherit the check-type from the preview. - -2007-10-27 Sven Neumann - - * app/widgets/gimpwidgets-utils.c (gimp_text_buffer_load): close - the file handle. - -2007-10-27 Sven Neumann - - * libgimpbase/gimpmemsize.c (string_to_memsize): don't just crash - right away if the impossible happens. - -2007-10-27 Sven Neumann - - * app/dialogs/preferences-dialog.c (prefs_resolution_source_callback): - g_object_get_data() should always return a size-entry here. Return - with a warning if it doesn't. - -2007-10-27 Sven Neumann - - * libgimpconfig/gimpscanner.c (gimp_scanner_parse_color): - initialize GimpRGB, just to be sure. - -2007-10-27 Sven Neumann - - * app/display/gimpdisplayshell-handlers.c: removed code that syncs - the padding color with the default values set in the preferences. - Fixes bug #490785. - -2007-10-27 Sven Neumann - - * plug-ins/common/pnm.c (pnm_load_ascii): fixed handling of - truncated ascii files. Fixes bug #490827. - -2007-10-27 Sven Neumann - - * plug-ins/common/pnm.c: formatting. - (pnm_load_ascii): - -2007-10-27 Sven Neumann - - * plug-ins/common/mkgen.pl: set the svn:ignore property instead of - writing a .cvsignore file. - -2007-10-27 Sven Neumann - - * libgimpconfig/gimpcolorconfig.h (struct _GimpColorConfig): - declared the fields as public so that they show up in the API - documentation. - -2007-10-27 Hans Breuer - - * app/base/makefile.msc app/file/makefile.msc app/gimpcore.def - app/gui/makefile.msc app/plug-in/makefile.msc - libgimpwidgets/makefile.msc : updated msvc build - * config.h.win32 : add ENABLE_TOOLBOX_MENU, it should only - vanish on Mac OSX (Quartz build) - -2007-10-27 Tor Lillqvist - - * libgimpbase/gimpenv.c (gimp_toplevel_directory): Drop the Win9x - code path here, too. - - * libgimpbase/gimpenv.c (gimp_locale_directory): On Windows return - the pathname in system codepage and not UTF-8. - -2007-10-26 Sven Neumann - - * app/text/gimptext.c: increased default font size to 24. - -2007-10-26 Martin Nordholts - - * app/tools/gimprectangletool.c (struct GimpRectangleToolPrivate): - Renamed handle_[wh] to corner_handle_[wh] since that are the - appropriate names. - -2007-10-26 Martin Nordholts - - * app/tools/gimprectangletool.c (gimp_rectangle_tool_oper_update): - Use new helper functions to decide if the cursor is on a - handle (or outside of the rectangle + handle bounds) to ease the - introduction of having handles on the outside of the pending - rectangle. - (gimp_rectangle_tool_coord_outside) - (gimp_rectangle_tool_coord_on_handle): New helper functions. - -2007-10-26 Sven Neumann - - * app/pdb/gimpprocedure.c (gimp_procedure_validate_args): don't pass - NULL strings to gimp_message(). Fixes bug #490617. - -2007-10-26 Sven Neumann - - Reenabled update of the histogram while doing color corrections - (bug #490182): - - * app/core/gimpviewable.[ch]: added new methods preview_freeze() - and preview_thaw(). - - * app/core/gimpimagemap.c - (gimp_image_map_new): freeze the drawable preview. - (gimp_image_map_dispose): thaw the drawable preview. - (gimp_image_map_do): update the drawable, not the image. - - * app/tools/gimpimagemaptool.c (gimp_image_map_tool_response): no - need to invalidate the drawable preview any longer. - -2007-10-26 Michael Natterer - - * app/xcf/xcf-load.c (xcf_load_image_props): never allocate - image->cmap smaller than GIMP_IMAGE_COLORMAP_SIZE. Fixes bug #490048. - -2007-10-26 Sven Neumann - - * app/widgets/gimphistogrameditor.c - (gimp_histogram_editor_layer_changed): connect to - GimpDrawable::update instead of GimpViewable::invalidate-preview. - -2007-10-25 Kevin Cozens - - * plug-ins/script-fu/tinyscheme/scheme-private.h - * plug-ins/script-fu/tinyscheme/scheme.c: - Allow a maximum of two calls to backchar() needed by the "case '.'" - part of the switch statement in token(). Fixes bug #490198. - -2007-10-25 Martin Nordholts - - * app/tools/gimprectangletool.c: Aligned static function - prototypes. - -2007-10-25 Martin Nordholts - - * app/tools/gimprectangletool.c: Tiny cosmetic change on the - ClampedSide enum definition. - -2007-10-25 Sven Neumann - - * tools/Makefile.am - * tools/gimp-remote.[ch] - * tools/gimp-remote-x11.c: split gimp-remote into common and X11 - specific code. - -2007-10-25 Michael Natterer - - * configure.in: made all tests consistently use - 'test "x$foo" = xbar' instead of 5 variants of which some were - broken. Spotted by Peter Breitenlohner, fixes bug #490068. - -2007-10-25 Sven Neumann - - * configure.in: bumped version to 2.4.1 (interface age 1). - -2007-10-25 Sven Neumann - - * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_install): - set the procedure name before parsing the image types. - Fixes bug #490055. - -2007-10-25 Sven Neumann - - * app/display/gimpcanvas.c (gimp_canvas_gc_new): use INVERT - instead of XOR if the xor-color is configured as white. - -2007-10-24 Manish Singh - - * plug-ins/common/compose.c - * plug-ins/common/decompose.c: generate PDB docs from the same - source as the UI. - -2007-10-24 Kevin Cozens - - * Makefile.am: Applied patch from Stanislav Brabec which adds - NEWS.pre-2-4, ChangeLog.pre-2-2 and ChangeLog.pre-2-4 to EXTRA_DIST. - Fixes bug #489813. - -2007-10-24 Simon Budig - - * app/display/gimpdisplayshell.h: change the PROJ_ROUND macro - to do proper rounding. Seems to work well. - -2007-10-24 Sven Neumann - Michael Natterer - - * Made 2.4.0 release. + * Made 2.6.0 release. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/ChangeLog.pre-2-6 /tmp/h4xbGc63vZ/gimp-2.6.1/ChangeLog.pre-2-6 --- gimp-2.6.0/ChangeLog.pre-2-6 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.6.1/ChangeLog.pre-2-6 2008-10-08 22:16:11.000000000 +0100 @@ -0,0 +1,16113 @@ +2008-09-30 Sven Neumann + + * Made 2.6.0 release. + +2008-09-30 Michael Natterer + + Bug 546924 – "New Image" misscalculating dimensions for non-pixel + sized templates + + * app/core/gimptemplate.h: added private param flag + GIMP_TEMPLATE_PARAM_COPY_FIRST. + + * app/core/gimptemplate.c (gimp_template_class_init): set the flag + on the resolution properties. + + * app/dialogs/image-new-dialog.c (image_new_template_changed): + make sure the resolution properties are copied first. + + * libgimpconfig/gimpconfig-utils.c (gimp_config_sync): remove + comment about fixing the template editor. That's not true any + more. + +2008-09-30 Michael Natterer + + * app/tools/gimpimagemaptool.[ch]: keep a "default_config" object + around and use it to reset the tool if it exists. + + (gimp_image_map_tool_edit_as): set the default_config on the new + tool so "reset" goes back to the values the tool was started with. + + * app/tools/gimpcolorbalencetool.c (gimp_color_balance_tool_reset) + * app/tools/gimpcurvestool.c (gimp_curves_tool_reset) + * app/tools/gimphuesaturationtool.c (gimp_hue_saturation_tool_reset) + * app/tools/gimplevelstool.c (gimp_levels_tool_reset): use the + default config to reset the tool here too if it exists. + +2008-09-30 Sven Neumann + + * app/gui/splash.c: don't make the upper label bold. This change + compensates for the smaller width of the new splash screen. + +2008-09-30 Sven Neumann + + * app/widgets/gimpwidgets-utils.[ch]: added + gimp_pango_layout_set_scale(). + + * app/gui/splash.c: set a smaller font size on the lower label. + +2008-09-30 Sven Neumann + + * app/widgets/gimpwidgets-utils.c (gimp_pango_layout_set_weight): + actually use the passed weight. + +2008-09-30 Sven Neumann + + * app/config/gimpbaseconfig.c + * app/config/gimpguiconfig.c: reverted parts of commit 25812. + Restores compatibility with old gimprc files. + +2008-09-30 Sven Neumann + + * app/config/gimprc-deserialize.c (gimp_rc_deserialize): formatting. + +2008-09-29 Sven Neumann + + * README: prepared for the upcoming 2.6 release. + +2008-09-29 Sven Neumann + + * configure.in: bumped version to 2.6.0. + + * app/Makefile.am + * tools/Makefile.am: changed accordingly. + + * docs/gimprc.5.in + * etc/gimprc: regenerated. + +2008-09-29 Sven Neumann + + * data/images/gimp-splash.png: splash screen for GIMP 2.6. Created + by Alexia Death and edited together with Ville Pätsi. + + * authors.xml: added the two splash screen artists. + + * AUTHORS: regenerated. + +2008-09-29 Sven Neumann + + * INSTALL: prepared for the upcoming 2.6 release. + +2008-09-29 Martin Nordholts + + Bug 554125 – Tab key doesn't hide utility windows when there is no + image open. + + * app/widgets/gimpdialogfactory.[ch]: Add 'toggle_visibility' to + GimpDialogFactory and as a parameter to gimp_dialog_factory_new(), + and set it there. + + (gimp_dialog_factories_hide_foreach): Don't hide dialogs belonging + to factories with toggle_visibility FALSE. + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_tool_events): Move no-image event + handling to a new helper function, and make pressing Tab hide + windows. + + * app/dialogs/dialogs.c (dialogs_init): Allow toggling visibility + for all factories except the display-factory. + +2008-09-29 Michael Natterer + + * app/core/gimpcurve.c (gimp_curve_copy): no need to memcpy() the + arrays, they are properly copied by gimp_config_sync() now. Add + call to gimp_data_dirty() so GimpCurvesConfig gets notified. + + * app/gegl/gimpcurvesconfig.c (gimp_curves_config_set_property): + use gimp_config_copy() instead of copying the curve menually. + +2008-09-29 Michael Natterer + + * app/widgets/gimpdialogfactory.c + (gimp_dialog_factories_show_foreach) + (gimp_dialog_factories_hide_foreach): remove some casts that were + always useless and are even more useless now after the recent + readability improvement. + +2008-09-29 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): reduced + default window height to give a window aspect ratio of roughly 3:1 + as requested by Peter. + +2008-09-28 Martin Nordholts + + Bug 472403 – Add bevel script fu does not work if there is no + selection + + * plug-ins/script-fu/scripts/add-bevel.scm (script-fu-add-bevel): + Applied modified patch from Barak Itkin that when there is no + selection makes the bevel be performed on the whole layer instead + of the whole image (which was broken in the first place). It also + fixes some bugs with setting the selection when there is no + initial selection. + +2008-09-28 Martin Nordholts + + * plug-ins/script-fu/scripts/add-bevel.scm (script-fu-add-bevel): + Rename 'select' to 'selection' since that is what it holds. + +2008-09-28 Martin Nordholts + + * app/widgets/gimpdialogfactory.c + (gimp_dialog_factories_show_foreach) + (gimp_dialog_factories_hide_foreach): Increase readability with + widget = list->data. + +2008-09-27 Martin Nordholts + + Bug 551864 – plugin Flame fails for some settings on 64bit + machines + + * plug-ins/flame/rect.c (render_rectangle): To handle p[0] and + p[1] being NaN, make sure that they are "within bounds" instead of + "not outside bounds". + +2008-09-26 Michael Natterer + + * app/widgets/gimpnavigationview.c: reorder functions and add + static prototypes. + +2008-09-25 Michael Natterer + + * app/base/colorize.c (colorize_calculate): fix calculation of + final lookup table to not darken the image. + +2008-09-25 Michael Natterer + + * app/display/gimpdisplayshell-dnd.c + (gimp_display_shell_drop_pixbuf): use the new helper function here + too. + +2008-09-25 Sven Neumann + + * app/display/gimpdisplayshell-dnd.c + (gimp_display_shell_drop_component) + (gimp_display_shell_drop_drawable): moved duplicated code into a + helper function. + +2008-09-25 Michael Natterer + + * plug-ins/print/print-draw-page.c + (print_cairo_surface_from_drawable): free the right array. + +2008-09-25 Sven Neumann + + * plug-ins/file-jpeg/jpeg.[ch] + * plug-ins/file-jpeg/jpeg-save.[ch] + * plug-ins/file-jpeg/jpeg-settings.[ch]: introduced an enum for + the subsampling factor. + +2008-09-25 Sven Neumann + + Bug 553412 – JPEG sampling factors not set to 1x1 on grayscale + images: + + * plug-ins/file-jpeg/jpeg-save.c: always set subsampling to 1x1 + for grayscale images and indicate this properly in the UI. + +2008-09-25 Michael Natterer + + Bug 553530 – fatal error: Segmentation fault - when attempting to + bring up color-picker: + + * modules/color-selector-wheel.c: declare gtk_hsv_get_type() if + not already done by GTK+. Fixes confusion about its return value + being 32 or 64 bit on 64 bit machines. + +2008-09-25 Michael Natterer + + Bug 549195 – Color Wheel not working (GtkHSV): + + * modules/color-selector-wheel.c: change packing and size requests + of the GtkHSV and its optional GtkAligmnent depending on the GTK+ + version used to make it work with both the old and the new version + of the widget. Evil hacks, better don't look :) + +2008-09-25 Sven Neumann + + * app/core/gimp.[ch]: added a 'restored' flag to the Gimp object + and set it in gimp_real_restore(). Added method gimp_is_restored(). + + * app/gui/gui.c: call gui_unique_init() in gui_init() instead of + doing that later in gui_restore_after_callback(). By doing so we + start our DBus service (or message proxy window on Win32) much + earlier in the start process, thus reducing the time frame where + two instances of GIMP can be launched. + + * app/gui/gui-unique.c + * app/gui/gimpdbusservice.c: wait handling the queued file-open + requests until GIMP is fully restored. + + * app/gui/splash.c (splash_update): only run one iteration of the + main loop. Doing it in a while loop can cause us to get stuck if + the gimp-unique service already added an idle handler. + +2008-09-24 Martin Nordholts + + Bug 549925 – incorrect math: adding/substracting empty selection + deselects selection + + * app/tools/gimprectangleselecttool.c + (gimp_rectangle_select_tool_execute): Be more intuitive when + clicking outside the current selection for the selection modes Add + and Subtract. More specifically, don't alter the selection mask at + all. + +2008-09-24 Martin Nordholts + + * app/tools/gimprectangleselecttool.c: Added new utility function + gimp_rectangle_select_tool_get_operation(), and started using it. + +2008-09-24 Sven Neumann + + * plug-ins/pygimp/pygimp-image.c: undef GIMP_DISABLE_DEPRECATED + as we need the deprecated gimp_image_free_shadow() here. + + * plug-ins/pygimp/pygimp-drawable.c: added Drawable.free_shadow(). + +2008-09-24 Sven Neumann + + * plug-ins/pygimp/pygimp-drawable.c + * plug-ins/pygimp/pygimp-image.c: added optional interpolation + parameters to the image.scale() and layer.scale() methods. + +2008-09-24 Michael Natterer + + * app/widgets/gimpcontrollereditor.c + (gimp_controller_editor_edit_response): call + gimp_controller_editor_sel_changed() with the right + GtkTreeSelection object (the editor's, not the action + list's). Fixes crash upon selecting an action for a controller + event. Spotted by Alexander Rabtchevich. + +2008-09-24 Martin Nordholts + + * tools/pdbgen/pdb/selection.pdb (selection_layer_alpha): Update + documentation, the layer does not need to have an alpha channel. A + layer without an alpha channel is considered opaque. + + * app/pdb/selection-cmds.c + * libgimp/gimpselection_pdb.c: Regenerated. + +2008-09-24 Sven Neumann + + * tools/pdbgen/pdb/layer.pdb + * tools/pdbgen/pdb/image.pdb: added new scale procedures that + allow to specify the interpolation explicitly. Fixes bug #486977. + Also pass the progress parameter to the scale and rotate functions. + + * app/pdb/image-cmds.c + * app/pdb/internal-procs.c + * app/pdb/layer-cmds.c + * libgimp/gimpimage_pdb.[ch] + * libgimp/gimplayer_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + +2008-09-24 Sven Neumann + + * tools/pdbgen/pdb/image.pdb: fixed error and some typos in the + PDB documentation. + + * app/pdb/image-cmds.c + * libgimp/gimpimage_pdb.c: regenerated. + +2008-09-23 Sven Neumann + + * INSTALL + * configure.in: added --without-wmf option to disable build of the + WMF plug-in. + +2008-09-23 Sven Neumann + + Move the "Use GEGL" check-box to the Colors menu (bug #548760): + + * app/actions/Makefile.am + * app/actions/config-actions.[ch] + * app/actions/config-commands.[ch]: new files holding the "config" + action group that includes the "use-gegl" toggle action. + + * app/actions/debug-actions.c + * app/actions/debug-commands.[ch]: removed the "use-gegl" action + here. + + * app/menus/menus.c + * app/actions/actions.c: added the new action group. + + * app/widgets/gimphelp-ids.h: added a help ID for the "use-gegl" + action. + + * menus/image-menu.xml.in: moved the "Use GEGL" check-box to the + Colors menu. + +2008-09-21 Sven Neumann + + * app/actions/windows-actions.c: don't set a help ID on the + display menu items. + + * app/widgets/gimphelp-ids.h: removed now unused help ID. + + * app/menus/windows-menu.c: show a larger image preview in the + tooltip. + +2008-09-21 Sven Neumann + + * INSTALL: mention more explicitely that the '--without-gvfs' + option should be used with configure if GVfs support is missing. + +2008-09-20 Sven Neumann + + * app/dialogs/about-dialog.c: put translator comment on a single + line, looks better in the .po file. + +2008-09-20 Michael Natterer + + * plug-ins/script-fu/Makefile.am + * plug-ins/script-fu/script-fu-utils.[ch]: new files containing + script_fu_stresacpe(). + + * plug-ins/script-fu/script-fu-script.c + * plug-ins/script-fu/script-fu-scripts.[ch]: changed accordingly. + +2008-09-20 Simon Budig + + * app/core/gimpcurve.c: whitespace fix + + * app/gegl/gimplevelsconfig.c: make sure that the points set by + default gets unset before calculating the levels->curves + transition. We don't want stray points in the corners. + +2008-09-19 Michael Natterer + + * plug-ins/script-fu/script-fu-types.h (struct SFScript): rename + "menu_path" to "menu_label". Having a full path here is just + compat cruft. + + * plug-ins/script-fu/script-fu-scripts.c + * plug-ins/script-fu/script-fu-script.[ch]: changed accordingly. + +2008-09-19 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c: also apply the menu + mapping on scripts that use script-fu-menu-register to add + themselves to the menus. + +2008-09-19 Michael Natterer + + * plug-ins/script-fu/scheme-wrapper.c: move variables to local + scopes, fix some whitespace and indentation, some misc. cleanup, + remove comments about array calling conventions that had lots of + copy and paste errors. + +2008-09-19 Sven Neumann + + * app/actions/file-actions.c: renamed "file-new-menu" to + "file-create-menu" and changed the menu label from "New" to "Create". + + * app/plug-in/plug-in-menu-path.c + * menus/image-menu.xml.in + * plug-ins/common/screenshot.c + * plug-ins/script-fu/script-fu.c + * plug-ins/script-fu/scripts/*.scm + * plug-ins/twain/twain.c + * plug-ins/win-snap/winsnap.c: changed accordingly. + +2008-09-19 Michael Natterer + + * libgimp/gimp.[ch] (gimp_destroy_paramdefs): fix docs: there is + no such thing as gimp_query_procedure(), the function is called + gimp_procedural_db_proc_info(). + +2008-09-19 Sven Neumann + + * plug-ins/script-fu/scheme-wrapper.c + (script_fu_marshal_procedure_call): increased size of the + stack-allocated error string. + +2008-09-19 Michael Natterer + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): + fix warning about missing braces around array initializer. + +2008-09-19 Michael Natterer + + * plug-ins/script-fu/script-fu-script.[ch]: add new functions + script_fu_script_get_title() and script_fu_script_reset(). + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): + don't set all default values *and* values when parsing the script, + just set the defaults and call script_fu_script_reset() afterwards. + + * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): + use the new script_fu_script_get_title(). + + (script_fu_reset): call script_fu_script_reset() and then update + the UI from the current values, instead of doing slightly + different things for each arg type. + +2008-09-19 Sven Neumann + + * plug-ins/help-browser/dialog.c (update_actions): allow to copy + selected text to the clipboard using Ctrl-C or the right-click + menu. + +2008-09-19 Sven Neumann + + * app/actions/plug-in-actions.c (plug_in_actions_history_changed): + try to use the menu label with ellipsis instead of the result of + gimp_plug_in_procedure_get_label() which has ellipsis and + mnemonics stripped. + +2008-09-19 Sven Neumann + + * app/gegl/gimplevelsconfig.c (gimp_levels_config_to_curves_config): + need to set the point at the index corresponding to the x value. + +2008-09-18 Sven Neumann + + * app/core/gimpcurve.c (gimp_curve_plot) + * app/gegl/gimplevelsconfig.c (gimp_levels_config_to_curves_config): + formatting. + +2008-09-18 Simon Budig + + * app/core/gimpcurve.c: comment fix + + * app/gegl/gimplevelsconfig.c: improve the levels->curves + transition. Not perfect, the result does not match a "real" + gamma correction, especially in the dark areas, where the + curves are too dark compared to the levels. + +2008-09-18 Sven Neumann + + * plug-ins/common/edge-dog.c: the plug-in can only run on layers, + not masks and channels. Added a check for this and bail out with + an error message. Fixes bug #552625. + + * plug-ins/common/curve-bend.c: return error messages via the + procedure's return values. + +2008-09-18 Sven Neumann + + * app/plug-in/gimppluginprocedure.c + * libgimp/gimp.c: minor cleanups. + +2008-09-18 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): + don't leak the GError. + +2008-09-18 Michael Natterer + + Bug 552785 – Script-fu run errors do not show in UI + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_script_proc): + fix the code that passes the error message back via the pipe. + +2008-09-18 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command): + plugged a memory leak. + + * plug-ins/script-fu/script-fu-console.c + * plug-ins/script-fu/script-fu-server.c: minor cleanup. + +2008-09-18 Michael Natterer + + * plug-ins/script-fu/script-fu-script.[ch]: add new functions + script_fu_script_collect_standard_args(), + script_fu_script_get_command() and + script_fu_script_get_command_from_params(). + + * plug-ins/script-fu/script-fu-scripts.c: remove the resp. code + here and use above functions instead. + + * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): changed + loop over args to only copy all widget content into the script's + values and then call script_fu_script_get_command(). + +2008-09-18 Michael Natterer + + * app/widgets/gimpdock.c (gimp_dock_style_set): reset the RC + styles of the dock's children after parsing the RC file snippet + for them. Fixes font size for detached dockables. + +2008-09-18 Tor Lillqvist + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): + Fix small build break. + + * app/plug-in/gimppluginshm.c: Use INVALID_HANDLE_VALUE instead of + INVALID_FILE_HANDLE which was a misunderstanding. + +2008-09-18 Sven Neumann + + * app/widgets/gimpdock.c: made the font scale factor for the docks + configurable in gtkrc. + + * themes/Default/gtkrc + * themes/Small/gtkrc: for documentation purposes, added the + default value for GimpDock::font-scale here. Changed all style + property names to use the canonical names. + +2008-09-18 Sven Neumann + + * app/core/gimpdrawable-shadow.c (gimp_drawable_get_shadow_tiles): + no need to check if the drawable is attached as shadow tiles are + per drawable now. + +2008-09-18 Simon Budig + + * app/gegl/gimpbrightnesscontrastconfig.c: fix the + brightness/contrast --> levels step by doing proper math (TM). + +2008-09-18 Sven Neumann + + * tools/pdbgen/pdb/drawable.pdb: gimp_drawable_mask_intersect() + and gimp_drawable_mask_bounds() may only be used on attached + drawables. Added missing checks. + + * app/pdb/drawable-cmds.c: regenerated. + +2008-09-18 Sven Neumann + + * configure.in (CPPFLAGS): removed G*_DISABLE_SINGLE_INCLUDES until + we depend on newer versions of GLib and GTK+. Fixes bug #552669. + +2008-09-18 Sven Neumann + + * plug-ins/common/lcms.c (run): call gimp_displays_flush() at the + end of all interactive uses. Fixes bug #552104. + +2008-09-17 Sven Neumann + + * app/actions/edit-actions.c (edit_actions_update): formatting. + +2008-09-17 Michael Natterer + + * plug-ins/script-fu/script-fu-types.h: add struct SFArg which + keeps all a script argument's type, label, value and default + value. + + (struct SFScript): replace separate arrays of type, label etc. by + one array of SFArg. Remove array of GimpParamDef because they are + only needed while registering the temp proc. + + * plug-ins/script-fu/Makefile.am + * plug-ins/script-fu/script-fu-script.[ch]: new files implementing + script_fu_script_new(), script_fu_script_free(), + script_fu_script_register_proc() and + script_fu_script_unregister_proc(). + + * plug-ins/script-fu/script-fu-scripts.c: remove lots of code now + implemented in script-fu-script.c. Changed stuff according to the + introduction of SFArg. Moved variables to local scopes. Most + changes are in script_fu_add_script(), almost every line changed + and it's hopefully more readable now. Lots of cleanup all over the + place. + + * plug-ins/script-fu/script-fu-interface.c: changed stuff + according to the introduction of SFArg + +2008-09-17 Sven Neumann + + * plug-ins/pygimp/plug-ins/pyconsole.py: removed she-bang as this + file is not a plug-in. Addresses bug #552601. + +2008-09-17 Sven Neumann + + * libgimp/gimpimage.c (gimp_image_get_colormap): allow to pass + NULL for "num_colors". + + * plug-ins/print/print-draw-page.c: added missing conversion + routines for indexed images. Fixes bug #552609. + +2008-09-17 Michael Natterer + + * app/widgets/gimpdockable.c: cosmetic paranoia. + +2008-09-17 Michael Natterer + + Revert the change which adds GError parameters to + gimp_image_add_{channel,layer,vectors}(): + + * app/actions/channels-commands.c + * app/actions/edit-commands.c + * app/actions/layers-commands.c + * app/actions/vectors-commands.c + * app/core/gimp-edit.c + * app/core/gimpimage-duplicate.c + * app/core/gimpimage-merge.c + * app/core/gimpimage-quick-mask.c + * app/core/gimpimage.[ch] + * app/core/gimplayer-floating-sel.c + * app/core/gimpselection.c + * app/core/gimptemplate.c + * app/display/gimpdisplayshell-dnd.c + * app/text/gimptext-compat.c + * app/tools/gimptexttool.c + * app/tools/gimpvectortool.c + * app/vectors/gimpvectors-import.c + * app/widgets/gimpchanneltreeview.c + * app/widgets/gimpitemtreeview.[ch] + * app/widgets/gimplayertreeview.c + * app/widgets/gimptoolbox-dnd.c + * app/widgets/gimpvectorstreeview.c + * app/xcf/xcf-load.c: revert. + + Instead, fix it at the PDB level: + + * app/core/gimpimage.c: turn the "added to wrong image" warning + into a g_return_val_if_fail() assertion. + + * app/pdb/gimppdb-utils.[ch] (gimp_pdb_item_is_floating): add a + "dest_image" parameter and fail if the passed item is not for this + image. + + * tools/pdbgen/pdb/image.pdb + * tools/pdbgen/pdb/layer.pdb + * tools/pdbgen/pdb/paths.pdb: pass the dest image to + gimp_pdb_item_is_floating(). + + * app/pdb/image-cmds.c + * app/pdb/layer-cmds.c + * app/pdb/paths-cmds.c: regenerated. + +2008-09-17 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script): + tweaked error message. + + * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): set the + PDB error handler to GIMP_PDB_ERROR_HANDLER_PLUGIN while + interpreting the script. + +2008-09-17 Michael Natterer + + * plug-ins/script-fu/script-fu-interface.c (script_fu_interface): + fix indentation. + +2008-09-17 Michael Natterer + + * plug-ins/common/file-header.c + * plug-ins/common/file-psp.c + * plug-ins/common/file-xbm.c + * plug-ins/common/file-xpm.c + * plug-ins/common/hot.c + * plug-ins/common/mail.c: add const plus misc. cleanups. + +2008-09-17 Michael Natterer + + * plug-ins/file-fits/fits.c + * plug-ins/gimpressionist/gimpressionist.h + * plug-ins/gimpressionist/presets.c + * plug-ins/gimpressionist/utils.c + * plug-ins/gradient-flare/gradient-flare.c + * plug-ins/ifs-compose/ifs-compose-storage.c + * plug-ins/imagemap/imap_default_dialog.[ch] + * plug-ins/imagemap/imap_object.h + * plug-ins/map-object/map-object-ui.c: add const plus some minor + unrelated cleanups. + +2008-09-17 Michael Natterer + + * app/core/gimpimage.[ch]: add GError parameter to + gimp_image_add_{channel,layer,vectors}() and remove calls to + g_warning(). Changed checks to be possible failures at all. + + * app/widgets/gimpitemtreeview.h (GimpAddItemFunc): add the GError + here too. + + * app/actions/channels-commands.c + * app/actions/edit-commands.c + * app/actions/layers-commands.c + * app/actions/vectors-commands.c + * app/core/gimp-edit.c + * app/core/gimpimage-duplicate.c + * app/core/gimpimage-merge.c + * app/core/gimpimage-quick-mask.c + * app/core/gimplayer-floating-sel.c + * app/core/gimpselection.c + * app/core/gimptemplate.c + * app/display/gimpdisplayshell-dnd.c + * app/text/gimptext-compat.c + * app/tools/gimptexttool.c + * app/tools/gimpvectortool.c + * app/vectors/gimpvectors-import.c + * app/widgets/gimpchanneltreeview.c + * app/widgets/gimpitemtreeview.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimptoolbox-dnd.c + * app/widgets/gimpvectorstreeview.c + * app/xcf/xcf-load.c: pass a NULL error. + + * tools/pdbgen/pdb/image.pdb + * tools/pdbgen/pdb/paths.pdb: pass the error. + + * app/pdb/image-cmds.c + * app/pdb/paths-cmds.c: regenerated. + +2008-09-16 Sven Neumann + + * configure.in: bumped version to 2.5.5. + +2008-09-16 Sven Neumann + + * Made 2.5.4 development release. + +2008-09-16 Sven Neumann + + * app/core/gimpimage.[ch]: added GError parameter to + gimp_image_{raise,lower}_{channel,layer,vectors} functions and + removed calls to g_message(). + + * app/actions/channels-commands.c + * app/actions/layers-commands.c + * app/actions/vectors-commands.c: pass NULL for the GError + parameter as these actions are insensitive if they would fail. + + * tools/pdbgen/pdb/image.pdb: changed accordingly. Corrected the + documentation. + + * app/pdb/image-cmds.c + * libgimp/gimpimage_pdb.c: regenerated. + +2008-09-16 Sven Neumann + + * app/core/gimppalette-load.c (gimp_palette_load): unified error + messages. + +2008-09-16 Michael Natterer + + * app/actions/actions.c: use the "tool options" icon for the + "context" action group since that's what its actions mostly + control. + + * app/actions/dialogs-actions.c: use the "brush", "gradient" and + "palette" icons also for their resp. editors since that's also the + icons they use in their dockable tabs. + +2008-09-15 Michael Natterer + + * app/core/gimplayer.[ch] (gimp_layer_add_mask): add GError + parameter and replace g_message() by g_set_error(). + + * app/core/gimplayermaskundo.c + * app/xcf/xcf-load.c + * app/actions/layers-commands.c: pass NULL errors since these + places know what they are doing. Ha ha... + + * tools/pdbgen/pdb/layer.pdb + * tools/pdbgen/pdb/image.pdb: pass the error so we get more real + error messages for failed PDB calls. + + * app/pdb/image-cmds.c + * app/pdb/layer-cmds.c: regenerated. + +2008-09-15 Michael Natterer + + Bug 552413 – Script triggers Gimp-Core-CRITICAL + + * tools/pdbgen/pdb/image.pdb + * tools/pdbgen/pdb/layer.pdb: add some more checks that produce + proper PDB error messages when adding and removing layer masks + instead of having the code run into assertions in the called core + functions. Also add some more checks when removing layers, + channels or vectors. + + * app/pdb/image-cmds.c + * app/pdb/layer-cmds.c: regenerated. + +2008-09-14 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c (mk_vector), (opexe_2): + Applied changes from official version of TinyScheme which adds + tests for when mk_vector is out of memory. Can't rely on sc->sink. + +2008-09-13 Michael Schumacher + + * app/actions/edit-actions.c (edit_actions): removed double "the" + from translatable string. Fixes bug #552127. + +2008-09-13 Sven Neumann + + * plug-ins/common/lcms.c (lcms_image_apply_profile): flush the + displays after closing the undo group. Should fix bug #552104. + +2008-09-12 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c + * plug-ins/script-fu/tinyscheme/scheme.h: Applied changes from + official version of TinyScheme which expose more of the internals. + Part of making it more suitable for Scheme->C->Scheme calling. + See SourceForge bug #1599947. + +2008-09-12 Sven Neumann + + * plug-ins/common/guillotine.c: return the list of created images. + Only create displays when running in interactive mode. + +2008-09-12 Michael Natterer + + * app/core/gimpdata.h: changed GimpBrush::get_extension() to return + const gchar* instead of gchar* + + * app/core/gimpbrush.c + * app/core/gimpbrushgenerated.c + * app/core/gimpcurve.c + * app/core/gimpgradient.c + * app/core/gimppalette.c + * app/core/gimppattern.c: changed accordingly. + +2008-09-11 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/CHANGES: Updating to match version + in official version of TinyScheme. + + * plug-ins/script-fu/tinyscheme/scheme.c: Applied changes from + official version of TinyScheme which adds entry point for nested + calling. Part of making it more suitable for Scheme->C->Scheme + calling. See SourceForge bug #1599945. Updated usage information + using text from Manual.txt. + +2008-09-11 Michael Natterer + + * configure.in: forgot to remove plug-ins/script-fu/re here. + +2008-09-11 Michael Natterer + + * plug-ins/script-fu/scheme-wrapper.[ch]: reordered and renamed + functions to be consistent. Got rid of file-global "register_scripts" + variable. Pass more "scheme *sc" pointers around to reduce usage + or the global variable. + + * plug-ins/script-fu/script-fu-eval.c + * plug-ins/script-fu/script-fu-scripts.c + * plug-ins/script-fu/script-fu-server.c + * plug-ins/script-fu/script-fu.c: changed accordingly. + +2008-09-11 Michael Natterer + + * app/core/gimp-modules.c (gimp_modules_unload): make a string + pointer const. + +2008-09-11 Michael Natterer + + * plug-ins/script-fu/script-fu-regex.[ch]: namespace, copyright + headers, indentation, formatting, everything... + + * plug-ins/script-fu/scheme-wrapper.c: changed accordingly. Some + formatting cleanup here too. + +2008-09-11 Michael Natterer + + * libgimp/gimpexport.c (struct ExportAction): make string members + const. + +2008-09-11 Michael Natterer + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script): + convert the filename to UTF-8 before displaying it in the error + message. + +2008-09-11 Michael Natterer + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command): + use g_set_error() instead of g_set_error_literal() which is only + available in glib 2.18. + +2008-09-11 Michael Natterer + + * plug-ins/script-fu/Makefile.am + * plug-ins/script-fu/re/*: removed.... + + * plug-ins/script-fu/script-fu-regex.[ch]: and replaced with a + few-liner using GRegex. Seems to have some issues that need to be + sorted out. + + * plug-ins/script-fu/scheme-wrapper.c: changed accordingly. + +2008-09-10 Michael Natterer + + Change Script-Fu error handling to properly use the new error + message passing in PDB return values: + + * plug-ins/script-fu/script-fu-scripts.[ch]: remove function + script_fu_error_msg(). + + * plug-ins/script-fu/script-fu-interface.c (script_fu_ok): output + errors of interactive script-fu dialogs directly here with + g_message(). + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command): + add GError and return the error message instead of displaying it. + + (script_fu_load_script): show the returned error here (and make it + more specific than the former script_fu_error_msg() did). + + (script_fu_script_proc): return error messages via the procedure's + return values. + + * plug-ins/script-fu/scheme-wrapper.c + (script_fu_marshal_procedure_call): if an error message was + returned from the PDB call, pass it to foreign_error() so it ends + up where it should (console, text console or error string). + + * plug-ins/script-fu/script-fu-console.c + * plug-ins/script-fu/script-fu-text-console.c: set the error + handler to PLUGIN while interpreting scheme, we handle errors + from calling back into the PDB ourselves now. + +2008-09-10 Michael Natterer + + * plug-ins/script-fu/tinyscheme/scheme.h: fix prototype (foo() is + not a prototype, use foo(void) instead). + +2008-09-10 Tor Lillqvist + + * app/gui/gui-unique.c: Untabify. + + * app/gui/gui-unique.c (gui_unique_win32_exit): Destroy the proxy + window here so that gimp_unique_win32_open() in app/unique.c won't + find it. This is important especially in a developer version where + the debug output window might be left open and the proxy window + otherwise would still exist for a long time after the GTK+ main + loop of the GIMP GUI has finished. Thanks to Michael Schumacher + for pointing this out. + + There is still a small race window here after GIMP has begun + closing down its GUI in gui_exit_callback() and before the proxy + window has gone away. If another GIMP starts during that interval, + it will find the proxy window and send it a message, which will + then either be ignored, or the proxy window will have been + destroyed before it gets the message. Let's ignore that. There is + a much wider time window during which multiple GIMP instances may + be started during GIMP startup anyway. + + * app/gui/gui-unique.c: gui_unique_win32_message_handler() can be + static. Include file/file-open.h for file_open_from_command_line() + declaration. Fix copy/paste glitch in gui_unique_exit(). + +2008-09-10 Michael Natterer + + * app/widgets/gimpactionview.c: factor out function that selects a + path and scrolls to that path. Keep the selected path visible if + it is still there after filtering. + +2008-09-10 Michael Natterer + + * app/actions/context-actions.c: made action labels more + consistent, use '°' instead of 'degrees'. + + * app/actions/context-commands.c: cosmetic change in macro + parameters. + +2008-09-10 Michael Natterer + + * plug-ins/file-uri/uri-backend-wget.c + * plug-ins/file-xjt/xjt.c: s/while (1)/while (TRUE)/ + +2008-09-09 Michael Natterer + + * plug-ins/script-fu/scheme-wrapper.c + (script_fu_marshal_procedure_call): remove debug arrays to map the + values of registered enums to strings. Look up the strings + registered with the type system instead. + +2008-09-09 Michael Natterer + + * plug-ins/script-fu/scheme-wrapper.c: fix formatting of prototypes. + + (script_fu_marshal_procedure_call): move variables to local scopes + where possible. Make this function a bit readable by indenting the + debug code in DEBUG_MARSHAL normally. + +2008-09-09 Michael Natterer + + * app/Makefile.am + * plug-ins/script-fu/Makefile.am: remove references to $(REGEXREPL). + +2008-09-09 Sven Neumann + + * plug-ins/file-psd/psd-save.c (create_merged_image): don't leak + the GimpDrawable. + +2008-09-09 Martin Nordholts + + * plug-ins/file-psd/psd-save.c (save_data): Formating. + +2008-09-08 Sven Neumann + + * authors.xml: some more updates. + + * AUTHORS: regenerated. + +2008-09-08 Sven Neumann + + * plug-ins/file-psd/psd-save.c: applied patch from Dennis Ranke as + attached to bug #551231. Changes the PSD save plug-in to store + transparency data in the image data section. Also fixes bug #551232 + (saving an indexed image with multiple layers as PSD modifies the + image). + +2008-09-08 Sven Neumann + + * app/paint/gimpbrushcore.c: based on a patch from David Gowers + clamp the brush scale so that the brush never becomes smaller than + 0.5 pixels. Fixes bug #548631. + +2008-09-08 Michael Natterer + + Bug 551306 – Color picker for text tool does not show selected + palette + + * app/tools/gimptexttool.c (gimp_text_tool_register): add + GIMP_CONTEXT_PALETTE_MASK to the tool option's context mask so the + color popup's palette follows the globally selected palette. + +2008-09-08 Sven Neumann + + * authors.xml: restored alphabetic order. Use real name instead of + a nick. + + * AUTHORS: regenerated. + + * app/dialogs/authors.xsl: changed rule to only include + contributors from the 2.6 development cycle in the About dialog. + +2008-09-08 Roman Joost + + * authors.xml: updated documenters who contributed to the user + manual since 2.4 + +2008-09-07 Sven Neumann + + Applied 'gimp-decimate.diff' as announced on the mailing-list: + + * app/gimp-log.[ch]: added log domain "scale". + + * app/paint-funcs/scale-region.c: replaced decimation routines + with box filters. Only use the decimation routines to pre-scale + the image, always apply the interpolation for the final step. + +2008-09-07 Martin Nordholts + + * app/widgets/gimpnavigationview.c + (gimp_navigation_view_set_marker): Invalidating the view renderer + is just plain wrong, revert to redrawing the view. We will need to + solve the flicker in some other way. + +2008-09-07 Martin Nordholts + + * plug-ins/common/file-raw.c (load_dialog): Set the allowed max + values for Width and Height to the size of the image to load + instead of an arbitrary max of 4096. + +2008-09-07 Martin Nordholts + + Bug 551141 – "Select all" does not work + + * app/core/gimpchannel.c (gimp_channel_real_all): We don't want to + clear the region, we want to fill it with OPAQUE_OPACITY. + +2008-09-06 Martin Nordholts + + * plug-ins/file-psd/psd-load.c (add_merged_image): Use the new + COMP_MODE_SIZE constant instead of a magic number. + +2008-09-06 Martin Nordholts + + Bug 544939 – PSD Plugin crash (maybe only PSD files created by + Paintshop Pro) + + * plug-ins/file-psd/psd-load.c (add_layers): Fix integer underflow + and only attempt to read channel data if there is any channel + data. + +2008-09-06 Martin Nordholts + + * plug-ins/file-psd/psd-load.c (add_layers): Also consider unknown + compression methods unsupported. This gives an error message + instead of a crash for PSD file attached to bug #544939. The PSD + loader still fails to read the correct compression method however. + +2008-09-06 Michael Natterer + + * app/gegl/gimpoperationhuesaturation.c + (gimp_operation_hue_saturation_process): don't use // for comments. + +2008-09-06 Martin Nordholts + + * app/gegl/gimpoperationhuesaturation.c + (gimp_operation_hue_saturation_process): mapped_* -> mapped_*_hue. + +2008-09-06 Martin Nordholts + + Bug 527085 – Hue/Saturation (working improperly) + + * app/gegl/gimpoperationhuesaturation.c + (gimp_operation_hue_saturation_process): Properly map the + secondary hue. Based on patch by Michael Deal. + +2008-09-05 Sven Neumann + + * app/tools/gimpgegltool.c: blacklist "color-convert" and all GIMP + operations. + +2008-09-05 Sven Neumann + + * app/tools/gimpgegltool.c: added a blacklist of operations that + should not be shown. We may want to add more operations here. + +2008-09-05 Michael Natterer + + * app/plug-in/gimpplugindebug.[ch] (gimp_plug_in_debug_argv): made + the "args" parameter const. + + * app/plug-in/gimpplugin.c (gimp_plug_in_open): made some strings + const. + +2008-09-05 Michael Natterer + + * plug-ins/file-fits/fits-io.[ch]: add some const. + +2008-09-05 Michael Natterer + + Bug 545325 – Scrollbars do not disappear automatically + + * app/widgets/gimpcontainertreeview.c: autosize the columns after + each operation that can reduce the treeview's width. + +2008-09-05 Michael Natterer + + Bug 550983 – The size displayed in the status bar isn't correct + + * app/tools/gimprectangletool.c: use the right precision when + pushing the rectangle's size as coordinates to the statusbar. + +2008-09-05 Michael Natterer + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimpactioneditor.[ch]: new simple widget which + contains a GimpActionView plus the search entry. + + * app/dialogs/keyboard-shortcuts-dialog.c: use the new widget + instead of implementing the search entry here. + + * app/widgets/gimpcontrollereditor.c: use a GimpActionEditor + instead of GimpActionView so the actions become searchable here + too. + +2008-09-04 Sven Neumann + + * app/tools/gimptransformtool.c (gimp_transform_tool_initialize): + expose the preview when the tool is initialized. Fixes missing + redraws when the tool is selected from the menus (bug #550911). + + (gimp_transform_tool_motion): expose the preview after + recalculating the transformation matrix. + +2008-09-04 Sven Neumann + + * app/display/gimpdisplayshell-dnd.c: improved the new DND code. + +2008-09-04 Tor Lillqvist + + * app/base/base-utils.h + * app/base/base-utils.c: The return type of get_pid() should be + gint, not GPid. This matches also the C library on Windows, in + which the return type of getpid() is int, not a pointer or + intptr_t. The use for GPid in the GLib API is as a "handle" to a + descendant processes, returned by the g_spawn_*() functions, and + passed to the g_child_watch_*() functions, not as a "process + identifier". + + * tools/gimptool.c: Make it compile without warnings also with gcc + -Wwrite-strings. Use cmd.exe instead of command.com to execute the + COPY and DEL commands on Windows. + +2008-09-04 Sven Neumann + + * app/display/gimpdisplayshell-dnd.c + (gimp_display_shell_drop_drawable) (gimp_display_shell_drop_pixbuf): + handle drops on the empty image window. + +2008-09-04 Sven Neumann + + * app/dialogs/keyboard-shortcuts-dialog.c: tweaked spacing between + entry and button and resolved a mnemnic conflict. + +2008-09-04 Michael Natterer + + * app/widgets/gimpactionview.[ch]: add a column for the casefold + label of the action and filter on that. + + * app/dialogs/keyboard-shortcuts-dialog.c: add a button to clear + the filter entry. Changed the label to "Search:". + +2008-09-04 Michael Natterer + + * plug-ins/gfig/gfig-dobject.h + * plug-ins/gfig/gfig-style.c: some more const. + +2008-09-04 Michael Natterer + + * app/widgets/gimpactionview.[ch]: add a GtkTreeModelFilter + between the GtkTreeView and the actual GtkTreeStore. Add API to + set the filter which is simply a string that's matched with + strstr(). Quite some things improvable here... + + * app/dialogs/keyboard-shortcuts-dialog.c: add a "Filter" entry + and set the filter on the action view. + +2008-09-04 Sven Neumann + + * libgimp/gimpprocview.[ch]: made the GimpParamDef parameter in + gimp_proc_view_new() const. + +2008-09-04 Michael Natterer + + * tools/gimptool.c: add tons of const. + +2008-09-04 Michael Natterer + + * libgimpbase/gimpreloc.c (set_gerror): made the error_message + variable const. + +2008-09-04 Michael Natterer + + * libgimpbase/gimpbasetypes.h + (struct GimpEnumDesc) + (struct GimpFlagsDesc): made the value_desc and value_help members + const, just as the corresponding GEnumValue and GFlagsValue + members. This is technically an API change but shouldn't hurt + since it totally reflects how they are used. + +2008-09-04 Michael Natterer + + * plug-ins/color-rotate/color-rotate-callbacks.c + * plug-ins/common/filter-pack.c + * plug-ins/common/nova.c + * plug-ins/common/sample-colorize.c: get rid of calls to + gdk_window_get_pointer(), use the coords from the motion event + and use gdk_event_request_motions(). + + * plug-ins/color-rotate/color-rotate-callbacks.[ch]: some + unrelated cleanup while i was at it. + +2008-09-04 Sven Neumann + + * app/composite/make-installer.py + * app/composite/ns.py + * app/dialogs/tips-dialog.c + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-scroll.c + * app/display/gimpdisplayshell.c + * app/display/gimpnavigationeditor.c + * app/paint/gimppaintcore-stroke.c + * app/tools/gimpcroptool.c + * app/widgets/gtkscalebutton.c + * plug-ins/common/animation-play.c + * plug-ins/common/displace.c + * plug-ins/common/file-raw.c + * plug-ins/imagemap/imap_cern_lex.c + * plug-ins/imagemap/imap_cern_parse.c + * plug-ins/imagemap/imap_csim_lex.c + * plug-ins/imagemap/imap_csim_parse.c + * plug-ins/imagemap/imap_ncsa_lex.c + * plug-ins/imagemap/imap_ncsa_parse.c + * plug-ins/pygimp/gimpfu.py + * plug-ins/pygimp/gimpshelf.py + * plug-ins/pygimp/gimpthumbmodule.c + * plug-ins/pygimp/gimpui.py + * plug-ins/pygimp/gimpuimodule.c + * plug-ins/pygimp/plug-ins/benchmark-foreground-extract.py + * plug-ins/pygimp/plug-ins/foggify.py + * plug-ins/pygimp/plug-ins/palette-offset.py + * plug-ins/pygimp/plug-ins/palette-sort.py + * plug-ins/pygimp/plug-ins/palette-to-gradient.py + * plug-ins/pygimp/plug-ins/py-slice.py + * plug-ins/pygimp/plug-ins/python-console.py + * plug-ins/pygimp/plug-ins/python-eval.py + * plug-ins/pygimp/plug-ins/whirlpinch.py + * plug-ins/pygimp/pygimp-colors.c + * plug-ins/pygimp/pygimp-drawable.c + * plug-ins/pygimp/pygimp-image.c + * plug-ins/script-fu/re/engine.c + * plug-ins/script-fu/re/regerror.c + * plug-ins/script-fu/tinyscheme/dynload.c + * plug-ins/twain/tw_func.c + * plug-ins/twain/tw_util.c + * plug-ins/twain/tw_win.c + * plug-ins/twain/twain.h + * tools/defcheck.py + * tools/gimppath2svg.py: removed trailing whitespace. + +2008-09-03 Lars-Peter Clausen + + * plugin-ins/pygimp/pygimp-tile.c: Removed trailing whitespace. + +2008-09-03 Lars-Peter Clausen + + * plugin-ins/pygimp/pygimp.h: define PyInt_AsSsize_t as PyInt_AsLong + if the python version is smaller then 2.5.0. + * configure.in: Lower required python version to 2.4. + +2008-09-03 Michael Natterer + + * app/pdb/gimpprocedure.[ch] (gimp_procedure_set_static_strings): + made the string parameters const. + +2008-09-03 Michael Natterer + + * app/widgets/gimpcontrollerkeyboard.c (struct _KeyboardEvent) + * app/widgets/gimpcontrollerwheel.c (struct _WheelEvent): made the + blurbs const. + +2008-09-03 Michael Natterer + + * app/widgets/gimpnavigationview.c + (gimp_navigation_view_motion_notify): remove the call to + gdk_window_get_pointer() again. + + (gimp_navigation_view_grab_pointer): instead, grab the pointer + properly with owner_events=FALSE so all events are reported with + respect to the widget's window. + +2008-09-03 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + * libgimpwidgets/gimpcolorselect.c + * modules/color-selector-water.c + * plug-ins/ifs-compose/ifs-compose.c: instead of using + gdk_window_get_pointer() if GdkEventMotion::is_hint is TRUE, + simply always use the coords from the event and call + gdk_event_request_motions() to ask for more motion events. This is + the recommended way and also works for events from devices other + than the core pointer. + + * plug-ins/ifs-compose/ifs-compose.c (design_area_motion): some + code cleanup while i was at it. + +2008-09-03 Michael Natterer + + * libgimpwidgets/gimpbutton.c: massively simplified. Don't fiddle + in GtkButton's internals (like setting "in_button" and forcing + redraws). Instead, simply remember the modifier state in + button_press() and check it in clicked(); if the state is != 0, + stop the "clicked" emission and emit "extended-clicked" instead. + +2008-09-03 Michael Schumacher + + * configure.in: bumped minimum required Python version to 2.5.0, + because of PyInt_AsSsize_t. Fixes bug #550576. + +2008-09-03 Sven Neumann + + * README.i18n: removed lots of outdated information directed at + developers and only kept the most important hints for translators. + +2008-09-02 Sven Neumann + + * app/plug-in/gimppluginshm.c: if INVALID_FILE_HANDLE is undefined, + define it as the constant that we used to use here. + +2008-09-02 Aurimas JuÅĄka + + * libgimp/gimpzoompreview.c (gimp_zoom_preview_draw_buffer), + (gimp_zoom_preview_set_drawable): fixed GimpZoomPreview to handle + layers with offsets and display intersection of layer and selection + in the preview. (bug #156905) + +2008-09-02 Michael Natterer + + * app/display/gimpstatusbar.c: use gtk_widget_get_style() instead + of widget->style. + +2008-09-02 Michael Natterer + + * libgimpwidgets/gimpruler.c: use gtk_widget_get_style() instead + of widget->style. Reduce indentation by one level in + gimp_ruler_draw_pos(). + +2008-09-02 Michael Natterer + + * app/widgets/gimpselectiondata.c: no need to set strlen(sting)+1 + bytes on the GtkSelectionData because gtk_selection_data_set() + zero-terminates all data anyway. + +2008-09-02 Michael Natterer + + * app/widgets/gimpselectiondata.c (gimp_selection_data_get_name): + return a const string, no need to strdup it since it's only used + temporarily in this file. + + (gimp_selection_data_get_image) + (gimp_selection_data_get_component) + (gimp_selection_data_get_item) + (gimp_selection_data_get_object): changed accordingly. Move + variables to local scopes and simplify. + +2008-09-02 Sven Neumann + + * configure.in: removed ALL_LINGUAS definition. + + * po*/LINGUAS: introduced LINGUAS file instead. This allows to + keep individual lists of languages for each textdomain and it + makes it easier for translators to add a new language. + +2008-09-01 Sven Neumann + + * app/plug-in/gimppluginshm.c (gimp_plug_in_shm_new): use the + constant INVALID_FILE_HANDLE instead of 0xFFFFFFFF. Fixes shared + memory tile transport on 64bit Windows systems. + +2008-09-01 Sven Neumann + + * app/paint-funcs/paint-funcs.[ch]: added clear_region(). + + * app/base/tile-manager-crop.c + * app/core/gimpchannel.c + * app/core/gimpimage-merge.c + * app/core/gimpmaskundo.c + * app/core/gimpprojection-construct.c: use it instead of calling + color_region() with a zero color. + +2008-09-01 Sven Neumann + + * app/core/gimpprojection-construct.c (gimp_projection_initialize): + also need to initialize the projection if the layer mask could + introduce transparency. Fixes bug #550024. + +2008-08-31 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_set_initial_scale): We need to set the scale + before using it. Fixes at least gimp_display_shell_fill() and + Image -> Duplicate giving weird initial scales. + +2008-08-30 Michael Natterer + + * tools/test-clipboard.c (test_clipboard_paste): fix length + calculation (in fact, no calculation is needed at all). + +2008-08-29 Sven Neumann + + * authors.xml: fixed role of Aurore Derriennic. + + * AUTHORS: regenerated. + +2008-08-29 Michael Natterer + + * libgimpwidgets/gimppreviewarea.c (gimp_preview_area_expose): + remove g_return_val_if_fail(), this is not a public function. + +2008-08-29 Michael Natterer + + * app/widgets/gimplayertreeview.c + * libgimpwidgets/gimpcolorscales.c + * libgimpwidgets/gimppropwidgets.c + * libgimpwidgets/gimpscaleentry.c + * libgimpwidgets/gimpwidgets.c: use gtk_adjustment_get_value() + instead of adjustment->value. + +2008-08-29 Lars-Peter Clausen + + * plug-ins/pygimp/gimpui.defs + * plug-ins/pygimp/gimpui.override: + Readded wrapper for the new GimpRuler. + +2008-08-29 Sven Neumann + + * libgimpwidgets/gimpruler.c (gimp_ruler_new): fixed gtk-doc comment. + +2008-08-29 Michael Natterer + + * libgimpwidgets/Makefile.am + * libgimpwidgets/gimpwidgets.h + * libgimpwidgets/gimphruler.[ch] + * libgimpwidgets/gimpvruler.[ch]: remove separate H/VRuler classes. + + * libgimpwidgets/gimpruler.[ch]: add an "orientation" property + instead. Add gimp_ruler_new(). + + * libgimpwidgets/gimpwidgets.def: changed accordingly. + + * app/dialogs/resolution-calibrate-dialog.c + * app/display/gimpdisplayshell.c + * plug-ins/gfig/gfig-preview.c + * plug-ins/imagemap/imap_preview.c: ditto. + +2008-08-29 Lars-Peter Clausen + + * plug-ins/pygimp/gimpui.defs + * plug-ins/pygimp/gimpui.override: + Removed wrappers for GimpRuler, GimpHRuler, GimpVRuler, as those + are going to be removed from libgimpwidgets. + +2008-08-29 Michael Natterer + + * app/widgets/gimphelp.c: #include "gimpwidgets-utils.h", not + "gimpwidgets-utils.c" (eek). + +2008-08-28 Lars-Peter Clausen + + * plug-ins/pygimp/gimpui.defs + * plug-ins/pygimp/gimpui.override: + Wrapped GimpRuler, GimpHRuler and GimpVRuler widgets. + +2008-08-28 Lars-Peter Clausen + + * plug-ins/pygimp/gimpui.defs + * plug-ins/pygimp/gimpui.override: + Merged gimpui.{defs,override} from pygimp GSoC project. + Updates gimpui module to have bindings for most widgets functions. + +2008-08-28 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_to): Canonically calculate scale to use + for zoom-focus calculations so that it also works when not in Dot + by dot-mode. + +2008-08-28 Martin Nordholts + + * app/core/gimpimage.[ch]: Make the size-changed-detailed signal + also contain previous image size. + + * app/display/gimpdisplayshell-handlers.c + (gimp_display_shell_size_changed_detailed_handler): Take the + previous image size into account and center the image if it starts + to fit (axis indepentently) in the viewport due to the resize. + + * app/core/gimpundo.h + * app/core/gimpimage-undo.c + * app/core/gimpimageundo.[ch] + * app/core/gimpimage-undo-push.[ch]: Manage the + previous-size-information. + + * app/core/gimpimage-crop.c + * app/core/gimpimage-scale.c + * app/core/gimpimage-rotate.c + * app/core/gimpimage-resize.c: Propagate previous size to the + size-changed-detailed signal emission and the undo-system. + +2008-08-28 Sven Neumann + + * app/config/gimpguiconfig.[ch]: allow to disable the Wilber image + shown at the top of the toolbox. + + * app/widgets/gimptoolbox.c: honor the new gimprc option. + + * app/config/gimprc-blurbs.h: document the old and new toolbox + preferences. + +2008-08-28 Michael Natterer + + * app/tools/gimprectangletool.c: some tiny formatting fixes. + +2008-08-28 Sven Neumann + + * configure.in: use echo, not $echo in the Win32-specific code + that sets up the Python build variables. + +2008-08-28 Sven Neumann + + * app/paint-funcs/scale-region.c (scale_determine_progress): + (scale_region_tile): fixed shift direction. + +2008-08-27 Michael Natterer + + * app/widgets/gimpuimanager.c (gimp_ui_manager_item_key_press): + try the find_widget_under_pointer() hack only if the menu item's + parent is really a GtkMenu (not a GtkMenuBar). Fixes crash spotted + by rubikcube. + +2008-08-27 Lars-Peter Clausen + + * plug-ins/pygimp/pygimp-tile.c + (pr_subscript): Removed some unnecessary g_new/g_free and improved + range checking. + (pr_ass_sub): Improved range checking. + (pygimp_pixel_rgn_new): Clamp pixel region size to the drawable's size. + +2008-08-27 Sven Neumann + + * app/core/gimp-transform-region.c: sprinkled more const qualifiers. + + * app/paint-funcs/scale-region.c: call the progress callback less + often. + +2008-08-27 Sven Neumann + + * app/tools/gimptransformtool.c: moved hiding the dialog from + gimp_transform_tool_real_transform() to gimp_transform_tool_doit(). + Delay undrawing the preview in doit() until the transformation is + done. This removes the annoying flicker at the end. + +2008-08-27 Sven Neumann + + * app/tools/gimptransformtool.c (gimp_transform_tool_real_transform): + hide the tool dialog before starting to perform the transformation. + +2008-08-27 Sven Neumann + + * app/core/gimp-transform-region.c: also use PixelSurround for the + linear interpolation. Sprinkled some const qualifiers. + +2008-08-26 Lars-Peter Clausen + + * plug-ins/pygimp/gimpmodule.c: + Don't set tp_new for PyGimpTile_Type and PyGimpPixelRgn_Type as both + don't have init functions. + +2008-08-26 Lars-Peter Clausen + + * plug-ins/pygimp/pygimp-tile.c + (pf_init): Ensure that the python drawables gimp drawable is set. + (pf_dealloc): Don't crash if the pixel fetchers init function failed. + +2008-08-26 Sven Neumann + + * app/base/pixel-surround.c: updated documentation. + +2008-08-26 Sven Neumann + + * app/paint-funcs/scale-region.c: further simplified the code path + that is executed when a brush is scaled up. We don't need to scale + in several steps here. + +2008-08-26 Sven Neumann + + * app/paint-funcs/scale-region.c: removed some unused parameters + from the code that is used for brush scaling. Added sanity checks. + +2008-08-26 Martin Nordholts + + * libgimpwidgets/gimpwidgets.c + + * plug-ins/common/file-xbm.c + * plug-ins/common/file-wmf.c + * plug-ins/common/file-svg.c + * plug-ins/common/file-gih.c + * plug-ins/common/blur-motion.c + * plug-ins/file-jpeg/jpeg-save.c + * plug-ins/lighting/lighting-ui.c + * plug-ins/map-object/map-object-ui.c + + * app/tools/gimpsheartool.c + * app/tools/gimpaligntool.c + * app/tools/gimprotatetool.c + * app/tools/gimplevelstool.c + * app/dialogs/resize-dialog.c + * app/dialogs/offset-dialog.c + * app/widgets/gimppaletteeditor.c + * app/widgets/gimpcolormapeditor.c + * app/dialogs/layer-options-dialog.c + * app/display/gimpdisplayshell-scale-dialog.c: Pass page_size = 0 + to gimp_spin_button_new() to adapt to new and correct value + clamping in GTK+. + +2008-08-26 Sven Neumann + + * app/core/gimpdrawable-colorize.c (gimp_drawable_colorize): + added missing call to colorize_init(). + +2008-08-26 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_scroll_unoverscrollify): New function. + + * app/display/gimpdisplayshell-autoscroll.c + (gimp_display_shell_autoscroll_timeout): Make sure the autoscroll + does not result in overscroll. This more or less finalizes the + implementation of the enhancement request in bug #362915. + +2008-08-26 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll): If no scroll should be applied we can + return early. + +2008-08-26 Martin Nordholts + + * app/display/gimpdisplayshell-autoscroll.c + (gimp_display_shell_autoscroll_timeout): Pass the scroll amount in + variables that we can modify as we please before they actually + reach gimp_display_shell_scroll(). + +2008-08-26 Michael Natterer + + * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): don't + hardcode the attach coords for the fixed containing the dynamics + labels but use the table's real width instead. Fixes broken table + layout in the airbrush options. + +2008-08-26 Sven Neumann + + * app/base/pixel-surround.c: attempt to fix the newly introduced + smear edge mode. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c: use PixelSurround to access the + source pixels in a more efficient way. + +2008-08-25 Sven Neumann + + * app/base/tile-manager.c (read_pixel_data_1): changed to silently + return in case of out-of-bounds access. There's code that relies + on this. + + * app/base/pixel-surround.[ch]: added SMEAR as another edge + strategy for the PixelSurround helper. + + * core/gimp-transform-region.c: changed accordingly. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c: reverted last change; it was bogus. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c: don't scale in several steps if + interpolation is GIMP_INTERPOLATION_NONE. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c (gaussian_decimate) + (gaussian_lanczos2): implemented uses integer arithmetic. + (pixel_average): reduced rounding errors. + +2008-08-25 Sven Neumann + + * app/core/gimpgradient.c (gimp_gradient_get_new_preview): fixed + rounding errors in color conversion. + +2008-08-25 Sven Neumann + + * app/base/tile-private.h: provide a macro version of + tile_data_pointer(). + + * app/base/tile.c (tile_data_pointer): turned into a wrapper + around the TILE_DATA_POINTER() macro. + + * app/base/tile-manager.c (read_pixel_data) (read_pixel_data_1) + (write_pixel_data) (write_pixel_data_1): access tile struct + members directly and use the new macro to access the tile data. + +2008-08-25 Sven Neumann + + * app/display/gimpdisplayshell-render.c (render_image_tile_fault): + formatting. + +2008-08-25 Sven Neumann + + * app/base/tile-manager.c (read_pixel_data_1): removed redundant + check that is already performed by tile_manager_get_tile_num(). + Warn if an out-of-bounds read is requested, instead of silently + doing nothing. + +2008-08-25 Sven Neumann + + * app/dialogs/image-scale-dialog.c: hide the Scale dialog before + starting to perform the scale operation. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c: fixed progress feedback. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c: improved progress bar + calculations. Still buggy though. + +2008-08-25 Sven Neumann + + * app/paint-funcs/scale-region.c: some more cleanups. + +2008-08-24 Lars-Peter Clausen + + * plug-ins/pygimp/plug-ins/python-fu-eval.py: Moved execution into + global namespace. Fixes import statements inside of evaled code. + +2008-08-24 Lars-Peter Clausen + + * plug-ins/pygimp/pygimp-pdb.c (pdb_getattro): Fix wrong strcmp + evaluation. + +2008-08-24 Lars-Peter Clausen + + * plug-ins/pygimp/pygimp-drawable.c (drw_transform_rotate, + drw_transform_flip_simple): Fix method format string, so the + method is actual callable in a script. + +2008-08-24 Martin Nordholts + + * app/tools/gimplevelstool.c (gimp_levels_tool_dialog): Set + page_size for the Ouput/Input Levels lower/upper adjustments to 0 + to adapt to new and more correct value clamping in GTK+. + +2008-08-24 Martin Nordholts + + * authors.xml: Updated for 2.6 release. + + * AUTHORS: Regenerated. + +2008-08-24 Martin Nordholts + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_popup): Prevent the popup from being + positioned far away from the click position. This is further work + on bug #362915. + +2008-08-24 Martin Nordholts + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_popup): Further clarify and simplify. + +2008-08-24 Martin Nordholts + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_popup): Correct the positioning + calculation (while still retaining current overall behaviour). + +2008-08-24 Martin Nordholts + + * app/widgets/gimpnavigationview.c + (gimp_navigation_view_draw_marker): Use a define for border width. + +2008-08-24 Martin Nordholts + + * app/widgets/gimpnavigationview.c + (gimp_navigation_view_set_marker): Don't redraw the view, only + invalidate it. This causes the redraw to occur in an idle-handler + intead of each time this function is called, which reduces flicker + when opening new images. Stil some flicker left though... + +2008-08-24 Sven Neumann + + * app/paint-funcs/scale-region.c (scale) (scale_pr): use a + constant to decide if we should decimate or interpolate. + +2008-08-24 Sven Neumann + + * app/paint-funcs/scale-region.c (scale): instead of iterating + over tiles manually and using write_pixel_data_1() to write the + data, use pixel_region_process() to iterate over the destination. + +2008-08-24 Sven Neumann + + * app/paint-funcs/scale-region.c: added more const qualifiers. + +2008-08-24 Sven Neumann + + * app/paint-funcs/scale-region.c (scale): sprinkled with const + qualifiers. Moved calculations out of the loops. + +2008-08-24 Sven Neumann + + * app/paint-funcs/scale-region.c (scale): removed optimization of + the case where the source and dest regions are the same size. This + should not happen any longer. + +2008-08-24 Sven Neumann + + * app/paint-funcs/scale-region.c (determine_scale): avoid + unnecessary scaling when scaling factor is 2^n. + (pixel_average): replaced with optimized pixel averager from + tile-pyramid.c (from the gimp-2-4 branch with some minor + corrections). + +2008-08-23 Sven Neumann + + * app/paint-funcs/scale-region.c (scale): replaced code that + copies pixels from one tile-manager to another by a call to + copy_region(). + +2008-08-23 Sven Neumann + + * plug-ins/print/print.c: return with a proper PDB status type + depending on the result of gtk_print_operation_run(). When run + non-interactively, pass the error message with the return values. + +2008-08-23 Sven Neumann + + * plug-ins/script-fu/scripts/coolmetal-logo.scm: applied patch + from LightningIsMyName. Changes the script to not break if called + on a floating selection (bug #327681). + +2008-08-23 Lars-Peter Clausen + + * app/core/gimpgradient.c (gimp_gradient_segment_range_delete): + Don't dereference final_start_seg and final_end_seg if NULL. + +2008-08-23 Lars-Peter Clausen + + Fix indentation in previous patch. + + * tools/pdbgen/pdb/gradient.pdb + * app/pdb/gradient-cmds.c + +2008-08-23 Lars-Peter Clausen + + * tools/pdbgen/pdb/gradient.pdb + (gimp_gradient_segment_range_blend_(colors|opacity)): Don't crash + if the index of the last segment is out of range. + + * app/pdb/gradient-cmds.c: regenerated. + +2008-08-23 Sven Neumann + + * plug-ins/twain/Makefile.am: dropped use of AM_LDFLAGS completely + and use target-specific LDFLAGS instead. + +2008-08-23 Sven Neumann + + * app/core/gimpimagemap.c (gimp_image_map_init): only create and + use a timer if GIMP_UNSTABLE is defined. + +2008-08-22 Sven Neumann + + * app/widgets/gimpnavigationview.c + * libgimpwidgets/gimpscrolledpreview.c: hardcode the colors to + black and white. Using theme colors doesn't make sense here. + +2008-08-22 Sven Neumann + + * libgimpwidgets/gimpscrolledpreview.[ch]: draw the navigation + popup using Cairo, just as we do it in the core now. + +2008-08-22 Sven Neumann + + * app/widgets/gimpnavigationview.c: indicate the viewport by + shading the outside region using Cairo. + +2008-08-22 Martin Nordholts + + * app/display/gimpnavigationeditor.c: Align static function + prototypes. + +2008-08-22 Martin Nordholts + + * app/widgets/gimpnavigationview.c + (gimp_navigation_view_grab_pointer): Don't confine the cursor to + the navigation view window because that limitation only feels in + the way with overscroll. + +2008-08-22 Michael Natterer + + * app/display/gimpcanvas.h: #define GIMP_CANVAS_EVENT_MASK. + + * app/display/gimpcanvas.c (gimp_canvas_realize): use it here. + +2008-08-22 Michael Natterer + + * app/display/gimpcanvas.[ch]: add gimp_canvas_scroll() which + scrolls the canvas and makes the result visible immediately. + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll): use the new function. + +2008-08-22 Sven Neumann + + * app/widgets/gimptoolbox.c: removed the "Use GEGL" check-box + from the toolbox. + + * app/config/gimpcoreconfig.c: changed the default for "use-gegl" + to FALSE (in preparation of the 2.6 release). + + * app/actions/debug-commands.[ch] + * app/actions/debug-actions.c + * menus/image-menu.xml.in: added a "Use GEGL" check-box to the + Debug menu. Temporary solution until a final decision is made. + +2008-08-22 Sven Neumann + + * app/widgets/gimpaction.c + * app/widgets/gimpdockable.c + * app/widgets/gimpradioaction.c + * app/widgets/gimpstringaction.c + * app/widgets/gimptoggleaction.c: added basic support for icon + names for actions and dockables. Uses the stock-id as icon name + if the icon theme provides an icon under this name. + + * app/dialogs/dialogs.c + * app/actions/documents-actions.c + * app/actions/dialogs-actions.c: use the "document-open-recent" + icon for the document history. + +2008-08-22 Martin Nordholts + + * app/widgets/gimpnavigationview.c: Adapted to play nicely with + the overscroll feature. Basically remove limitations of the + marker, but also draw the marker frame with an inner and outer + border so it is possible to see on what side the viewport is when + zoomed out and overscrolled to the max. This is further work on + bug #362915. + +2008-08-21 Michael Natterer + + * app/display/gimpcanvas.[ch]: turn into a GtkContainer subclass + mainly to reduce the diff to a local hack I'm at. Also swallow + some code that used to be called on the canvas widget externally. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): remove + the swallowed code. + + * app/display/gimpdisplayshell-callbacks.h: remove canvas event + mask define. + +2008-08-21 Sven Neumann + + * configure.in: bumped version to 2.5.4. + +2008-08-21 Sven Neumann + + * Made 2.5.3 development release. + +2008-08-21 Sven Neumann + + * app/plug-in/gimppluginprocedure.[ch] + * app/plug-in/gimptemporaryprocedure.c: moved error handling for + asynchronous procedure calls to a central place. Use the plug-in + label instead of the procedure name for the error message. + +2008-08-21 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c + * plug-ins/script-fu/script-fu-interface.[ch]: changed to actually + return a meaningful return status when a script-fu procedure is run. + +2008-08-21 Sven Neumann + + * app/plug-in/gimppluginprocedure.c + * app/plug-in/gimptemporaryprocedure.c: don't just free the return + values when running procedures asynchronously. Instead examine + them and display the error message if there's one. + + * app/plug-in/gimppluginmanager-call.c + (gimp_plug_in_manager_call_run_temp): return NULL if + procedure->plug_in is not set. + + * app/plug-in/gimpplugin-message.c: comment. + +2008-08-21 Michael Natterer + + * configure.in: removed indentation from blocks after + AC_ARG_WITH(), it's confusing otherwise because they appeared to + be part of the macro. Added some newlines. Minor cleanups. + +2008-08-21 Sven Neumann + + * plug-ins/script-fu/Makefile.am + * plug-ins/script-fu/script-fu-eval.[ch]: new files split out of + script-fu-console.c[ch]. + + * plug-ins/script-fu/script-fu-text-console.h: fixed comment. + + * plug-ins/script-fu/script-fu-console.[ch]: removed script-fu-eval + procedure here. + + * plug-ins/script-fu/script-fu.c: changed accordingly. + +2008-08-21 Sven Neumann + + * plug-ins/script-fu/script-fu.c (script_fu_run): formatting. + +2008-08-21 Sven Neumann + + * po-*/POTFILES.skip: added desktop/gimp.desktop.in. Seems to work + around what appears to be a bug in intltool-update (version 0.40.1). + +2008-08-21 Sven Neumann + + * Makefile.am (EXTRA_DIST): removed 'mkinstalldirs' which is not + any longer required due to the changes in the po directories. + +2008-08-21 Michael Natterer + + * app/tools/gimpforegroundselecttool.c + (gimp_foreground_select_tool_init): set precision back to + PIXEL_CENTER because it's set to SUBPIXEL by the parent class. + +2008-08-20 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c: Use a constant for the + minimum step amount for scrollbars. + +2008-08-20 Michael Natterer + + * app/widgets/gimpuimanager.c: reindent prototypes. + + Steal find_widget_under_pointer() from gtktooltip.c + + (gimp_ui_manager_item_key_press): use the function to invoke help + for the widget under the pointer if there is no selected menu + item. Makes F1 work on insensitive menu items. + +2008-08-20 Sven Neumann + + * plug-ins/print/print.c (page_setup): use the new API to set the + PDB error handler in order to suppress a warning if the temporary + procedure does not exist (see bug #513291). + +2008-08-20 Michael Natterer + + * app/text/gimptextlayout-render.c (gimp_text_layout_render): add + PANGO_ALIGN_LEFT to the switch to fix warning about unhandled value. + +2008-08-20 Michael Natterer + + Bug 496772 – Position shown in the statusbar needs more + precision (for some tools) + + * app/display/display-enums.[ch]: add enum GimpCursorPrecision + which can be one of { PIXEL_CENTER, PIXEL_BORDER, SUBPIXEL }. + + * app/display/gimpdisplayshell-cursor.[ch]: add "precision" + parameter to gimp_display_shell_update_cursor() and pass it + on to the statusbar. + + * app/display/gimpstatusbar.[ch]: add "precision" parameters to + the cursor coordinates APIs, offset the passed coords accordingly + and display them with one decimal point if SUBPIXEL is requested + and the display's unit is PIXEL. Keep a second floating-point + format string around at any time. + + * app/tools/gimptoolcontrol.[ch]: add a "precision" member and API + so tools can configure the precision they need. Defalt to + PIXEL_CENTER since that's right for almost all tools. + + * app/display/gimpdisplayshell-callbacks.c: pass the tool's + precision to gimp_display_shell_update_cursor(). + + * app/tools/gimptool.[ch]: add "precision" parameter to + gimp_tool_push_status_coords() and pass it on to the statusbar. + + * app/tools/gimpaligntool.c + * app/tools/gimpblendtool.c + * app/tools/gimpcolortool.c + * app/tools/gimpcroptool.c + * app/tools/gimpeditselectiontool.c + * app/tools/gimpfliptool.c + * app/tools/gimpfreeselecttool.c + * app/tools/gimpmovetool.c + * app/tools/gimppainttool.c + * app/tools/gimpperspectiveclonetool.c + * app/tools/gimprectangleselecttool.c + * app/tools/gimprectangletool.c + * app/tools/gimptransformtool.c + * app/tools/gimpvectortool.c: set precision in init() where + needed. Adjust the precision in the fly when needed, e.g. while + moving guides or when toggling hard-edge on paint tools. Also pass + an appropriate precision to gimp_tool_push_status_coords(), which + is not always the tool's precision as used for cursor display. + +2008-08-20 Sven Neumann + + * plug-ins/script-fu/script-fu-console.c (script_fu_eval_run): + pass error message with the return values instead of calling + g_message(). + +2008-08-20 Michael Natterer + + * plug-ins/common/align-layers.c + * plug-ins/common/blur-gauss.c + * plug-ins/common/cartoon.c + * plug-ins/common/edge-dog.c + * plug-ins/common/edge-neon.c + * plug-ins/common/edge-sobel.c + * plug-ins/common/photocopy.c + * plug-ins/common/pixelize.c + * plug-ins/common/softglow.c + * plug-ins/gradient-flare/gradient-flare.c: pass error messages + with the return values instead of calling g_message(). + +2008-08-20 Michael Natterer + + * plug-ins/common/file-gif-load.c: tons of cleanup: proper + prototypes, s/unsigned foo/gufoo/, indentation, ... + +2008-08-20 Sven Neumann + + * plug-ins/common/file-cel.c + * plug-ins/common/file-html-table.c + * plug-ins/common/file-ps.c + * plug-ins/common/file-sunras.c + * plug-ins/common/file-tiff-load.c: pass error messages with the + return values instead of calling g_message(). + +2008-08-20 Sven Neumann + + * plug-ins/file-fits/fits.c + * plug-ins/file-fli/fli-gimp.c: pass error messages with the + return values instead of calling g_message(). + +2008-08-20 Sven Neumann + + * plug-ins/file-xjt/xjt.c: pass error messages with the return + values instead of calling g_message(). + +2008-08-20 Sven Neumann + + * plug-ins/file-sgi/sgi.c + * plug-ins/file-sgi/sgi-lib.[ch]: pass error messages with the + return values instead of calling g_message(). + +2008-08-20 Michael Natterer + + * app/paint/gimpperspectiveclone.[ch]: make + gimp_perspective_clone_get_matrix() static, add + gimp_perspective_clone_set_transform(). + + * app/tools/gimpperspectiveclonetool.c + (gimp_perspective_clone_tool_mode_notify): use above set_transform() + API instead of poking into the object. + + (gimp_perspective_clone_tool_constructor): call + gimp_perspective_clone_tool_mode_notify() to set up things instead + of duplicating code. + +2008-08-20 Michael Natterer + + * app/tools/gimpperspectiveclonetool.[ch]: formatting. + +2008-08-20 Sven Neumann + + * plug-ins/file-psd/psd.c + * plug-ins/file-psd/psd-load.[ch] + * plug-ins/file-psd/psd-save.c + * plug-ins/file-psd/psd-thumb-load.[ch]: pass error messages with + the return values instead of calling g_message(). + +2008-08-20 Sven Neumann + + * plug-ins/file-jpeg/jpeg.[ch] + * plug-ins/file-jpeg/jpeg-load.[ch] + * plug-ins/file-jpeg/jpeg-save.[ch]: pass error messages with the + return values instead of calling g_message(). + +2008-08-20 Sven Neumann + + * app/file/file-save.c (file_save): flush the image when done to + cause the actions to be updated (in particular File->Revert). + +2008-08-20 Sven Neumann + + * plug-ins/file-ico/ico-save.c: create GHashTable with destroy + notifiers. + +2008-08-20 Sven Neumann + + * plug-ins/file-faxg3/faxg3.c + * plug-ins/file-ico/ico.c + * plug-ins/file-ico/ico-load.[ch] + * plug-ins/file-ico/ico-save.[ch]: pass error messages with the + return values instead of calling g_message(). + +2008-08-19 Sven Neumann + + * app/core/gimpimage-guides.c (gimp_image_find_guide): find guides + outside the image as well. This complements the change that we + also draw guides outside the image now. + +2008-08-19 Michael Natterer + + * app/tools/gimpgegltool.c (gimp_gegl_tool_dialog): formatting. + +2008-08-19 Michael Natterer + + * app/plug-in/gimpplugin.[ch] (struct GimpPlugIn) + * app/plug-in/gimppluginprocframe.[ch] (struct GimpPlugInProcFrame): + move the error_handler from the plug-in to the proc-frame. + + * app/plug-in/gimpplugin.c + * app/plug-in/gimpplugin-message.c: changed accordingly. + +2008-08-19 Sven Neumann + + * libgimpbase/gimpbase.def + * libgimp/gimp.def: added new symbols. + +2008-08-19 Sven Neumann + + * plug-ins/file-bmp/bmp.[ch] + * plug-ins/file-bmp/bmp-read.c + * plug-ins/file-bmp/bmp-write.c: for most errors, pass the error + message with the return values instead of calling g_message(). + +2008-08-19 Sven Neumann + + Complements the fix for bug #344818: + + * libgimpbase/gimpbaseenums.[ch]: added new enum GimpPDBErrorHandler. + + * tools/pdbgen/enums.pl: regenerated. + + * app/plug-in/gimpplugin.[ch]: added error_handler to GimpPlugIn. + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): + only display an error message for a failed procedure call if the + plug-in's error-handler is set to GIMP_PDB_ERROR_HANDLER_INTERNAL. + + * tools/pdbgen/pdb/plug_in.pdb: added PDB getter and setter for + the plug-in's error-handler. + + * app/pdb/plug-in-cmds.c + * app/pdb/internal-procs.c + * libgimp/gimpenums.c.tail + * libgimp/gimpplugin_pdb.[ch]: regenerated. + + * plug-ins/common/file-compressor.c + * plug-ins/file-uri/uri.c: set the error-handler to + GIMP_PDB_ERROR_HANDLER_PLUGIN as these plug-ins are forwarding the + error with their return values. + +2008-08-18 Sven Neumann + + * plug-ins/file-uri/uri.c: pass error messages with the return + values instead of calling g_message(). + + * plug-ins/file-uri/uri-backend-libcurl.c + * plug-ins/file-uri/uri-backend-gnomevfs.c + * plug-ins/file-uri/uri-backend-gvfs.c + * plug-ins/file-uri/uri-backend-wget.c: set errors in the + G_FILE_ERROR domain and other minor cleanups. + +2008-08-18 Sven Neumann + + * plug-ins/common/file-compressor.c: open the temporary file + before forking. This allows us to return an error message if the + file can't be opened. Also changed the code to not use g_message() + from the child process. + +2008-08-18 Sven Neumann + + * plug-ins/common/file-compressor.c: pass some error message with + the return values instead of calling g_message(). + +2008-08-18 Sven Neumann + + * plug-ins/common/file-gbr.c + * plug-ins/common/file-gih.c + * plug-ins/common/file-pat.c + * plug-ins/common/file-pix.c + * plug-ins/common/file-sunras.c: for the most common errors, pass + the error message with the return values instead of calling + g_message(). + +2008-08-18 Michael Natterer + + * plug-ins/common/compressor.c: renamed... + * plug-ins/common/file-compressor.c: ...to this. + + * plug-ins/common/plugin-defs.pl: changed accordingly. + + * plug-ins/common/Makefile.am: regenerated. + +2008-08-18 Sven Neumann + + * plug-ins/common/file-xbm.c + * plug-ins/common/file-xpm.c + * plug-ins/common/file-xwd.c: for the most common errors, pass the + error message with the return values instead of calling g_message(). + +2008-08-18 Sven Neumann + + * plug-ins/common/file-wmf.c: pass error message with the return + values instead of calling g_message(). + +2008-08-18 Sven Neumann + + * plug-ins/common/file-raw.c + * plug-ins/common/file-tga.c + * plug-ins/common/file-tiff-load.c + * plug-ins/common/file-tiff-save.c: pass error messages with the + return values instead of calling g_message(). + +2008-08-18 Sven Neumann + + * plug-ins/common/file-pnm.c + * plug-ins/common/file-ps.c + * plug-ins/common/file-psp.c: for the most common errors, pass the + error message with the return values instead of calling g_message(). + +2008-08-18 Sven Neumann + + * plug-ins/common/file-mng.c + * plug-ins/common/file-pcx.c: for the most common errors, pass the + error message with the return values instead of calling g_message(). + + * plug-ins/common/file-gif-save.c + * plug-ins/common/file-pdf.c + * plug-ins/common/file-png.c: minor cleanup. + +2008-08-17 Sven Neumann + + * plug-ins/common/file-pdf.c: in case of an error, pass the error + message with the return values. + +2008-08-17 Sven Neumann + + * plug-ins/common/file-gif-load.c + * plug-ins/common/file-gif-save.c: for the most common errors, + pass the error message with the return values instead of calling + g_message(). + + * plug-ins/common/file-png.c: unmarked a string for translation. + This error condition can't possibly happen. + + * plug-ins/common/file-svg.c: also return an error message when + the thumbnail can't be loaded. + +2008-08-17 Sven Neumann + + * plug-ins/common/file-dicom.c: for the most common errors, pass + the error message with the return values instead of calling + g_message(). + +2008-08-17 Sven Neumann + + * plug-ins/common/file-csource.c: in case of an error, pass the + error message with the return values. + +2008-08-17 Sven Neumann + + * plug-ins/pygimp/plug-ins/whirlpinch.py: don't hardcode the tile + size, use gimp.tile_width() instead. + +2008-08-17 Sven Neumann + + * plug-ins/common/file-desktop-link.c + * plug-ins/common/file-svg.c: changed to pass error messages with + the return values instead of calling g_message(). + +2008-08-17 Sven Neumann + + * plug-ins/script-fu/scripts/frosty-logo.scm + (apply-frosty-logo-effect): unmarked string for translation. + Script-Fu doesn't support i18n outside the register call. + +2008-08-17 Sven Neumann + + * plug-ins/script-fu/scripts/glowing-logo.scm + * plug-ins/script-fu/scripts/neon-logo.scm: changed the "Alpha to + Logo" parts of these scripts so that the user can specify the + effect size directly instead of as some multiple of the size. + +2008-08-17 Sven Neumann + + * plug-ins/script-fu/scripts/starscape-logo.scm: dropped the + "Alpha to Logo" part of the "Starscape logo script. It had a + similar problem as the Starburst script (see bug #486779). + +2008-08-17 Sven Neumann + + * plug-ins/script-fu/scripts/Makefile.am + * plug-ins/script-fu/scripts/starburst-logo.scm: dropped the + "Starburst" logo script. Fixes bug #486779. + +2008-08-17 Sven Neumann + + Next step towards fixing bug #344818: + + * app/pdb/gimpprocedure.c (gimp_procedure_execute): if the error + has not already been set, construct one from the error message + that is optionally passed with the return values. + + * plug-ins/common/file-png.c: changed to pass an error message + with the return values instead of calling g_message() in case of + an error. + +2008-08-17 Sven Neumann + + * app/plug-in/gimppluginprocframe.[ch]: renamed + gimp_plug_in_proc_frame_get_return_vals() to + gimp_plug_in_proc_frame_get_return_values(). + + * app/plug-in/gimppluginmanager-call.c: changed accordingly. + +2008-08-17 Sven Neumann + + * plug-ins/file-psd/psd-util.c (psd_set_error): changed to use + g_set_error(). + +2008-08-17 Sven Neumann + + * app/plug-in/gimpplugin-progress.c + (gimp_plug_in_progress_cancel_callback): introduced a utility + function to reduce code duplication. + + * app/pdb/gimppdb.c (gimp_pdb_execute_procedure_by_name): changed + to use g_error_new_literal(). + +2008-08-17 Martin Nordholts + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_size_allocate): Simplify. + +2008-08-17 Martin Nordholts + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_size_allocate): If the image ends up + below or to the right of the viewport top and left edges, and the + image is not centered on a given axis, align the top left image + edge with the top left viewport edge. This is basically the best + we can do without an API for start and end of a window resize + cycle using the mouse. + +2008-08-17 Martin Nordholts + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_size_allocate): Don't apply the + centering logic on zoom_on_resize. + +2008-08-17 Martin Nordholts + + * app/display/gimpdisplayshell.[ch] + (gimp_display_shell_configure_event): When applying the centering + logic we need to know the size of the new canvas, so instead of + having it here, only make sure that this logic is run on the next + canvas size-allocate. + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_size_allocate): If the size-allocate + comes from a top level window resize, apply centering logic. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_center_image_on_next_size_allocate): + Oops, correct parameter order. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_scroll_center_image_on_next_size_allocate): + Support axis independence. + + * app/display/gimpdisplayshell.c: Adapt. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_center_image_on_next_size_allocate): + Explain that this function needs to be used with care since it is + risky. + + * app/display/gimpdisplayshell.c + (gimp_display_shell_new) + (gimp_display_shell_fill): Clarify that it is safe to use the + risky function. + + (gimp_display_shell_configure_event): Make proper comparisions (<= + not =) and explain that usage of the risky function is safe. + + (gimp_display_shell_shrink_wrap): Always call + gimp_display_shell_scroll_center_image() and let size-requests be + handled by GimpDisplayShell::configure_event(). + + * app/actions/view-commands.c (view_shrink_wrap_cmd_callback): No + need to center anything explicitly any longer. + +2008-08-16 Sven Neumann + + * libgimp/gimp.c (gimp_get_pdb_error): added translator comments. + +2008-08-16 Sven Neumann + + * plug-ins/pygimp/pygimp-pdb.c (pf_call): also use + gimp_get_pdb_error() here. Easier and safer than looking at the + return values to get the error message. + +2008-08-16 Sven Neumann + + Next step towards fixing bug #344818: + + * libgimp/gimp.[ch]: keep the last error status and error message + in libgimp. Added new functon gimp_get_pdb_error() that allows to + retrieve it. + + * libgimp/gimp.def: updated. + + * plug-ins/pygimp/gimpmodule.c (pygimp_vectors_import_from_file) + (pygimp_vectors_import_from_string): use the new function to get + a more useful error message. + +2008-08-16 Sven Neumann + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): + removed the term 'PDB' from the user-visible error messages. + +2008-08-16 Sven Neumann + + * tools/pdbgen/pdb/vectors.pdb: pass error parameter to + gimp_vectors_import functions. + + * app/pdb/vectors-cmds.c: regenerated. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_size_allocate): Remove the centering + logic because we do not always want to run it when the canvas size + changes. For example, the canvas size changes if rulers are + toggled on/off. + + * app/display/gimpdisplayshell.c + (gimp_display_shell_configure_event): Implement + GtkWidget::configure_event() for the display shell and put the + image centering logic here instead, since this class function is + run when the top level window size changes. Run it only if the + size (not position) of the window changes. + +2008-08-16 Michael Natterer + + * app/tools/gimpdrawtool.c: remove #include "core/gimpguide.h" + +2008-08-16 Sven Neumann + + * app/pdb/gimppdb.c (gimp_pdb_execute_procedure_by_name): changed + error message to be similar to the message thrown from + gimp_procedure_validate_args(). + +2008-08-16 Sven Neumann + + If a procedure call fails, pass a string describing the error as + the second return value. First step towards fixing bug #344818. + + * app/pdb/gimpprocedure.[ch] (gimp_procedure_get_return_values): + added a GError parameter. If it is set, pass the error message to + the return values. + + * app/pdb/gimppdberror.h: added some more error codes. + + * app/pdb/gimppdb.c + * app/xcf/xcf.c: pass errors to gimp_procedure_get_return_values(). + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): + show a different error message for execution vs. calling errors. + + * app/plug-in/gimpplugin-progress.c + (gimp_plug_in_progress_cancel_callback): pass the error + GIMP_PDB_CANCELLED to gimp_procedure_get_return_values(). + + * app/plug-in/gimppluginmanager-call.[ch] + (gimp_plug_in_manager_call_run): removed the 'destroy_return_vals' + parameter. + + * app/plug-in/gimppluginprocedure.c: destroy the return values here. + + * app/plug-in/gimppluginprocframe.c: pass an error to + gimp_procedure_get_return_values(). + + * tools/pdbgen/app.pl + * tools/pdbgen/pdb/fileops.pdb: generate code that passes the + error to gimp_procedure_get_return_values(). + + * app/pdb/*-cmds.c: regenerated. + + * plug-ins/pygimp/pygimp-pdb.c: extract the error message from the + return values and pass it to the exception that is thrown. + +2008-08-16 Martin Nordholts + + * app/actions/view-commands.c (view_shrink_wrap_cmd_callback): + Also handle the case when only the offset is wrong. Not pretty but + simple. + +2008-08-16 Sven Neumann + + * app/display/Makefile.am + * app/display/gimpdisplayshell-scale.[ch] + * app/display/gimpdisplayshell-scale-dialog.[ch]: split scale + dialog into a new file. + + * app/actions/view-commands.c: changed accordingly. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_viewport_coord_almost_centered): New + function. + + (gimp_display_shell_scale): Center the image on zoom also if it is + almost centered. This makes the image centered all the way when + zooming out far away. + +2008-08-16 Sven Neumann + + * app/tools/gimpfreeselecttool.c + * app/tools/gimprectangletool.c: formatting. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_to): Reimplement to increase + readability. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_to): Nice-ify. + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scale.[ch] + (gimp_display_shell_scale_get_zoom_focus) + (gimp_display_shell_scale_image_is_within_viewport): Support axis + independence. + + * app/display/gimpdisplayshell.c + (gimp_display_shell_zoom_button_callback): Adapt to new + gimp_display_shell_scale_image_is_within_viewport(). + +2008-08-16 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_image_is_within_viewport): Make proper + tests (>= not >)... + +2008-08-16 Daniel Eddeland + + * app/text/gimptext.c: corrected gimp_text_set_property for + "box-unit" , fixing bug #547126 + +2008-08-15 Sven Neumann + + * plug-ins/common/pixelize.c: formatting. + +2008-08-15 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c (gimp_display_shell_scale): + More elegantly deal with the 'Resize window on zoom'-case. + +2008-08-15 Daniel Eddeland + + * app/text/gimptextlayout-render.c: make text align correctly if + text-box is FIXED. + +2008-08-15 Michael Natterer + + * app/paint/gimppaintcore-stroke.c + (gimp_paint_core_stroke_boundary) + (gimp_paint_core_stroke_vectors): when stroking multiple segments, + set paint_core->cur_coords to the start of each segment. It + normally gets assigned by gimp_paint_core_start(), but that's not + called for subsequent segments. Fixes stroking multiple segments + with the ink tool. The other tools were not affected since they + plot individual brushes rather than a shape from the last to the + current coordinates. Spotted by Alexia. + +2008-08-15 Sven Neumann + + * plug-ins/common/mosaic.c: formatting. + +2008-08-15 Sven Neumann + + * plug-ins/common/mosaic.c (polygon_add_point): converted a + g_print() call to g_warning() and unmarked the string for + translation. + +2008-08-15 Sven Neumann + + * plug-ins/file-ico/ico-save.c: applied patch from Aurimas JuÅĄka + that fixes an endianness issue (bug #529629). + +2008-08-15 Sven Neumann + + * app/display/gimpstatusbar.[ch]: added some logic to avoid that + an info message replaces a warning. Allow info messages to + replace other info messages. + + * app/display/gimpdisplay-handlers.c: changed accordingly. + +2008-08-15 Sven Neumann + + * app/actions/file-commands.c (file_save_cmd_callback): save new + images, even if they are not marked dirty. + +2008-08-14 Sven Neumann + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_run): + use G_STRFUNC in another error message that I missed earlier. + +2008-08-14 Michael Natterer + + * plug-ins/help-browser/dialog.c (search_entry_key_press): search + the next match when return or enter is pressed in the search + entry. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_image_starts_to_fit) + (gimp_display_shell_scale_image_is_within_viewport): Make + proper tests (<= not <). + +2008-08-14 Sven Neumann + + * app/actions/file-commands.c (file_save_cmd_callback): if we + trust the dirty flag and don't save because there are no changes, + display a message in the status-bar telling the user so. + + * app/config/gimpguiconfig.c: changed the default value for + "trust-dirty-flag" to TRUE. + +2008-08-14 Sven Neumann + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_tile_get): + use G_STRFUNC to get the proper function name in the error message. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_image_stops_to_fit): New function. + (gimp_display_shell_scale_get_zoom_focus): If the image stops + to fit the viewport, we can already now use the mouse cursor + as the zoom focus point. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-draw.[ch] + (gimp_display_shell_draw_get_scaled_image_size_for_scale): New + function. + + * app/display/gimpdisplayshell-scale.[ch] + (gimp_display_shell_scale): When zooming out and the image + starts to fit the viewport on a given axis, center on that + axis. + + (gimp_display_shell_scale_image_starts_to_fit): New function. + + (gimp_display_shell_calculate_scale_x_and_y): New function. + + * app/display/gimpdisplayshell.c + (gimp_display_shell_scale_changed): Use + gimp_display_shell_calculate_scale_x_and_y(). + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_center_image): Bail out if neither + vertical nor horizontal centering is requested. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_get_zoom_focus): When the image is + within the viewport, also use the center of the image as the zoom + focus point when zooming in. It feels way too weird not to do it + this way. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_get_zoom_focus): If the image is within + the viewport and we are zooming out, make the focus point be the + center of the image. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_to): Move calculation of the actual new + scale to use from here + (gimp_display_shell_scale): to here, because we need this + information in order to determine what point to focus on while + zooming. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell.c + (gimp_display_shell_set_unit): No need to update scrollbars, only + rulers. + (gimp_display_shell_reconnect): A + gimp_display_shell_scroll_clamp_and_update() makes more sense + here. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-handlers.c + (gimp_display_shell_monitor_res_notify_handler): When the screen + resolution changes and we are not in Dot by dot, we also need to + clamp the display shell offsets. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-handlers.c + (gimp_display_shell_resolution_changed_handler): If we are in + dot-by-dot, we only need to update the rulers, and only if the + unit is not pixels. + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_update_scrollbars_and_rulers): Split this up + in gimp_display_shell_scale_update_scrollbars() and + gimp_display_shell_scale_update_rulers(). + +2008-08-14 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_clamp_and_update): New helper function. + + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-scroll.c + * app/display/gimpdisplayshell-callbacks.c: Use it. + +2008-08-14 Sven Neumann + + * plug-ins/pygimp/plug-ins/python-console.py: renamed the dialog + class to ConsoleDialog to avoid confusion with pyconsole.Console. + +2008-08-13 Sven Neumann + + * plug-ins/pygimp/plug-ins/python-console.py: instead of calling + gimp-displays-flush twice a second, call it after each command + that is committed. This is similar to what the Script-Fu console + does. + + * plug-ins/script-fu/script-fu-console.c: formatting. + +2008-08-13 Sven Neumann + + * plug-ins/pygimp/pygimp-colors.c: fix compiler warnings. + +2008-08-13 Sven Neumann + + * plug-ins/help/gimphelplocale.c (gimp_help_locale_parse): + reverted the last change as g_file_query_info() is now also + implemented on Win32. + +2008-08-13 Sven Neumann + + * plug-ins/help/gimphelplocale.c (gimp_help_locale_parse): + continue even if g_file_query_info() fails. We can't show proper + progress information then, but we can still attempt the download. + +2008-08-13 Sven Neumann + + * app/paint-funcs/paint-funcs.c (replace_inten_pixels): applied + patch from Luidnel Maignan (followup to bug #105568). + +2008-08-13 Sven Neumann + + * app/paint-funcs/scale-region.c: applied patch from Geert + Jordaens to fix scaling artifacts in top row (bug #464466). + +2008-08-13 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_get_zoom_focus): New function + responsible for deciding what viewport coordinate to focus on when + zooming in and out. + +2008-08-13 Martin Nordholts + + * app/display/gimpdisplayshell-scale.[ch] + (gimp_display_shell_scale_to): Make this a private function + because we want to be in full control over what pixel to focus on + when zooming in and out. + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_tool_events): Use + gimp_display_shell_scale() here instead of + gimp_display_shell_scale_to(). We figure out (and can override if + we wish) the coordinates that were previously passed explicitly. + +2008-08-13 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_image_is_within_viewport): New function. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): When + the zoom button is toggled on, implicitly do a View -> Fit Image + in Window if the (scaled) image is within the viewport. + +2008-08-13 Martin Nordholts + + * app/paint/gimppaintcore.c: Include gimpprojection.h for + gimp_projection_get_tiles(). + +2008-08-12 Sven Neumann + + * app/paint-funcs/paint-funcs.c (replace_inten_pixels): applied a + slightly modified version of the patch from Luidnel Maignan as + attached to bug #105568. Fixes incorrect alpha treatment in + plug-in selection masking. + +2008-08-12 Sven Neumann + + * app/widgets/gimphistogrameditor.c + (gimp_histogram_editor_frozen_update): don't do the background + histogram unless the histogram view is actually visible. + +2008-08-12 Sven Neumann + + * app/paint/gimppaintcore.c (gimp_paint_core_start): use + gimp_projection_get_tiles() instead of doing the same through the + GimpPickable interface. + +2008-08-12 Sven Neumann + + * plug-ins/win-snap/Makefile.am: follow the executable name change. + +2008-08-12 Sven Neumann + + * app/core/gimpprojection.c (gimp_projection_paint_area): moved + function calls out of CLAMP macros. + +2008-08-12 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): + removed calls to scale the image and to update the scrollbars and + rulers. Doesn't seem to make sense in an empty display and it + causes a crash. + +2008-08-12 Sven Neumann + + * app/core/gimpitem.c + * app/core/gimpobject.c + * app/dialogs/preferences-dialog.c + * plug-ins/imagemap/imap_main.c + * plug-ins/imagemap/imap_selection.c + * plug-ins/common/filter-pack.c + * plug-ins/common/grid.c + * plug-ins/common/newsprint.c + * plug-ins/fractal-explorer/fractal-explorer-dialogs.c + * plug-ins/fractal-explorer/fractal-explorer.c: use canonical + signal names. + +2008-08-12 Sven Neumann + + * configure.in (sed-po-makefiles): create the stamp-it files in + the po-* directories. + +2008-08-12 Sven Neumann + + * po-*/Makefile.in.in: corrected 'subdir' variables. Spotted by + Tor Lillqvist. + + * modules/controller-midi.c: formatting. + +2008-08-12 Michael Natterer + + * modules/color-selector-wheel.c: override the wheel's + size-request and return a small requisition that allows + it to be resized smaller again. + +2008-08-12 Sven Neumann + + * modules/Makefile.am: fixed library dependencies. + +2008-08-11 Michael Natterer + + * plug-ins/common/cml-explorer.c + * plug-ins/common/depth-merge.c + * plug-ins/common/file-cel.c + * plug-ins/common/oilify.c + * plug-ins/file-bmp/bmp-write.c + * plug-ins/file-bmp/bmp.[ch] + * plug-ins/file-ico/ico-dialog.c + * plug-ins/file-ico/ico-save.c + * plug-ins/file-ico/ico.h + * plug-ins/flame/flame.c + * plug-ins/fractal-explorer/fractal-explorer-dialogs.c + * plug-ins/fractal-explorer/fractal-explorer.[ch] + * plug-ins/gimpressionist/gimp.c + * plug-ins/gimpressionist/gimpressionist.[ch] + * plug-ins/gimpressionist/orientmap.c + * plug-ins/gimpressionist/presets.c + * plug-ins/gimpressionist/sizemap.c + * plug-ins/help-browser/dialog.[ch] + * plug-ins/help-browser/help-browser.c + * plug-ins/ifs-compose/ifs-compose.c + * plug-ins/imagemap/imap_default_dialog.c + * plug-ins/imagemap/imap_main.[ch] + * plug-ins/lighting/lighting-main.[ch] + * plug-ins/lighting/lighting-ui.c + * plug-ins/map-object/map-object-main.[ch] + * plug-ins/map-object/map-object-ui.c + * plug-ins/selection-to-path/selection-to-path.c + * plug-ins/win-snap/winsnap.c: use PLUG_IN_BINARY and PLUG_IN_PROC + defines consistently instead of using literal strings or other + random defines. Define them if not already there or move them to + plugin-global places. + + * plug-ins/win-snap/Makefile.am: rename the binary to "win-snap". + + * plug-ins/win-snap/winsnap.c: changed accordingly. + +2008-08-11 Michael Natterer + + * modules/Makefile.am + * modules/*.c: renamed all modules to color-selector-foo.c, + display-filter-foo.c and controller-foo.c + +2008-08-11 Sven Neumann + + * INSTALL: mention lcms in the list of recommended libraries. + +2008-08-11 Michael Natterer + + * configure.in: check for lcms with PKG_CHECK_MODULES(). Remove + check for vs. because the pc file should + give us the right location now. + + * modules/cdisplay_lcms.c + * modules/cdisplay_proof.c + * modules/colorsel_cmyk_lcms.c + * plug-ins/file-jpeg/jpeg-load.c + * plug-ins/common/lcms.c: #include and nothing else. + + * modules/Makefile.am + * plug-ins/file-jpeg/Makefile.am + * plug-ins/common/plugin-defs.pl: add LCMS_CFLAGS where appropriate. + + * plug-ins/common/Makefile.am: regenerated. + +2008-08-11 Sven Neumann + + Please re-run autogen.sh after this update, and let me know if + there are any problems. + + * po-*/Makefile.in.in: updated to a version that does not require + mkinstalldirs to be present. + + * autogen.sh: removed the call to glib-gettextize and call + intltoolize without the --force command-line option. This change + makes an end to the po/Makefile.in.in being overwritten. + + * HACKING: changed the documentation accordingly. + +2008-08-11 Sven Neumann + + * plug-ins/common/mkgen.pl: removed the LIBFOO hack from this + script. + + * plug-ins/common/plugin-defs.pl: explicitely specify the libs in + the two places where it wasn't done yet. + + * plug-ins/common/Makefile.am: regenerated. + +2008-08-11 Michael Natterer + + * configure.in: change all LIBFOO variables to FOO_LIBS for + consistency, got rid of some variables alltogether since + PNG_CHECK_MODULES() already defined FOO_LIBS. + + * tools/Makefile.am + * modules/Makefile.am + * plug-ins/file-ico/Makefile.am + * plug-ins/file-jpeg/Makefile.am + * plug-ins/file-psd/Makefile.am + * plug-ins/file-xjt/Makefile.am + * plug-ins/common/plugin-defs.pl + * plug-ins/common/mkgen.pl: changed accordingly. + + * plug-ins/common/Makefile.am: regenerated. + +2008-08-11 Michael Natterer + + * plug-ins/bmp/* + * plug-ins/faxg3/* + * plug-ins/fits/* + * plug-ins/fli/* + * plug-ins/ico/* + * plug-ins/jpeg/* + * plug-ins/psd/* + * plug-ins/sgi/* + * plug-ins/uri/* + * plug-ins/xjt/*: removed these... + + * plug-ins/file-bmp/* + * plug-ins/file-faxg3/* + * plug-ins/file-fits/* + * plug-ins/file-fli/* + * plug-ins/file-ico/* + * plug-ins/file-jpeg/* + * plug-ins/file-psd/* + * plug-ins/file-sgi/* + * plug-ins/file-uri/* + * plug-ins/file-xjt/*: and moved them here. Changed executable + names to "file-foo". + + * plug-ins/Makefile.am: changed accordingly. + + * plug-ins/common/*: rename all file plug-ins to file-foo.c. Get + rid of the names "poppler" and "postscript" and call them + "file-pdf" and "file-ps" because the conflict with standard + autofoo targets is gone. + + * plug-ins/common/plugin-defs.pl: changed accordingly. + + * plug-ins/common/mkgen.pl: make sure cflags variables are named + "PLUG_IN_NAME_CFLAGS" and not "PLUG-IN-NAME_CFLAGS" + + * plug-ins/common/Makefile.am: regenerated. + + * configure.in: change folders and variable names to match above + changes. + +2008-08-11 Sven Neumann + + * app/tools/gimptexttool.c: minor coding style cleanups. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_size_allocate): If the image fits + within the display shell canvas on a given axis, center the image + on that axis. This behaviour will certainly require a few tweaks + but let's see how this feels. Feedback welcome. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell.c (gimp_display_shell_fill): Recent + refactorings seems to have made the centering hack obsolete so use + gimp_display_shell_scroll_center_image_on_next_size_allocate() + instead. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell.c (gimp_display_shell_shrink_wrap): + Always center the image after a wrap. I can't think of a case when + that shouldn't happen. + + * app/display/gimpdisplayshell-handlers.c + (gimp_display_shell_size_changed_detailed_handler): Centering + occurs implicitly after wrapping now, no need to do it explicitly. + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_center_image): Handle the no-image + case. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_scroll_set_offset): New low level function for + setting display shell offset. + + (gimp_display_shell_scroll_center_image) + + * app/display/gimpdisplayshell-handlers.c + (gimp_display_shell_size_changed_detailed_handler): Use it instead + of gimp_display_shell_scale_by_values(). + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_handle_zoom_revert): Move the + zoom-revert updating logic into this new helper function so that + we can update zoom-revert from other places. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scale.[ch]: + Rename gimp_display_shell_scale_setup() to + gimp_display_shell_update_scrollbars_and_rulers(), because that's + exactly what that function does. + + * app/display/gimpdisplayshell.c + * app/display/gimpdisplayshell-scroll.c + * app/display/gimpdisplayshell-handlers.c + * app/display/gimpdisplayshell-callbacks.c: Adapt to new name. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): Remove unused local variables sw + and sh. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch]: Renamed + gimp_display_shell_scroll_private() to gimp_display_shell_scroll() + and keep it here. + + * app/display/gimpdisplayshell-private.h: Removed. + + * app/display/Makefile.am + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-scroll.c + * app/display/gimpdisplayshell-handlers.c + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-autoscroll.c: Adapt. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch]: It makes more sense + for gimp_display_shell_get_scaled_image_size() to be moved from + here to + + * app/display/gimpdisplayshell-draw.[ch]: here, and rename it to + gimp_display_shell_draw_get_scaled_image_size(). + + * app/display/gimpdisplayshell.c: Adapt to name change. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-draw.[ch] + * app/display/gimpdisplayshell-render.[ch] + * app/display/gimpdisplayshell-transform.[ch] + * app/display/gimpdisplayshell-appearance.[ch]: Sprinkle as many + const qualifiers we can without any implementation changes. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch]: gimp_display_shell_ -> + gimp_display_shell_scroll_ for functions that are scroll + related. Also did some other minor renamings. + + * app/display/gimpnavigationeditor.c + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-render.c + * app/display/gimpdisplayshell-transform.c + * app/display/gimpdisplayshell-callbacks.c: Adapt to the name + changes. + +2008-08-10 Martin Nordholts + + * app/actions/view-commands.c (view_shrink_wrap_cmd_callback): We + need to center the image after a Shrink Wrap. + +2008-08-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_center_image): There is no need for + special casing depending on image size relative to viewport size. + +2008-08-10 Martin Nordholts + + Put functions to center the image in the display shell where they + belong, and give them proper names. + + * app/display/gimpdisplayshell-scale.[ch]: Get rid of functions + and use the new names. + + * app/display/gimpdisplayshell-scroll.[ch]: Put the functions here + and call them gimp_display_shell_scroll_center_image() and + gimp_display_shell_scroll_center_image_on_next_size_allocate(). + + * app/display/gimpdisplayshell.c: + * app/display/gimpdisplayshell-handlers.c: Use the new names. + +2008-08-08 Michael Natterer + + Bug #545990: GIMP color wheel is not antialiased + + * modules/colorsel_triangle.c: removed. + + * modules/colorsel_wheel.c: new module using the GtkHSV widget + which was originally developed from above triangle selector. + + * modules/Makefile.am: changed accordingly. + +2008-08-08 Sven Neumann + + * app/base/tile-manager.c: implement + tile_manager_get_tile_coordinates() by calling + tile_manager_get_tile_col_row() instead of the other way around. + Saves two multiplications and divisions for each call of + tile_manager_get_tile_col_row(). + +2008-08-08 Sven Neumann + + * app/base/tile-manager.c: introduced utility function + tile_manager_allocate_tiles() to avoid code duplication. + +2008-08-08 Sven Neumann + + * app/base/tile-pyramid.c: improved a comment. + +2008-08-08 Sven Neumann + + * app/core/gimplayer.c (gimp_layer_new_from_tiles) + (gimp_layer_new_from_pixbuf) (gimp_layer_new_from_region): allow + to pass NULL for the 'name' parameter. This will be handled just + like in gimp_layer_new(). + +2008-08-07 Sven Neumann + + * plug-ins/script-fu/scripts/frosty-logo.scm: applied slightly + modified version of a patch provided by LightningIsMyName. + Catches some cases where the script would fail (bug #472316). + +2008-08-07 Sven Neumann + + * app/actions/layers-actions.c (layers_actions): added mnemonic to + the new action. + +2008-08-07 Sven Neumann + + * app/paint-funcs/scale-region.c: sprinkled with const qualifiers. + Fixed some portability problems. + +2008-08-07 Sven Neumann + + * app/base/tile.c (tile_attach): renamed a variable. + +2008-08-07 Sven Neumann + + * plug-ins/print/print.c (print_image): get rid of the + gimp_export_image() hack and use the new procedure + gimp-layer-new-from-visible instead. Finally we can print what the + user sees (including channels). + +2008-08-07 Sven Neumann + + * app/core/gimpbuffer.[ch]: added gimp_buffer_get_tiles(). + + * app/actions/edit-commands.c + * app/core/gimpbrushclipboard.c + * app/core/gimppatternclipboard.c: use the new accessor function. + +2008-08-07 Sven Neumann + + * app/core/gimplayer.c + * app/actions/edit-commands.c + * app/actions/layers-commands.c + * tools/pdbgen/pdb/layer.pdb: corrected the GimpImageType passed + to gimp_layer_new_from_tiles(). + + * app/pdb/layer-cmds.c: regenerated. + +2008-08-07 Sven Neumann + + * app/actions/edit-commands.[ch] + * app/actions/edit-actions.c: added new action + "edit-paste-as-new-layer". + + * app/widgets/gimphelp-ids.h: added new help-id. + + * menus/image-menu.xml.in: added the new action. + +2008-08-07 Tor Lillqvist + + * app/config/gimpbaseconfig.c (gimp_base_config_class_init): Use + G_MAXSIZE instead of G_MAXULONG to limit the max tile cache size, + as long is still 32 bits on Win64 but size_t is 64 bits. + +2008-08-07 Sven Neumann + + * tools/pdbgen/pdb/layer.pdb: added new procedure + 'gimp-layer-new-from-visible'. + + * app/pdb/layer-cmds.c + * app/pdb/internal-procs.c + * libgimp/gimplayer_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + +2008-08-07 Sven Neumann + + * app/actions/layers-actions.c + * app/actions/layers-commands.[ch]: added new action + "layers-new-from-visible". + + * app/widgets/gimphelp-ids.h: added new help-id. + + * menus/layers-menu.xml + * menus/image-menu.xml.in: added the new action. + + * app/actions/edit-actions.c: improved the blurb for + "edit-copy-visible". + +2008-08-07 Tor Lillqvist + + * app/main.c: Code built by the still unstable mingw-w64 toolchain + gets bogus argc and argv when built as subsystem:windows, so use + __argc and __argv instead, which seem to be OK. + + * libgimp/gimp.h: Similar change here. + +2008-08-07 Sven Neumann + + * app/base/tile-manager.c (tile_manager_invalidate_tile): fixed + broken copy-on-write code. The old code did not insert the new + tile in the tile-manager's tile pointer array. + + (tile_manager_map): changed in a similar way as + tile_manager_invalidate_tile(). This code was not broken, but it + is easier to read now. + + * app/base/tile-private.h: moved a comment. + + * app/core/gimpselection.c (gimp_selection_extract): removed + workaround for above bug. + +2008-08-07 Sven Neumann + + * app/core/gimpselection.c (gimp_selection_extract): aded a + comment explaining why copy_region_nocow() is being used here. + +2008-08-07 Sven Neumann + + * app/core/gimplayer.c (gimp_layer_new_from_region): added some + empty lines for readability. + +2008-08-07 Sven Neumann + + * app/core/gimpimage.[ch]: added gimp_image_get_projection(). + + * app/display/gimpdisplay-handlers.c + * app/display/gimpdisplayshell-render.c + * app/display/gimpdisplayshell-scroll.c + * app/paint/gimppaintcore.c + * app/paint/gimpsourcecore.c + * app/tools/gimpbycolorselecttool.c + * app/tools/gimpeditselectiontool.c + * app/tools/gimpimagemaptool.c + * app/tools/gimpiscissorstool.c + * app/tools/gimppainttool.c + * app/widgets/gimpsamplepointeditor.c + * tools/pdbgen/pdb/image.pdb: use the new accessor function. + + * app/pdb/image-cmds.c: regenerated. + +2008-08-07 Sven Neumann + + * app/tools/gimpcurvestool.h: fixed comment. + +2008-08-07 Tor Lillqvist + + * configure.in: Define WIN32_LARGE_ADDRESS_AWARE as + -Wl,--large-address-aware on 32-bit Windows, empty + otherwise. AC_SUBST() it. + + * app/Makefile.am (win32_ldflags): Use WIN32_LARGE_ADDRESS_AWARE + instead of hardcoding the switch, as it isn't valid, and would be + pointless, when building a 64-bit GIMP. + +2008-08-06 Sven Neumann + + * app/core/gimpdrawable-shadow.c: removed unused include. + +2008-08-06 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_center_image): The operation of centering the + image in the display shell has by itself nothing to do with + resizing the display shell window. + +2008-08-06 Sven Neumann + + * libgimp/gimppixelrgn.c (gimp_pixel_rgn_configure): fixed gtk-doc + comment syntax. + +2008-08-06 Sven Neumann + + * app/gui/gimpdbusservice.c: minor cleanups. + +2008-08-05 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c (gimp_display_shell_scale): + Only center on the mouse pointer when zooming if it is within the + canvas. + +2008-08-05 Michael Natterer + + * app/display/gimpdisplayshell-scroll.[ch] + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-transform.c: get rid of the "image" + part in all instances of "scaled_image_viewport_offset", we call + it simply "viewport" in all other places and it makes the code + more readable. + +2008-08-05 Sven Neumann + + * app/gui/gimpdbusservice.[ch]: changed refcounting and fixed a + bug that I had introduced with the latest changes. + +2008-08-05 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): Don't setup scrollbar step + increment here. + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_setup_hscrollbar_with_value) + (gimp_display_shell_setup_vscrollbar_with_value): Setup scrollbar + step increment here and make sure that a step always scrolls at + least a display shell pixel. + +2008-08-05 Martin Nordholts + + * app/core/gimpimage.c (gimp_image_real_size_changed_detailed): + Clarify the design with a comment. + +2008-08-05 Sven Neumann + + * app/gui/gimpdbusservice.[ch]: keep a queue of D-Bus requests and + work on them one after another instead of handling them all in + parallel. Complements the fix for bug #546426. + +2008-08-05 Sven Neumann + + * plug-ins/common/value-propagate.c (value_propagate_body): + reduced number of progress updates. + + * app/core/gimpchannel.c (gimp_channel_scale): don't waste CPU + cycles scaling an empty channel. + +2008-08-05 Sven Neumann + + * app/base/tile-manager.h + * app/base/tile-pyramid.h: moved a misplaced comment to the right + place. + +2008-08-05 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c: move update_range + callbacks where they belong and make them static. + +2008-08-05 Sven Neumann + + * app/dialogs/tips-dialog.c (tips_dialog_create): added a + translator comment for the "Learn more" button. + +2008-08-05 Sven Neumann + + * app/display/gimpdisplayshell-draw.c (gimp_display_shell_draw_guide): + draw the guide all across the canvas, not limiting it to the image. + + * app/tools/gimpdrawtool.[ch]: added new function + gimp_draw_tool_draw_guide_line(). + + * app/tools/gimpmovetool.c (gimp_move_tool_draw): use it. + +2008-08-05 Sven Neumann + + * menus/image-menu.xml.in: moved the Windows menu next to the Help + menu. + +2008-08-05 Sven Neumann + + * app/gui/gimpdbusservice.c: open the files from an idle handler. + Opening a file may take a while (in particular if it involves + asking the user for input) and we need to respond to the D-Bus + call before it times out. + +2008-08-04 Sven Neumann + + * app/paint-funcs/scale-region.c: applied patch from Geert + Jordaens as attached to bug #464466. Improves quality of scaling, + in particular down-scaling. + +2008-08-04 Michael Natterer + + * app/core/gimpimage.[ch] (GimpImage::size-changed-detailed): + change double to int in signal parameters. + + Remove gimp_image_emit_size_changed_signals() and call + gimp_viewable_size_changed() in size-changed-detailed's default + handler. + + * app/core/gimpimageundo.[ch] + * app/core/gimpimage-undo-push.[ch]: change double to int in + previous-origin related code. + + * app/core/gimpimage-undo.c + * app/core/gimpimage-scale.c + * app/core/gimpimage-crop.c + * app/core/gimpimage-rotate.c + * app/core/gimpimage-resize.c: call gimp_image_size_changed_detailed() + instead of the removed gimp_image_emit_size_changed_signals() + + * app/display/gimpdisplayshell-scroll.[ch]: remove + gimp_display_shell_handle_size_changed_detailed() because it + handles both scrolling and scaling and doesn't belong here. + + * app/display/gimpdisplayshell-handlers.c: moved its code back to + gimp_display_shell_size_changed_detailed_handler() and follow the + double -> int change above. + +2008-08-04 Michael Natterer + + * app/core/gimpimagemapconfig.c (gimp_image_map_config_compare): + clarify if() condition. + +2008-08-04 Martin Nordholts + + * app/core/gimpimage.c (gimp_image_emit_size_changed_signals): The + parameters should be named previous_origin_[xy]. + +2008-08-04 Sven Neumann + + * plug-ins/common/blur-motion.c (mblur_dialog): added translation + context to blur-type menu (bug #546204). + +2008-08-04 Sven Neumann + + * plug-ins/common/value-propagate.c: applied patch from Liam Quin + as attached to bug #546159. Fixes bad data access for black and + white propagation and removes unneeded calls to sqrt(). + +2008-08-04 Sven Neumann + + Applied a slightly modified patch from RÃŗman Joost as attached to + bug #545963. This add links to the user manual to the tips dialog: + + * data/tips/gimp-tips.dtd + * data/tips/gimp-tips.xml.in: add optional help IDs to the tips. + + * app/dialogs/tips-dialog.c + + * app/dialogs/tips-parser.[ch]: parse the help IDs from the tips + file and show a "Learn more" link in the tips dialog. + +2008-08-03 Martin Nordholts + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): Center + the image after connecting to it. This is required if the image we + connect to is smaller than the initial canvas size. + +2008-08-03 Martin Nordholts + + Further work for completing bug #362915 that makes changes to the + image size (e.g when cropping) be much more nicely handled by + display shell. + + * app/core/gimpimage.[ch]: Add new signal + GimpImage::size-changed-detailed that is emited whenever + GimpViewable::size-changed is. The new signal provides additional + information, namely the previous origin relative to the current + origin. Cliens choose what specific signal to listen to depending + on how much info they need. + + * app/display/gimpdisplayshell-handlers.c: Connect to + GimpImage::size-changed-detailed instead of + GimpViewable::size-changed since the shell wants information about + the previous image origin. + (gimp_display_shell_resolution_changed_handler): Use + gimp_display_shell_scale_resize() instead to avoid display + garbage. + + * app/display/gimpdisplayshell-scale.[ch]: Add new utility + function gimp_display_shell_center_image_on_next_size_allocate(). + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_handle_size_changed_detailed): New function + that replaces logic in gimp_display_shell_handle_size_changed and + that takes previous-origin of the image into account and adjusts + the offset so that the image content that remains doesn't move. If + the window is resized on image resize, just center the image + afterwards. + + * app/core/gimpimage-undo-push.[ch] + (gimp_image_undo_push_image_size): Add previous-origin paremeters. + + * app/core/gimpimageundo.[ch]: Add and manage previous-origin + properties so that the display shell offset can be appropriately + adjusted also when undoing. + + * app/core/gimpundo.h + * app/core/gimpimage-undo.c: Add previous_origin members to the + undo accumulator and emit that information when the size of the + image changes due to the undo. + + * app/core/gimpimage-crop.c (gimp_image_crop) + * app/core/gimpimage-scale.c (gimp_image_scale) + * app/core/gimpimage-rotate.c (gimp_image_rotate) + * app/core/gimpimage-resize.c (gimp_image_resize_with_layers): + Supply information about the previous-origin of the image to the + size-changed signals and the undo system. + +2008-07-31 Sven Neumann + + * app/core/gimpimage-scale.c (gimp_image_scale): formatting. + +2008-07-30 Jakub Steiner + + * data/images/gimp-splash.png: new devel splash from + Aurore Derriennic + +2008-07-30 Sven Neumann + + * app/dialogs/file-open-dialog.c (file_open_dialog_response): + attach the URI of the last opened image to the Gimp object. + + * app/actions/file-commands.c (file_open_dialog_show): use the + last opened URI as a fallback for initializing the dialog. + +2008-07-29 Sven Neumann + + * plug-ins/common/Makefile.am + * plug-ins/common/plugin-defs.pl + * plug-ins/common/psd-save.c: removed psd-save source here ... + + * plug-ins/psd/Makefile.am + * plug-ins/psd/psd-save.c: ... and added it back here. + +2008-07-29 Sven Neumann + + * tools/pdbgen/pdb/vectors.pdb: added the real name of the author + of the new PDB function. + + * app/pdb/vectors-cmds.c: regenerated. + +2008-07-28 Sven Neumann + + * tools/pdbgen/pdb/edit.pdb (edit_stroke_vectors_invoker): check + that the passed vectors item is attached. + + * app/pdb/edit-cmds.c: regenerated. + +2008-07-28 Sven Neumann + + * tools/pdbgen/pdb/vectors.pdb: applied patch from LightningIsMyName + adding the new PDB function gimp-vectors-copy (bug #544212). + + * app/pdb/internal-procs.c + * app/pdb/vectors-cmds.c + * libgimp/gimpvectors_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + +2008-07-27 Sven Neumann + + * app/text/gimptext-compat.c (text_get_extents): applied the same + workaround for a memory leak in PangoFT2 (bug #143542) as was + applied long ago in gimptextlayout.c. + +2008-07-27 Sven Neumann + + * app/text/gimptext-compat.c (text_get_extents) + * app/text/gimptextlayout-render.c (gimp_text_layout_render): + use the readonly variant of pango_layout_iter_get_line(). + +2008-07-27 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_synthesize_motion): Bail out if there is no + pending rectangle to synthesize a motion on. Fixes bug #544181. + +2008-07-27 Sven Neumann + + * plug-ins/psd/Makefile.am: renamed executable to 'psd-load'. + +2008-07-24 Sven Neumann + + * app/widgets/gtkscalebutton.c: added missing prototypes. + +2008-07-24 Sven Neumann + + * plug-ins/help/gimphelplocale.c: formatting. + +2008-07-24 Sven Neumann + + * configure.in: minor cleanup of the checks for the URI plug-in. + + * plug-ins/uri/Makefile.am: changed accordingly. + +2008-07-24 Sven Neumann + + * plug-ins/uri/uri-backend-libcurl.c: use g_fopen(). + + * plug-ins/uri/uri-backend-gvfs.c: formatting. + +2008-07-24 Sven Neumann + + * app/paint/gimppaintcore-stroke.c + (gimp_paint_core_stroke_emulate_dynamics): renamed variables. + +2008-07-23 Sven Neumann + + * app/paint/gimppaintcore-stroke.[ch]: also implement brush + dynamics emulation for stroking selections. + + * app/core/gimpchannel.c: pass the 'emulate-dynamics' parameter to + gimp_paint_core_stroke_boundary(). + +2008-07-23 Sven Neumann + + * app/widgets/gimpsessioninfo.c (gimp_session_info_get_geometry): + don't report negative offsets, they would be interpreted wrongly. + +2008-07-23 Sven Neumann + + Based on a patch from Alexia Death (bug #543706): + + * app/paint/gimppaintcore-stroke.[ch] + (gimp_paint_core_stroke_vectors): added code to emulate brush + dynamics by modifying pressure and velocity along the stroke. + + * app/vectors/gimpvectors.c (gimp_vectors_stroke): pass the + 'emulate-dynamics' parameter to gimp_paint_core_stroke_vectors(). + +2008-07-23 Sven Neumann + + * app/widgets/gimpcontrollerinfo.c + * app/widgets/gimpcontrollerlist.c + * app/widgets/gimpdasheditor.c + * app/widgets/gimpdock.c + * app/widgets/gimpeditor.c + * app/widgets/gimpgrideditor.c + * app/widgets/gimppdbdialog.c + * app/widgets/gimppluginaction.c + * app/widgets/gimpstrokeeditor.c + * app/widgets/gimptemplateeditor.c + * libgimpwidgets/gimpcolorprofilecombobox.c: no need to cast the + return value of g_value_dup_object(). + +2008-07-23 Sven Neumann + + * app/core/gimpguideundo.c + * app/core/gimpitemundo.c + * app/core/gimplayermaskundo.c + * app/core/gimppdbprogress.c + * app/core/gimpstrokedesc.c + * app/core/gimptooloptions.c + * app/core/gimptoolpresets.c + * app/paint/gimppaintoptions.c + * app/text/gimpfont.c + * app/tools/gimptool.c + * app/widgets/gimpaction.c + * app/widgets/gimpcontrollereditor.c: no need to cast the return + value of g_value_dup_object(). + +2008-07-22 Sven Neumann + + * app/widgets/gimpcellrendererviewable.c: no need to cast the + return value of g_value_dup_object(). + +2008-07-22 Sven Neumann + + * plug-ins/help-browser/dialog.c (build_menu): check the return + value of webkit_web_history_item_get_title() to guard us against + a (reported) bug in WebKit. + +2008-07-22 Michael Natterer + + * app/widgets/gimpviewrendererimagefile.c + (gimp_view_renderer_imagefile_get_icon): guard against + g_file_query_info() returning NULL (if the file doesn't exist or + whatever error). + +2008-07-22 Michael Natterer + + * app/tools/gimpcolortool.c: set scroll_lock to TRUE while moving + or creating sample points so the image doesn't scroll while a new + sample point is dragged from the rulers and sample points can be + deleted by dragging them out of image without scrolling at the + same time. + +2008-07-22 Sven Neumann + + * app/tools/gimpvectortool.c: only use the position from the event + coordinates when creating or modifying strokes. Initialize all + other GimpCoords fields with default values. + +2008-07-22 Sven Neumann + + * app/vectors/gimpbezierstroke.c: formatting. + +2008-07-22 Sven Neumann + + * app/widgets/gimpsessioninfo-aux.c + (gimp_session_info_aux_new_from_props): plugged memory leak. + +2008-07-22 Sven Neumann + + * app/widgets/gimphistogramview.c + (gimp_histogram_view_set_background): fixed refcounting issue. + This plugs the memory leak I tried to fix in GimpHistogramEditor. + +2008-07-22 Sven Neumann + + * app/base/gimphistogram.[ch]: added new method + gimp_histogram_duplicate(). + + * app/widgets/gimphistogrameditor.c + (gimp_histogram_editor_frozen_update): instead of recalculating + the histogram, use a duplicate for the background histogram. + +2008-07-22 Sven Neumann + + * app/widgets/gimphistogrameditor.c (gimp_histogram_editor_set_image): + reverted last change, it did not plug the leak. + +2008-07-22 Sven Neumann + + * app/gui/session.c (session_init): plugged a small memory leak. + +2008-07-21 Sven Neumann + + * app/widgets/gimphistogrameditor.c + (gimp_histogram_editor_set_image): always unset and unref the + histograms. Plugs a memory leak reported by valgrind. + +2008-07-21 Simon Budig + + * app/core/gimpcoords.c: incorporate the velocity. + +2008-07-21 Sven Neumann + + * app/tools/gimpdrawtool.c (gimp_draw_tool_on_vectors_handle): + plugged a not so small memory leak. + +2008-07-21 Sven Neumann + + * app/actions/windows-actions.c (windows_actions_dock_notify): + plugged another small memory leak. + +2008-07-21 Sven Neumann + + * app/menus/file-menu.c (file_menu_open_recent_query_tooltip): + plugged a small memory leak. + +2008-07-21 Sven Neumann + + * app/core/gimpstrokedesc.[ch]: added boolean property + 'emulate-brush-dynamics', in preparation for bug #543706. + + * app/dialogs/stroke-dialog.c: added a toggle for the new parameter. + +2008-07-21 Sven Neumann + + * configure.in (ALL_LINGUAS): updated note to translators. + +2008-07-21 Michael Natterer + + * app/gui/splash.c + * plug-ins/common/*.c: don't use gtk_box_pack_start_defaults(), + it got deprecated in GTK+ trunk. + +2008-07-21 Sven Neumann + + * configure.in (ALL_LINGUAS): added 'be' (Belarusian). + +2008-07-19 Martin Nordholts + + * app/widgets/gimpnavigationview.[ch]: Don't expose implementation + details and extend the interface with trivial new functions. + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_popup): Use the new interface instead of + directly accessing the members of the navigation view. + +2008-07-18 Sven Neumann + + * app/core/core-types.h: removed delta_time, delta_x, delta_y, + distance and random from the GimpCoords struct. These don't need + to be kept here and they can't be properly interpolated. + + * app/core/gimpcoords.c: changed accordingly. + + * app/xcf/xcf-load.c (xcf_load_vector): the size of the GimpCoords + struct changed. + + * app/display/gimpdisplayshell.[ch] (struct _GimpDisplayShell): + added some members to store values from the last event that are + needed in gimp_display_shell_eval_event() and which are not any + longer part of GimpCoords. + + * app/display/gimpdisplayshell-coords.c + (gimp_display_shell_eval_event): changed accordingly. + + * app/paint/gimppaintoptions.c: calculate a random number when one + is needed. + + * app/paint/gimpbrushcore.c (gimp_brush_core_interpolate): + GimpCoords doesn't have a "random" field any longer. + +2008-07-18 Sven Neumann + + * app/core/core-types.h (GIMP_COORDS_DEFAULT_VALUES): initialize + all members of the GimpCoords struct. + +2008-07-17 Sven Neumann + + * app/core/gimpcoords.c (gimp_coords_mix): also mix in the new + members of the GimpCoords struct. + +2008-07-17 Sven Neumann + + * app/core/gimpcoords.c (gimp_coords_mix): formatting. + + * app/vectors/gimpbezierstroke.c: formatting. + +2008-07-17 Sven Neumann + + * app/tools/gimpcolorizetool.c: fixed typo pointed out by + ÅŊygimantas Beručka. + +2008-07-17 Sven Neumann + + * app/paint/gimppaintcore.[ch]: removed 'use_pressure' field from + GimpPaintCore. + + * app/paint/gimppaintoptions.[ch]: removed 'use_pressure' parameter. + + * app/paint/gimpairbrush.c + * app/paint/gimpbrushcore.c + * app/paint/gimpclone.c + * app/paint/gimpconvolve.c + * app/paint/gimpdodgeburn.c + * app/paint/gimperaser.c + * app/paint/gimpheal.c + * app/paint/gimppaintbrush.c + * app/paint/gimpsmudge.c + * app/tools/gimppainttool.c: changed accordingly. + +2008-07-17 Tor Lillqvist + + * app/Makefile.am (win32_ldflags): Use -Wl,--large-address-aware + on Windows so that we can use more that 2 GB user data space (if + available; i.e. if running on a 64-bit OS, or a 32-bit OS booted + with /3GB). See discussion in bug #522073. + +2008-07-17 Sven Neumann + + * libgimp/gimpui.c: improved the documentation of gimpui_init(). + +2008-07-16 Sven Neumann + + * configure.in: bumped version to 2.5.3. + +2008-07-16 Sven Neumann + + * Made 2.5.2 development release. + +2008-07-16 Sven Neumann + + * plug-ins/help-browser/dialog.c: also start the search when the + slash key is pressed. Added a "find-again" feature bound to Ctrl-G. + +2008-07-16 Sven Neumann + + * plug-ins/help-browser/dialog.c: applied patch from RÃŗman Joost + as attached to bug #542826 (with some minor modifications). This + adds a "Search in this page" feature bound to Ctrl-F. + +2008-07-15 Sven Neumann + + * tools/pdbgen/pdb/edit.pdb: fixed documentation (bug #542972). + + * app/pdb/edit-cmds.c + * libgimp/gimpedit_pdb.c: regenerated. + +2008-07-14 Sven Neumann + + * tools/pdbgen/pdb/palette.pdb: added new PDB function + gimp-palette-get-colors that retrieves all colors from a palette + in a single call. Based on patches from bug #332206. + + * app/pdb/palette-cmds.c + * app/pdb/internal-procs.c + * libgimp/gimppalette_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + +2008-07-14 Sven Neumann + + * tools/pdbgen/app.pl: added support for color arrays. + +2008-07-14 Sven Neumann + + * app/pdb/gimp-pdb-compat.c (gimp_pdb_compat_arg_type_from_gtype): + added mapping from GIMP_TYPE_COLOR_ARRAY to GIMP_PDB_COLORARRAY. + +2008-07-14 Sven Neumann + + Add new PDB data type PDB_COLORARRAY for using arrays of GimpRGB + colors as argument or return value. + + * libgimpbase/gimpbaseenums.[ch] (enum GimpPDBArgType): replaced + the unused GIMP_PDB_BOUNDARY with GIMP_PDB_COLORARRAY. + + * libgimpbase/gimpprotocol.h: increased GIMP_PROTOCOL_VERSION. + (struct _GPParam): added d_colorarray entry to the union. + + * libgimpbase/gimpprotocol.c + * libgimp/gimp.[ch] + * app/pdb/gimp-pdb-compat.c + * app/plug-in/plug-in-params.c + * app/plug-in/gimpplugin-message.c + * tools/pdbgen/pdb.pl: deal with the new data type. + + * tools/pdbgen/enums.pl: regenerated. + + * plug-ins/pygimp/pygimp-pdb.c + * plug-ins/script-fu/scheme-wrapper.c: handle the new data type. + +2008-07-14 Sven Neumann + + * app/widgets/gimpcontrollerkeyboard.c: changed cursor key event + prefix from "key-" to "cursor-". + + * etc/controllerrc: changed accordingly. Also removed default + bindings for cursor keys without modifiers as many tools use the + cursor keys already. + +2008-07-14 Sven Neumann + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): added some line breaks to + improve readability. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell-scale.[ch] + (gimp_display_shell_center_image): Allow to choose what axes to + center on. + + (gimp_display_shell_scale_fill) + (gimp_display_shell_scale_fit_in): Explicitly center on both axes. + + * app/display/gimpdisplayshell.c (gimp_display_shell_fill): Center + the image in the previously empty display shell. Rather hackish, + but seems to work fine. + +2008-07-13 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/gimpdbusservice.[ch] + * app/widgets/dbus-service.xml: removed here ... + + * app/gui/Makefile.am + * app/gui/gimpdbusservice.[ch] + * app/gui/dbus-service.xml: ... and moved here. + (gimp_dbus_service_activate): raise the first display instead of + the toolbox. + + * app/gui/gui-unique.c (gui_unique_win32_idle_open): same change + here, raise the display instead of the toolbox. + + * app/unique.c: changed accordingly. + +2008-07-13 Sven Neumann + + * app/unique.c + * app/gui/gui-unique.c: on Win32, if the gimp binary is started + without filenames, raise the toolbox, just as we do in the DBus + code path. + +2008-07-13 Aurimas JuÅĄka + + * app/unique.c (gimp_unique_win32_open): check for NULL pointer to + prevent crash when there are no filenames provided. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): Get rid + of non-intelligent scrollbar stepper sensitivity code. + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_clamp_offsets): Add intelligent + scrollbar stepper sensitivity code. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_setup_hscrollbar_with_value): Consistency + cleanup. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell-scale.[ch] + (gimp_display_shell_center_image): New function. + (gimp_display_shell_scale_fill) + (gimp_display_shell_scale_fit_in): Center the image at the end. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_setup_hscrollbar_with_value) + (gimp_display_shell_setup_vscrollbar_with_value): Use + gimp_display_shell_get_scaled_image_size() instead of inaccurately + calculate that information locally. + +2008-07-13 Martin Nordholts + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_popup): BORDER_PEN_WIDTH is a normal + constant, no need for voodoo. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_get_scaled_image_size): New function that + contains logic previously kept in gimp_display_shell_draw_area(). + + * app/display/gimpdisplayshell-draw.c + (gimp_display_shell_draw_area): Use the new function. + +2008-07-13 Martin Nordholts + + * app/display/gimpdisplayshell.c (gimp_display_shell_fill): Don't + ask gimp_display_shell_set_initial_scale() for display size, we + don't care anyway. + +2008-07-12 Martin Nordholts + + The following change is conceptually based on a patch by + Alexia Death and implements the core functionality for + bug #362915. + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_scroll_clamp_offsets): Clamp the offsets in + such a way that allows to scroll beyond the image border. + + (gimp_display_shell_setup_hscrollbar_with_value) + (gimp_display_shell_setup_vscrollbar_with_value): Put common + scrollbar range setup code here. + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): Use above helper functions for + setting up scrollbar range. + + * app/display/gimpdisplayshell-callbacks.c: Handle adjustment of + the scrollbar range when they are about to change value. + + * app/display/gimpdisplayshell.c: Always keep the scrollbar + steppers sensitive to user input. + +2008-07-12 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c: + Replace gimp_display_shell_scroll() with + gimp_display_shell_center_around_image_coordinate() since that is + easier to map to something sensible when we allow to scroll beyond + image border. + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_marker_changed): Adapt to the new + interface. + +2008-07-12 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_get_viewport): Remove invalid TODO. + +2008-07-12 Martin Nordholts + + * app/core/gimpmarshal.list: Added + VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE marshaller. + + * app/widgets/gimpnavigationview.c: Make the "marker-changed" + signal also pass the marker width and height as parameters. + + * app/display/gimpnavigationeditor.c: Updated accordingly. + +2008-07-12 Sven Neumann + + * configure.in: fixed check for babl. + +2008-07-12 Martin Nordholts + + * configure.in: Prefered casing of `babl' is `babl'. + +2008-07-12 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): The scrollbars should be setup + using the new offset, not the old counterpart. + +2008-07-12 Sven Neumann + + * app/tools/gimprectangletool.c: formatting. + +2008-07-12 Sven Neumann + + * app/core/gimpparamspecs.[ch]: added GIMP_TYPE_COLOR_ARRAY and + GIMP_TYPE_PARAM_COLOR_ARRAY in preparation for fixing bug #332206. + +2008-07-12 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): Renamed the variables sx and sy + to sw and sh. + +2008-07-12 Martin Nordholts + + In this ChangeLog entry, disp_offset means disp_[xy]offset and + offset means offset_[xy]. + + * app/display/gimpdisplayshell.[ch]: Kill disp_offset! We now + represent that by a negative offset. + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_scroll_clamp_offsets) + (gimp_display_shell_get_scaled_image_viewport_offset): Adjust + accordingly to preserve current behaviour. + + (gimp_display_shell_get_disp_offset): New function to get the old + disp_offset based on the new offset. + + (gimp_display_shell_get_render_start_offset): New function to get + the old offset based on the new offset. + + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-render.c: Get rid of disp_offset + and use gimp_display_shell_get_disp_offset() and + gimp_display_shell_get_render_start_offset() instead. + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): Remove #if zeroed debug output. + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): Restructure the way the rulers + are setup, partly by making use of the new nifty + gimp_display_shell_get_scaled_image_viewport_offset(). + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-transform.c + (gimp_display_shell_transform_xy_f) + (gimp_display_shell_untransform_xy_f): We can use + gimp_display_shell_get_scaled_image_viewport_offset() here + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_get_scaled_viewport): and here. + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_get_viewport) + (gimp_display_shell_get_scaled_viewport) + (gimp_display_shell_get_scaled_image_viewport_offset): const- and + g_return_if_fail-ify. + +2008-07-11 Sven Neumann + + * app/tools/gimprotatetool.c (gimp_rotate_tool_key_press): simplified. + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_get_scaled_image_viewport_offset): New + function to replace any occurance of + + shell->disp_[xy]offset - shell->offset_[xy] + + that is just an implementation specific way of saying the same + thing. + + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-transform.c: Make the code less + implementation dependant by using the new function. + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-draw.c + (gimp_display_shell_draw_area): Update comment. + +2008-07-11 Tor Lillqvist + + * app/app.c: Drop duplicated #include . + + * app/gui/gui-unique.c (idle_open_data_new): Fix g_slice_new() + use. + +2008-07-11 Sven Neumann + + * plug-ins/selection-to-path/pxl-outline.c (append_coordinate): + use g_printerr() for debug output. + +2008-07-11 Sven Neumann + + * app/gui/gui-unique.c: dispatch opening to an idle handler. + +2008-07-11 Sven Neumann + + * docs/gimp.1.in: removed reference to gimp-remote(1). + +2008-07-11 Sven Neumann + + * configure.in + * docs/Makefile.am: made the build of gimp-remote optional and + disable it by default. + + * INSTALL: document the --enable-gimp-remote configure option. + +2008-07-11 Tor Lillqvist + + * app/unique.c (gimp_unique_filename_to_uri): Check GError being + unset correctly. + (gimp_unique_win32_open): Add missing semicolon. + + * app/gui/gui-unique.c: Include on Windows. + (gui_unique_win32_init): Drop unused variable. + +2008-07-11 Sven Neumann + + * app/core/gimpscanconvert.c + * app/vectors/gimpbezierstroke.c + * app/vectors/gimpvectors.c: include instead of + . + +2008-07-11 Sven Neumann + + * app/unique.c + * app/gui/gui-unique.[ch]: merged code from bug #410439 to provide + builtin gimp-win-remote functionality for Win32. This is untested + and most probably doesn't even compile. + +2008-07-11 Sven Neumann + + * app/gui/Makefile.am + * app/gui/gui-unique.[ch]: new files providing functionality to + ensure a unique GUI instance of GIMP. Code split out of gui.c. + + * app/gui/gui.c: changed accordingly. + +2008-07-11 Sven Neumann + + * app/Makefile.am + * app/unique.[ch]: new files containing functionality to check for + an already running instance of GIMP of notifying it about files to + open. Code split out of main.c. + + * app/main.c: changed accordingly. + +2008-07-11 Sven Neumann + + * app/main.c (gimp_init_malloc): removed misleading comment. + +2008-07-11 Sven Neumann + + * app/base/color-balance.c (color_balance_create_lookup_tables): + formatting, to improve readability. + +2008-07-11 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_get_viewport): Extend the interface with this + function. + + * app/display/gimpnavigationeditor.c + (gimp_navigation_editor_update_marker): Use it here. + +2008-07-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch] + (gimp_display_shell_get_scaled_viewport): Extend the interface + with this function + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_update_handle_sizes): Forget anything we knew + about how to interpret the icky GimpDisplayShell offset variables + +2008-07-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch]: Make + gimp_display_shell_scroll() a sane public interface for scrolling + and call the old version gimp_display_shell_scroll_private() + + * app/display/gimpnavigationeditor.c: Adapt to the saner version + of gimp_display_shell_scroll() + + * app/display/gimpdisplayshell-callbacks.c: + * app/display/gimpdisplayshell-autoscroll.c: Use the private + version of gimp_display_shell_scroll() + + * app/display/Makefile.am: Added gimpdisplayshell-private.h + +2008-07-10 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.[ch]: The return value of + gimp_display_shell_scroll() is not used anywhere, make it void. + +2008-07-10 Manish Singh + + * plug-ins/pygimp/pygimp-pdb.c: Allow None to be passed for + PDB_DISPLAY. + +2008-07-10 Sven Neumann + + * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): + changed expander title to "Brush Dynamics". + +2008-07-10 Sven Neumann + + * app/widgets/gimphelp.c: some changes to the dialog that is shown + if the help browser is missing. + +2008-07-10 Sven Neumann + + * docs/gimp.1.in: document the --help-gegl command-line option. + +2008-07-10 Sven Neumann + + * app/display/gimpdisplayshell-progress.c + (gimp_display_shell_progress_message): swallow informational + messages if there aren't handled by the statusbar. + +2008-07-10 Sven Neumann + + * app/core/gimpdata.[ch]: renamed gimp_data_name_compare() to + gimp_data_compare() and changed it to keep the data in three + groups: internal, writable and system resource files. Inside the + groups the sorting order is alphabetical. + + * app/core/gimpdatafactory.c (gimp_data_factory_new): changed + accordingly. + +2008-07-10 Sven Neumann + + * app/core/gimpdatafactory.[ch] (gimp_data_factory_new): renamed + parameter. + +2008-07-09 Sven Neumann + + * app/core/gimp-user-install.c (gimp_user_install_detect_old): + fixed misplaced debug output. + +2008-07-09 Sven Neumann + + * app/display/gimpdisplayshell-close.c (gimp_display_shell_close): + if a save dialog is active for this image, then don't allow to + close it. Fixes bug #511965. + +2008-07-09 Sven Neumann + + * app/display/gimpstatusbar.c (gimp_statusbar_progress_message): + don't accept a progress message if the status bar is already + showing a temporary message. + +2008-07-09 Sven Neumann + + * plug-ins/common/tiff-load.c (tiff_warning): send warnings about + unknown fields to stderr instead of using the log mechanism. + +2008-07-09 Sven Neumann + + * app/tools/gimppainttool.c (gimp_paint_tool_motion): don't paint + while the Shift key is pressed for line drawing (bug #529434). + +2008-07-08 Martin Nordholts + + * plug-ins/pygimp/gimpmodule.c (gimp_methods): Remove duplicate + entry of gimp.get_foreground(). + +2008-07-08 Sven Neumann + + * plug-ins/help-browser/dialog.c (build_menu): plugged a memory leak. + +2008-07-08 Sven Neumann + + * plug-ins/help-browser/dialog.c (load_finished): select the + current URI in the index. Pointed out by Roman Joost. + +2008-07-07 Sven Neumann + + * app/widgets/gimphelp.c (gimp_help_query_user_manual_online): + changed button label and added an icon. + +2008-07-07 Sven Neumann + + * app/paint/gimppaintoptions.c + (gimp_paint_options_get_dynamic_hardness): applied patch from + Alexia Death fixing a cut'n'paste error. + +2008-07-07 Sven Neumann + + * app/tools/gimppaintoptions-gui.c (tool_has_size_dynamics): check + for tools derived from GimpPaintBrushTool just as we do in + tool_has_opacity_dynamics(). + (tool_has_hardness_dynamics): enable hardness dynamics for the + eraser tool (bug #541691). + +2008-07-07 Sven Neumann + + * app/widgets/gimphelp.c (gimp_help_query_user_manual_online): + command button labels should be capitalized in header style. + +2008-07-07 Sven Neumann + + * themes/Default/images/stock-user-manual-64.png: recreated from SVG. + +2008-07-07 Sven Neumann + + * app/composite/gimp-composite-*test.c: declared test functions as + static. + +2008-07-07 Sven Neumann + + * app/widgets/gimphelp.c: use GIMP_LOG() for debug output. + +2008-07-06 Sven Neumann + + * app/widgets/gimphelp.c: if the user asks for help and the user + manual is not locally installed, show a dialog that allows to + change the preferences so that the online version is used. + +2008-07-06 Sven Neumann + + * plug-ins/help/gimphelpdomain.c: improved error messages. + +2008-07-05 Martin Nordholts + + * app/display/gimpdisplayshell-scroll.c + (gimp_display_shell_scroll_clamp_offsets): Renamed the variables sx + and sy to sw and sh. + +2008-07-05 Sven Neumann + + * app/widgets/gimphelp.c (gimp_help_user_manual_is_installed): + always return TRUE if GIMP2_HELP_URI environment variable is set. + +2008-07-05 Sven Neumann + + * app/dialogs/preferences-dialog.c + * app/widgets/gimphelp.[ch]: improved test for user manual + installation and moved the code out of the prefs dialog. + +2008-07-05 Martin Nordholts + + * app/tools/gimprectangletool.c: + * app/tools/gimpeditselectiontool.c: Simplify math. + +2008-07-05 Martin Nordholts + + * app/tools/gimprectangletool.c: + * app/tools/gimpeditselectiontool.c: Mark the center of + rectangles/bounding rectangles so that it is easier to predict and + see where snapping occurs. Completes the fix for bug #527659. + +2008-07-05 Martin Nordholts + + * app/tools/gimpeditselectiontool.[ch]: Don't expose the icky + implementation details. + +2008-07-05 Martin Nordholts + + * data/tips/gimp-tips.xml.in: Removed tip about how to make a + circular selection. It's much more discoverable now than it was in + GIMP 2.2, and the current description is faulty. (Bug #486599.) + +2008-07-04 Sven Neumann + + * app/widgets/gimphelp.[ch]: added a function to get the location + where the user manual is expected if it is installed locally. + + * app/dialogs/preferences-dialog.c: inform the user about the + presence or absence of the user manual. + +2008-07-04 Sven Neumann + + * plug-ins/help-browser/dialog.c (browser_dialog_make_index_foreach): + improved order of index items with alphabetic counters. + +2008-07-04 Sven Neumann + + * plug-ins/help/gimphelpitem.h: document the purpose of the extra + struct fields. + + * plug-ins/help-browser/dialog.c: limit the depth of the index to 4. + +2008-07-04 Sven Neumann + + * app/core/gimpgrid.c: changed default grid to a 10x10 grid of + solid lines (bug #539318). + +2008-07-03 Sven Neumann + + * app/actions/dialogs-actions.c (dialogs_toplevel_actions): + changed blurb for "dialog-tips". + +2008-07-03 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_events): don't use Escape to quit full-screen + mode, it collides with tools using the Escape key (bug #539949). + +2008-07-03 Lars-Peter Clausen + + * plug-ins/pygimp/pygimp-drawable.c + * plug-ins/pygimp/pygimp-vectors.c + * plug-ins/pygimp/pygimp-display.c + * plug-ins/pygimp/pygimp-image.c: Added checks to ensure that a + python object only is created if its id is valid. Fixes bug #536403. + + * plug-ins/pygimp/pygimp-pdb.c + * plug-ins/pygimp/pygimp-tile.c + * plug-ins/pygimp/pygimp-colors.c + * plug-ins/pygimp/pygimp.h: Fix crashing when pygimp is used with + python-2.5 on 64 bit systems. Fixes bug #540629. + +2008-07-03 Sven Neumann + + * app/widgets/gimpsettingsbox.c (gimp_settings_box_constructor) + * app/widgets/gimpsettingseditor.c (gimp_settings_editor_constructor): + removed trailing period from tooltip texts. + + * app/config/gimprc-blurbs.h: don't mark USER_MANUAL_ONLINE_BLURB + for translation, it is not used in the user interface. + +2008-07-03 Sven Neumann + + * INSTALL: mention the fact that intltool now needs to be + installed in order to build from tarball. + + * HACKING: removed mentioning of intltoolize here. + +2008-07-02 Jakub Steiner + + * themes/Default/images/stock-gegl-16.png + * themes/Default/images/stock-gegl-16.svg + * themes/Default/images/stock-gegl-22.png + * themes/Default/images/stock-gegl-22.svg + * themes/Default/images/stock-gegl.svg: tweak icons to comply with + tango style guidelines + +2008-07-01 Sven Neumann + + * themes/Default/images/stock-gegl-16.png + * themes/Default/images/stock-gegl-22.png: changed GEGL stock icon + based on the new GEGL logo. + + * themes/Default/images/stock-gegl.svg: added SVG version. + +2008-06-30 Michael Natterer + + * app/widgets/gimphistogrambox.c + (gimp_histogram_box_high_adj_update): don't call + gtk_adjustment_get_value() on a gint. + +2008-06-30 Michael Natterer + + * app/dialogs/file-open-dialog.c (file_open_dialog_response): + restore code that sets the dialog back to sensitive when opening + fails because it stays open. Fixes bug #540801. + +2008-06-29 Michael Natterer + + * app/tools/gimpgegltool.c (gimp_gegl_tool_dialog): remove size + group code because the size group doesn't exist if there is no + settings box. + +2008-06-29 Michael Natterer + + * app/dialogs/channel-options-dialog.c + * app/dialogs/palette-import-dialog.c + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpnavigationeditor.c + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/widgets/gimpbrusheditor.c + * app/widgets/gimpbrushfactoryview.c + * app/widgets/gimpbrushselect.c + * app/widgets/gimpcolormapeditor.c + * app/widgets/gimpcontainertreeview-dnd.c + * app/widgets/gimpgradienteditor.c + * app/widgets/gimphistogrambox.c + * app/widgets/gimppaletteeditor.c + * app/widgets/gimpscalebutton.c: replace adjustment->value by + gtk_adjustment_get_value (adjustment). + +2008-06-29 Michael Natterer + + * plug-ins/color-rotate/color-rotate-callbacks.c + * plug-ins/gfig/gfig-grid.c + * plug-ins/gimpressionist/general.c + * plug-ins/gimpressionist/orientmap.c + * plug-ins/gimpressionist/paper.c + * plug-ins/gimpressionist/placement.c + * plug-ins/gimpressionist/sizemap.c + * plug-ins/gimpressionist/utils.c + * plug-ins/ifs-compose/ifs-compose.c + * plug-ins/imagemap/imap_grid.c + * plug-ins/jpeg/jpeg-save.c + * plug-ins/print/print-preview.c + * plug-ins/win-snap/winsnap.c: use accessors instead of accessing + members of GTK+ widgets directly. + +2008-06-28 Michael Natterer + + * pygimp-pdb.c: + * pygimp-tile.c: + * pygimp-colors.c: revert last patch because Py_ssize_t is + undefined in some (older?) pythons. Needs more investigation. + +2008-06-28 Michael Natterer + + * app/widgets/gimpviewrendererimagefile.c + (gimp_view_renderer_imagefile_get_icon): add widget parameter so + we can get the right icon theme for the screen. If building + against GTK+ >= 2.13.4, use GFile to get proper file type icons. + + (gimp_view_renderer_imagefile_render): pass the widget. + + (get_icon_fallback): remove this unused function. + +2008-06-28 Martin Nordholts + + * app/widgets/gtkscalebutton.h: Remove uses of GSEAL macro to make + the thing compile on systems without bleeding edge GTK+. + +2008-06-28 Michael Natterer + + This is completely evil: + + * app/widgets/Makefile.am + * app/widgets/gtkscalebutton.[ch]: copy GtkScaleButton from GTK+ + upstream trunk and hack around until symbol conflicts are gone + and it builds. + + * app/widgets/gimppropwidgets.c + * app/widgets/gimpscalebutton.[ch]: use the hacked version instead + of the one from GTK+. Set the orientation to horizontal. + +2008-06-28 Michael Natterer + + * plug-ins/common/animation-play.c + * plug-ins/common/cml-explorer.c + * plug-ins/common/convolution-matrix.c + * plug-ins/common/curve-bend.c + * plug-ins/common/despeckle.c + * plug-ins/common/filter-pack.c + * plug-ins/common/gee-zoom.c + * plug-ins/common/gee.c + * plug-ins/common/lens-flare.c + * plug-ins/common/newsprint.c + * plug-ins/common/nova.c + * plug-ins/common/postscript.c + * plug-ins/common/sample-colorize.c + * plug-ins/common/sphere-designer.c + * plug-ins/common/tile-small.c: use accessors instead of accessing + members of GTK+ widgets directly. + +2008-06-28 Martin Nordholts + + * pygimp-pdb.c: + * pygimp-tile.c: + * pygimp-colors.c: Applied patch from Ed Swartz that makes use of + Py_ssize_t:s instead of int:s to better utilize 64-bit + systems. (Bug #540629.) + +2008-06-28 Michael Natterer + + * app/widgets/gimpcontainertreeview.[ch]: add new function + gimp_container_tree_view_connect_name_edited() which makes the + name cell editable and connects a passed "edited" callback. + + * app/widgets/gimpdatafactoryview.c + * app/widgets/gimpitemtreeview.c + * app/widgets/gimpsettingseditor.c + * app/widgets/gimptemplateview.c: use it instead of having the + same code four times. + +2008-06-28 Michael Natterer + + * app/widgets/gimpactionview.c + * app/widgets/gimpblobeditor.c + * app/widgets/gimpbrushfactoryview.c + * app/widgets/gimpbrushselect.c + * app/widgets/gimpcellrendererdashes.c + * app/widgets/gimpcellrendererviewable.c + * app/widgets/gimpcolorbar.c + * app/widgets/gimpcoloreditor.c + * app/widgets/gimpcolorframe.c + * app/widgets/gimpcomponenteditor.c + * app/widgets/gimpcontainerbox.c + * app/widgets/gimpcontainergridview.c + * app/widgets/gimpcontainerpopup.c + * app/widgets/gimpcontainertreeview.c + * app/widgets/gimpcurveview.c + * app/widgets/gimpdasheditor.c + * app/widgets/gimpdatafactoryview.c + * app/widgets/gimpdock.c + * app/widgets/gimpdockable.c + * app/widgets/gimpdockseparator.c + * app/widgets/gimpfgbgeditor.c + * app/widgets/gimpfgbgview.c + * app/widgets/gimpgradienteditor.c + * app/widgets/gimphandlebar.c + * app/widgets/gimphistogrambox.c + * app/widgets/gimphistogramview.c + * app/widgets/gimpitemtreeview.c + * app/widgets/gimpmenudock.c + * app/widgets/gimpmessagebox.c + * app/widgets/gimppaletteview.c + * app/widgets/gimpscalebutton.c + * app/widgets/gimpsessioninfo-book.c + * app/widgets/gimpsessioninfo-dock.c + * app/widgets/gimpsettingseditor.c + * app/widgets/gimpstrokeeditor.c + * app/widgets/gimptemplateeditor.c + * app/widgets/gimptemplateview.c + * app/widgets/gimpthumbbox.c + * app/widgets/gimptoolbox.c + * app/widgets/gimptooloptionseditor.c + * app/widgets/gimptoolview.c + * app/widgets/gimpuimanager.c + * app/widgets/gimpviewabledialog.c + * app/widgets/gimpviewrenderervectors.c + * app/widgets/gimpwidgets-utils.c: use accessors instead of + accessing members of GTK+ widgets directly. + +2008-06-28 Michael Natterer + + * plug-ins/uri/uri-backend-gvfs.c (uri_progress_callback): fix + progress display by making sure gimp_progress_update() gets a + gdouble passed. + +2008-06-28 Michael Natterer + + * app/actions/layers-commands.c + * app/actions/view-actions.c + * app/dialogs/about-dialog.c + * app/dialogs/layer-options-dialog.c + * app/dialogs/preferences-dialog.c + * app/display/gimpcanvas.c + * app/display/gimpdisplayshell-appearance.c + * app/display/gimpnavigationeditor.c + * modules/colorsel_water.c: use accessors instead of accessing + members of GTK+ widgets directly. + +2008-06-28 Michael Natterer + + * libgimp/gimpgradientselectbutton.c + * libgimp/gimpmenu.c + * libgimpwidgets/gimpbrowser.c + * libgimpwidgets/gimpcellrenderercolor.c + * libgimpwidgets/gimpcellrenderertoggle.c + * libgimpwidgets/gimpchainbutton.c + * libgimpwidgets/gimpcolorarea.c + * libgimpwidgets/gimpcolorscale.c + * libgimpwidgets/gimpcolorscales.c + * libgimpwidgets/gimpcolorselect.c + * libgimpwidgets/gimpenumwidgets.c + * libgimpwidgets/gimpframe.c + * libgimpwidgets/gimphelpui.c + * libgimpwidgets/gimpoffsetarea.c + * libgimpwidgets/gimppreviewarea.c + * libgimpwidgets/gimppropwidgets.c + * libgimpwidgets/gimpscrolledpreview.c: use accessors instead of + accessing members of GTK+ widgets directly. + +2008-06-28 Michael Natterer + + * app/widgets/gimplanguagestore-parser.c: include + "libgimpbase/gimpbase.h" instead of "libgimpbase/gimpenv.h". + +2008-06-28 Michael Natterer + + * app/widgets/gimpdbusservice.c: eek, include "gimpuimanager.h" + not "gimpuimanager.c". + +2008-06-28 Michael Natterer + + * app/actions/tools-commands.c (tools_activate_enum_action): + simply call gimp_enum_action_selected() instead of poking around + in the action's internals and calling gimp_action_activate() + +2008-06-28 Michael Natterer + + * app/widgets/gimpaction.c (gimp_action_set_proxy): simplify the + logic of setting "color" or "viewable" previews on menuitems. + +2008-06-27 Michael Natterer + + * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): swap + the angles of the dynamics matrix' labels in RTL and LTR mode so + the beginning of the words are aligned and on bottom. + +2008-06-26 Michael Natterer + + * app/widgets/gimpscalebutton.c (gimp_scale_button_init): hide the + popup's plus and minus buttons, they are completely pointless. + +2008-06-25 Michael Natterer + + * app/widgets/gimpsettingsbox.c: make sure the file dialog goes + away when the settings box' toplevel is hidden. Set the + alternative button order on the file dialog. + +2008-06-25 Michael Natterer + + * app/core/gimpmarshal.list: add marshaller BOOLEAN__STRING for + the change below. + + * app/widgets/gimpsettingsbox.[ch]: add the import/export dialogs + here. Add a bunch of parameters to new() to be used by the + dialogs, they are not properties yet. Changed import() and + export() signals to pass the selected filename and return a + boolean indicating success. + + * app/tools/gimpimagemaptool-settings.c: remove the dialog code + here and connect the import/export functions directly to above + GimpSettingsBox signals. + + * app/tools/gimpimagemaptool.[ch]: remove file dialog member. + +2008-06-25 Michael Natterer + + * app/tools/gimpcurvestool.c (gimp_curves_tool_settings_import): + parse the first line of the file manually and detect whether we + are importing an old curves file or a GimpConfig one. + +2008-06-25 Michael Natterer + + * app/gegl/gimpcurvesconfig.c (gimp_curves_config_load_cruft): + set any parsed negative value as -1 in the curves object because + that's the only negative value allowed. + +2008-06-25 Michael Natterer + + * app/widgets/gimpsettingseditor.c + (gimp_settings_editor_delete_clicked): select a neighboring item + after deleting the selected one. + +2008-06-25 Michael Natterer + + * app/widgets/gimpsettingseditor.[ch]: add dummy import and export + buttons, give the list a minimum size. + + * app/widgets/gimpsettingsbox.c: use the correct dialog border. + +2008-06-25 Michael Natterer + + * app/widgets/gimpsettingsbox.c (gimp_settings_box_constructor): + tweak buttons to look the same and have no spacing between them. + +2008-06-25 Michael Natterer + + * app/widgets/gimpsettingsbox.c (gimp_settings_box_constructor): + move "Add to favorites" out of the menu into a small button + showing a '+' icon. Add a separator between the import/export and + the manage menu items. + +2008-06-24 Michael Natterer + + * app/widgets/gimpsettingseditor.[ch]: enable renaming the + settings objects by editing them directly in the list (renaming a + recent setting moves it to the favorites section). Enable deleting + settings. None of these changes is saved yet (need to trigger a + save by confirming the tool or storing the current settings as + favorite). + +2008-06-24 Michael Natterer + + * app/widgets/gimpitemtreeview.c (gimp_item_tree_view_name_edited): + don't dereference a NULL GError. + +2008-06-24 Michael Natterer + + * app/widgets/gimpcontainercombobox.[ch]: made the model column + enum public and namespaced it. + + * app/widgets/gimpsettingsbox.c: use the enum value instead of a + magic number. + + * app/widgets/gimpsettingseditor.c: add a separator between + recently used settings and favorites. + +2008-06-23 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_modifier_key): Make switching selection + mode through modifier keys work again. + +2008-06-22 Michael Natterer + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimpsettingseditor.[ch]: skeleton of a widget to + manage the list of saved settings for the image map tools. Does + absolutely nothing yet apart from displaying the list of settings. + + * app/widgets/gimpsettingsbox.[ch]: add "Manage Settings" menu item + and show a dialog containing the new widget. + +2008-06-21 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_update_motion): When applying angle + constraints on the first segment vertex, base on the last segment + vertex rather than not applying any constraint at all. + +2008-06-20 Martin Nordholts + + Make angle constraints with the Free Select Tool by using Ctrl + work also when moving vertices, not only when creating new ones. + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_active_modifier_key): Implement. + + (gimp_free_select_tool_update_motion): Put motion logic here so we + can apply it from both _motion and _active_modifier_key. + + (gimp_free_select_tool_modifier_key): Ignore key presses from + another display. + +2008-06-20 Martin Nordholts + + * app/tools/gimpfreeselecttool.c: Don't alloc/free + saved_points_(lower|higher)_segment on each move, instead realloc + on demand and free on tool destruction, just as we do e.g. for + points. + +2008-06-20 Martin Nordholts + + * app/tools/gimpfreeselecttool.c: Remove + n_saved_points_(lower|higher)_segment, we don't need them. + +2008-06-20 Martin Nordholts + + * app/tools/gimpfreeselecttool.c (gimp_free_select_tool_finalize): + Plug leak. + +2008-06-20 Michael Natterer + + Latest GTK+ trunk deprecations showed some uglyness in gimp: + + * app/tools/gimpeditselectiontool.h: we were still using GTK_CHECK + macros here, use proper G_TYPE type checking instead. + + * app/widgets/gimpuimanager.c + * app/widgets/gimpdockable.c: s/GtkDestroyNotify/GDestroyNotify/. + + * plug-ins/help-browser/gimpthrobber.c: s/GtkType/GType/. + + * plug-ins/common/filter-pack.c + * plug-ins/common/sample-colorize.c + * plug-ins/imagemap/imap_main.c: s/GtkSignalFunc/GCallback/. + +2008-06-15 Michael Natterer + + * configure.in: in the check for xfixes, add "true" as + action-if-not-found so it doesn't bail out when xfixes is not + found. + + There seems to be something fishy with the PKG_CHECK_MODULES() + macro since adding a simple comma should also count as empty 4th + argument. + +2008-06-15 Sven Neumann + + * configure.in: bumped version to 2.5.2. + +2008-06-15 Sven Neumann + + * Made 2.5.1 development release. + +2008-06-14 Sven Neumann + + * INSTALL + * configure.in (gegl_required_version) + * app/sanity.c (GEGL_REQUIRED_MICRO): depend on the newest + released GEGL, version 0.0.18. + +2008-06-13 Sven Neumann + + * app/dialogs/preferences-dialog.c: added a preliminary user + interface to control the 'user-manual-online' property. + +2008-06-13 Martin Nordholts + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): + Correct the improved display of the rectangle ratio. + +2008-06-13 Sven Neumann + + * app/tools/gimptextoptions.c (gimp_text_options_class_init): + we need to define the 'highlight' property here as well. + +2008-06-13 Michael Natterer + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimpsettingsbox.[ch]: new widget containing the + combo and menu button for the image map tool settings plus most of + their logic. Has "import" and "export" signals that might go away + if I figure a way to nicely abstract that. Contains some minor + bugfixes and cosmetic improvements compared to the old code. + + * app/tools/gimpimagemaptool.[ch] + * app/tools/gimpimagemaptool-settings.[ch]: changed accordingly, + mostly removal of lots of code that is now in the widget. + +2008-06-13 Sven Neumann + + * configure.in (babl_required_version) + * app/sanity.c (BABL_REQUIRED_MICRO): depend on the newest + released babl, version 0.0.22. + +2008-06-13 Sven Neumann + + * plug-ins/help-browser/dialog.c: added a toggle action to + show/hide the index sidebar, bound to Ctrl-I. + +2008-06-12 Sven Neumann + + Added basic support for using the online user manual: + + * app/widgets/gimphelp.c + * plug-ins/help/gimphelp.c: moved some help logic to the core. The + default help domain is now constructed in the core and passed to + the help plug-ins just like the plug-in help domains. + + * app/config/Makefile.am + * app/config/gimprc-blurbs.h + * app/config/gimpguiconfig.[ch]: added gimprc properties to + specify the location of the online user manual and to decide if it + should be used instead of a locally installed copy. + +2008-06-12 Sven Neumann + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): + try to make the display of the aspect ratio somewhat more obvious. + +2008-06-12 Michael Natterer + + * app/plug-in/plug-in-menu-path.c (menu_path_mappings): also map + /File/Acquire to /File/New/Acquire. + +2008-06-12 Sven Neumann + + * plug-ins/help-browser/Makefile.am + * plug-ins/help-browser/wilber-reading.svg + * plug-ins/help-browser/wilber-reading.png: removed here... + + * themes/Default/images/Makefile.am + * themes/Default/images/stock-user-manual.svg + * themes/Default/images/stock-user-manual-16.png + * themes/Default/images/stock-user-manual-24.png + * themes/Default/images/stock-user-manual-32.png + * themes/Default/images/stock-user-manual-64.png + * libgimpwidgets/gimpstock.[ch]: ... and added as stock icon. + + * plug-ins/help-browser/dialog.c + * plug-ins/help-browser/gimpthrobber.c: changed accordingly. + Set the toolbar style to GTK_TOOLBAR_ICONS. + +2008-06-12 Michael Natterer + + * modules/controller_midi.c: applied patch from S. Fielding which + passes the right MIDI channel from the ALSA event to midi_event(). + Fixes bug #537960. + +2008-06-12 Sven Neumann + + * plug-ins/help-browser/dialog.c: use GTK_STOCK_HOME for the + button that navigates to the index page. + + * plug-ins/help-browser/gimpthrobber.c + (gimp_throbber_construct_contents): deal better with toolbar style + GTK_TOOLBAR_ICONS. + +2008-06-12 Sven Neumann + + * plug-ins/help-browser/dialog.c: removed the title + combo-box. Instead display the title in the window title. Added + "copy-location" action to the right-click menu as a replacement + for the drag source that was also removed. + +2008-06-11 Sven Neumann + + * plug-ins/help/help.c (load_help_idle): don't show progress for + local help lookups, they are fast enough. + + * plug-ins/help-browser/help-browser.c: added the same progress + code here. Might want to move it to the dialog window later. + +2008-06-11 Sven Neumann + + * configure.in: reverted last change (use of IT_PO_SUBDIR). + +2008-06-11 Sven Neumann + + * desktop/gimp.desktop.in.in: removed deprecated field "Encoding". + +2008-06-11 Sven Neumann + + * app/config/Makefile.am: make test-config link properly. + +2008-06-11 Sven Neumann + + * configure.in: use IT_PO_SUBDIR() to define the extra po + directories. Removed extra AC_CONFIG_COMMANDS that became + obsolete by this change. + +2008-06-11 Sven Neumann + + * autogen.sh: bumped INTLTOOL_REQUIRED_VERSION to 0.35.5. We + actually need 0.40.0 on the system where the tarball is rolled, + however 0.35.5 should be good enough for almost everyone. + + * configure.in: use IT_PROG_INTLTOOL with minimum version instead + of the deprecated AC_PROG_INTLTOOL. + + * Makefile.am (EXTRA_DIST): removed intltool-foo.in files as + intltool 0.40.0 does not install these any longer. Removed them + from DISTCLEANFILES as well. + +2008-06-11 Sven Neumann + + * configure.in: removed redundant calls to AC_MSG_RESULT() from + inside PKG_CHECK_MODULES(). + +2008-06-11 Sven Neumann + + * cursors/Makefile.am (EXTRA_DIST): added missing modifier-select + XBM files. + +2008-06-11 Sven Neumann + + * app/gegl/gimpoperationcolorbalance.c + * app/gegl/gimpoperationcolorize.c + * app/gegl/gimpoperationcurves.c + * app/gegl/gimpoperationdesaturate.c + * app/gegl/gimpoperationhuesaturation.c + * app/gegl/gimpoperationlevels.c + * app/gegl/gimpoperationposterize.c + * app/gegl/gimpoperationthreshold.c + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c: added const to GeglRectangle* + argument. + +2008-06-11 Sven Neumann + + * configure.in: fixed check for webkit zoom API. + +2008-06-10 Sven Neumann + + * plug-ins/help-browser/queue.[ch]: removed, we don't need this + code any longer. + +2008-06-10 Sven Neumann + + * configure.in: removed check for gtkhtml2 and added a check for + wekbit instead. + + * INSTALL: document the changed dependency. + + * plug-ins/help-browser/Makefile.am + * plug-ins/help-browser/dialog.[ch]: ported the help-browser to + webkit. Offers the same functionality as before and some more. + + * plug-ins/help-browser/help-browser.c: some cleanup. + +2008-06-10 Sven Neumann + + * plug-ins/help/gimphelplocale.c: added some sanity checks. + +2008-06-10 Michael Natterer + + * app/widgets/gimpthumbbox.c (gimp_thumb_box_new): don't set a + width request on the info label. It broke horizontal label + positioning and didn't serve any purpose I can remember. + +2008-06-10 Sven Neumann + + * plug-ins/help/help.c (load_help_idle): show progress while + loading the help index. + +2008-06-10 Sven Neumann + + * app/config/gimpguiconfig.c (DEFAULT_WEB_BROWSER): reverted + change for bug #522483. 'xdg-open' doesn't do the right thing for + file: URIs. + +2008-06-10 Sven Neumann + + * app/core/gimp-gui.[ch] + * app/widgets/gimphelp.[ch] + * app/gui/gui-vtable.c + * app/gui/gui.c: added a GimpProgress parameter to gimp_help(). + + * app/actions/help-commands.c + * app/widgets/gimpuimanager.c + * tools/pdbgen/pdb/help.pdb: changed accordingly. + + * app/pdb/help-cmds.c: regenerated. + +2008-06-10 Sven Neumann + + * app/plug-in/gimpplugin.c + * app/plug-in/gimppluginmanager-call.c + * app/widgets/gimphelp.c: formatting. + +2008-06-09 Michael Natterer + + * app/paint/gimppaintoptions.c: set DEFAULT_VELOCITY_SIZE to FALSE + so the paint tools behave as before and the brush outline is + meaningful at least in the default setup. + +2008-06-05 Sven Neumann + + * app/actions/dialogs-actions.c (dialogs_dockable_actions): added + actions to open/focus the brush, gradient and palette editors + (bug #436131). + +2008-06-04 Sven Neumann + + * plug-ins/common/red-eye-removal.c: fixed weird handling of the + threshold parameter. Some unrelated minor cleanups. + +2008-06-04 Sven Neumann + + * plug-ins/common/tga.c: changed user interface for specifying the + origin. Fixed header for origin at top-left (bug #450070). + +2008-06-04 Michael Natterer + + * app/display/gimpdisplayshell-scale.c + * app/gegl/gimpoperationdesaturate.h + * app/tools/gimprectangletool.c + * app/widgets/gimpradioaction.h + * app/widgets/gimptoggleaction.h: various fixes to make gtk-doc + happy. + +2008-06-04 Sven Neumann + + * app/tools/gimpcropoptions.c + * app/tools/gimprectangleoptions.c + * app/tools/gimprectangleselectoptions.c: fixed handling of the + "highlight" property that needs different default values for the + Crop and Rectangle Select tools (bug #536582). + +2008-06-04 Sven Neumann + + * app/paint/gimpairbrushoptions.c: removed trailing whitespace. + +2008-06-04 Sven Neumann + + * app/core/gimpdrawable-operation.c (gimp_drawable_apply_operation): + no need to check for the 'dont-cache' property now that we depend + on the newer GEGL. + +2008-06-04 Sven Neumann + + * INSTALL: updated GEGL version and also mention babl. + + * app/gegl/gimp-gegl.c (gimp_gegl_init): configure the GEGL tile + size to match the GIMP tile size. + +2008-06-04 Michael Natterer + + * configure.in: depend on GEGL >= 0.0.17, add check for + BABL => 0.0.21. + + * app/sanity.c: bump GEGL sanity check and add BABL check. + + * app/gegl/gimpoperationcolorbalance.c + * app/gegl/gimpoperationcolorize.c + * app/gegl/gimpoperationcurves.c + * app/gegl/gimpoperationdesaturate.c + * app/gegl/gimpoperationhuesaturation.c + * app/gegl/gimpoperationlevels.c + * app/gegl/gimpoperationposterize.c + * app/gegl/gimpoperationthreshold.c: adapt to new process() + signature. + +2008-06-03 Sven Neumann + + * libgimp/gimpitemcombobox.c: fixed comments. + +2008-06-03 Sven Neumann + + * app/widgets/widgets-enums.[ch]: changed descriptions for + GimpHistogramScale enum. + + * app/tools/gimpimagemaptool.[ch] + + * app/tools/gimpimagemaptool-settings.c: added a GtkSizeGroup for + aligning with the "Presets" label. Added an accessor for the + dialog's vbox. + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimpdesaturatetool.c + * app/tools/gimpgegltool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: use the new accessor. Minor + dialog cleanups in a few places. + +2008-06-02 Sven Neumann + + * app/actions/tools-actions.c: added a few more actions to set + tool values to default values. Added "backslash" as the default + shortcut for "tools-value-2-set-to-default", which is effectively + "Reset Brush Scale" (bug #493030). + +2008-06-01 Martin Nordholts + + * plug-ins/common/gif-load.c (GetCode): Applied patch from + Rik Snel that fixes loading of .gif files that contains 1-byte + data blocks. (Bug #535888.) + +2008-05-31 Martin Nordholts + + Add keyboard shortcut support for reseting to default value of + e.g. brush scale. Fixes bug #493030. + + * app/actions/actions.[ch]: Make action_select_value() take a + default-parameter and add support for it. Also use default_value + from gint and gdouble param specs. + + * app/actions/actions-types.h: Added + GIMP_ACTION_SELECT_SET_TO_DEFAULT. + + * app/actions/tools-actions.c: Add _SET_TO_DEFAULT actions. + + * app/actions/view-commands.c: + * app/actions/layers-commands.c: + * app/actions/context-commands.c: Pass defaults to + action_select_property(). + +2008-05-31 Martin Nordholts + + * app/tools/gimprotatetool.c (gimp_rotate_tool_key_press): + Implemented this function to support rotating with arrow keys. See + bug #387779. + +2008-05-30 Martin Nordholts + + Made moving the selection mask in the various ways automatically + commit any pending rectangle/ellipse selection. Fixes bug #349340. + + * app/tools/gimprectangleselecttool.c + (gimp_rectangle_select_tool_oper_update): Don't disable support + for moving the selection mask. + + (gimp_rectangle_select_tool_button_press): Handle delegation to + the selection tool. + + (gimp_rectangle_select_tool_delegate_button_press): New helper + function. + + (gimp_rectangle_select_tool_execute): Guard against NULL + tool->display:s. + +2008-05-30 Sven Neumann + + * app/dialogs/module-dialog.c: tell the user that a restart is + needed for the changes to take effect. + +2008-05-30 Sven Neumann + + * app/dialogs/module-dialog.c: some more internal cleanups. + +2008-05-30 Sven Neumann + + * app/dialogs/module-dialog.c: cleaned up the UI a bit. Removed + some information and a button that was not really useful. Only + show the error state when there is actually an error. + +2008-05-29 Manish Singh + + * plug-ins/pygimp/gimpshelf.py: fix _vectors_id to return a tuple + for the ID. Spotted and fixed by Joao. + +2008-05-29 Sven Neumann + + * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): + reverted last change. + +2008-05-29 Sven Neumann + + * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): + unset the entry's frame instead of reducing the inner border. + +2008-05-29 Sven Neumann + + * themes/Default/images/Makefile.am (STOCK_TOOL_IMAGES): + * themes/Default/images/tools/stock-tool-polygon-select-16.png + * themes/Default/images/tools/stock-tool-polygon-select-22.png: + removed unused tool icon. + + * libgimpwidgets/gimpstock.[ch]: don't register + GIMP_STOCK_TOOL_POLYGON_SELECT. + + * libgimpwidgets/gimphruler.c + * libgimpwidgets/gimpvruler.c: added missing API docs. + +2008-05-29 Sven Neumann + + * plug-ins/common/blur-gauss-selective.c (matrixmult_mmx): avoid + division by zero in the grayscale code path (bug #529280). + +2008-05-29 Sven Neumann + + * plug-ins/imagemap/imap_preview.c (scroll_adj_changed): fixed + ruler type. + +2008-05-29 Martin Nordholts + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): Also + show the plain aspect ratio in the status bar along with the + rectangle size information. Quickfix for bug #508183. + +2008-05-28 Sven Neumann + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_setup): set the display unit on the ruler. + + * libgimpwidgets/gimphruler.c (gimp_hruler_draw_ticks) + * libgimpwidgets/gimpvruler.c (gimp_vruler_draw_ticks): hack around + to get nicer subdivisions for rulers showing pixels. + +2008-05-28 Sven Neumann + + * libgimpwidgets/gimpruler.[ch] + * libgimpwidgets/gimphruler.c + * libgimpwidgets/gimpvruler.c: removed GimpRulerMetric struct from + public API. Removed gimp_ruler_draw_pos() and gimp_ruler_draw_ticks() + methods. Added a "unit" property with getter and setter. + + * libgimpwidgets/gimpwidgets.def: updated. + +2008-05-28 Sven Neumann + + * libgimpwidgets/gimpruler.[ch]: started to sanitize the ruler API. + + * app/dialogs/resolution-calibrate-dialog.c + * app/display/gimpdisplayshell-scale.c + * plug-ins/gfig/gfig-preview.c + * plug-ins/imagemap/imap_preview.c: changed accordingly. + + * libgimpwidgets/gimpwidgets.def: updated. + +2008-05-28 Sven Neumann + + * libgimpwidgets/gimpruler.[ch] + * libgimpwidgets/gimphruler.c + * libgimpwidgets/gimpvruler.c: enlarge the array of scales to + prevent ruler numbers from overlapping (bug #535039). + +2008-05-27 Michael Natterer + + * plug-ins/help-browser/dialog.c: undef + GDK_PIXBUF_DISABLE_SINGLE_INCLUDES around including + . + +2008-05-27 Sven Neumann + + * app/display/gimpdisplayoptions.c: reenabled rulers by default. + +2008-05-27 Sven Neumann + + * libgimpwidgets/gimpruler.[ch] + * libgimpwidgets/gimphruler.c (gimp_hruler_draw_ticks) + * libgimpwidgets/gimpvruler.c (gimp_vruler_draw_ticks): use an + extra small font for the tick labels. + + * themes/Default/gtkrc: don't hardcode a font size for the rulers. + +2008-05-27 Michael Natterer + + * configure.in: add -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES to + CPPFLAGS. + +2008-05-27 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: don't add the gradient box for + the blend tool. Clean up the code by moving the checks for the + tool type out of the utility functions into the main + gimp_paint_options_gui() function. + + * app/tools/gimpblendoptions.c: add the gradient box here. + +2008-05-27 Sven Neumann + + * app/widgets/gimpscalebutton.c: display a tooltip showing the value. + +2008-05-27 Sven Neumann + + * app/widgets/gimpscalebutton.c (gimp_scale_button_image_expose): + rotated the button graphics and fixed it for 'right-to-left' + rendering. + +2008-05-27 Michael Natterer + + * app/display/gimpdisplayshell-coords.c: revert velocity limit to + 1.0, this part of the patch shouldn't have been applied. + +2008-05-27 Sven Neumann + + * app/paint/gimpconvolve.c: make Convolve work with very thin + brushes, then convolving only in one direction (bug #533791). + +2008-05-26 Sven Neumann + + * libgimpwidgets/Makefile.am + * libgimpwidgets/gimpwidgets.h + * libgimpwidgets/gimpwidgetstypes.h + + * libgimpwidgets/gimpruler.[ch] + * libgimpwidgets/gimphruler.[ch] + * libgimpwidgets/gimpvruler.[ch]: added ruler widgets. These are + mostly copied from GTK+ and work as a drop-in replacement for + GtkRuler and friends. + + * libgimpwidgets/gimpwidgets.def: updated. + + * app/display/gimpdisplayshell.c + * app/display/gimpdisplayshell-scale.c + * app/dialogs/resolution-calibrate-dialog.c + * plug-ins/imagemap/imap_preview.c + * plug-ins/gfig/gfig-preview.c: use the GimpRuler widgets. + +2008-05-26 Sven Neumann + + * libgimp/gimp.def: added gimp_drawable_free_shadow(). + +2008-05-26 Michael Natterer + + * app/widgets/gimpscalebutton.c (gimp_scale_button_new): use + GTK_ICON_SIZE_MENU for the scale button. + +2008-05-26 Michael Natterer + + Applied modified patch from Alexia Death. Addresses bug #534770: + + * app/paint/gimppaintoptions.[ch]: add properties for scaling + the effects of pressure, velocity and hardness and honor them + in the various get_dynamic_foo() functions. + + (gimp_paint_options_get_dynamic_size): look at + pressure_options->size again, that code got lost in one of the + earlier patches. + + * app/tools/gimppaintoptions-gui.c: add GimpScaleButtons to the + table for the new properties. + + * app/display/gimpdisplayshell-coords.c: don't let "velocity" + reach 1.0, use 0.9999 instead. + +2008-05-26 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: remove unused includes. + +2008-05-26 Michael Natterer + + * app/paint/gimppaintoptions.[ch]: replace the identical + GimpPressureOptions, GimpVelocityOptions and GimpRandomOptions + struct by a single GimpDynamicOptions struct. + + * app/tools/gimppaintoptions-gui.c: don't pass the various + sub-structs to the _options_gui() function because they are not + needed. + +2008-05-26 Michael Natterer + + * app/gegl/gimpcolorbalanceconfig.c + * app/gegl/gimpcurvesconfig.c + * app/gegl/gimphuesaturationconfig.c + * app/gegl/gimplevelsconfig.c (equal): sanitize local variable + names: s/a_config/config_a/, s/b_config/config_b/. + +2008-05-26 Michael Natterer + + * app/config/gimpbaseconfig.c + * app/config/gimpguiconfig.c + * app/tools/gimpcolorpickeroptions.[ch]: remove unused compat + properties because the config parser silently skips unknown + properties now. + +2008-05-26 Sven Neumann + + * app/widgets/gimppropwidgets.c + * app/widgets/gimpscalebutton.[ch]: some fiddling to get the step + and page sizes right. + +2008-05-26 Sven Neumann + + * app/widgets/gimppropwidgets.[ch]: support for GimpScaleButton. + +2008-05-26 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimpscalebutton.[ch]: added simple scale button widget + derived from GtkScaleButton. + +2008-05-26 Sven Neumann + + * plug-ins/jpeg/jpeg-save.c (save_image): fixed logic that decides + if an EXIF block should be written (bug #529469). + +2008-05-25 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_revert_to_saved_state): Name cleanup. + +2008-05-25 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_prepare_for_move) + (gimp_free_select_tool_revert_to_saved_state) + (gimp_free_select_tool_move_segment_vertex_to): Handle the special + case when there is only one point, so that moving segment vertices + works even if there only is one. + +2008-05-25 Martin Nordholts + + * app/tools/gimpfreeselecttool.c: For completeness, comment on + some uncommented instance-private variables. + +2008-05-25 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_cursor_update): Properly update the cursor. + +2008-05-25 Martin Nordholts + + Added support for supressing handles by holding Shift in the Free + Select Tool so that new segments can be created where handles + would otherwise obstruct. + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_handle_segment_selection): Renamed, and + only select segment vertices if handles are not supressed. + + (gimp_free_select_tool_modifier_key): Make Shift toggle supressing + handles. + + (gimp_free_select_tool_draw): Don't draw the handles if they are + supressed. + + (gimp_free_select_tool_should_close): Only accept distance from + start point as a reason to close the polygon if the handles are + not supressed. + +2008-05-25 Martin Nordholts + + Added support for double-clicking in the Free Select Tool. A + double-click will commit the selection. + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_get_double_click_info): Helper function to + retrive GTK+ double-click settings. + + (gimp_free_select_tool_should_close): Take double-clicking into + account. + + (gimp_free_select_tool_revert_to_saved_state): Bail out if needed. + + (gimp_free_select_tool_button_release): Pass on time when + clicking. + + (gimp_free_select_tool_handle_click): Pass time to this function, + and modify it to handle double-clicks. + +2008-05-25 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_button_release): Remove invalid comment. + +2008-05-25 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_handle_click): A click might have slightly + adjusted the points, so revert before doing the selection. + (gimp_free_select_tool_revert_to_saved_state): Move definition up + a bit. + +2008-05-25 Martin Nordholts + + Make moving selection mask/pixels within the selection work for + the Free Select Tool, as well as interaction with any resulting + floating selection. + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_handle_click): Handle floating selections. + (gimp_free_select_tool_status_update): Show the inital + instructions until there are 3 or more segment vertices, rather + than 3 or more points. + + (gimp_free_select_tool_oper_update): When there is no active tool, + show selection tool status bar help messages instead of the tool + specific ones. + + (gimp_free_select_tool_delegate_button_press): New helper function + to decide wether to delgate operation to the selection tool. + + (gimp_free_select_tool_button_press): Handle delegation to the + selection tool. + +2008-05-24 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: fix dynamics grid label + positions for RTL mode by attaching the fixed to the table *after* + the toggle buttons (eek). See comment in the code. + +2008-05-24 Sven Neumann + + * HACKING: note that we need intltool 0.35.5 or newer. + +2008-05-24 Martin Nordholts + + * menus/image-menu.xml.in: Also Remove the Polygon Select Tool + action from here. + +2008-05-24 Martin Nordholts + + Kill the Polygon Select Tool. The Free Select Tool now provides a + superset of the old Polygon Select Tool functionality. We still + keep the tool icons etc around though, they might come in useful + in the future. + + * app/tools/gimppolygonselecttool.[ch]: Removed. + + * app/tools/Makefile.am: Removed gimppolygonselecttool.[ch]. + + * app/tools/gimp-tools.c (gimp_tools_init): Don't register the + Polygon Select Tool. + + * app/widgets/gimphelp-ids.h: Remove + GIMP_HELP_TOOL_POLYGON_SELECT. + +2008-05-23 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_draw): Draw handles within HANDLE_SIZE * 7 + distance from cursor instead of only showing the hovered handle. + (gimp_free_select_tool_oper_update): Remember last coordinates + given here, so we can do above calculations. + +2008-05-23 Michael Natterer + + Stop including single headers from gtk+ to be prepared + for the upcoming GTK_DISABLE_SINGLE_INCLUDES: + + * configure.in: add -DGTK_DISABLE_SINGLE_INCLUDES to CPPFLAGS. + + * app/display/gimpcanvas.h + * app/display/gimpscalecombobox.h + * app/display/gimpstatusbar.h + * app/widgets/*.h + * libgimp/gimpprogressbar.h + * libgimp/gimpselectbutton.h + * libgimpwidgets/*.h + * libgimpwidgets/gimpstock.c + * plug-ins/uri/gimpmountoperation.h: remove inclusion of parent + classes and single files from gtk+. + + * app/widgets/gtkwrapbox.h + * libgimp/gimpbrushmenu.c + * libgimp/gimpfontmenu.c + * libgimp/gimpgradientmenu.c + * libgimp/gimppalettemenu.c + * libgimp/gimppatternmenu.c + * libgimp/gimpselectbutton.c: #include + + * plug-ins/common/poppler.c: undef GTK_DISABLE_SINGLE_INCLUDES + when including . + +2008-05-23 Sven Neumann + + * app/tools/gimpimagemaptool-settings.c: string change. + +2008-05-23 Sven Neumann + + * app/core/gimpchannel-select.c + * app/core/gimpdrawable-bucket-fill.c + * app/core/gimpdrawable-transform.c + * app/core/gimpimage-crop.c + * app/dialogs/image-scale-dialog.c + * app/tools/gimpbycolorselecttool.c + * app/tools/gimpfliptool.c + * app/tools/gimpforegroundselecttool.c + * app/tools/gimpfreeselecttool.c + * app/tools/gimpfuzzyselecttool.c + * app/tools/gimpmovetool.c + * app/tools/gimpperspectivetool.c + * app/tools/gimppolygonselecttool.c + * app/tools/gimprotatetool.c + * app/tools/gimpscaletool.c + * app/tools/gimpsheartool.c + * libgimpwidgets/gimpcolorprofilestore.c + * plug-ins/gfig/gfig-dialog.c: use C_() instead of Q_() for + translations with context. + +2008-05-23 Sven Neumann + + * autogen.sh (GLIB_REQUIRED_VERSION): require glib-gettextize 2.16. + + * libgimp/libgimp-intl.h + * plug-ins/pygimp/pygimp-intl.h: synced with gi18n-lib.h from glib + 2.16. This adds support for the C_() macro. + + * plug-ins/script-fu/script-fu-intl.h: just include gi18n.h instead + of duplicating things from this header. + +2008-05-23 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: left-align the labels in the + new dynamics matrix. Add some code for RTL layout that doesn't + work properly yet. + +2008-05-22 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c: Added extra check to stop + "(let x 5)" syntax from causing a segfault in Linux. See bug #508020. + Removed some excess whitespace. + +2008-05-22 Michael Natterer + + * app/paint/gimpbrushcore.c (gimp_brush_core_interpolate): move + generating the random axis to the right place. + +2008-05-22 Michael Natterer + + * app/paint/gimppaintoptions.[ch]: replace the pressure-expanded, + velocity-expanded and random-expanded properties by a single + dynamics-expanded property. + + * app/tools/gimppaintoptions-gui.c: pack the toggle matrix into an + expander, some cleanup. + +2008-05-22 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: revert accidential change of + all occurences of "hardness" to "pressure" in strings and function + names. + +2008-05-22 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: factor out a utility function + that creates a dynamics check button. + +2008-05-22 Michael Natterer + + * app/tools/gimppaintoptions-gui.c: first version of a matrix of + toggles for the dynamics parameters instead of three expanders. + +2008-05-22 Martin Nordholts + + * app/tools/gimpfreeselecttool.c: Base a start of a new segment on + the pending point, and enable 15 degree constraints on the pending + point when Ctrl is being held down. + +2008-05-22 Martin Nordholts + + * app/core/gimpcurve-load.c (gimp_curve_load) + * app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): Remove + unused variables. + +2008-05-22 Martin Nordholts + + * app/tools/gimpfreeselecttool.[ch] + * app/tools/gimpforegroundselecttool.c: Fix that some + gimp_free_select_tool_-functions had the wrong name. + +2008-05-22 Michael Natterer + + Applied slightly modified and fixed patch from Alexia Death which + adds a "random" axis to the paint dynamics and fixes some issues + in the previous paint dynamics commits. Fixes bug #529431. + + * app/core/core-types.h: add a "random" axis to GimpCoords. + + * app/display/gimpdisplayshell-coords.c: set it to a random value. + + * app/display/gimpdisplayshell-callbacks.c: on button_press, + use the dynamics from the last motion event to avoid blotches + at the beginning of paint strokes. + + * app/paint/gimppaintoptions.[ch]: add random properties the same + way we do pressure and velocity. Add get_dynamic_size(), + get_dynamic_color() and get_dynamic_hardness() functions which + look at all dynamic parameters of the passed coords. + + * app/tools/gimppaintoptions-gui.c: add gui for the random options. + + * app/paint/gimpbrushcore.[ch]: remove calc_brush_scale() and use + gimp_paint_options_get_dynamic_size_instead(). + Add "dynamic_hardness" parameters to paste_canvas(), + replace_canvas() and get_brush_mask(). + + * app/paint/gimpairbrushoptions.c + * app/paint/gimpclone.c + * app/paint/gimpconvolve.c + * app/paint/gimpdodgeburn.c + * app/paint/gimperaser.c + * app/paint/gimpheal.c + * app/paint/gimppaintbrush.c + * app/paint/gimpsmudge.c: calculate the dynamic hardness and pass + it to above brush core functions. Use the get_dynamic_color() to + calculate the gradient color. + +2008-05-22 Sven Neumann + + * app/tools/gimpposterizetool.c (gimp_posterize_tool_dialog): + use a logarithmic slider. + +2008-05-22 Martin Nordholts + + * app/tools/gimpfreeselecttool.c: Remember the selection operation + in use when the tool was started, and use that when doing the + selection. Improvements are still to be made with regards to + synchronizing the tool options with the selection operation + actually used. + +2008-05-22 Michael Natterer + + * app/tools/gimpimagemaptool.c: check if the tool class has + the "settings_name" string set to decide whether to add + the settings GUI. + + * app/tools/gimpdesaturatetool.c + * app/tools/gimpposterizetool.c: don't set any settings + strings. Presets make no sense for tools with just one parameter. + +2008-05-22 Sven Neumann + + * app/core/gimpdrawable-operation.[ch] + (gimp_drawable_apply_operation): changed order of parameters to be + consistent with gimp_drawable_process(). + + * app/core/gimpdrawable-process.[ch]: introduced a variant of + gimp_drawable_process() for processing a GimpLut with + gimp_lut_process(). + + * app/core/gimpdrawable-brightness-contrast.c + * app/core/gimpdrawable-color-balance.c + * app/core/gimpdrawable-colorize.c + * app/core/gimpdrawable-curves.c + * app/core/gimpdrawable-desaturate.c + * app/core/gimpdrawable-equalize.c + * app/core/gimpdrawable-hue-saturation.c + * app/core/gimpdrawable-invert.c + * app/core/gimpdrawable-levels.c + * app/core/gimpdrawable-posterize.c + * app/core/gimpdrawable-threshold.c: changed accordingly. + +2008-05-22 Michael Natterer + + * app/tools/gimpimagemaptool.[ch]: s/save/export/g, + s/load/import/g, removed button tooltip members. + + * app/tools/gimpimagemaptool-settings.[ch] + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimpdesaturatetool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: changed accordingly. + + * app/tools/gimpimagemaptool-settings.c: clean up menu item creation. + +2008-05-22 Michael Natterer + + * app/tools/gimpfreeselecttool.c: delete trailing whitespace. + +2008-05-22 Sven Neumann + + * app/tools/gimp-tools.c (gimp_tools_init): added a call to + gimp_tool_options_create_folder(). + + * app/core/gimp-user-install.c (gimp_user_install_items): no need + to create the tool-options folder here if we are doing that on + each startup. + +2008-05-22 Sven Neumann + + * app/tools/gimpcurvestool.c (gimp_curves_tool_dialog): use a + combo-box for the curve type. + +2008-05-22 Sven Neumann + + * core/gimpdrawable-brightness-contrast.c + * core/gimpdrawable-color-balance.c + * core/gimpdrawable-colorize.c + * core/gimpdrawable-equalize.c + * core/gimpdrawable-hue-saturation.c + * core/gimpdrawable-posterize.c + * core/gimpdrawable-threshold.c: ported to gimp_drawable_process(). + +2008-05-22 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_cursor_update): Don't return in the middle + of the function. + +2008-05-21 Martin Nordholts + + * app/tools/gimpforegroundselecttool.c + (gimp_foreground_select_tool_oper_update): "Draw a rough circle + around the object to extract" -> "Rougly outline the object to + extract". + +2008-05-21 Martin Nordholts + + * app/tools/gimpfreeselecttool.[ch]: Don't expose implementation + details. + + * app/tools/gimpforegroundselecttool.c + (gimp_foreground_select_tool_select): Use new + gimp_free_select_get_points() functions since we don't know + anything about how the Free Select Tool is implemented any longer. + +2008-05-21 Michael Natterer + + * app/tools/gimpimagemaptool.[ch] + * app/tools/gimpimagemaptool-settings.c: turn the ugly row of + favorites options buttons into a menu that's attached to an arrow + button right of the favorites combo. + +2008-05-21 Michael Natterer + + * app/tools/gimpcurvestool.c: remove unused variable. + +2008-05-21 Martin Nordholts + + * app/core/gimpscanconvert.c (gimp_scan_convert_add_polyline): + constify the points argument. + +2008-05-21 Michael Natterer + + * app/base/pixel-processor.h: remove PixelProcessorFunc typedef. + + * app/base/base-types.h: add it here. + + * app/config/gimpbaseconfig.c: #include "base/base-types.h" + + * app/core/gimpdrawable-curves.c + * app/core/gimpdrawable-desaturate.c + * app/core/gimpdrawable-invert.c: remove pixel processor include. + + * app/core/gimpdrawable-levels.c: port to gimp_drawable_process(). + +2008-05-21 Michael Natterer + + * app/core/gimpdrawable-process.c (gimp_drawable_process): add + missing include and missing call to gimp_drawable_mask_intersect(). + +2008-05-21 Michael Natterer + + * app/gegl/gimpdesaturateconfig.c: use a stock_id that exists. + +2008-05-21 Martin Nordholts + + Made the Foreground Select Tool work again. + + * app/tools/gimpforegroundselecttool.c + (gimp_foreground_select_tool_control): Set tool->display = + NULL when halting the tool. + + (gimp_foreground_select_tool_button_press): Only activate the + tool control if it is not active (it might be actived already + by the Free Select Tool). + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_commit): Don't _halt explicitly + here. If a tool implementation wants to halt in this + situation, let them do that in their + GimpFreeSelectTool::select() instead. + +2008-05-21 Sven Neumann + + * app/core/Makefile.am + * app/core/gimpdrawable-process.[ch]: new file holding code to + apply a PixelProcessor to the full drawable. + + * app/core/gimpdrawable-desaturate.c + * app/core/gimpdrawable-invert.c: use the new helper function. + + * app/core/gimpdrawable-desaturate.[ch] (gimp_drawable_desaturate): + take a GimpProgress parameter. + + * tools/pdbgen/pdb/color.pdb: changed accordingly. + + * app/pdb/color-cmds.c: regenerated. + +2008-05-21 Martin Nordholts + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_status_update): Slightly improve one of + the status bar messages. + +2008-05-21 Sven Neumann + + * menus/image-menu.xml.in: moved "tools-desaturate" to the other + color tools. Added it to the "tools-color-menu". + +2008-05-21 Sven Neumann + + * app/base/desaturate.[ch]: changed to take a pointer as first + argument like all PixelProcessor functions. + + * app/core/gimpdrawable-desaturate.c: changed accordingly. + + * app/tools/gimpdesaturatetool.[ch]: added legacy code path. + +2008-05-21 Sven Neumann + + * app/base/Makefile.am + * app/base/desaturate.[ch]: moved legacy desaturate code here. + + * app/core/gimpdrawable-desaturate.c: use the code in app/base. + +2008-05-21 Michael Natterer + + * app/gegl/gimpoperationdesaturate.c + (gimp_operation_desaturate_process): bail out if there is no + config object. + +2008-05-21 Sven Neumann + + Add Desaturate as an image-map tool with live preview (bug #533808): + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpdesaturateconfig.[ch]: added config object for the + desaturate point filter. + + * app/gegl/gimpoperationdesaturate.[ch]: derive from + GimpOperationPointFilter. Unrolled the inner loop. + + * app/core/gimpdrawable-desaturate.c: changed accordingly. + + * app/tools/Makefile.am + * app/tools/gimpdesaturatetool.[ch]: added desaturate as an + imagemap tool. So far only the GEGL code path is implemented. + + * app/tools/gimp-tools.c: register the new tool. + + * app/dialogs/dialogs.c: register the new tool dialog. + + * app/dialogs/Makefile.am + * app/dialogs/desaturate-dialog.[ch]: removed the desaturate dialog. + + * app/actions/drawable-actions.c + * app/actions/drawable-commands.[ch]: removed action + "drawable-desaturate". + + * app/widgets/gimphelp-ids.h: changed help IDs accordingly. + + * menus/image-menu.xml.in: replaced "drawable-desaturate" with + "tools-desaturate". + + * libgimpwidgets/gimpstock.h: added a define for + GIMP_STOCK_TOOL_DESATURATE. + +2008-05-21 Sven Neumann + + * plug-ins/jpeg/jpeg-save.c (save_dialog): changed badly chosen + mnemonic, resolved a conflicting mnemonic and added some more. + +2008-05-20 Michael Natterer + + * app/core/Makefile.am + * app/core/core-types.h + * app/core/gimpimagemapconfig.[ch]: new GimpViewable subclass + which has a "time" property. Sets the object's name to a date + string if a time != 0 gets set. Has a compare function which first + sorts the objects with a timestamp in MRU order and then the + objects without timestamp by name. + + * app/gegl/gimpbrightnesscontrastconfig.[ch] + * app/gegl/gimpcolorbalanceconfig.[ch] + * app/gegl/gimpcolorizeconfig.[ch] + * app/gegl/gimpcurvesconfig.[ch] + * app/gegl/gimphuesaturationconfig.[ch] + * app/gegl/gimplevelsconfig.[ch] + * app/gegl/gimpposterizeconfig.[ch] + * app/gegl/gimpthresholdconfig.[ch]: derive from GimpImageMapConfig. + + * app/tools/gimpimagemaptool.c: sort the settings container with + above compare function. + + * app/tools/gimpimagemaptool-settings.c: add utility functions + for loading and saving the settings container. In the settings + combo, add a separator between MRU items and favorites. + + * app/Makefile.am: make the thing link. + +2008-05-20 Michael Natterer + + * app/core/gimplist.c (gimp_list_uniquefy_name): don't crash if an + object has a NULL name. Move variables to local scopes. Remove + redundant casts. + +2008-05-20 Martin Nordholts + + * app/tools/gimpfreeselecttool.c: Increase handle size to 12 + pixels (the same size as for the Paths Tool). + +2008-05-20 Martin Nordholts + + Added statusbar help-messages for the Free Select Tool. + + * app/tools/gimpfreeselecttool.c + (gimp_free_select_tool_oper_update): Don't bail out if + tool->display is NULL, instead modify the underlying logic to deal + with this. + +2008-05-20 Michael Natterer + + * app/tools/gimpimagemaptool.c: remove + gimp_image_map_tool_add_recent()... + + * app/tools/gimpimagemaptool-settings.[ch]: ...and add it here. + +2008-05-20 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_add_recent): + unref the new settings object after adding it to the recent + container. + + * app/tools/gimpimagemaptool-settings.c: add a "Save to Favorites" + button which pops a string entry dialog and saves the current + settings to the recent container. + +2008-05-20 Michael Natterer + + * app/tools/Makefile.am + * app/tools/gimpimagemaptool-settings.[ch]: new files containing + all the recent settings and settings load/save GUI and code. Got + rid of shortcut loading/saving using shift+click. Added default + implementations of ::settings_load() and ::settings_save(). + The GUI is currently horrible, work in progress! + + * app/tools/gimpimagemaptool.c: removed the settings code here. + + * app/tools/gimpcurvestool.c * app/tools/gimplevelstool.c: don't + pack the load and save buttons, this is done generically for all + tools now. + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: set the load/save related members + of GimpImageMapToolClass. + +2008-05-20 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/gimptoggleaction.[ch] + * app/widgets/gimpradioaction.[ch]: added new action types derived + from GtkToggleAction and GtkRadioAction. These types override the + "connect_proxy" method to enable tooltips in menus. + + * app/widgets/gimpactiongroup.c: use the new action types. + + * app/actions/dockable-actions.c: added a tooltip for the + "dockable-lock-tab" action. + +2008-05-20 Sven Neumann + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimplevelstool.c: fixed grammar. + +2008-05-19 Sven Neumann + + * app/widgets/gimpdockable.[ch] + * app/widgets/gimpdockbook.[ch]: added a "locked" propery to + GimpDockable. A locked dockable cannot be moved by drag-n-drop. + Allows users to protect their dockables from accidental changes, + mainly when working with a tablet. + + * app/widgets/gimpsessioninfo-dockable.[ch]: store the "locked" + property in the session info. + + * app/actions/dockable-actions.c + * app/actions/dockable-commands.[ch]: added an action for toggling + the "locked" state. + + * app/widgets/gimphelp-ids.h: new help-id "gimp-dock-tab-lock". + + * menus/dockable-menu.xml.in: show the new menu item. + + * app/actions/plug-in-actions.c: formatting. + +2008-05-19 Michael Natterer + + Unabstract image map tool settings load/save a bit before it's + turned into generic load/save for all image map tools: + + * app/gegl/gimpcurvesconfig.[ch] + * app/gegl/gimplevelsconfig.[ch]: add GError** to save_cruft() + functions. + + * app/tools/gimpimagemaptool.[ch]: add GError to + ::settings_save(), changed "file" parameter of ::settings_load() + and ::settings_save() to "filename", removed + gimp_image_map_tool_load_save() utility function and moved the + code to the settings_load() and settings_save() utility functions. + + * app/tools/gimpcurvestool.c + * app/tools/gimplevelstool.c: changed accordingly. Open and close + the settings files here. + +2008-05-19 Sven Neumann + + * plug-ins/common/psd-save.c (save_layer_and_mask): corrected + "layer mask disabled" flag in layer mask data section (bug #526811). + +2008-05-19 Sven Neumann + + * app/paint/gimpperspectiveclone.c: removed unused import. + +2008-05-19 Sven Neumann + + * tools/pdbgen/pdb/layer.pdb: corrected description of + gimp-layer-set-show-mask procedure. + + * app/pdb/layer-cmds.c + * libgimp/gimplayer_pdb.c: regenerated. + +2008-05-19 Michael Natterer + + * app/core/gimpcurve.c + (gimp_curve_set_n_points) + (gimp_curve_set_n_samples): set "identity" to TRUE if appropriate. + + (gimp_curve_calculate): don't set it to TRUE when there are no + control points. + +2008-05-19 Sven Neumann + + * app/core/gimpcurve-map.c (gimp_curve_map_pixels): fixed the call + to memcpy() in the CURVE_NONE case. + +2008-05-18 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c: Reverting previous change. + I figured it would break something. It breaks the 'while' macro by + preventing use of a named let. + +2008-05-18 Michael Natterer + + * app/core/gimpcurve.c: implement (de)serializing of the points + and samples arrays using GValueArray. Set "identity" to FALSE + after deserializing. + +2008-05-18 Michael Natterer + + * libgimpconfig/gimpconfig-serialize.[ch] + * libgimpconfig/gimpconfig.def: add + gimp_config_serialize_property_by_name(). + + * app/gegl/gimpcolorbalanceconfig.c + * app/gegl/gimpcurvesconfig.c + * app/gegl/gimphuesaturationconfig.c + * app/gegl/gimplevelsconfig.c: implement serialize() and + deserialize() and make sure the properties which change when the + channel/range property changes are handled correctly. Not too + ugly but it's still a hack... + +2008-05-18 Michael Natterer + + * app/tools/gimpimagemaptool.c: made the lists of recent settings + persistent. Note that the settings of tools that modify multiple + channels or ranges are saved incompletely because their settings + still lack custom serialize() implementations. Work in progress. + +2008-05-18 Michael Natterer + + * app/core/gimptoolinfo.[ch]: add + gimp_tool_info_build_options_filename() which creates a filename + under $GIMPDIR/tool-options/ with an optional suffix. + + * app/core/gimptooloptions.c + * app/core/gimptoolpresets.c: use it and remove own build_filename() + functions. + +2008-05-18 Michael Natterer + + * app/core/gimpstrokeoptions.[ch]: renamed public function + set_dash_pattern() to take_dash_pattern() to clarify memory + management of the passed GArray. + + * app/widgets/gimpdasheditor.c + * app/widgets/gimpstrokeeditor.c: changed accordingly. + +2008-05-18 Michael Natterer + + * app/core/gimpcurve.c: implement the GimpConfig interface and add + the code for equal(), reset() and copy() from GimpCurvesConfig. + + * app/gegl/gimpcurvesconfig.c: remove the copied code and use + GimpConfig methods to compare, reset and copy curve objects. + +2008-05-18 Michael Natterer + + * app/paint/gimpbrushcore.c: clean up last patch. + +2008-05-18 Martin Nordholts + + * plug-ins/script-fu/tinyscheme/scheme.c: Commited patch from gymp + that removes bogus FIXME (bug #533647). + +2008-05-18 Martin Nordholts + + Applied patch from Alexia Death that makes velocity dynamics + controlled scale properly recalculate the brush mask when + necessary (bug #533618). + + * app/paint/gimpbrushcore.[ch] (gimp_brush_core_scale_mask): A + change in scale requires a recalculation of the cached brush mask. + +2008-05-18 Martin Nordholts + + Merged the Polygon Select Tool capabilities with the Free Select + Tool. Among the things still to do is improved help texts, more + suitable graphics, and cursor mangement, but the core + functionality is in place. Thanks to Alexia Death for initial + testing. It will also be neccesary to do some work to adapt the + Foreground Select Tool to the new Free Select Tool implementation. + + Quick instructions on how the tool works: + + o A click adds a polygonal segment, a drag adds a free-hand + segment + o Return-key commits, Escape-key cancels, Backspace-key removes + last segment + o You can grab and move segment vertices + o You can cancel both a move, and the creation of a segment + + * app/tools/gimpfreeselecttool.[ch]: More or less + reimplemented. We keep a sequential array of all the points in the + polygon (including the free segments), and we have another array + with point indices that we use to represent the segments. On top + of this we have a few helper functions that tries to abstract away + the pretty raw nature of the implementation. + + * app/tools/gimpforegroundselecttool.[ch]: Keep track on its own + last_coord, and adjust to the new implementation of the Free + Select Tool. Still needs some work, for example handling that the + Free Select Tool now resets GimpTool::display. + (gimp_foreground_select_tool_key_press): Pass on key event to + parent class when appropriate. (Bails out too early though...) + +2008-05-18 Michael Natterer + + * app/gegl/gimpcurvesconfig.c (gimp_curves_config_set_property): + also copy curve->identity. + +2008-05-17 Sven Neumann + + * app/core/gimpimagemap.c: fixed issues with the profiling code. + +2008-05-17 Michael Natterer + + * app/tools/gimpimagemaptool.[ch]: add gimp_image_map_tool_edit_as(). + + * app/tools/gimplevelstool.c (levels_to_curves_callback): use it. + + * app/gegl/gimpbrightnesscontrastconfig.[ch]: add + gimp_brightness_contrast_config_to_levels_config(). + + * app/tools/gimpbrightnesscontrasttool.c: implement "Edit as Levels". + +2008-05-17 Øyvind KolÃĨs + + * app/core/gimpdrawable-operation.c: + * app/core/gimpimagemap.c: Make the created GEGL graphs have the + "dont-cache" property set to avoid unneeded caches. + +2008-05-17 Michael Natterer + + * app/widgets/gimpwidgets-constructors.[ch]: add new function + gimp_stock_button_new() which creates a button with icon and label + which is *not* the stock_id's label. + + * app/dialogs/preferences-dialog.c (prefs_button_add) + * app/tools/gimplevelstool.c (gimp_levels_tool_dialog): use it. + +2008-05-17 Michael Natterer + + * app/widgets/gimphelp-ids.h: add help IDs for the stuff in the + Windows menu. + + * app/actions/windows-actions.c: use them. + +2008-05-17 Michael Natterer + + * app/dialogs/file-save-dialog.c (file_save_dialog_response): fix + crash (don't dereference dialog after it has been destroyed). Also + put back code that sets the dialog back to sensitive if it still + exists. + +2008-05-17 Michael Natterer + + * app/core/gimpimagefile.c + * app/tools/gimpaligntool.c + * app/tools/gimpselectiontool.c + * app/tools/gimpvectortool.c + * plug-ins/color-rotate/color-rotate-dialog.c + * plug-ins/common/noise-rgb.c + * plug-ins/common/value-propagate.c + * plug-ins/gfig/gfig-dialog.c + * plug-ins/gfig/gfig.h + * plug-ins/gimpressionist/general.c + * plug-ins/gimpressionist/gimpressionist.h + * plug-ins/gimpressionist/orientation.c + * plug-ins/gimpressionist/size.c + * plug-ins/gimpressionist/utils.c + * plug-ins/gradient-flare/gradient-flare.c + * plug-ins/ifs-compose/ifs-compose.c + * plug-ins/imagemap/imap_main.c + * plug-ins/imagemap/imap_preferences.c: in latest GLib _() returns + "const gchar*" as it should. Add const qualifiers to local utility + functions and some explicit casts to fix the warnings caused by + this. + +2008-05-17 Michael Natterer + + * app/actions/windows-actions.c: add tooltips to the menu items of + open and recently closed docks. + + * app/widgets/gimpaction.c: connect to "notify::tooltip" and make + sure gimp_help_set_help_data() gets called when the action's + tooltip changes. + +2008-05-17 Michael Natterer + + * tools/pdbgen/pdb/gradient.pdb: applied patch from Lars-Peter + Clausen which adds gimp-gradient-get-number-of-segments. Fixes + bug #533474. + + * app/pdb/gradient-cmds.c + * app/pdb/internal-procs.c + * libgimp/gimpgradient_pdb.[ch]: regenerated. + + * libgimp/gimp.def: add the new symbol. + +2008-05-17 Michael Natterer + + * plug-ins/twain/Makefile.am: add -framework options to + twain_LDFLAGS instead of AM_LDFLAGS to make whatever layer/version + of autofoo happy on all macs. + +2008-05-16 Sven Neumann + + * app/core/gimpimagemap.c: added some basic benchmarking code. + Will become optional but for now it is enabled by default. + +2008-05-16 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c: Added extra checks to stop + bad syntax in LET from causing a segmentation fault in Linux. + See bug #508020. + +2008-05-16 Michael Natterer + + * app/Makefile.am: formatting. + +2008-05-16 Sven Neumann + + * app/display/gimpdisplayoptions.c: disable rulers by default as + suggested by Peter. Please give feedback. + +2008-05-16 Sven Neumann + + * plug-ins/help/Makefile.am + * plug-ins/help/gimphelpprogress.[ch] + * plug-ins/help/gimphelpprogress-private.h: new files providing a + simple framework for progress indication and cancellation. + + * plug-ins/help/gimphelp.[ch] + * plug-ins/help/gimphelpdomain.[ch] + * plug-ins/help/gimphelpitem.[ch] + * plug-ins/help/gimphelplocale.[ch] + * plug-ins/help/gimphelptypes.h + * plug-ins/help/help.c + * plug-ins/help/locales.[ch]: changed accordingly (passing NULL + as progress for now). Also updated copyright headers. + + * plug-ins/help-browser/help-browser.c: same here. + + * plug-ins/help/gimp-help-lookup.c: use the new API and show some + progress indication when the --verbose command-line option is used. + +2008-05-16 Michael Natterer + + * app/dialogs/dialogs.c (dialogs_load_recent_docks): reverse the + list after loading so it keeps its order. + + * app/menus/windows-menu.c (windows_menu_setup) + (windows_menu_recent_add): keep the recent docks menu in MRU + order. + +2008-05-16 Michael Natterer + + Implement the presistent menu of recently closed docks, still + somewhat hackish but fully functional. Fixes bug #132744. + + * app/actions/dialogs-actions.c + * app/actions/dialogs-commands.[ch] + * menus/image-menu.xml.in: remove the menu items that were + creating the hardcoded preconfigured docks. + + * app/dialogs/dialogs.[ch]: add GimpContainer of recently closed + docks and API to load and save it. + + * app/gui/session.c: call the recent dock load and save functions. + + * app/widgets/gimpsessioninfo.[ch]: implement the GimpConfig interface + and (de)serialize via proper interface methods. + + * app/gui/session.c + * app/widgets/gimpdialogfactory.c: use the GimpConfig API + to (de)serialize session infos and added the code that was + formerly in the info's (de)serialize functions but didn't belong + there. + + * app/widgets/gimpaction.[ch]: add "max-width-chars" property and + set it on proxy menu item labels. + + * app/actions/windows-actions.[ch] + * app/actions/windows-commands.[ch] + * app/menus/windows-menu.c: add actions and menu of recently + closed docks and code to restore the dock when the menu items are + selected. Use above new action property to ensure a minimum + width of the menu. + + * app/widgets/gimpmenudock.c: use '-' instead of '|' for + separating notebooks in the window title. Menu items don't like '|'. + + * app/widgets/gimpdock.c: removed the confirmation dialog when + closing docks and simply add them to the recent docks container. + This code is totally misplaced and will move to another file soon. + +2008-05-14 Sven Neumann + + * app/core/gimpcurve.c (gimp_curve_plot): don't write over the end + of the samples array. Someone should review this code. It looks + as if the loop could be rewritten in a safer and cleaner way. + +2008-05-14 Sven Neumann + + * plug-ins/common/blur-gauss-selective.c: formatting. + +2008-05-14 Sven Neumann + + * app/widgets/gimpcurveview.c (gimp_curve_view_motion_notify): + fixed use of uninitialized value. + +2008-05-14 Sven Neumann + + * app/actions/windows-actions.c (windows_actions): relabeled + submenu to "Recently Closed Docks". + +2008-05-14 Michael Natterer + + * app/menus/windows-menu.c + * app/actions/windows-actions.c + * menus/image-menu.xml.in: move the list of dockable dialogs and + the list of recent docks to submenus and keep the list of open + image windows and docks at the "Windows" menu toplevel. The list + of recent docks doesn't exist yet, its contents are fake. + +2008-05-14 Michael Natterer + + * app/gegl/gimpcurvesconfig.c (gimp_curves_config_copy): also + copy curve->identity. + +2008-05-14 Manish Singh + + * plug-ins/pygimp/gimpfu.py: Add PF_OPTION. Fixes bug #523142. + +2008-05-14 Sven Neumann + + * app/core/gimpbrushclipboard.c + (gimp_brush_clipboard_buffer_changed): for an opaque buffer, + initialize the brush mask with 255 instead of 0. Fixes bug #532886. + +2008-05-14 Sven Neumann + + * plug-ins/gradient-flare/gradient-flare.c + (calc_sample_one_gradient): use G_STRUCT_OFFSET() instead of a + hand-made macro which caused a compiler warning (spotted by gymp, + bug #532853). + +2008-05-14 Michael Natterer + + * app/widgets/gimpsessioninfo-book.[ch]: remove widget member from + struct GimpSessionInfoBook. Return the created GimpDockbook from + restore(). + + * app/widgets/gimpsessioninfo-dock.c (restore): use the returned + book instead of the struct member. + +2008-05-14 Michael Natterer + + Made session info serialization independent from widgets so it can + be used on stored dock layouts which are not open: + + * app/widgets/gimpsessioninfo-book.[ch] + * app/widgets/gimpsessioninfo-dock.[ch] + * app/widgets/gimpsessioninfo-dockable.[ch]: add from_widget() + functions which return newly allocated session info structs. + Changed serialize() functions to take these structs instead of + widgets. Changed deserialize() functions to return the structs + instead of appending them to lists in their parent structs. Don't + free anything in restore(). + + * app/widgets/gimpsessioninfo-aux.[ch] + (gimp_session_info_aux_serialize): take a GList of aux_info + instead of a widget. + + * app/widgets/gimpsessioninfo.[ch]: add new functions get_info() + which collects above session info details from dialogs and + clear_info() which clears that info. Call clear_info() from + finalize(). Don't free anything in restore(). + + * app/widgets/gimpdialogfactory.c + (gimp_dialog_factories_save_foreach): collect the session info + detials from the dialogs before serializing because serialize() + doesn't know about the widget any longer. Clear the infos after + serializing. + + (gimp_dialog_factories_restore_foreach): clear the session info + details after creating the dialogs because restore() doesn't clear + the info by itself any longer. + +2008-05-13 Michael Natterer + + * app/widgets/gimpsessioninfo.c: turn "info != NULL" checks into + "GIMP_IS_SESSION_INFO (info)". + +2008-05-13 Michael Natterer + + * app/widgets/gimpsessioninfo.[ch]: turn into a GimpObject + subclass. No logical changes yet. + + * app/widgets/widgets-types.h + * app/widgets/gimpdialogfactory.c: changed accordingly. + +2008-05-13 Michael Natterer + + First prototype of a button in the levels tool dialog that will + jump the the curves tool with the same settings: + + * app/gegl/gimplevelsconfig.[ch]: add new function + gimp_levels_config_to_curves_config() which converts a + GimpLevelsConfig to a GimpCurvesConfig. Still lacks support + for gamma. + + * app/tools/gimplevelstool.c: add "Edit this Settings as Curves" + button and jump to curves when clicked. Still ugly. + +2008-05-13 Sven Neumann + + * app/core/gimpcurve-map.c (gimp_curve_map_pixels): use memcpy() + for the CURVE_NONE case. + +2008-05-13 Sven Neumann + + * app/core/gimpcurve-map.[ch] (gimp_curve_map_pixels): introduced + an enum to clean up the code. Optimize another not so uncommon case. + +2008-05-13 Sven Neumann + + * app/core/gimpcurve-map.c (gimp_curve_map_pixels): create a + bitmask that represents the curves that need to be applied and + optimize the most common cases. + +2008-05-13 Simon Budig + + * app/vectors/vectors-types.h: add a comment explaining the hack. + +2008-05-13 Sven Neumann + + * app/core/gimpcurve-map.c (gimp_curve_map_value): simplified the + general case. + +2008-05-13 Sven Neumann + + * app/core/gimpcurve.[ch]: keep a boolean flag to identify an + identity mapping. Set it to TRUE when the curve is reset. + + * app/core/gimpcurve-map.c (gimp_curve_map_value): optimize for + the case where the curve is an identity mapping. + +2008-05-12 Simon Budig + + * app/vectors/gimpvectors.[ch] + * app/vectors/gimpstroke.[ch] + * app/vectors/gimpbezierstroke.c: Implement functionality to + get a bezier description a la moveto/curveto/closepath. + + * app/vectors/vectors-types.h: implement an evil hack to avoid + the inclusion of cairo.h in most C files... + + * app/vectors/Makefile.am: link against cairo + + * app/widgets/gimpviewrenderervectors.c: use the new functionality + for preview rendering. + +2008-05-11 Sven Neumann + + * app/core/Makefile.am + * app/core/gimpcurve.[ch]: + * app/core/gimpcurve-map.[ch]: split curve map functions into + seperate files. + + * app/gegl/gimpoperationcurves.c + * app/tools/gimpcurvestool.c + * app/widgets/gimpcurveview.c: changed accordingly. + + * app/Makefile.am (AM_LDFLAGS): make it link. + +2008-05-11 Sven Neumann + + * app/core/gimpcurve.[ch]: renamed gimp_curve_map() to + gimp_curve_map_value(). Added new function gimp_curve_map_pixels() + which will allow for better optimization. + + * app/gegl/gimpoperationcurves.c (gimp_operation_curves_process): + use gimp_curve_map_pixels(). + + * app/tools/gimpcurvestool.c + * app/widgets/gimpcurveview.c: follow API change. + +2008-05-11 Martin Nordholts + + * app/tools/gimpcroptool.[ch]: No need to expose definitions of + GimpCropTool or GimpCropToolClass. + +2008-05-11 Martin Nordholts + + * app/tools/gimprectangletool.c: Fix emission of + rectangle-change-complete signals. + + * app/tools/gimpcroptool.c + * app/tools/gimprectangleselecttool.c: + Use the rectangle-change-complete signal to update the default + aspect ratio. Fixes bug #530519. + + * app/tools/gimpcroptool.c + (gimp_crop_tool_button_release) + (gimp_crop_tool_options_notify) + * app/tools/gimprectangleselecttool.c + (gimp_rectangle_select_tool_button_release): No need to explicitly + update option defaults since it is handled through the + rectangle-change-complete signal now. + +2008-05-11 Sven Neumann + + * app/core/gimpcurve.[ch] (gimp_curve_map): minor cleanup. + +2008-05-11 Sven Neumann + + * plug-ins/common/web-browser.c (browser_open_url): improved error + messages as suggested in bug #522483. + +2008-05-11 Sven Neumann + + * app/gegl/gimpoperationlevels.c (gimp_operation_levels_map): + optimized for the case where gamma is 1.0. + +2008-05-11 Michael Natterer + + * app/widgets/gimpaction.[ch]: add an "ellipsize" property that is + applied to all proxy menu items' labels. + + * app/actions/windows-actions.c: set the dock actions to + PANGO_ELLIPSIZE_END because their labels can be insanely long. + +2008-05-11 Michael Natterer + + * app/widgets/gimpaction.c (gimp_action_set_proxy): small cleanup. + +2008-05-11 Michael Natterer + + * app/actions/windows-commands.[ch] + * app/actions/windows-actions.c + * app/menus/windows-menu.c: add dynamic actions and menu items for + all open docks. Present the dock when the menu item is selected. + +2008-05-10 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_button_press): Active the tool control + earlier. + (gimp_rectangle_tool_synthesize_motion): Bail out if the tool + control is active, we don't want to synthesize a motion in this + case as it emits unwanted rectangle-changed signals. + +2008-05-10 Michael Natterer + + * app/widgets/gimpdialogfactory.[ch]: add signals "dock-added" and + "dock-removed". + + (gimp_dialog_factory_add_dialog) + (gimp_dialog_factory_remove_dialog): emit them when docks get + added and removed. + +2008-05-10 Michael Natterer + + * app/actions/windows-actions.c: renamed the "Create New Dock" + submenu to simply "Docks". Its contents are about ti change soon. + + * menus/image-menu.xml.in: changed accordingly. Added a "Docks" + placeholder inside and add the "show toolbox" menu item there. + +2008-05-10 Michael Natterer + + * app/core/gimplist.[ch]: add boolean "append" property which + makes gimp_container_add() append to the list instead of the + default prepend. + + * app/core/gimp.c: create the display list with append = TRUE so + the images menu is in a proper order. + +2008-05-10 Michael Natterer + + * app/actions/windows-actions.c: don't hide the empty images menu, + use gimp_image_get_uri() instead of the object's name. + +2008-05-10 Michael Natterer + + * app/widgets/gimpactiongroup.h: fix parameter name. + +2008-05-10 DindinX + + * plug-ins/flame/cmap.c + * plug-ins/flame/libifs.c + * plug-ins/flame/rect.[ch]: cleaning (mostly code reformating and + converting K&R style function declarations to ansi). + + * plug-ins/common/pcx.c: reformated as well. + +2008-05-10 Michael Natterer + + Start changing the "Dialogs" menu to "Windows", still incomplete. + Addresses bug #309707. + + * app/actions/Makefile.am + * app/actions/windows-actions.[ch] + * app/actions/windows-commands.[ch]: new files which currently + hold the "show toolbox" action and callback and new code which + maintains automatically generated actions for accessing (raising) + all open images. + + * app/actions/actions.c: register the new "windows" action group. + + * app/actions/dialogs-actions.c + * app/actions/dialogs-commands.[ch]: remove "show toolbox" + action and callback and also the action for the "Disalogs" menu. + + * app/menus/Makefile.am + * app/menus/windows-menu.[ch]: new files which create and destroy + the menu items for the image window actions. + + * app/menus/menus.c: register the "windows" action group with + all UI managers that have the "dialogs" action group. + + * app/menus/image-menu.c (image_menu_setup): call + windows_menu_setup(). + + * app/gui/gui.c: s/dialogs_show_toolbox/windows_show_toolbox/g + + * menus/image-menu.xml.in: some minor s/dialogs/windows/ + and add the "Images" submenu. + +2008-05-10 Michael Natterer + + * app/display/gimpdisplay.c (gimp_display_set_image): emit + notify::image. + +2008-05-10 Martin Nordholts + + * app/tools/gimprectangleselecttool.c + (gimp_rectangle_select_tool_cancel): Don't forget updating the + default aspect ratio when cancelling a rectangle select. + +2008-05-10 Sven Neumann + + * app/tools/gimptexttool.c (gimp_text_tool_confirm_response): + rerender the text layer as suggested in bug #532078. + (gimp_text_tool_confirm_dialog): minor dialog improvements. + +2008-05-10 Sven Neumann + + * plug-ins/flame/libifs.c: removed trailing whitespace. + +2008-05-10 Sven Neumann + + * app/core/gimpbrush-scale.c: formatting. + +2008-05-10 Sven Neumann + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_real_draw): + reset the translation on the cairo context. Resurrects brush + emblems which were drawn in the wrong position. + + * app/widgets/gimpviewrendererbrush.c (gimp_view_renderer_brush_draw): + formatting. + +2008-05-10 Michael Natterer + + * plug-ins/common/gtm.c: renamed... + + * plug-ins/common/html-table.c: ...to this and cleaned it up. + + * plugin-defs.pl: changed accordingly. + * Makefile.am: regenerated. + +2008-05-10 Manish Singh + + * plug-ins/common/poppler.c: Support poppler 0.8.x. + +2008-05-10 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_button_release): Don't forget updating the + integer representation when reverting the rectangle after + cancelling a rubber-banding. + +2008-05-10 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_button_release): Update the tool options + after a release; the rectangle might change if a rubber-banding is + cancelled. + +2008-05-10 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_events) (gimp_display_shell_canvas_tool_events): + don't reserve Delete for use by tools. Fixes bug #532116. + + * app/tools/gimpimagemaptool.c + * app/tools/gimptransformtool.c: don't use Delete (you can still + use the Backspace key to achieve the same). + +2008-05-10 Manish Singh + + * plug-ins/imagemap/Makefile.am: tweak the rules for rebuilding the + parser files from lex/yacc source so that they are explicit instead + of potentially being run implicitly because the file dates are off. + +2008-05-10 Michael Natterer + + * app/gimp-log.[ch]: add SHADOW_TILES log domain. + + * app/plug-in/gimpplugin-cleanup.c (gimp_plug_in_cleanup_item): + turn commented-out g_printerr() into a GIMP_LOG() + +2008-05-10 Michael Natterer + + Applied modified patch from Alexia Death which adds velocity + support to paint tools in the spirit of the pressure support we + already have. Fixes bug #529431. + + * app/display/gimpdisplayshell-coords.c + (gimp_display_shell_eval_event): tweak velocity calculation to + work in screen coordinates. + + * app/paint/gimppaintoptions.[ch]: add velocity options in the + same way as there are pressure options. Add utility functions + which return dynamic opatity and dynamic rate according to the + option's settings and some GimpCoords' pressure and velocity. + + * app/tools/gimppaintoptions-gui.c: add GUI for the velocity + options. + + * app/paint/gimpbrushcore.h: remove PRESSURE_SCALE define, it's + now in gimppaintoptions.h. + + * app/paint/gimpbrushcore.c (gimp_brush_core_interpolate): + inerpolate velocity too. + + (gimp_brush_core_calc_brush_scale): take velocity into account. + + (gimp_brush_core_get_brush_mask): always pressurize the mask in + the GIMP_BRUSH_PRESSURE because there always is velocity (unlike + pressure which is only there on tablets). + + * app/paint/gimpairbrush.c + * app/paint/gimpclone.c + * app/paint/gimpconvolve.c + * app/paint/gimpdodgeburn.c + * app/paint/gimperaser.c + * app/paint/gimpheal.c + * app/paint/gimppaintbrush.c + * app/paint/gimpsmudge.c: get opacity and rate from the new paint + options utility functions which take both pressure and velocity + into account. + + * app/paint/gimppaintbrush.c: take velocity into account when + calculating the gradient color offset. + + * app/paint/gimpairbrush.c: do some additional fiddling with + velocity in the asynchronous airbrush timeout. + + * app/paint/gimpairbrushoptions.c: override the velocity-size + property and have it default to FALSE. + +2008-05-10 Martin Nordholts + + * app/tools/gimpcroptool.c: Add a GimpRectangleTool::cancel() + implementation that updates default aspect ratio when cancelling a + crop. + +2008-05-09 Martin Nordholts + + * app/tools/gimpcroptool.[ch]: Keep track of the current image and + manage a subscription to "size-changed" so that default aspect + ratio is properly updated. (Bug #532057.) + (gimp_crop_tool_execute): No need to explicitly call + gimp_crop_tool_update_option_defaults() any longer. + +2008-05-09 Simon Budig + + * app/core/gimpscanconvert.[ch]: expose the internal most + flexible rendering function. Make use of the miter limit + again. + +2008-05-09 Sven Neumann + + * configure.in: lowered minimum required cairo version to 1.4.10. + +2008-05-09 Simon Budig + + * app/core/gimpscanconvert.[ch]: kind of resurrect the + blending modes, although now implemented as compositing + on top of the existing content of a mask. + + * app/tools/gimpforegroundselecttool.c: changed accordingly + +2008-05-09 Simon Budig + + * app/core/gimpscanconvert.c: resurrect dashed strokes. + +2008-05-09 Sven Neumann + + * configure.in: check for a minimum required cairo version (1.4.14). + + * app/core/gimpscanconvert.c: copied some code from cairo until + we depend on cairo 1.6. + +2008-05-09 Sven Neumann + + * HACKING + * INSTALL: removed mentions of libart, added a link for cairo. + +2008-05-09 Simon Budig + + * app/core/gimpscanconvert.[ch]: removed Libart usage, + replaced with Cairo. Dashed strokes do not yet work again, will + happen tomorrow. Also the blending modes need a second look at. + + Also removed deprecated API which made it unnecessarily complicated. + + * app/tools/gimpiscissorstool.c: use the current API. + + * app/core/Makefile.am + * app/Makefile.am + * configure.in: removed libart dependency, added cairo dependency + where necessary. + +2008-05-08 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_events): don't call gtk_widget_grab_focus() here. + + (gimp_display_shell_canvas_tool_events): call it here instead and + add comments about how BUTTON_PRESS and FOCUS_IN interact. + + Return TRUE from BUTTON_PRESS, BUTTON_RELEASE and MOTION_NOTIFY. + +2008-05-08 Sven Neumann + + * themes/Default/gtkrc + * themes/Small/gtkrc: further shrink the status-bar widgets. + +2008-05-08 Sven Neumann + + * app/display/gimpscalecombobox.c (gimp_scale_combo_box_init): + removed the entry's inner border to save some precious space in + the status-bar. + +2008-05-08 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_events): move the focus to the canvas on + button-press events. + + * app/widgets/gimpwindow.c (gimp_window_key_press_event): removed + use of G_UNLIKELY() that was somewhat bogus here. + +2008-05-08 Sven Neumann + + * app/widgets/gimpfiledialog.[ch]: added infrastructure to access + and set some state information of the GtkFileChooser. + + * app/dialogs/file-open-dialog.c + * app/dialogs/file-save-dialog.c: don't keep the file-chooser + dialogs around. Instead keep the state attached to the Gimp object + (one state for load, one for save dialogs). Closes bug #528811. + +2008-05-08 Sven Neumann + + * app/widgets/widgets-types.h + * app/widgets/gimpfiledialog.c: formatting. + +2008-05-07 Martin Nordholts + + * app/tools/gimpcroptool.c (gimp_crop_tool_image_changed): Make it + feel like a class member function by G_CONNECT_SWAPPED-izing it. + +2008-05-07 Sven Neumann + + * app/plug-in/gimpplugin-cleanup.c (gimp_plug_in_cleanup_item): + commented out debug message. + +2008-05-07 Sven Neumann + + * plug-ins/common/blur-gauss-selective.c: allocate temporary + memory on the stack. Minor code cleanups. + +2008-05-06 Michael Natterer + + * app/plug-in/gimpplugin-message.c: split + gimp_plug_in_handle_tile_request() into two functions: + gimp_plug_in_handle_tile_put() and gimp_plug_in_handle_tile_get(). + +2008-05-06 Michael Natterer + + * app/plug-in/gimpplugin-message.c + (gimp_plug_in_handle_proc_install): show an error message instead + of crashing when a plug-in registers a prodecure with a NULL + argument or return value name. Also introduce two macros which + make the utf-8 validation of all strings much more readable. + +2008-05-06 Sven Neumann + + * plug-ins/common/gbr.c: improved procedure blurb and help. + + * libgimpcolor/gimpcolorspace.c: inline gimp_hsl_value() and + gimp_hsl_value_int(). + +2008-05-06 Sven Neumann + + * plug-ins/script-fu/scripts/3d-outline.scm: applied patch from + Ulf-D. Ehlert. Makes the vacated region, which is created when + specifying a non-zero shadow offset, to be filled with the + background color (white) instead of transparency (bug #530216). + +2008-05-06 Sven Neumann + + * libgimpwidgets/gimpcolorprofilestore.c + (gimp_color_profile_store_load_profile): check if the file exists + before adding it to the history. Fixes bug #528958. + +2008-05-05 Michael Natterer + + * app/actions/drawable-commands.c + (drawable_levels_stretch_cmd_callback): the second parameter of + gimp_drawable_levels_stretch() is now a GimpProgress. + +2008-05-05 Sven Neumann + + * plug-ins/common/unsharp-mask.c (gen_convolve_matrix): fixed + algorithm to calculate the center value. Fixes bug #530077. + +2008-05-05 Sven Neumann + + * plug-ins/common/blinds.c (MAX_FANS): increased the maximum + number of blinds to 100. + +2008-05-05 Sven Neumann + + * app/tools/gimppainttool.c + * app/display/gimpdisplayshell-coords.c: applied patch from Alexia + Death which changes the maximum smoothing for paint tools to a more + conservative default and adds velocity dependent smooth suppression. + +2008-05-05 Sven Neumann + + * configure.in (ALL_LINGUAS): added Icelandic (is). + +2008-05-02 Martin Nordholts + + * gimptexttool.[ch] + * gimprectangletool.[ch] + * gimprectangleselecttool.c: Renamed the "rectangle-changed" + signal to "rectangle-change-complete" which is much better name + since the signal is not emited when the rectangle is changed, but + when the change is complete. + +2008-05-02 Martin Nordholts + + * plug-ins/flame/libifs.c: Use g_random_int() instead of rand(). + +2008-05-01 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_active_modifier_key): Minor simplification. + +2008-04-30 Martin Nordholts + + * app/tools/gimpcroptool.c: Align static function prototpyes. + +2008-04-30 Sven Neumann + + * app/display/gimpscalecombobox.c + (gimp_scale_combo_box_entry_key_press): also handle the Tab keys + and call the "activate" handler when Tab is pressed. + +2008-04-30 Sven Neumann + + * app/display/gimpscalecombobox.c: install a "key-press-event" + handler and reset the entry when the Escape key is pressed. + +2008-04-29 Sven Neumann + + * themes/Default/gtkrc + * themes/Small/gtkrc: reduce the minimum array size for + GtkComboBox widgets in the image window. + +2008-04-29 Sven Neumann + + * app/display/gimpscalecombobox.[ch]: added signal "entry-activated". + + * app/display/gimpstatusbar.c (gimp_statusbar_new): connect to the + new signal and move the focus to the canvas. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): comment. + +2008-04-29 Sven Neumann + + * app/widgets/gimpwindow.c (gimp_window_key_press_event): formatting. + +2008-04-28 Sven Neumann + + * app/display/gimpscalecombobox.c: keep the current scale value, + beep and reset the entry when the user input cannot be parsed. + Also changed the input parser to interpret a single number as a + percentage. + +2008-04-28 Joao S. O. Bueno + + * app/pdb/drawable-transform-cmds.c + * app/pdb/vectors-cmds.c: regenerated + +2008-04-28 Sven Neumann + + * app/display/gimpscalecombobox.[ch]: derive from GtkComboBoxEntry. + Needs some more work with respect to input validation and focus + handling... + +2008-04-28 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimpwindow.[ch]: added GimpWindow class and moved + key-press-event handler from GimpDock to this class. + + * app/widgets/gimpdock.[ch]: + * app/display/gimpdisplayshell.[ch]: derive from GimpWindow. + +2008-04-28 Sven Neumann + + * app/base/hue-saturation.c (hue_saturation): applied patch from + Michael Deal that fixes use of the overlap option (bug #527085). + +2008-04-28 Sven Neumann + + * menus/image-menu.xml.in: removed GEGL tool from the Colors menu + and also moved it out of the color tools menu. + +2008-04-26 JoÃŖo S. O. Bueno + + * AUTHORS + * authors.xml + * tools/pdb/stddefs.pdb: Fix my name back to single + name in most important files. + +2008-04-26 Michael Natterer + + * app/tools/gimpgegltool.c: clean up last commit. + +2008-04-26 Martin Nordholts + + * plug-ins/flame/libifs.c: Applied patch from Aurimas JuÅĄka. Use + the standard rand() instead of random(). + +2008-04-26 Øyvind KolÃĨs + + * app/tools/gimpgegltool.c: (gimp_get_subtype_classes), + (gimp_gegl_tool_compare_operation_names), (gimp_get_geglopclasses), + (gimp_gegl_tool_dialog): made the GEGL tool only show ops from + relevant categories, the list of relevant categories is hard coded + for now. + +2008-04-26 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_options_notify): No need to bail out if there + is no display. + +2008-04-26 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_options_notify): Some more simplifications + and cleanups. + +2008-04-26 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_options_notify): Simplifications and + cleanups. + +2008-04-26 Michael Natterer + + * menus/image-menu.xml.in: the gegl tool was missing from the + "Tools" menu. + +2008-04-26 Martin Nordholts + + * plug-ins/flame/flame.c + * plug-ins/flame/libifs.[ch]: Applied modified patch from Luis + Barrancos that adds 22 new variations to the flame plugin (bug + #389004). + +2008-04-25 Michael Natterer + + * app/paint/gimppaintoptions.c (gimp_paint_options_get_jitter): + add g_return_if_fail(). + + * app/paint/gimpheal.c (gimp_heal_motion) + * app/paint/gimpdodgeburn.c (gimp_dodge_burn_motion): free stuff + right after it's not used any longer, instead of at the end of the + function. + + * app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): move a + statement to improve consistency with other motion() functions. + +2008-04-25 Michael Natterer + + * plug-ins/print/print.c (query): fix help string of the page + setup procedure. + +2008-04-25 Sven Neumann + + * app/app.c + * app/gegl/gimp-gegl.c: reverted change from 2008-01-31. Use the + GEGL option group again now that GEGL provides some commmand-line + options. + +2008-04-25 Michael Natterer + + * app/paint/gimppaintoptions.[ch]: reorder jitter options stuff to + be consistently ordered all over the place. + +2008-04-25 Michael Natterer + + * app/widgets/gimpdock.c + * libgimpwidgets/gimpcellrenderertoggle.c: minor cosmetics. + +2008-04-25 Sven Neumann + + * app/widgets/gimptoolbox.c: do not any longer accept + middle-mouse-button paste on the toolbox buttons but use the + toolbox drop area for that. + +2008-04-25 Sven Neumann + + * app/actions/dock-actions.c (dock_actions): removed default + keyboard shortcut for "dock-close". + +2008-04-24 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_options_notify): Do appropriate equal and + not-equal comparisons for floting point numbers. Fixes + bug #527863. + +2008-04-23 Sven Neumann + + * libgimpwidgets/gimpnumberpairentry.c + (gimp_number_pair_entry_modify_font): formatting. + +2008-04-22 Michael Natterer + + * app/actions/view-actions.c (view_actions_update): simplify call + to window_actions_update() (we already have a local "shell" + variable that is NULL when there is no display). + +2008-04-22 Michael Natterer + + * app/sanity.c: add check for the GEGL version. + +2008-04-22 Sven Neumann + + * app/display/gimpstatusbar.c (gimp_statusbar_frame_size_request): + take vertical padding into account to avoid resizing the statusbar. + +2008-04-21 Michael Natterer + + * app/plug-in/gimpplugin-cleanup.c: do the actual cleanup in + utility functions and reduce gimp_plug_in_cleanup() to merely + iterating the cleanup lists. + +2008-04-21 Michael Natterer + + Move the shadow tiles from the image to the drawable. + Fixes bug #100469. + + * app/core/Makefile.am + * app/core/gimpdrawable-shadow.[ch]: new files implementing + the shadow tiles. + + * app/core/gimpimage.[ch]: remove the shadow tile manager from the + GimpImage struct. Remove gimp_image_get_shadow_tiles() and + _free_shadow_tiles(). + + * app/core/gimpdrawable.[ch]: add the shadow tile manager + here. Remove get_shadow_tiles() and merge_shadow(). Free the + shadow tiles in finalize and when the drawable gets removed from + the image. + + * app/core/gimpdrawable-brightness-contrast.c + * app/core/gimpdrawable-color-balance.c + * app/core/gimpdrawable-colorize.c + * app/core/gimpdrawable-curves.c + * app/core/gimpdrawable-desaturate.c + * app/core/gimpdrawable-equalize.c + * app/core/gimpdrawable-hue-saturation.c + * app/core/gimpdrawable-invert.c + * app/core/gimpdrawable-levels.c + * app/core/gimpdrawable-operation.c + * app/core/gimpdrawable-posterize.c + * app/core/gimpdrawable-threshold.c + * app/core/gimpimagemap.c: changed accordingly. Free the shadow tiles + after using them. + + * app/plug-in/gimpplugin-cleanup.[ch]: add + gimp_plug_in_cleanup_add_shadow() and _remove_shadow() which keep + track of whether shadow tiles were created on behalf of a plug-in + procedure. + + (gimp_plug_in_cleanup): free shadow tiles which were created but + not destroyed by a plug-in procedure. + + * app/plug-in/gimpplugin-message.c (plug_in_handle_tile_request): + call gimp_plug_in_cleanup_add_shadow() whenever a plug-in requests + shadow tiles. + + * tools/pdbgen/pdb/drawable.pdb: use the new drawable shadow + API. Add new procedure gimp-drawable-free-shadow. Call + gimp_plug_in_cleaup_remove_shadow() when it gets called. + + * tools/pdbgen/pdb/image.pdb: deprecate gimp-image-free-shadow. + Calling it has no effect any longer. + + * app/pdb/drawable-cmds.c + * app/pdb/image-cmds.c + * app/pdb/internal-procs.c + * libgimp/gimpimage_pdb.[ch] + * libgimp/gimpdrawable_pdb.[ch]: regenerated. + +2008-04-21 Sven Neumann + + * plug-ins/common/psp.c: applied patch from Christoph Brill which + adds enum values and typedefs used in newer versions of the PSP + file format (see bug #120757). + +2008-04-21 Michael Natterer + + * libgimpmath/gimpmd5.c (gimp_md5_get_digest): moving a cast to + the right parameter fixes two warnings. + +2008-04-21 Sven Neumann + + * plug-ins/common/curve-bend.c (run): fixed handling of + "argc-lower-val-y" PDB parameter. + +2008-04-20 Michael Natterer + + * app/core/gimpdrawable-levels.[ch]: replaced unused parameter + "context" by "progress" and pass the progress on internally. + Factor common code out to gimp_drawable_levels_internal(). + + * tools/pdbgen/pdb/color.pdb: pass progress instead of context. + + * app/pdb/color-cmds.c: regenerated. + +2008-04-19 Sven Neumann + + * plug-ins/common/psp.c: untabified. + +2008-04-19 Michael Natterer + + * app/core/gimpdata.c: prototype indentation and minor declatation + and function reordering for the sake of consistency. + +2008-04-18 Sven Neumann + + * app/tools/gimpblendtool.c (gimp_blend_tool_draw): don't draw the + handles on pixel centers, we don't blend between pixel centers. + +2008-04-17 Michael Natterer + + Add some infrastructure that will be used soon: + + * app/plug-in/gimppluginprocframe.[ch]: replace "cleanup" list + by two lists "image_cleanups" and "item_cleanups" and call + gimp_plug_in_cleanup() if any of them is non-NULL. + + * app/plug-in/gimpplugin-cleanup.c: add private new() and free() + functions for GimpPlugInCleanupImage structs and add the same + infrastructure for GimpPlugInCleanupItem structs which are + currently unused. + +2008-04-17 Michael Natterer + + * configure.in: add G_DISABLE_SINGLE_INCLUDES to CPPFLAGS. + +2008-04-17 Michael Natterer + + * configure.in: remove AC_HEADER_DIRENT, we use GDir all over the + place now. + +2008-04-16 Michael Natterer + + * app/display/gimpdisplayshell-coords.c + (gimp_display_shell_eval_event): remove local "inertia" variable + and simply modify the passed "inertia_factor" when needed. + +2008-04-16 Sven Neumann + + * app/config/test-config.c: initialize the units vtable in + libgimpbase instead of trying to override symbols from it. + Fixes bug #528160. + +2008-04-15 Michael Natterer + + * app/display/gimpdisplayshell-coords.c + (gimp_display_shell_eval_event): fix calculation of filter + distance, it was missing a 1 / zoom_factor. Moved variables to + local scope. Remove redundant thistime variable. Turned const + gdouble into a #define. + +2008-04-14 Sven Neumann + + * plug-ins/pygimp/gimpfu.py (_query.make_params): strip mnemonics + from parameter names before passing them to gimp.install_procedure(). + +2008-04-14 Sven Neumann + + * app/plug-in/gimpplugin-message.c: renamed + gimp_plug_in_handle_tile_req() to gimp_plug_in_handle_tile_request(). + +2008-04-14 Michael Natterer + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_tile_req): + made messages about killed plug-ins due to invalid tile requests + more verbose. They are good for debugging only and not translated, + so more info can't hurt. Also fail (kill the plug-in) if a tile is + requested that lives on the undo stack. + +2008-04-14 Sven Neumann + + * app/tools/gimppolygonselecttool.c: formatting. + +2008-04-14 Michael Natterer + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_button_release): simplify and fix logic + to do the "right" thing. Hard to describe, try youself ;) + +2008-04-14 Sven Neumann + + * app/display/gimpstatusbar.c: introduced a #define for the spacing + between the icon and the statusbar label. + +2008-04-14 Michael Natterer + + * libgimpbase/gimpmemsize.c: #undef GIMP_DISABLE_DEPRECATED so + gimp_memsize_to_string() sees its own prototype. + +2008-04-14 Sven Neumann + + * app/display/gimpstatusbar.c (gimp_statusbar_label_expose): fixed + icon placement for right-to-left render direction. + +2008-04-14 Sven Neumann + + * app/display/gimpstatusbar.[ch]: rewritten the code that draws + the icon in the statusbar label. The new code gives nicer spacing. + +2008-04-14 Sven Neumann + + * plug-ins/jpeg/jpeg.h + * plug-ins/jpeg/jpeg-exif.c + * plug-ins/jpeg/jpeg-load.c: rotate the thumbnail according to the + EXIF orientation as required by the updated thumbnail spec. + +2008-04-14 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip) + * app/display/gimpstatusbar.c (gimp_statusbar_progress_start) + * app/gui/gui.c (gui_menu_show_tooltip): push a NULL stock-id. + +2008-04-14 Sven Neumann + + * app/display/gimpstatusbar.c (gimp_statusbar_label_expose): added + a sanity check. + + * app/display/gimpdisplayshell-layer-select.c: formatting. + +2008-04-14 Sven Neumann + + * app/display/gimpstatusbar.[ch]: added stock-id parameters to all + statusbar setters. + + * app/display/gimpdisplayshell-title.c: pass NULL as stock-id. + + * app/tools/gimptool.c: pass the tool icon to the statusbar. + + * app/tools/gimpeditselectiontool.c (gimp_edit_selection_tool_start): + inherit the tool-info from the parent tool. + +2008-04-13 Sven Neumann + + * app/tools/gimptool.h: formatting. + +2008-04-13 Sven Neumann + + * app/widgets/gimpunitcombobox.c: added "label-scale" style property. + + * app/display/gimpscalecombobox.[ch]: ditto. Also removed the + support for extra action items. + + * app/display/gimpstatusbar.c: changed accordingly. + + * themes/Default/gtkrc + * themes/Small/gtkrc: use a smaller font for the combo-box labels + in the statusbar. + +2008-04-13 Michael Natterer + + * app/tools/gimpiscissorstool.c: minor cosmetics. + + * cursors/gimp-tool-cursors.xcf: add the new SELECT modifier. + +2008-04-12 Martin Nordholts + + Applied modified patch from Daniel Hornung that changes the mouse + cursor to a "clicking will create a selection"-icon when hovering + the center of a pending Scissors Select Tool selection (bug #493370) + + * app/tools/gimpiscissorstool.c + (gimp_iscissors_tool_cursor_update): Use the new cursor icon. + + * cursors/modifier-select.png + * cursors/xbm/modifier-select.xbm + * cursors/xbm/modifier-select-mask.xbm: New cursor icon. + + * cursors/makefile.msc + * cursors/Makefile.am + * app/widgets/gimpcursor.c + * app/widgets/widgets-enums.h: Changed accordingly. + +2008-04-12 Martin Nordholts + + * plug-ins/script-fu/scripts/3d-outline.scm + * plug-ins/script-fu/scripts/alien-glow-logo.scm + * plug-ins/script-fu/scripts/alien-neon-logo.scm + * plug-ins/script-fu/scripts/basic1-logo.scm + * plug-ins/script-fu/scripts/basic2-logo.scm + * plug-ins/script-fu/scripts/blended-logo.scm + * plug-ins/script-fu/scripts/bovinated-logo.scm + * plug-ins/script-fu/scripts/chalk.scm + * plug-ins/script-fu/scripts/chip-away.scm + * plug-ins/script-fu/scripts/chrome-logo.scm + * plug-ins/script-fu/scripts/comic-logo.scm + * plug-ins/script-fu/scripts/coolmetal-logo.scm + * plug-ins/script-fu/scripts/frosty-logo.scm + * plug-ins/script-fu/scripts/glossy.scm + * plug-ins/script-fu/scripts/glowing-logo.scm + * plug-ins/script-fu/scripts/gradient-bevel-logo.scm + * plug-ins/script-fu/scripts/neon-logo.scm + * plug-ins/script-fu/scripts/script-fu-util.scm + * plug-ins/script-fu/scripts/starburst-logo.scm + * plug-ins/script-fu/scripts/starscape-logo.scm + * plug-ins/script-fu/scripts/t-o-p-logo.scm + * plug-ins/script-fu/scripts/textured-logo.scm: Applied patch from + Ulf-D. Ehlert that makes the Alpha to Logo-filters more gracefully + handle images with many layers (bug #498480). + +2008-04-12 Martin Nordholts + + * app/core/gimpimage-snap.c (gimp_image_snap_rectangle): Applied + patch from Mark Locascio that makes the center point of rectangles + snap (bug #527659). + +2008-04-11 Michael Natterer + + * app/display/gimpdisplayshell-appearance.c + (gimp_display_shell_appearance_update): don't call + gtk_widget_set_name() on a NULL menubar. + +2008-04-11 Sven Neumann + + * libgimpwidgets/gimppropwidgets.c (gimp_prop_size_entry_new): + reduced spacing between entry and unit menu. + +2008-04-11 Sven Neumann + + * app/tools/gimptextoptions.c (gimp_text_options_gui): tweaked the + layout to save a few pixels. + +2008-04-11 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): + unfullscreen the window before doing anything else. + +2008-04-11 Michael Natterer + + * app/display/gimpdisplayshell-appearance.c + (gimp_display_shell_appearance_update): don't show the status + bar's resize grip in fullscreen mode. + +2008-04-11 Michael Natterer + + * plug-ins/print/print-preview.c: unset the move cursor in + GtkWidget::leave_notify_event() so it always gets unset when the + pointer leaves the widget. + +2008-04-10 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): + fixed compilation on Win32 (bug #527300). + +2008-04-10 Sven Neumann + + * app/display/gimpstatusbar.[ch] (gimp_statusbar_progress_message): + improved the check if the message can be shown in the statusbar. + Do not show messages that don't fit into the given space. + + * app/gui/gui-message.c (gui_message_error_dialog): if there's + already an error dialog associated with a progress, then use it. + +2008-04-10 Michael Natterer + + * app/widgets/gimpcomponenteditor.c: implement + GimpDocked::set_context() and set the GimpViewRenderers' + contexts. Unclear how this could have been missed since it + warned badly about NULL contexts. + +2008-04-10 Michael Natterer + + * plug-ins/pygimp/plug-ins/python-console.py + * plug-ins/script-fu/scripts/ts-helloworld.scm: fix new menu paths. + +2008-04-09 Sven Neumann + + * data/images/gimp-splash.png: flattened splash image. + +2008-04-09 Sven Neumann + + * configure.in: bumped version to 2.5.1. + +2008-04-09 Sven Neumann + + * Made 2.5.0 development release. + +2008-04-09 Sven Neumann + + * app/config/Makefile.am: fixed build of test-config. + +2008-04-09 Sven Neumann + + * plug-ins/script-fu/scripts/ts-helloworld.scm + * plug-ins/script-fu/scripts/test-sphere.scm + * plug-ins/script-fu/scripts/contactsheet.scm: register in new + menu locations. + +2008-04-09 Sven Neumann + + * plug-ins/common/border-average.c: corrected parameter description. + +2008-04-09 Sven Neumann + + * plug-ins/pygimp/plug-ins/benchmark-foreground-extract.py + * plug-ins/pygimp/plug-ins/python-console.py + * plug-ins/pygimp/plug-ins/sphere.py: register in new menu locations. + +2008-04-09 Sven Neumann + + * plug-ins/twain/twain.c: register in new menu location. + +2008-04-09 Sven Neumann + + * app/plug-in/plug-in-menu-path.c (plug_in_menu_path_map): removed + function name from debug output. + +2008-04-09 Sven Neumann + + * plug-ins/win-snap/winsnap.c + * plug-ins/common/screenshot.c + * plug-ins/script-fu/script-fu.c + * plug-ins/script-fu/scripts/*.scm: register in new menu locations. + +2008-04-09 Michael Natterer + + * app/plug-in/plug-in-menu-path.c (plug_in_menu_path_map): enable + and improve debug output for mapped menu paths. + +2008-04-09 Sven Neumann + + * app/core/core-enums.[ch] (enum GimpUndoType): changed + descriptions for the GIMP_UNDO_FS_RIGOR and GIMP_UNDO_FS_RELAX + undo types again. + +2008-04-09 Sven Neumann + + * app/widgets/gimptexteditor.c (gimp_text_editor_new): disabled + the language entry until it works. + +2008-04-09 Sven Neumann + + * app/core/core-enums.[ch] (enum GimpUndoType): better descriptions + for the GIMP_UNDO_FS_RIGOR and GIMP_UNDO_FS_RELAX undo types. + + * app/core/gimplayer-floating-sel.c: corrected a comment. + +2008-04-09 Sven Neumann + + * app/actions/edit-actions.c (edit_actions): added mnemnic for + "edit-paste-as-new" menu item. + +2008-04-09 Michael Natterer + + * menus/image-menu.xml.in: add "File/New" submenu and an "Acquire" + placeholder inside it. Removed "File/Acquire". Removed the "Xtns" + menu. + + * app/plug-in/plug-in-menu-path.[ch] (plug_in_menu_path_map): + add "menu_label" parameter and add support for mapping around + individual menu items while preserving their translation and + mnemonics. Add mappings for the known menus from "Xtns" and map + them to "File/New". + + Map everything else in "Xtns" to "Filters/Extensions". + + * app/plug-in/gimppluginmanager-menu-branch.c + (gimp_plug_in_manager_add_menu_branch): pass the menu_label so + menu branches can be mapped with their translation. + + * app/plug-in/gimppluginprocedure.c + (gimp_plug_in_procedure_add_menu_path): pass NULL because mapping + menu items which have no submenu makes no sense and is redundant. + + * app/actions/image-actions.c: remove the "Xtns" menu action. + + * app/actions/file-actions.c: add action for the "File/New" menu + and removed the "File/Acquire" action. + + * app/actions/edit-actions.c: rename "Paste as New" to + "From Clipboard". + + * menus/image-menu.xml.in: add the "From Clipboard" action to the + "File/New" menu. + +2008-04-09 Sven Neumann + + * app/core/gimpcontainer.[ch]: added new methods + gimp_container_get_{first,last}_child(). + + * app/actions/file-actions.c (file_actions_close_all_update) + * app/dialogs/layer-add-mask-dialog.c (layer_add_mask_dialog_new) + * app/dialogs/palette-import-dialog.c (palette_import_image_callback) + * app/gui/gui-vtable.c (gui_get_empty_display): + * app/widgets/gimpmenudock.c (gimp_menu_dock_image_changed): use + the new GimpContainer methods. + + * app/core/gimpundostack.c: use the new GimpContainer methods and + cleaned up the code. + +2008-04-09 Sven Neumann + + * plug-ins/script-fu/scripts/Makefile.am + * plug-ins/script-fu/scripts/sphere.scm: removed Sphere + script. It's a nice simple example but it has no real value. + + * plug-ins/script-fu/script-fu.c (script_fu_extension_init): + removed "/Xtns/Misc". + +2008-04-09 Sven Neumann + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_add_script): + marked a message for translation. Declare 'val' as const and use + an extra variable where a not const variable is needed. + +2008-04-09 Sven Neumann + + * menus/image-menu.xml.in: moved Languages to the bottom. Removed + separator from the Filters list as there was really no rule as to + what goes above and what goes below. + + * app/actions/plug-in-actions.c: added Filters->Decor submenu. + + * plug-ins/script-fu/script-fu.c (script_fu_extension_init): + removed registration of redundant menu branches. + +2008-04-08 Michael Natterer + + * menus/image-menu.xml.in: add placeholder "Help/Programming" + + * plug-ins/common/plugin-browser.c + * plug-ins/common/procedure-browser.c: move the plug-in and + procedure browsers there. + + * menus/image-menu.xml.in: moved the (now by default empty) + "Extensions" placeholder from "Xtns" to "Filters". Let's see what + cruft shows up there. + + * app/plug-in/plug-in-menu-path.c: map "Xtns/Extensions" to + "Filters/Extensions". + +2008-04-08 Michael Natterer + + Start getting rid of the "Xtns" menu: + + * app/actions/dialogs-actions.c (dialogs_toplevel_actions): + renamed "Module Manager" to "Modules". + + * menus/image-menu.xml.in: move it to "Edit/Preferences" for the + time being so it doesn't block the removal of the "Xtns" menu. + + Move "Languages" placeholder from "Xtns" to "Filters". + + * app/plug-in/plug-in-menu-path.c (menu_path_mappings): map + "Xtns/Languages" to "Filters/Languages". + +2008-04-08 Sven Neumann + + * plug-ins/common/mng.c (myalloc): removed a redundant (and wrong) + cast. + +2008-04-08 Sven Neumann + + * plug-ins/pygimp/plug-ins/Makefile.am + + * plug-ins/pygimp/plug-ins/happy-valley-relief.py: renamed to ... + * plug-ins/pygimp/plug-ins/python-eval.py: ... this. + + * plug-ins/pygimp/plug-ins/gimpcons.py: renamed to ... + * plug-ins/pygimp/plug-ins/python-console.py: ... this. + +2008-04-08 Michael Natterer + + * app/widgets/gimpdialogfactory.c + (gimp_dialog_factory_set_user_pos): set GDK_HINT_MIN_SIZE on + dialogs which had no previous sessionrc entry. Fixes the minimum + size of the very first empty display of a new GIMP installation + and shouldn't have any ill effects on other windows. + +2008-04-07 Sven Neumann + + * app/composite/gimp-composite-3dnow-test.c + * app/composite/gimp-composite-altivec-test.c + * app/composite/gimp-composite-mmx-test.c + * app/composite/gimp-composite-sse-test.c + * app/composite/gimp-composite-sse2-test.c + * app/composite/gimp-composite-vis-test.c: include + +2008-04-07 Michael Natterer + + * plug-ins/common/neon.c: renamed to... + + * plug-ins/common/edge-neon.c: ...this. Some formatting cleanup. + + * plug-ins/common/plugin-defs.pl: changed accordingly. + + * plug-ins/common/Makefile.am: regenerated. + +2008-04-07 Sven Neumann + + * app/gegl/Makefile.am (libappgegl_a_SOURCES): added missing file. + + * app/tools/tools-enums.c: regenerated. + +2008-04-07 Sven Neumann + + * app/version.c (gimp_show_library_version): tweaked verbose + version output. + +2008-04-07 Sven Neumann + + * app/tools/gimprectangletool.[ch] + * app/tools/gimptexttool.c: removed 'force-narrow' mode as it is + hard to use and just looks broken. + +2008-04-07 Sven Neumann + + * app/tools/gimprectangletool.c: formatting. + +2008-04-07 Bill Skaggs + + * app/tools/gimprectangletool.[ch]: add "force_narrow" parameter. + + * app/tools/gimptexttool.c: Force rectangle to always be narrow, + and squash a few bugs. + +2008-04-07 Sven Neumann + + * plug-ins/common/compose.c: use gimp_drawable_is_valid() to check + if a drawable ID is valid. + +2008-04-07 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-coords.[ch] + * app/tools/gimppainttool.c + * app/tools/gimptool.[ch]: applied patch from Alexia Death as + attached to bug #508639. This change makes the smoothing depend on + the active tool. + +2008-04-07 Sven Neumann + + * app/actions/templates-actions.c + * app/actions/templates-commands.c: when creating an image from a + template, skip the New Image dialog as suggested in bug #480802. + +2008-04-07 Sven Neumann + + * plug-ins/map-object/map-object-main.c (query): fixed description + of 'lighttype' parameter (bug #526679). + +2008-04-07 Sven Neumann + + * app/display/gimpdisplay-handlers.c (gimp_display_saved_handler): + use gimp_statusbar_push_temp() directly instead of going through + gimp_message(). Use the GTK_STOCK_SAVE icon for the statusbar + message. + +2008-04-07 Sven Neumann + + * plug-ins/print/print.[ch]: set the number of pages to one before + showing the dialog. Not that it would make a difference, but it + could... + +2008-04-07 Sven Neumann + + * tools/pdbgen/pdb/procedural_db.pdb (procedural_db_proc_exists): + canonicalize the procedure name and also try compat names. + + * app/pdb/procedural-db-cmds.c: regenerated. + +2008-04-06 Sven Neumann + + * tools/pdbgen/pdb/procedural_db.pdb: added new procedure + gimp-procedural-db-proc-exists. + + * app/pdb/internal-procs.c + * app/pdb/procedural-db-cmds.c + * libgimp/gimpproceduraldb_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + + * plug-ins/print/print.c (page_setup): use the new procedure. + +2008-04-06 Sven Neumann + + * plug-ins/print/print.c (page_setup): do a query for the + temporary procedure installed by the 'file-print-gtk' procedure. + Temporary solution until bug #344818 has been addressed. + +2008-04-06 Sven Neumann + + * app/display/gimpstatusbar.c: resurrected the icon in statusbar + messages. + +2008-04-05 Sven Neumann + + * app/display/gimpdisplay.[ch]: added new function + gimp_display_close() which decides if gimp_display_delete() or + gimp_display_empty() needs to be called. + + * app/display/gimpdisplay-foreach.[ch]: added new function + gimp_displays_close() and removed the 'do_quit' parameter from + gimp_displays_delete(). + + * app/gui/gui.c (gui_exit_callback): changed accordingly. + + * app/display/gimpdisplayshell-close.c: removed + gimp_display_shell_really_close() and call gimp_display_close() + instead. + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): moved + code to update the ui managers here. + + * app/actions/file-commands.c (file_save_cmd_callback) + (file_close_cmd_callback) + * app/dialogs/file-save-dialog.c (file_save_dialog_response) + * app/dialogs/quit-dialog.c (quit_close_all_dialog_response): + close displays instead of deleting them. + + * app/gui/gui-vtable.c (gui_display_delete): call + gimp_display_close(). + +2008-04-05 Sven Neumann + + * app/widgets/gimpcolormapeditor.c (gimp_colormap_editor_draw): + corrected fix for bug #511926. + +2008-04-04 Michael Natterer + + * tools/pdbgen/pdb/text_layer.pdb: reorder functions so getters + and setters are together, rename fontsize() functions to + font_size(), fix get_color() implementation. + + * app/pdb/text-layer-cmds.c + * libgimp/gimptextlayer_pdb.[ch]: regenerated. + + * libgimp/gimp.def: changed accordingly. + +2008-04-04 Sven Neumann + + * tools/pdbgen/pdb/vectors.pdb: added + gimp_vectors_new_from_text_layer(). + + * app/pdb/internal-procs.c + * app/pdb/vectors-cmds.c + * libgimp/gimpvectors_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + +2008-04-04 Sven Neumann + + * app/core/gimpselection.c (gimp_selection_float): clear the + selection as gimp_selection_extract() doesn't do this for us any + longer (see bug #510534). + +2008-04-04 Sven Neumann + + * plug-ins/psd/psd-load.c: marked string for translation (the same + string exists in the TIFF loader already). + +2008-04-04 Sven Neumann + + * app/core/gimp.c: follow renaming of internal_procs.h. + +2008-04-04 Sven Neumann + + * HACKING: updated for name change of generated files. + +2008-04-04 Sven Neumann + + * tools/pdbgen/pdb/drawable.pdb: added missing include. + + * app/pdb/drawable-cmds.c: regenerated. + +2008-04-04 Sven Neumann + + * tools/pdbgen/app.pl: changed the names of the generated files. + + * app/pdb/Makefile.am + * app/pdb/*cmds.c: renamed. + +2008-04-04 Sven Neumann + + * tools/pdbgen/app.pl: cosmetic change in the generated code. + + * app/pdb/*_cmds.c: regenerated. + +2008-04-04 Sven Neumann + + * tools/pdbgen/pdb/plug_in.pdb: cosmetics. + + * app/pdb/plug_in_cmds.c: regenerated. + +2008-04-04 Sven Neumann + + * app/pdb/gimppdb-utils.[ch]: added test for floating items. + + * tools/pdbgen/pdb/image.pdb: use it to improve error handling. + + * app/pdb/image_cmds.c: regenerated. + +2008-04-04 Sven Neumann + + * tools/pdbgen/pdb/image.pdb: improved error handling. + + * app/pdb/image_cmds.c: regenerated. + +2008-04-04 Sven Neumann + + * app/pdb/gimppdb-utils.[ch]: added utility functions to check the + image base type. + + * tools/pdbgen/pdb/convert.pdb: use it so that we get a proper + error set on failure. + + * app/pdb/convert_cmds.c: regenerated. + +2008-04-04 Sven Neumann + + * app/core/gimpimage-convert.[ch] + (gimp_image_convert_set_dither_matrix): minor cleanup. + + * tools/pdbgen/pdb/convert.pdb: changed accordingly. + + * app/pdb/convert_cmds.c: regenerated. + +2008-04-03 Michael Natterer + + * app/pdb/gimppdb-utils.c + * tools/pdbgen/pdb/text_layer.pdb: GIMP_PDB_CALLING_ERROR and + GIMP_PDB_EXECUTION_ERROR are not from the GimpPdbErrorCode + enum. Use GIMP_PDB_INVALID_ARGUMENT instead. + + * app/pdb/text_layer_cmds.c: regenerated. + +2008-04-03 Michael Natterer + + * plug-ins/help/gimphelpdomain.h: fix include guards. + +2008-04-03 Michael Natterer + + * app/core/gimpimage-convert.c (gimp_image_convert): don't accept + palettes with more than 256 colors. + + * tools/pdbgen/pdb/convert.pdb: fail here too for palettes + with > 256 colors. Fixes bug #525471. + + * app/pdb/convert_cmds.c: regenerated. + +2008-04-03 Jordi Mallach + + * configure.in (ALL_LINGUAS): Add Valencian-Catalan (ca@valencia). + +2008-04-02 Bill Skaggs + + * app/text/gimptextlayout.c + * app/tools/gimptexttool.[ch] + * app/tools/gimprectangletool.[ch] + * app/tools/gimptextoptions.c: allow resizing of text + box. This is work in progress, and needs some tweaks + and fixes. See bug #122707. + +2008-04-02 Sven Neumann + + * libgimp/gimp.def: added new symbols. + +2008-04-02 Sven Neumann + + * tools/pdbgen/Makefile.am + * tools/pdbgen/pdb/text_layer.pdb: new text layer PDB API created + by Marcus Heese (see bug #164539). + + * app/pdb/Makefile.am + * app/pdb/text_layer_cmds.c: new generated file. + + * libgimp/Makefile.am + * libgimp/gimptextlayer_pdb.[ch]: new generated files. + + * app/pdb/internal_procs.[ch] + * libgimp/gimp_pdb.h + * tools/pdbgen/groups.pl: regenerated. + +2008-04-02 Sven Neumann + + * tools/pdbgen/app.pl: special treatment for gimppdberror.h to get + a saner include order. + + * app/pdb/floating_sel_cmds.c + * app/pdb/image_cmds.c: regenerated. + +2008-04-02 Sven Neumann + + * app/pdb/gimppdb-utils.[ch]: added gimp_pdb_layer_is_text_layer(). + +2008-04-02 Sven Neumann + + * tools/pdbgen/stddefs.pdb: fixed bug in last commit. + + * app/pdb/drawable_cmds.c + * libgimp/gimpdrawable_pdb.c: regenerated. + +2008-04-02 Sven Neumann + + * tools/pdbgen/stddefs.pdb: added shortcut for contributions from + Marcus Heese. + + * tools/pdbgen/pdb/drawable.pdb: added gimp_drawable_is_text_layer(), + taken from the patch attached to bug #164539. + + * app/pdb/internal_procs.c + * app/pdb/drawable_cmds.c + * libgimp/gimpdrawable_pdb.[ch]: regenerated. + + * libgimp/gimp.def: updated. + +2008-04-02 Sven Neumann + + * app/tools/gimpperspectiveclonetool.c: removed frame around the + mode radio buttons (bug #525747). + + * app/tools/gimpdodgeburntool.c: relabelled "Mode" frame to "Range". + +2008-04-02 Sven Neumann + + * app/gui/splash.c: use gimp_pango_layout_set_weight(). + +2008-04-02 Sven Neumann + + * plug-ins/help/gimp-help-lookup.c: fixed typos in descriptions of + the command-line options. + +2008-04-02 Sven Neumann + + * plug-ins/help-browser/Makefile.am (LDADD): added GIO_LIBS. + +2008-04-02 Sven Neumann + + * app/actions/file-actions.c: don't set a help-id on items in the + Open Recent menu. + + * app/menus/file-menu.c (file_menu_setup): show a larger thumbnail + in the tooltips for recently used images. + +2008-04-02 Sven Neumann + + * plug-ins/help/Makefile.am + * plug-ins/help/gimphelpdomain.[ch] + * plug-ins/help/gimphelplocale.[ch] + * plug-ins/help/gimphelp.[ch] + * plug-ins/help/gimp-help-lookup.c: use GIO to access the help index. + +2008-04-01 Sven Neumann + + * app/display/gimpdisplayshell-title.c + (gimp_display_shell_update_title_idle): no need to translate the + empty string. + +2008-03-31 Sven Neumann + + * app/text/text-enums.[ch] + * libgimpbase/gimpbaseenums.[ch]: as a first step towards a new + text PDB API, moved GimpTextDirection and GimpTextJustification + enums to libgimpbase. + + * libgimp/gimpenums.c.tail + * tools/pdbgen/enums.pl: regenerated. + + * libgimpbase/gimpbase.def: updated. + +2008-03-31 Michael Natterer + + * plug-ins/maze/*: renamed most files and added proper headers + instead of duplicating the prototypes in each .c file that uses + them. Indentation, spacing, formatting, some general cleanup. + +2008-03-31 Michael Natterer + + * app/widgets/gimpbrusheditor.c (gimp_brush_editor_notify_brush): + Add missing code for the "spacing" property. Spotted by Jerry Baker. + +2008-03-30 Martin Nordholts + + * app/widgets/gimpcontainertreeview-dnd.c + (gimp_container_tree_view_drag_drop): Make all code paths result + in a call to gtk_drag_finish() if we return TRUE. Fixes bug + #317992. + +2008-03-30 Sven Neumann + + * app/core/gimparea.c (gimp_area_list_process): code cleanup. + +2008-03-30 Sven Neumann + + * app/core/gimparea.c (gimp_area_list_free): don't leak the memory + allocated for the GSList. + +2008-03-30 Sven Neumann + + * app/widgets/gimpcontainertreeview.c: added a finalizer that frees + the memory allocated for the cell lists. + +2008-03-30 Sven Neumann + + * app/xcf/xcf-load.c (xcf_load_image): don't leak the grid. + +2008-03-30 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_scale_changed): + never set the dest_inc and src_dec variables to zero. + +2008-03-30 Sven Neumann + + * app/display/gimpdisplayshell-cursor.[ch]: added new function + gimp_display_shell_unset_cursor(). + (gimp_display_shell_real_set_cursor): deal with cursor_type -1 and + change the cursor to the default desktop cursor. Fixes warnings on + image load. + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): + use gimp_display_shell_unset_cursor(). + +2008-03-30 Sven Neumann + + * gimpheal.c (gimp_heal_motion): applied the same cleanups as in + the gimp-2-4 branch (see bug #521433). + +2008-03-30 Michael Natterer + + * app/display/gimpcanvas.c + * app/widgets/gimpcoloreditor.c + * app/widgets/gimpcolorframe.c + * app/widgets/gimpcursorview.c + * app/widgets/gimpcurveview.c + * app/widgets/gimpdataeditor.c + * app/widgets/gimpdock.c + * app/widgets/gimpdockable.c + * app/widgets/gimpdockbook.c + * app/widgets/gimpdockseparator.c + * app/widgets/gimpeditor.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimpmenudock.c + * app/widgets/gimpsamplepointeditor.c + * app/widgets/gimptoolbox.c: chain up unconditionally in + GtkWidget::style_set() because it has a default implementation. + +2008-03-29 Michael Natterer + + * app/widgets/gimpmenudock.c (gimp_menu_dock_auto_clicked): when + the "Auto" button gets enabled, always copy both display and image + to the local context (because there can be displays without image + now). + +2008-03-29 Michael Natterer + + * app/gui/gui-vtable.c (gui_display_create): remove temporary + "object" variable, it's prefectly fine to say GIMP_DISPLAY() on a + NULL pointer. + +2008-03-29 Michael Natterer + + * configure.in: add -Wold-style-definition to CFLAGS. + +2008-03-29 Sven Neumann + + * libgimp/gimpprocview.c (gimp_proc_view_new): code cleanup. + +2008-03-29 Sven Neumann + + * libgimpmath/gimpmd5.[ch]: removed implementation of the MD5 + algorithm and delegate to GChecksum instead. + + * libgimpmath/Makefile.am + * libgimpmath/test-md5.c: removed test of the MD5 implementation. + +2008-03-29 Sven Neumann + + * plug-ins/common/lcms.c (lcms_calculate_checksum): fixed use of + GChecksum. + +2008-03-29 Michael Natterer + + * libgimpmath/gimpmd5.c: undef GIMP_DISABLE_DEPRECATED. + +2008-03-29 Michael Natterer + + * app/gui/gui-vtable.c: needs #ifdef GDK_WINDOWING_X11. + + * app/gui/gui.c: remove the include i accidentially added here. + +2008-03-29 Mukund Sivaraman + + * app/core/gimpdrawable-operation.c: Use #warning only if + compiler is gcc. + +2008-03-29 Mukund Sivaraman + + * plug-ins/imagemap/imap_cmd_move.c + * plug-ins/imagemap/imap_cmd_object_up.c + * plug-ins/imagemap/imap_cmd_move_up.c + * plug-ins/imagemap/imap_cmd_move_selected.c + * plug-ins/imagemap/imap_cmd_move_sash.c + * plug-ins/imagemap/imap_cmd_object_move.c + * plug-ins/imagemap/imap_cmd_object_down.c + * plug-ins/imagemap/imap_object.c + * plug-ins/imagemap/imap_cmd_move_down.c + * plug-ins/map-object/map-object-shade.c + * plug-ins/map-object/map-object-apply.c + * plug-ins/maze/maze.h + * plug-ins/maze/maze_face.c + * plug-ins/selection-to-path/selection-to-path.c + * plug-ins/selection-to-path/edge.c + * plug-ins/selection-to-path/pxl-outline.c + * plug-ins/selection-to-path/fit.c + * plug-ins/xjt/xjt.c + * plug-ins/metadata/xmp-parse.c + * plug-ins/print/print-draw-page.c + * plug-ins/print/print-settings.c + * plug-ins/lighting/lighting-preview.c: Cleanups / fixes for + issues reported by Sparse. + +2008-03-28 Mukund Sivaraman + + * plug-ins/common/sinus.c + * plug-ins/common/compose.c + * plug-ins/common/screenshot.c + * plug-ins/common/mng.c + * plug-ins/common/wind.c + * plug-ins/common/gif-save.c + * plug-ins/common/video.c + * plug-ins/common/sphere-designer.c + * plug-ins/common/hot.c + * plug-ins/common/red-eye-removal.c + * plug-ins/common/tile-small.c + * plug-ins/common/gbr.c + * plug-ins/common/jigsaw.c + * plug-ins/common/glob.c + * plug-ins/common/despeckle.c + * plug-ins/common/noise-randomize.c + * plug-ins/common/convolution-matrix.c + * plug-ins/common/gif-load.c + * plug-ins/common/psd-save.c + * plug-ins/common/emboss.c + * plug-ins/common/csource.c + * plug-ins/common/cml-explorer.c + * plug-ins/common/grid.c + * plug-ins/common/pcx.c + * plug-ins/common/engrave.c + * plug-ins/common/curve-bend.c: Cleanups / fixes for issues + reported by Sparse. + +2008-03-28 Mukund Sivaraman + + * plug-ins/common/lcms.c: gimp_md5_get_digest() is deprecated; + using GChecksum instead. + +2008-03-28 Mukund Sivaraman + + Fixes for some Sparse reported issues in app, libgimp*/ + + * app/gui/gui-vtable.c: Included + + * libgimp/gimpprocview.c: author, date, copyright are pointers. + + * libgimpwidgets/gimpcolorprofilestore.c: Last argument of + g_scanner_scope_add_symbol() is a pointer. + +2008-03-28 Mukund Sivaraman + + Fixes for some Sparse reported issues in app/ + + * app/core/gimpdrawable-operation.c: Added prototype for + gegl_node_add_child(). + + * app/core/gimpcurve.c: Remove C99 code + + * app/tools/gimpcurvestool.c + * app/tools/gimpperspectiveclonetool.c + * app/vectors/gimpstroke.c: Mark functions as static. + + * app/base/siox.c: state is a pointer. + + * app/plug-in/gimppluginprocframe.c: values is a pointer. + + * app/plug-in/plug-in-rc.c: plug_in_rc_parse() returns a pointer. + + * app/plug-in/gimpinterpreterdb.c: Check program[0] for '\0' + instead of the pointer program itself. + +2008-03-28 Mukund Sivaraman + + * plug-ins/common/png.c: Fixed a bug where a pointer to a gint + is passed to a function which expects gsize, which can cause + out of bounds access. + +2008-03-28 Michael Natterer + + * app/gui/gui.c: #include + +2008-03-28 Michael Natterer + + * plug-ins/script-fu/scripts/guides-from-selection.scm + * plug-ins/script-fu/scripts/guides-new-percent.scm + * plug-ins/script-fu/scripts/guides-new.scm + * plug-ins/script-fu/scripts/guides-remove-all.scm: use "*" as + image type (not "") so the menu item is disabled when there is no + image. + +2008-03-28 Sven Neumann + + * libgimpmath/gimpmd5.[ch]: deprecate gimp_md5_get_digest() in + favor of GCheckSum. + + * libgimpmath/test-md5.c: undef GIMP_DISABLE_DEPRECATED. + +2008-03-28 Sven Neumann + + * libgimpthumb/gimpthumb-utils.c (gimp_thumb_png_name): use + GCheckSum instead of the MD5 routine from libgimpmath. + + * gimpthumb.pc.in + * libgimpthumb/Makefile.am: removed libgimpmath dependency from + libgimpthumb. + +2008-03-28 Sven Neumann + + * app/sanity.c (sanity_check_glib): bumped glib version. + +2008-03-28 Sven Neumann + + * libgimpbase/gimpmemsize.[ch]: deprecate gimp_memsize_to_string() + in favor of g_format_size_for_display(). + + * app/actions/edit-commands.c + * app/core/gimpimagefile.c + * app/dialogs/image-new-dialog.c + * app/dialogs/image-scale-dialog.c + * app/display/gimpdisplayshell-title.c + * app/widgets/gimpimagepropview.c + * app/widgets/gimptemplateeditor.c + * app/widgets/gimpthumbbox.c + * plug-ins/uri/uri-backend-gnomevfs.c + * plug-ins/uri/uri-backend-gvfs.c + * plug-ins/uri/uri-backend-libcurl.c + * plug-ins/uri/uri-backend-wget.c: use g_format_size_for_display() + instead of gimp_memsize_to_string(). + +2008-03-28 Sven Neumann + + * configure.in: put GIO check back in as we need it to initialize + GIO_CFLAGS and GIO_LIBS. Renamed --without-gio to --without-gvfs. + + * INSTALL: changed accordingly. + + * plug-ins/uri/Makefile.am + * plug-ins/uri/uri-backend-gio.c + * plug-ins/uri/uri-backend-gvfs.c: renamed the gio backend to gvfs. + +2008-03-28 Michael Natterer + + * plug-ins/script-fu/scripts/line-nova.scm (script-fu-line-nova): + move the call to gimp-selection-save inside the undo group. + + (script-fu-register): use "*" as image type (not "") so the menu + item is disabled when there is no image. + +2008-03-28 Michael Natterer + + * configure.in: require glib >= 2.16.1. Don't warn about + deprecations for glib >= 2.19.0 and gtk+ >= 2.15.0. Remove check + for GIO but keep the --without-gio option for the URI plugin. + +2008-03-28 Sven Neumann + + * libgimpwidgets/gimphelpui.c: show a custom tooltip for menu + items and inform the user that she can get more help by pressing F1. + +2008-03-28 Sven Neumann + + * libgimpwidgets/gimphelpui.c: updated documentation. + +2008-03-28 Sven Neumann + + * app/dialogs/tips-parser.[ch] + * app/dialogs/tips-dialog.c: improved the creation of fallback + tips in case of an error parsing the tips file. + (tips_dialog_create): simplified dialog layout. + + * app/dialogs/preferences-dialog.c: removed the check button for + the "show-tips" option. + +2008-03-28 Sven Neumann + + * data/tips/gimp-tips.dtd + * data/tips/gimp-tips.xml.in + * app/dialogs/tips-parser.[ch]: reverted some of the changes from + yesterday. The simplification went too far and we inadvertently + lost an important feature. + +2008-03-27 Sven Neumann + + * plug-ins/common/pnm.c (load_image): changed message to say + "Unsupported maximum value" instead of "Invalid maximum value" + as suggested in bug #149723. + +2008-03-27 Sven Neumann + + * data/tips/gimp-tips.dtd + * data/tips/gimp-tips.xml.in: simplified the gimp-tips XML format + as we do not any longer need a special welcome tip. + + * app/dialogs/tips-dialog.c + * app/dialogs/tips-parser.[ch]: changed accordingly. + +2008-03-27 Sven Neumann + + * app/config/gimprc-blurbs.h: removed SHOW_TIPS_BLURB. + +2008-03-27 Sven Neumann + + Preparing for a revamp of the "Tip of the Day" feature: + + * app/config/gimpguiconfig.[ch]: removed "show-tips" property. + + * app/gui/gui.[ch]: removed gui_post_init() as it's only purpose was + to show the tips dialog. + + * app/app.c: changed accordingly. + + * app/dialogs/tips-dialog.c: removed some stuff that we are not + going to need any longer. + +2008-03-27 Sven Neumann + + * libgimp/gimp.c: minor improvements to the API docs. + +2008-03-27 Sven Neumann + + Properly pass the focus from the core to plug-in dialogs: + + * libgimpbase/gimpprotocol.[ch]: added a user_time member to the + GimpConfig struct. Bumped the protocol version to 0x0012. + + * app/core/gimp-gui.[ch] + * app/gui/gui-vtable.c: added gimp_get_user_time() to get the + timestamp of the last user interaction. + + * app/plug-in/gimppluginmanager-call.c + (gimp_plug_in_manager_call_run): pass the timestamp to in the + GimpConfig message. + + * libgimp/gimp.[ch]: + * libgimp/gimp.def: added method to access the timestamp as set + in the config message. + + * libgimp/gimpui.c (gimp_ui_init): construct a fake startup ID and + set the DESKTOP_STARTUP_ID environment variable. + +2008-03-27 Sven Neumann + + * app/widgets/gimpdockable.c (gimp_dockable_detach): open the new + dock window at the mouse pointer position. + +2008-03-27 Sven Neumann + + * app/display/gimpdisplayshell-dnd.c + (gimp_display_shell_drop_uri_list): don't flush if there's no image. + (gimp_display_shell_dnd_flush): use gtk_window_present() instead of + gdk_window_focus(). + +2008-03-27 Sven Neumann + + * app/display/gimpstatusbar.c: use a button with icon for the + progress cancel button. + +2008-03-27 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): + added an arbitrary number to the minimum height. + +2008-03-27 Sven Neumann + + * app/display/gimpstatusbar.c: make sure that the statusbar frame + requests enough space to hold it's children, also the invisible ones. + + * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): + don't add 1 pixel here, this spacing is gone. + +2008-03-27 Sven Neumann + + * app/display/gimpstatusbar.[ch]: derive GimpStatusbar from + GtkStatusbar. Use the normal statusbar label for statusbar + messages and only show the progressbar when progress is active. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): removed + spacing from the main vertical box. + +2008-03-27 Sven Neumann + + * plug-ins/common/dicom.c (dicom_loader): cosmetic changes. + +2008-03-27 Mukund Sivaraman + + * plug-ins/common/dicom.c: Validated samples_per_pixel, changed + the loop counter data type, and patched code to work on big endian + CPUs. + +2008-03-27 Sven Neumann + + * app/gui/gui.c (gui_init): disable automatic startup notification. + (gui_restore_after_callback): notify the display enviroment that + the application has finished loading. + + * app/gui/splash.c: no need to deal with startup notification here + any longer. + +2008-03-26 Mukund Sivaraman + + * plug-ins/common/dicom.c: Forget about negative values in signed + data and scale positive values appropriately. Also fixed signed + values in the 8 bpp case, and added some comments. + +2008-03-26 Mukund Sivaraman + + * plug-ins/common/dicom.c: made the dicom plug-in a bit better. + + 1. Parse the default little-endian encoding correctly. + 2. Handle signed pixel data. + 3. Support "bits stored" and "high bit" meta data fields. + 4. Throw away the bogus "max" value based metering. + +2008-03-26 Michael Natterer + + * app/widgets/gimptoolbox.c: make the wilber area a bit smaller. + +2008-03-26 Michael Natterer + + * app/widgets/gimptoolbox.[ch]: store the toolbox area's vbox in + the widget struct. + + * app/widgets/gimptoolbox-dnd.c (gimp_toolbox_dnd_init): use it as + DND target instead of the wbox with the tool buttons. + +2008-03-26 Michael Natterer + + * app/widgets/gimptoolbox.[ch]: big wilber is watching you from + the toolbox! Removed forgotten menubar cruft. + +2008-03-26 Sven Neumann + + * app/widgets/gimpcairo-wilber.[ch]: + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): hide ugly + details behind a sane API. + +2008-03-26 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): + improve tooltip here too. + +2008-03-26 Sven Neumann + + * app/widgets/gimpcairo-wilber.c: include a better Wilber path, + thanks to Jimmac. + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): undid + scaling "fix", instead take the offset into account. Draw with + transparency. + +2008-03-26 Michael Natterer + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): fix scaling. + +2008-03-26 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/gimpcairo-wilber.[ch]: new files that renders a + Wilber image as a Cairo path. Or at least it is supposed to do + this at some point... + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): use the + scalable Wilber path. Needs more work... + +2008-03-26 Sven Neumann + + * data/images/Makefile.am: install wilber.png. + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): try to + load "wilber.png" from $prefix/share/gimp/2.0/images. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): + improved tooltip. + +2008-03-26 Michael Natterer + + * app/display/gimpcanvas.[ch]: improve wilber scaling and remove + the drop zone layout. + + * app/display/gimpdisplayshell.c: add a tooltip instead. + +2008-03-26 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_realize): don't set an initial cursor + so we get the desktop default cursor after starting GIMP. + +2008-03-26 Sven Neumann + + * plug-ins/common/gif-save.c + * plug-ins/common/psd-save.c (save_image): improved error messages. + +2008-03-26 Michael Natterer + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): add + wilber image to figure the proper scale behavior. Proper image + still missing :) + +2008-03-26 Sven Neumann + + * app/display/gimpdisplayshell-icon.[ch] + * app/display/gimpdisplayshell-handlers.c: moved more icon code to + its new home. + +2008-03-25 Mukund Sivaraman + + * plug-ins/common/mng.c: Cleaned up the rest of the plug-in. + +2008-03-25 Mukund Sivaraman + + * plug-ins/common/mng.c: More code cleanups. + +2008-03-25 Mukund Sivaraman + + * plug-ins/common/mng.c: More code cleanups. + +2008-03-25 Mukund Sivaraman + + * plug-ins/common/mng.c: More code cleanups. + +2008-03-25 Sven Neumann + + * app/display/Makefile.am + * app/display/gimpdisplayshell-icon.[ch]: split icon code to its + own file. + + * app/display/gimpdisplay.c + * app/display/gimpdisplayshell.c + * app/display/gimpdisplayshell-handlers.c: changed accordingly. + +2008-03-25 Sven Neumann + + * app/display/gimpstatusbar.c (gimp_statusbar_peek): fixed + parameter checks. + + * app/display/gimpdisplayshell-callbacks.c: formatting. + +2008-03-25 Sven Neumann + + * app/display/gimpstatusbar.[ch]: added gimp_statusbar_peek(), a + method to access the contents of the statusbar. + + * app/display/gimpdisplayshell.c + (gimp_display_shell_window_state_event): when the iconfied state + changes, call gimp_display_shell_progress_window_state_changed(). + + * app/display/gimpdisplayshell-progress.[ch]: if the image window + is iconified, display the progress message in the window title so + that it appears in the task bar. + + * app/menus/plug-in-menus.c: formatting. + +2008-03-25 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.[ch]: remove the window + state callback here... + + * app/display/gimpdisplayshell.c: ...add it here and turn it into + a GtkWidget::window_state_event() implementation instead of a + signal callback. + +2008-03-25 Sven Neumann + + * menus/image-menu.xml.in: added a placeholder "Menus" where + plug-ins like GAP can register a top-level menu. + +2008-03-25 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.[ch]: + * app/display/gimpdisplayshell.c (gimp_display_shell_init): moved + handling of window state events to a separate callback. + +2008-03-25 Sven Neumann + + * app/display/gimpdisplayshell.h: formatting. + +2008-03-25 Sven Neumann + + * app/core/gimp-gui.[ch] + * app/gui/gui-vtable.c: added gimp_get_empty_display() to the vtable. + + * app/file/file-open.c (file_open_from_command_line): use the + empty display as progress window when opening an image from the + command-line or via the DBus interface. + +2008-03-25 Michael Natterer + + * app/actions/image-actions.c: remove "image-new-from-image" + action. + + * app/actions/image-commands.[ch]: remove its callback and made + the "image-new" callback use the current image's dimensions + instead. + + * menus/image-menu.xml.in: use the "image-new" action. + +2008-03-25 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): + fix to work without menubar, don't reset GDK_HINT_USER_POS. + +2008-03-25 Sven Neumann + + * app/gui/gui.c (gui_restore_after_callback): focus the image + window after all docks have been created. + + * app/widgets/gimpdock.c (gimp_dock_init): unset focus-on-map on + all dock windows. + + * app/widgets/gimpdialogfactory.c + (gimp_dialog_factories_show_foreach): removed the focus hacks here + as they are not any longer needed. + +2008-03-25 Sven Neumann + + * app/actions/file-actions.c + * app/actions/file-commands.[ch]: renamed + file_last_opened_cmd_callaback() to file_open_recent_cmd_callback(). + Use the empty display as progress object. + +2008-03-25 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): center + the empty image window on first startup. + +2008-03-25 Sven Neumann + + * app/gui/gui-vtable.c (gui_recent_list_load): sort the list into + MRU order on load. + +2008-03-25 Sven Neumann + + * app/actions/documents-commands.c: only fiddle with + GtkRecentManager when "save-document-history" is enabled. + + * app/config/gimprc-blurbs.h + * app/dialogs/preferences-dialog.c: changed description and label + for the "save-document-history" option. + +2008-03-24 Sven Neumann + + * app/widgets/gimplanguagestore.[ch] + * app/widgets/gimplanguageentry.[ch]: code cleanup. + +2008-03-24 Mukund Sivaraman + + * plug-ins/common/mng.c: Code cleanups. + +2008-03-24 Michael Natterer + + * plug-ins/bmp/* + * plug-ins/fits/* + * plug-ins/sgi/*: renamed files. + +2008-03-24 Mukund Sivaraman + + * plug-ins/common/mng.c: + * plug-ins/jpeg/jpeg.c: Changed name of author. + +2008-03-24 Sven Neumann + + * plug-ins/gradient-flare/Makefile.am: fixed variable that was + forgotten during the renaming. + +2008-03-24 Michael Natterer + + * plug-ins/fractal-explorer/*: renamed all files. + +2008-03-24 Michael Natterer + + * plug-ins/ico/*: renamed all files. + +2008-03-24 Michael Natterer + + The icon plugin should simply be "ico" just as the other file + plug-ins. + + * plug-ins/win-icon -> ico + + * configure.in + * plug-ins/Makefile.am: changed accordingly. + +2008-03-24 Michael Natterer + + * plug-ins/color-rotate/*: renamed all files and also changed + function names and stuff in some files. Only the filename change + is 100% complete. + +2008-03-24 Michael Natterer + + There is no colormap involved in this plug-in, rename it again... + + * plug-ins/colormap-rotate -> color-rotate. + + * configure.in + * plug-ins/Makefile.am: changed accordingly. + +2008-03-24 Michael Natterer + + * plug-ins/map-object + * plug-ins/gradient-flare + * plug-ins/ifs-compose + * plug-ins/selection-to-path + * plug-ins/lighting + * plug-ins/help-browser + * plug-ins/fli: rename files in these folders to have no + underscores and match new names of the plug-ins. + + * configure.in: changed accordingly. + +2008-03-24 Sven Neumann + + * app/core/gimp-user-install.c (user_install_migrate_files): don't + migrate "documents". + + * app/actions/documents-commands.c (documents_remove_cmd_callback) + (documents_remove_dangling_foreach): remove from GtkRecentManager + before removing the item from the documents list. + +2008-03-24 Sven Neumann + + * libgimpthumb/gimpthumbnail.c: don't reset the mime-type info + when we can't load a thumbnail. + + * app/core/gimpimagefile.c (gimp_imagefile_get_new_pixbuf): don't + set a stock-id depending on the state. + + * app/widgets/gimpviewrendererimagefile.[ch]: removed commented + out hack that used to access semi-private API from GtkFilesystem. + Instead lifted some code from GtkRecentManager that looks up icons + by mime-type. + +2008-03-24 Michael Natterer + + Renamed folders in plug-ins/. Unfortunately it's impossible to + rename the files inside at the same time, so this is just + part one... + + * plug-ins/FractalExplorer -> fractal-explorer + * plug-ins/Lighting -> lighting + * plug-ins/MapObject -> map-object + * plug-ins/gflare -> gradient-flare + * plug-ins/gfli -> fli + * plug-ins/helpbrowser -> help-browser + * plug-ins/ifscompose -> ifs-compose + * plug-ins/rcm -> colormap-rotate + * plug-ins/sel2path -> selection-to-path + * plug-ins/winicon -> win-icon + * plug-ins/winsnap -> win-snap + + * configure.in + * plug-ins/Makefile.am: changed accordingly. + +2008-03-24 Michael Natterer + + Renamed tons of plug-ins to make more sense and to be consistent: + + * plug-ins/common/AlienMap2.c -> alien-map.c + * plug-ins/common/CEL.c -> cel.c + * plug-ins/common/CML_explorer.c -> cml-explorer.c + * plug-ins/common/align_layers.c -> align-layers.c + * plug-ins/common/animationplay.c -> animation-play.c + * plug-ins/common/animoptimize.c -> animation-optimize.c + * plug-ins/common/apply_lens.c -> lens-apply.c + * plug-ins/common/autocrop.c -> crop-auto.c + * plug-ins/common/autostretch_hsv.c -> contrast-stretch-hsv.c + * plug-ins/common/borderaverage.c -> border-average.c + * plug-ins/common/bumpmap.c -> bump-map.c + * plug-ins/common/c_astretch.c -> contrast-stretch.c + * plug-ins/common/ccanalyze.c -> color-cube-analyze.c + * plug-ins/common/channel_mixer.c -> channel-mixer.c + * plug-ins/common/color_enhance.c -> color-enhance.c + * plug-ins/common/colortoalpha.c -> color-to-alpha.c + * plug-ins/common/convmatrix.c -> convolution-matrix.c + * plug-ins/common/curve_bend.c -> curve-bend.c + * plug-ins/common/depthmerge.c -> depth-merge.c + * plug-ins/common/dog.c -> edge-dog.c + * plug-ins/common/exchange.c -> color-exchange.c + * plug-ins/common/flarefx.c -> lens-flare.c + * plug-ins/common/fp.c -> filter-pack.c + * plug-ins/common/fractaltrace.c -> fractal-trace.c + * plug-ins/common/gauss.c -> blur-gauss.c + * plug-ins/common/gee_zoom.c -> gee-zoom.c + * plug-ins/common/glasstile.c -> tile-glass.c + * plug-ins/common/gqbist.c -> qbist.c + * plug-ins/common/gradmap.c -> gradient-map.c + * plug-ins/common/laplace.c -> edge-laplace.c + * plug-ins/common/lens.c -> lens-distortion.c + * plug-ins/common/lic.c -> van-gogh-lic.c + * plug-ins/common/max_rgb.c -> max-rgb.c + * plug-ins/common/mblur.c -> blur-motion.c + * plug-ins/common/nlfilt.c -> nl-filter.c + * plug-ins/common/noisify.c -> noise-rgb.c + * plug-ins/common/normalize.c -> contrast-normalize.c + * plug-ins/common/papertile.c -> tile-paper.c + * plug-ins/common/polar.c -> polar-coords.c + * plug-ins/common/randomize.c -> noise-randomize.c + * plug-ins/common/redeye.c -> red-eye-removal.c + * plug-ins/common/retinex.c -> contrast-retinex.c + * plug-ins/common/sample_colorize.c -> sample-colorize.c + * plug-ins/common/scatter_hsv.c -> noise-hsv.c + * plug-ins/common/sel_gauss.c -> blur-gauss-selective.c + * plug-ins/common/semiflatten.c -> semi-flatten.c + * plug-ins/common/smooth_palette.c -> smooth-palette.c + * plug-ins/common/snoise.c -> noise-solid.c + * plug-ins/common/sobel.c -> edge-sobel.c + * plug-ins/common/spheredesigner.c -> sphere-designer.c + * plug-ins/common/spread.c -> noise-spread.c + * plug-ins/common/struc.c -> apply-canvas.c + * plug-ins/common/threshold_alpha.c -> threshold-alpha.c + * plug-ins/common/tileit.c -> tile-small.c + * plug-ins/common/tiler.c -> tile-seamless.c + * plug-ins/common/uniteditor.c -> unit-editor.c + * plug-ins/common/unsharp.c -> unsharp-mask.c + * plug-ins/common/vinvert.c -> value-invert.c + * plug-ins/common/vpropagate.c -> value-propagate.c + * plug-ins/common/webbrowser.c -> web-browser.c + * plug-ins/common/whirlpinch.c -> whirl-pinch.c + * plug-ins/common/zealouscrop.c -> crop-zealous.c + + * plug-ins/common/plugin-defs.pl: changed accordingly. + + * plug-ins/common/Makefile.am: regenerated. + +2008-03-24 Sven Neumann + + * app/actions/documents-commands.c + (documents_remove_dangling_foreach): also remove the dangling item + from GtkRecentManager. + +2008-03-24 Sven Neumann + + Do not any longer keep the document history in two places. We only + use GtkRecentManager now: + + * app/core/Makefile.am + * app/core/gimp-documents.[ch]: removed these files. + + * app/core/gimpdocumentlist.c: removed code to load and save the + "documents" file. + (gimp_document_list_add_uri): call gimp_recent_list_add_uri() here. + + * app/core/gimpimagefile.[ch]: added function to set the mime-type. + + * app/core/gimp.c (gimp_restore): removed code to load the + document history. + (gimp_real_exit): removed code to save it. + + * app/core/gimp-gui.[ch]: extended the vtable with a method to + populate the document list. + + * app/gui/gui-vtable.c: added code to populate the document history + from the list of recently used files kept by GtkRecentManager. + + * app/gui/gui.c (gui_restore_callback): load the recent files here. + + * app/file/file-open.c + * app/file/file-save.c: no need to call gimp_recent_list_add_uri() + any longer as gimp_document_list_add_uri() does that for us now. + + * app/actions/documents-commands.c (documents_clear_cmd_callback): + purge the items from GtkRecentManager. Also changed the dialog to + emphasize that this operation now affects the document history in + all applications. + + * docs/gimp.1.in: removed reference to "documents" file. + +2008-03-23 Mukund Sivaraman + + * HACKING: Updated section on getting dependencies, as we don't + want to encourage using deps from svn for building GIMP. + +2008-03-24 Sven Neumann + + * plug-ins/common/dicom.c (dicom_loader): fixed potential crash on + empty 16 bit images. + +2008-03-23 Michael Natterer + + * app/widgets/gimpdialogfactory.c (gimp_dialog_factory_add_dialog): + don't set the dialog's window geometry if it is already visible. + Fixes empty display moving and shouldn't affect anything else + since we always want to position dialogs before they are shown. + +2008-03-23 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): use the + right GimpDisplayOptions to set the initial visibility of the + shell's widgets. + +2008-03-23 Michael Natterer + + * app/display/gimpstatusbar.c: implement GtkWidget::size_request() + and also consider the children which can be invisible when the + display is empty. + + * app/display/gimpdisplayshell.c (gimp_display_shell_style_set): + set the minimum height of the display to menubar + statusbar + height. + +2008-03-23 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_expose): return TRUE after calling + gimp_display_shell_canvas_expose_image(). + +2008-03-23 Sven Neumann + + * app/dialogs/dialogs.c + * app/display/gimpdisplayshell.c: changed "gimp-no-image-window" to + "gimp-empty-image-window". + +2008-03-23 Michael Natterer + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_resize): always need to fully expose the + canvas now that "redisplay" was removed. + +2008-03-23 Michael Natterer + + Never shrink the empty display when filling it, only grow: + + * app/display/gimpdisplayshell.[ch] + * app/display/gimpdisplayshell-scale.[ch]: add "gboolean + grow_only" parameters to shrink_wrap() APIs which restricts + resizing of the window to growing. + + * app/display/gimpdisplayshell-scale.[ch] + (gimp_displaY_shell_scale_resize): remove boolean "redisplay" + parameter because is was always passed as TRUE. Add boolean + "grow_only" instead and pass it on to shrink_wrap() + + * app/actions/view-commands.c + * app/display/gimpdisplayshell-handlers.c: pass grow_only = FALSE. + + * app/display/gimpdisplayshell.c (gimp_display_shell_idle_fill): + pass grow_only = TRUE. + +2008-03-23 Michael Natterer + + * app/dialogs/dialogs.[ch]: added a dialog factory for displays + and register "gimp-no-image-window" with it. + + * app/display/gimpdisplay.[ch]: add a GimpDialogFactory parameter + to gimp_display_new() and pass it on to gimp_display_shell_new(). + + * app/display/gimpdisplayshell.[ch]: keep the passed + GimpDialogFactory around. When the shell becomes empty, add it to + the dialog factory and resize it to the remembered size; when it + becomes non-empty, remove it from the dialog factory again. + + * app/gui/gui-vtable.c: pass the display dialog factory to + gimp_display_new(). + +2008-03-23 Michael Natterer + + * app/widgets/gimpdialogfactory.c: cleanup (move variables to + local scopes), improve debugging outout. + + (gimp_dialog_factory_remove_dialog): disconnect signal handlers + and unset any session management data which is attached to the + widget, so this function can really be used to remove a dialog + from the factory. + +2008-03-23 Michael Natterer + + * app/widgets/gimpsessioninfo.c (gimp_session_info_get_geometry): + use gdk_drawable_get_size() instead of looking at + widget->allocation since the latter is not yet updated if this + function is called from the dialog factory's "configure-event" + callback. Fixes remembering of dialog sizes within one session. + +2008-03-23 Michael Natterer + + * app/core/gimpcontext.c (gimp_context_real_set_display): set the + image also if it is NULL. + +2008-03-22 Sven Neumann + + * libgimp/gimppixbuf.c: fixed gtk-doc syntax. + +2008-03-22 Sven Neumann + + * themes/Default/gtkrc + * app/widgets/gimpmenudock.c: reduced minimum dock width to 200 + pixels. + + * etc/sessionrc: use -0 instead of -1, just like in X geometry + strings. Changed default dock sizes to be taller but less wide. + + * app/widgets/gimpsessioninfo.c: changed code to parse -0 from the + sessionrc file and to deal more correctly with negative offsets. + +2008-03-22 Sven Neumann + + * app/widgets/gimpsessioninfo.c (gimp_session_info_set_geometry): + deal with negative positions read from the sessionrc file and + interpret them as a hint to align the window with the right, + respective bottom edge of the screen. + + * etc/sessionrc: position the toolbox in the upper left, the + additional dock in the upper right corner of the screen. + +2008-03-21 Sven Neumann + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): tweaked + opacity calculation so that the opacity is only increased with + smaller font sizes. + +2008-03-21 Sven Neumann + + * app/core/gimptemplate.[ch]: moved defines to the header file and + changed to 640x400 which is actually almost the golden mean as + claimed by the comment. + + * app/display/gimpdisplayshell.c: use the defines here. + +2008-03-21 Sven Neumann + + * app/core/gimptemplate.c: increased the size of the default image + (to the next Fibonacci number for the development version and to + 600x480 for GIMP 2.6). + +2008-03-21 Sven Neumann + + * etc/controllerrc: bind Alt-Cursor Key to tools-value-1 instead + of context-opacity (tools-value-1 is equivalent to context-opacity + for paint tools). + +2008-03-21 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_fill_idle): + gtk_window_present() the image window to make sure that images + aren't opened into a minimized image window. + +2008-03-21 Michael Natterer + + * configure.in: revert new glib dependency. + +2008-03-21 Michael Natterer + + * configure.in: require glib >= 2.16.1. Don't warn about + deprecations for glib >= 2.19.0. + + Also forgot to commit the removal of --enable-toolbox-menu. + +2008-03-21 Sven Neumann + + * app/gimp-log.[ch]: introduced log domain "menus". + + * app/menus/plug-in-menus.c: use gimp-log for debug output. + +2008-03-21 Michael Natterer + + * app/display/gimpdisplayshell-close.c (gimp_display_shell_close): + invoke the quit action instead of calling gimp_exit() so its + sensitivity is taken into account. + +2008-03-21 Michael Natterer + + Remove the toolbox menu: + + * configure.in: remove --enable-toolbox-menu option. + + * menus/Makefile.am + * menus/toolbox-menu.xml.in: removed. + + * menus/image-menu.xml.in: add the debug menu here. + + * menus/menus.xsl: remove transformations depending on whether + there is a toolbox menu or not. + + * app/menus/Makefile.am + * app/menus/toolbox-menu.[ch]: removed. + + * app/menus/menus.c: remove the toolbox menu but keep the + UI manager around so we can configure its actions + separate from normal docks. + + * app/actions/image-actions.c (image_actions): remove the action + for the toolbox menubar. + + * app/widgets/gimptoolbox.c: remove all menu code. + + * app/plug-in/plug-in-menu-path.c: map plug-in registered toolbox + menu items to their new location in the image menu + unconditionally. + + * plug-ins/common/screenshot.c + * plug-ins/common/uniteditor.c + * plug-ins/script-fu/script-fu.c + * plug-ins/script-fu/scripts/web-browser.scm + * plug-ins/twain/twain.c + * plug-ins/winsnap/winsnap.c: remove menu registrations under + /File and change /Help to /Help. Leave + /Xtns untouched until its final location and name are + decided. + +2008-03-21 Michael Natterer + + * app/widgets/gimpdock.h (struct GimpDock): added member "ID" + for themeing. + + * app/widgets/gimpdock.c (gimp_dock_init): assign unique IDs + and set unique widget names based on the ID. + + (gimp_dock_style_set): set individual styles for each dock based + on the widget name so docks on different screens get the correct + font size. Use PANGO_SCALE_SMALL instead of a hardcoded factor of + 0.8. + +2008-03-21 Sven Neumann + + * themes/Default/images/Makefile.am + * themes/Default/images/stock-gegl-24.png: removed... + + * themes/Default/images/stock-gegl-22.png: ... and added a cropped + version that goes better with the other tool icons. + + * libgimpwidgets/gimpstock.c: changed accordingly. + +2008-03-21 Michael Natterer + + * app/widgets/gimpdock.c (gimp_dock_style_set): some experimental + and pretty evil code which reduces the font size in docks by 20%. + +2008-03-21 Michael Natterer + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): make sure + the drop label's opacity scales with its size so we don't end up + with tiny text at 10% opacity. + +2008-03-20 Michael Natterer + + * app/gui/gui-vtable.c (gui_display_create): add back code that + made sure the newly created display/image combo is the user + context's active one. + +2008-03-20 Martin Nordholts + + * app/display/gimpdisplayshell-close.c + (gimp_display_shell_close): gimp_exit() when closing the "no + image" window. + +2008-03-20 Martin Nordholts + + * app/gui/gui-vtable.c: Fix stupid mistake in previous commit... + +2008-03-20 Martin Nordholts + + * app/gui/gui-vtable.c + (gui_display_create): Make the logic clearer. + (gui_get_empty_display): New helper function. + +2008-03-20 Sven Neumann + + * app/gui/gui.c (gui_restore_after_callback): create the empty + display before the other windows. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): center + the empty window and create additional image windows under the + mouse cursor. Just an experiment ... + +2008-03-20 Sven Neumann + + * app/config/gimpguiconfig.c: changed default values for + "toolbox-window-hint" and "dock-window-hint" to "utility". + + * app/widgets/gimptoolbox.c (gimp_toolbox_new): changed window + title to "Toolbox". + +2008-03-20 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): make it + work when called with display->image == NULL. Use a randomly + picked canvas size for now, more later. + + (gimp_display_shell_fill): add missing call to + gimp_display_shell_scale_changed(). + + * app/gui/gui.c (gui_restore_after_callback): create an empty + display. + +2008-03-20 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c (get_protocols): guard against + g_vfs_get_supported_uri_schemes() returning NULL. + +2008-03-20 Sven Neumann + + * app/plug-in/gimppluginprocedure.c + (gimp_plug_in_procedure_set_file_proc): don't allow "file:" to be + registered as prefix. This seems to happen with the uri-gio plug-in + when no gvfs backends are installed. + +2008-03-20 Michael Natterer + + * app/display/gimpdisplayshell.[ch]: shrink-wrap the newly filled + empty display in an idle function. + +2008-03-20 Sven Neumann + + * plug-ins/uri/gimpmountoperation.c: make the dialogs transient to + the progress window if no parent or screen has been set. + +2008-03-20 Sven Neumann + + * plug-ins/common/gif-save.c: added a sanity check and abort when + the image is too large. + +2008-03-19 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_tool_events): enable the right click + menu on the empty display. + +2008-03-19 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): use + the desktop default cursor for the empty display. + +2008-03-19 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_empty): the + code to reset the cursor got lost when introducing this function. + + * app/display/gimpdisplayshell-dnd.c + (gimp_display_shell_dnd_init): remove redundant casts. + +2008-03-19 Michael Natterer + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): make the + scale factor of the label 4/5 instead of 2/3 of the canvas and + move the factor out of the MIN(). + +2008-03-19 Michael Natterer + + * app/display/gimpdisplay-foreach.[ch] (gimp_displays_delete): add + boolean "quit" parameter and leave the empty display open when it + is FALSE. + + * app/dialogs/quit-dialog.c + * app/actions/file-commands.c: pass quit = FALSE for "close all". + + * app/gui/gui.c: pass quit = TRUE when quitting. + + * app/actions/file-actions.c: fix sensitivity of "Close all". + + * app/actions/view-actions.c: fix sensitivity of "Close". + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c: clean up after Martin. + +2008-03-19 Michael Natterer + + * app/actions/view-commands.c: remove useless include. + +2008-03-19 Martin Nordholts + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_expose): Refactor to emphasize logic. + (gimp_display_shell_canvas_expose_image) + (gimp_display_shell_canvas_expose_drop_zone): New helper + functions. + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_expose): return FALSE so that the + default drag highlighting works. + + * app/display/gimpdisplayshell-dnd.c: only set the canvas as drop + target, not the whole shell. + + * app/display/gimpdisplayshell.c: delay the call to + gimp_display_shell_dnd_init() until after the canvas has been + created. + +2008-03-19 Sven Neumann + + * app/core/gimppalette-load.c (gimp_palette_load): skip empty lines. + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayshell.c + * app/display/gimpdisplayshell-title.c + * app/display/gimpstatusbar.[ch]: hide/show the cursor label and + the unit and scale combo-boxes. + +2008-03-19 Michael Natterer + + * app/display/gimpdisplay.[ch]: add gimp_display_empty()/fill() + which turns it into an empty display and back. + + * app/display/gimpdisplayshell.[ch]: add same api here. + + * app/display/gimpdisplayshell-close.c + * app/gui/gui-vtable.c: use the new functions instead of having + the code here. + + * app/display/gimpdisplayshell-selection.c + (gimp_display_shell_selection_control): stop the timeout and free + the segments when this function is called on an empty display. + +2008-03-19 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c (copy_uri): fixed stupid bug. + +2008-03-19 Sven Neumann + + * app/paint-funcs/paint-funcs.c: minor formatting cleanup. + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayshell-title.c: changed to only append + GIMP_ACRONYM in the window title and not affect the status-bar. + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayshell.[ch] + * app/display/gimpdisplayshell-scale.[ch]: moved + gimp_display_shell_set_initial_scale() to gimpdisplayshell-scale.c. + + * app/display/gimpdisplayoptions.c: reverted last change, we want + to keep the status-bar around. + +2008-03-19 Michael Natterer + + * app/display/gimpdisplayshell.[ch] + (gimp_display_shell_set_initial_scale): factored out this function + which calculates the zoom factor for new images. Also returns the + size of the canvas for that zoom factor. + + * app/gui/gui-vtable.c (gui_display_create): use it to set the + initial scale of images loaded into the empty display, but don't + set the display's size yet. + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayoptions.c + (gimp_display_options_no_image_class_init): hide the status-bar, + at least for now. + +2008-03-19 Sven Neumann + + * app/widgets/gimpdockable.c + * app/widgets/gimpwidgets-utils.[ch]: moved utility function for + setting attributes on a PangoLayout out of gimpdockable.c. + + * app/display/gimpcanvas.c (gimp_canvas_draw_drop_zone): use a + bold font and paint the layout with transparency. + +2008-03-19 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_update_icon): + deal with NULL image and unset the icon. + + * app/display/gimpdisplay.c (gimp_display_set_image): unset the + icon when no image is set. + + * app/display/gimpdisplayshell-title.c + (gimp_display_shell_format_title): use GIMP_NAME as the window + title when no image is set. Append GIMP_ACRONYM otherwise. + +2008-03-18 Michael Natterer + + * app/display/gimpdisplayoptions.[ch]: add new options object + for the "no image" display appearance. + + * app/display/gimpdisplayshell.[ch]: keep one of them around. + + * app/display/gimpdisplayshell-appearance.[ch]: use the options + object when the display is empty. Add guards against no image + to some functions. Add gimp_display_shell_appearance_update() + which sets all options according to the current display state + (normal, fullscreen, no image). + + * app/actions/view-actions.c: don't allow to configure the GUI + of the empty display. + + * app/display/gimpdisplayshell-callbacks.c: use the new appearance + update function instead of doing it all here. + + * app/display/gimpdisplayshell-close.c + * app/gui/gui-vtable.c: update the appearance when clearing or + filling the display. + + * app/display/gimpdisplayshell-selection.c: forgot some guards + against empty displays. + +2008-03-18 Michael Natterer + + First draft of the "no image open" window, which is implemented as + a display without image (a view with NULL model). Didn't change + the display's appearance yet so I can first make sure the display + without image works properly in all details before hiding these + details. + + * app/core/gimp-gui.[ch]: add "gimp" parameter to display_create() + and allow "image" to be NULL. + + * app/core/gimpcontext.c (gimp_context_real_set_display): a + display's image can be NULL now. + + * app/display/gimpdisplay.[ch]: add Gimp and GimpDisplayConfig + members. Add Gimp parameter to gimp_display_shell_new(). Changed + gimp_display_reconnect() to gimp_display_set_image() and allow to + set a NULL image. + + * app/gui/gui-vtable.c (gui_display_create): if there is a single + display without an image, call gimp_display_set_image() on that + display instead of creating a new one. + + * app/display/gimpdisplayshell-close.c: if the last display is + closed, don't close it but make it empty. Factored out that code + to gimp_display_shell_really_close(). + + * app/display/gimpdisplayshell-dnd.c: when dropping uris on an + empty display, open the first one into that display and the other + ones as layers of the newly opened image. This is consistent with + dropping on an existing image but maybe needs some discussion. + + * app/display/gimpdisplayshell-callbacks.c: bail out early in the + tool event callback so tools never have to deal with empty + displays. In expose(), draw the drop zone on the empty display. + + * app/display/gimpdisplayshell-title.c: set the empty display's + title to "Gimp - Drop Files". + + * app/display/gimpdisplay-foreach.c + * app/display/gimpdisplay-handlers.c + * app/display/gimpdisplayshell-appearance.c + * app/display/gimpdisplayshell-autoscroll.c + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-cursor.c + * app/display/gimpdisplayshell-dnd.c + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-filter-dialog.c + * app/display/gimpdisplayshell-handlers.c + * app/display/gimpdisplayshell-layer-select.c + * app/display/gimpdisplayshell-preview.c + * app/display/gimpdisplayshell-render.c + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-scroll.c + * app/display/gimpdisplayshell-selection.c + * app/display/gimpdisplayshell-title.c + * app/display/gimpdisplayshell.c + * app/display/gimpnavigationeditor.c + * app/display/gimpstatusbar.c: use display->gimp and + display->config instead of going via the image. Guard against + empty displays in some few places (most places can't be + called). Where needed, use the canvas' dimensions instead of the + image's dimensions so scroll offsets and scrollbars still have + sane values instead of the last image's ones. + + * app/actions/actions.c (action_data_get_gimp) + (action_data_get_context): use display->gimp instead of + display->image->gimp. + + * app/actions/edit-commands.c (edit_paste_cmd_callback): redirect + to "paste as new" if there is an empty display. + + * app/actions/tools-commands.c (tools_select_cmd_callback): don't + initialize the new tool on an empty display. + + * app/actions/view-actions.c (view_actions_update): changed lots + of sensitivity settings to be insensitive when there is no image + (instead of no display). + + * app/actions/view-commands.c: use the display's config object + instead of gimp's. + +2008-03-18 Michael Natterer + + * app/display/gimpcanvas.[ch]: add gimp_canvas_draw_drop_zone() + which simply renders a big "Drop Here" on the canvas. Replaced + Gimp member and construct property by GimpDisplayConfig. + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): changed + accordingly. + +2008-03-18 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c (uri_progress_callback): + corrected last change. + +2008-03-18 Sven Neumann + + * app/config/gimpguiconfig.c (DEFAULT_WEB_BROWSER): changed + default web-browser to xdg-open. Fixes bug #522483. + +2008-03-18 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c: only update the progress up to + ten times per second. + +2008-03-18 Sven Neumann + + * plug-ins/uri/gimpmountoperation.c: set alternative button order + on the password dialog (same change done in GTK+). + +2008-03-18 Sven Neumann + + * plug-ins/uri/Makefile.am + * plug-ins/uri/gimpmountoperation.[ch]: added a temporary copy of + GtkMountOperation until we depend on the next stable GTK+ release. + Converted to GIMP namespace to avoid symbol collisions. + + * plug-ins/uri/uri-backend-gio.c: use the new mount operation. + +2008-03-17 Sven Neumann + + * plug-ins/common/png.c: formatting. + +2008-03-13 Michael Natterer + + * plug-ins/common/tiff-load.c (load_image): set the original + filename only if all pages were loaded as layers; if a subset was + loaded, set the filename to ".tiff-n-of-m-pages" so a + simple "save" won't overwrite the original file without the user + changing the filename explicitely. + +2008-03-13 Sven Neumann + + * plug-ins/common/tiff-load.c (load_image): set a filename on the + image, even when not all images are imported as layers (bug #521436). + +2008-03-12 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c: improved password dialog. + +2008-03-12 Michael Natterer + + * app/actions/data-commands.c + * app/actions/debug-commands.c + * app/actions/dockable-commands.c + * app/dialogs/stroke-dialog.c + * app/display/gimpdisplayshell-handlers.c + * app/gui/gui-message.c + * app/gui/gui.c + * app/tools/gimpforegroundselectoptions.c + * app/tools/gimpinkoptions-gui.c + * app/widgets/gimpcolordialog.c + * app/widgets/gimpcontainerpopup.c + * app/widgets/gimpcontainerview-utils.c + * app/widgets/gimpdock.c + * app/widgets/gimpdockable.c + * app/widgets/gimpsessioninfo-book.c + * app/widgets/gimpsessioninfo-dock.c + * app/widgets/gimptoolbox.c + * app/widgets/gimpunitcombobox.c + * app/widgets/gimpviewablebox.c + * libgimp/gimpexport.c + * libgimpmodule/gimpmodule.h + * libgimpwidgets/gimpenumwidgets.c + * libgimpwidgets/gimpframe.c + * libgimpwidgets/gimpoldwidgets.c + * libgimpwidgets/gimpwidgets.c + * plug-ins/MapObject/mapobject_ui.c + * plug-ins/common/papertile.c + * plug-ins/common/sinus.c + * plug-ins/flame/flame.c + * plug-ins/helpbrowser/gimpthrobber.c + * plug-ins/script-fu/scheme-wrapper.c + * plug-ins/script-fu/script-fu-console.c: use accessors instead of + accessing GtkBin.child and GtkPaned.child1,2 directly. + +2008-03-12 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c: added password and question + dialogs needed for mounting volumes. This code is untested. + +2008-03-12 Åsmund SkjÃĻveland + + * configure.in: Added nn to ALL_LINGUAS. + +2008-03-12 Sven Neumann + + * plug-ins/uri/uri.c: updated copyright. + + * plug-ins/uri/uri-backend-gio.c: ask the GVfs backend for the + supported URI schemes. + +2008-03-11 Sven Neumann + + * plug-ins/uri/uri-backend-gio.c: improved error handling. + +2008-03-11 Sven Neumann + + * INSTALL + * configure.in: added --without-gio configure option. + + * plug-ins/uri/Makefile.am: prefer the GIO backend. + + * plug-ins/uri/uri-backend-gio.c + * plug-ins/uri/uri-backend-libcurl.c + * plug-ins/uri/uri-backend-gnomevfs.c: improved progress messages. + +2008-03-11 Sven Neumann + + * configure.in: added a check for gio-2.0. + + * plug-ins/uri/Makefile.am + * plug-ins/uri/uri-backend-gio.c: added a first draft of an URI + plug-in based on GIO/GVfs. + +2008-03-11 Michael Natterer + + * app/core/gimpbrushgenerated.c: reorder and rename local + functions and prototypes to be consistent with other objects. Misc + minor cleanup. + +2008-03-10 Sven Neumann + + * app/widgets/gimpdockable.[ch] + * app/widgets/gimpdockbook.c: moved code for the drag widget to + GimpDockable. Use semi-bold text for the drag widget also. + +2008-03-10 Sven Neumann + + * app/paint/gimpink.c (gimp_ink_motion): formatting. + +2008-03-10 Michael Natterer + + * app/vectors/gimpanchor.c (gimp_anchor_copy): use g_slice_dup() + instead of copying the struct contents manually. + +2008-03-09 Michael Natterer + + Fix mishandling of the "antialias" GParamSpec. Fixes bug #521069: + + * app/tools/gimpselectionoptions.c: remove + gimp_selection_options_reset() which used to set the default for + "antialias" depending on the tool type (which is impossible since + the antialias GParamSpec only exists once, and not once for each + subclass). + + * app/tools/gimpforegroundselectoptions.c: override the antialias + property here and default to FALSE. + +2008-03-09 Michael Natterer + + * app/tools/gimprectangleselecttool.[ch] + * app/tools/gimprectangleselectoptions.[ch] + * app/tools/gimpellipseselecttool.[ch] + * app/tools/gimp-tools.c: s/Rect/Rectangle/ and s/rect/rectangle/ + in types and function names. + +2008-03-09 Michael Natterer + + * app/tools/Makefile.am + * app/tools/gimpiscissorsoptions.[ch] + * app/tools/gimpregionselectoptions.[ch]: new options classes. + + * app/tools/gimpselectionoptions.[ch]: remove the options here. + Also remove some leftover rectangle options cruft that is in its + own files since long ago. + + * app/tools/gimpbycolorselecttool.c + * app/tools/gimpfuzzyselecttool.c + * app/tools/gimpiscissorstool.[ch] + * app/tools/gimpregionselecttool.[ch] + * app/widgets/gimpselectioneditor.c: changed accordingly. + +2008-03-09 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_setup_snap_offsets): Make the GimpCoords used + for snap calculations depend on the precision mode of the + rectangle. This gives a more pleasant experience when resizing and + moving the rectangle with an image zoom factor larger than 100%. + +2008-03-08 Sven Neumann + + Experimental attempt to gain a little more horizontal space for + the tool options: + + * app/widgets/gimptooloptionseditor.c: removed the shadow from the + viewport and the border from the vbox. + + * app/widgets/gimpdockable.c: use a semibold label for the title. + +2008-03-08 Sven Neumann + + * app/tools/gimpflipoptions.c + * app/tools/gimpmoveoptions.c + * app/tools/gimpselectionoptions.c + * app/tools/gimptransformoptions.c: don't add the label into the + stock box, use an extra hbox with 2 pixels spacing. + +2008-03-08 Martin Nordholts + + * app/tools/gimppolygonselecttool.c: Don't draw the handle for a + vertex while it is being moved. + +2008-03-08 Martin Nordholts + + * app/tools/gimprectangletool.c: Added TODO on how to improve the + code by changing the way the rectangle is represented internally. + +2008-03-07 Sven Neumann + + * etc/controllerrc: changed default mouse-wheel bindings to act on + the active tool instead of controlling the context. + +2008-03-07 Sven Neumann + + * app/display/gimpdisplayshell-preview.c: minor optimization. + +2008-03-06 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_tool_events): minor formatting fixes. + +2008-03-06 Michael Natterer + + * app/pdb/gimppdb-utils.[ch]: add gimp_pdb_get_vectors_stroke() + which is a replacement for gimp_vectors_stroke_get_by_ID() and + sets an error message if the stroke doesn't exist. + + * tools/pdbgen/pdb/vectors.pdb: use it. + + * app/pdb/vectors_cmds.c: regenerated. + +2008-03-06 Sven Neumann + + * app/actions/tools-actions.c + * app/actions/tools-commands.[ch] + * app/tools/gimptransformtool.c: allow to control the preview + opacity by actions (defaults to < to > keys). + +2008-03-06 Sven Neumann + + * app/tools/gimptransformtool.c + * app/tools/gimptransformoptions.[ch] + * app/display/gimpdisplayshell-preview.c: take the preview opacity + from the transform tool options. Based on a patch from Tom Lechner. + Closes bug #520690. + +2008-03-06 Sven Neumann + + * app/display/gimpdisplayshell-preview.c: don't do the blending + here, just apply the opacity on the pixbuf's alpha channel. + +2008-03-05 Sven Neumann + + * app/display/gimpdisplayshell-preview.c: applied a modified and + further optimized version of the patch from Tom Lechner as + attached to bug #167926. This makes the transform preview take + the layer opacity into account. Needs some more work... + +2008-03-05 Sven Neumann + + * app/tools/gimptransformtool.[ch]: applied some unrelated + cleanups from a patch from Tom Lechner (from bug #167926). + +2008-03-05 Michael Natterer + + * app/display/gimpdisplayshell.h: changed PROJ_ROUND() macros to + use RINT() so they work correctly with negative numbers. + + * app/tools/gimpdrawtool.c + (gimp_draw_tool_draw_line) + (gimp_draw_tool_draw_dashed_line) + (gimp_draw_tool_draw_rectangle) + (gimp_draw_tool_draw_arc) + (gimp_draw_tool_draw_boundary): use floating-point coordinate + transform functions again. These functions were changed to use + integer transform functions in 2004 (!!) which broke sub-pixel + precision drawing for stuff like straight-line and blend tool + and also sub-pixel drawing of the brush outline. + + Should be backported to 2.4 after it has shown no ill effects in + trunk. + +2008-03-04 Sven Neumann + + * app/actions/edit-commands.c (edit_copy_visible_cmd_callback) + (edit_cut_cmd_callback): added statusbar messages informing the + user that pixels have been transferred to the clipboard. + +2008-03-04 Sven Neumann + + * app/core/gimpdrawable-transform.c (gimp_drawable_transform_cut): + clear the selection after cutting it as gimp_selection_extract() + doesn't do this for us any longer. See bug #510534. + +2008-03-02 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-coords.c + (gimp_display_shell_eval_event): applied slightly modified patch + from Alexia Death as attached to bug #508639. + +2008-03-01 Martin Nordholts + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_draw): Only draw the grabbed point, not + all points. Drawing all points adds unnecessary clutter to the + user interface. + (gimp_polygon_select_tool_select_closest_point): Handle drawing of + grabbed points. + +2008-02-29 Michael Natterer + + * app/gui/ige-mac-menu.[ch]: synced copies from upstream. + +2008-02-28 Michael Natterer + + * app/core/gimpcurve.[ch]: get rid of fixed-size arrays and + allocate the points and curve arrays dynamically. Added "n-points" + and "n-samples" CONSTRUCT_ONLY properties. Renamed member "curve" + to "samples". Lots of code changes to work with dynamic limits + rather than 17 and 256. + + * app/core/gimpdrawable-curves.c + * app/gegl/gimpcurvesconfig.c + * app/tools/gimpcurvestool.c + * app/widgets/gimpcurveview.c: changed accordingly. + +2008-02-28 Michael Natterer + + * cursors/Makefile.am + * cursors/gimp-tool-cursors.xcf + * cursors/tool-polygon-select.png + * cursors/xbm/tool-polygon-select.xbm + * cursors/xbm/tool-polygon-select-mask.xbm + * app/widgets/widgets-enums.h + * app/widgets/gimpcursor.c: new cursor for polygon select. + + * app/tools/gimppolygonselecttool.c: use it. + +2008-02-27 Sven Neumann + + * INSTALL + * configure.in: depend on GEGL 0.0.16 or newer. + +2008-02-27 Sven Neumann + + * app/core/gimpdrawable-transform.c (gimp_drawable_transform_affine): + pass the direction parameter down to + gimp_drawable_transform_tiles_affine() instead of hardcoding it to + GIMP_TRANSFORM_FORWARD. Fixes bug #518910. + +2008-02-27 Sven Neumann + + * app/gui/gui-vtable.c (gui_display_create): added a sanity check + which might help to catch the problem reported in bug #518905. + +2008-02-26 Sven Neumann + + * app/Makefile.am (gimp_2_5_LDFLAGS): don't assume that global + AM_LDFLAGS and per-target LD_FLAGS would sum up and explicitly add + AM_LDFLAGS to gimp_2_5_LDFLAGS. + +2008-02-26 Sven Neumann + + * plug-ins/print/print.h (struct PrintData): removed unused field. + + * plug-ins/print/print-page-layout.c: set a minimum size of 1/100 + of the paper size. + +2008-02-26 Michael Natterer + + * app/tools/gimppolygonselecttool.c: draw handles at the corners + and use the MOVE cursor modifier when we are moving them. Fix draw + tool pause/resume in button_press() plus some minor cleanup. + +2008-02-26 Sven Neumann + + * plug-ins/print/print-page-layout.[ch] + * plug-ins/print/print.c: pressing F1 on the "Image Settings" tab + calls the GIMP help browser. + +2008-02-26 Sven Neumann + + * libgimpwidgets/gimpchainbutton.c: use a private inner class + directly derived from GtkWidget for drawing the lines. This saves + us two input windows. + +2008-02-26 Sven Neumann + + * plug-ins/print/print-preview.c: take the reading direction into + account and do the right thing for RTL languages. + +2008-02-26 Kevin Cozens + + * plug-ins/script-fu/scripts/frosty-logo.scm: Commited slightly + modified patch from LightningIsMyName. Fixes bug #472316. The + appearance of the sparkle layer could be better. + +2008-02-26 Michael Natterer + + * app/display/gimpdisplayshell-transform.[ch] + (gimp_display_shell_transform_points) + * app/tools/gimpdrawtool.[ch] (gimp_draw_tool_draw_lines): take + arrays of GimpVector2 instead of arrays of gdouble to represent + the input points. + + * app/display/gimpdisplayshell-draw.c + * app/tools/gimppolygonselecttool.c + * app/tools/gimpfreeselecttool.c: don't cast the GimpVector2 arrays + to double arrays when passing them to above functions. + + * app/tools/gimpiscissorstool.c: create a temporary GimpVector2 + array instead of a temporary gdouble array. + +2008-02-26 Michael Natterer + + * app/tools/gimppolygonselecttool.c: rename member num_points to + n_points and various small cleanups all over the place. + +2008-02-26 Sven Neumann + + * configure.in: use AM_PROG_CC_C_O to fix warning with automake 1.10. + Removed obsolete call to AM_PROG_CC_STDC. + +2008-02-26 Sven Neumann + + * app/version.c (gimp_show_library_version): made the library + version information easier to translate. + +2008-02-26 Tor Lillqvist + + * app/version.c (gimp_show_library_versions): Show also GEGL + version. + +2008-02-26 Sven Neumann + + * plug-ins/print/print-preview.c: create a Cairo image surface + from the data returned from gimp_drawable_get_thumbnail() instead + of using an intermediate GdkPixbuf. This code should eventually + end up in libgimpui. + +2008-02-26 Sven Neumann + + * docs/gimp.1.in: document the "--version --verbose" option. + +2008-02-26 Tor Lillqvist + + * app/version.[ch]: New files. Rename gimp_show_version() to + gimp_version_show() and move here. When given both --version and + --verbose, print build-time and run-time versions of the most + important dependencies. + + * app/Makefile.am: Add them. + + * app/main.c: Call gimp_version_show(). + + * app/Makefile.am: Use -mwindows only for the GUI gimp, not for + gimp-console. + +2008-02-26 Sven Neumann + + * plug-ins/print/print-preview.c + * plug-ins/print/print-page-layout.c: let the preview widget + allocate a reasonable size. + +2008-02-26 Sven Neumann + + * plug-ins/print/print-preview.c: use a different cursor when + dragging, just like GimpScrolledPreview. + +2008-02-26 Sven Neumann + + * libgimpwidgets/gimpchainbutton.c: use event boxes without + visible window instead of drawing areas for the lines besides the + button. Fixes the background which was drawn wrongly for many + themes. + +2008-02-26 Sven Neumann + + * plug-ins/print/print-preview.[ch]: derive from GtkEventBox and + draw on the parent window. + + * plug-ins/print/print-page-layout.c: tweaked dialog layout. + +2008-02-25 Sven Neumann + + * plug-ins/print/Makefile.am + * plug-ins/print/print-utils.[ch]: added new files with utility + functions. + + * plug-ins/print/print-settings.c: use the new utility + functions for loading and saving GKeyFile. + + * plug-ins/print/print-page-setup.[ch] + * plug-ins/print/print.c: also store the page setup in an image + parasite. Fixes most of what remained to be done for bug #513291. + +2008-02-25 Sven Neumann + + * plug-ins/print/print-settings.[ch] + * plug-ins/print/print.c: code cleanup. + +2008-02-25 Sven Neumann + + * plug-ins/print/print.c (end_print): use g_timeout_add_seconds(). + +2008-02-24 Sven Neumann + + * app/actions/edit-actions.c: removed default keyboard shortcuts + from actions that work with named buffers. Use Ctrl-Shift-V as the + default keyboard shortcut for "Paste As New Image" and + Ctrl-Shift-C for "Copy Visible". + +2008-02-24 Sven Neumann + + * plug-ins/print/print.c (print_image): added missing call to + gtk_print_operation_set_unit(). + +2008-02-22 Sven Neumann + + * plug-ins/print/print.c: use GTK_STOCK_PAGE_SETUP when compiled + against GTK+ >= 2.13.0. + +2008-02-22 Sven Neumann + + * plug-ins/print/print-draw-page.c: added support for grayscale + images so we don't need to go through an extra export step. + +2008-02-22 Sven Neumann + + * plug-ins/print/print.c + * plug-ins/print/print-draw-page.[ch]: code cleanup. + +2008-02-22 Sven Neumann + + * plug-ins/common/tileit.c + * plug-ins/common/warp.c + * plug-ins/common/struc.c: fixed the same problem as in the Wind + plug-in here as well (see bug #516369). + +2008-02-22 Sven Neumann + + * plug-ins/print/print-draw-page.c (draw_page_cairo): when + printing an image with alpha channel, use a Cairo surface with + alpha channel instead of doing a blend on a white background. + +2008-02-22 Sven Neumann + + * plug-ins/print/print-draw-page.c (draw_page_cairo): access the + pixels tile-by-tile instead of row-by-row. + +2008-02-22 Sven Neumann + + * plug-ins/common/wind.c (render_wind) (render_blast): fixed calls + to gimp_drawable_mask_intersect() which was causing a crash as + reported in bug #516369. + +2008-02-21 Michael Natterer + + * app/actions/plug-in-actions.c (plug_in_actions_history_changed): + don't call plug_in_actions_update() because that updated the + sensitivity of *all* plug-in actions according to the properties + of the *current* image. Instead, look up the original GtkAction of + the history items of *this* action group and copy the sensitivity + from that action. Fixes bug #517683. + +2008-02-21 Sven Neumann + + * tools/pdbgen/app.pl (marshal_outargs): insert a missing newline + for procedures without additional return values. + + * tools/pdbgen/pdb/display.pdb: cosmetics. + + * app/pdb/brushes_cmds.c + * app/pdb/context_cmds.c + * app/pdb/display_cmds.c + * app/pdb/fonts_cmds.c + * app/pdb/gradients_cmds.c + * app/pdb/palettes_cmds.c + * app/pdb/patterns_cmds.c: regenerated. + +2008-02-21 Sven Neumann + + * plug-ins/print/print-preview.[ch]: code cleanup. + +2008-02-21 Sven Neumann + + * plug-ins/print/print-preview.[ch]: provide feedback when hovering + over the preview. + +2008-02-21 Sven Neumann + + * plug-ins/print/print-preview.c (gimp_print_preview_expose_event): + changed drawing so that strokes are not scaled. + +2008-02-20 Michael Natterer + + * app/core/gimpcurve.c: add precondition checks. + + * app/core/gimpdrawable-curves.c (gimp_drawable_curves_spline): + divide values by 255 before setting them on the curve. Fixes crash + when using curves from the PDB. + +2008-02-19 Sven Neumann + + * plug-ins/print/print-preview.c (gimp_print_preview_expose_event): + code cleanup. Always draw the preview. + +2008-02-19 Bill Skaggs + + * plug-ins/jpeg/jpeg-exif.c: correctly record dimensions when + saving an image. Fixes bug #517077. + +2008-02-19 Sven Neumann + + * app/app.c + * app/batch.c + * app/core/gimp.c + * app/gui/gui.c: use G_STRFUNC instead of hardcoding the function + name in verbose output. + +2008-02-19 Sven Neumann + + * plug-ins/script-fu/scripts/glossy.scm: actually use the "Default + Bumpmap Settings" parameter. Problem spotted by Ulf-D. Ehlert. + +2008-02-19 Sven Neumann + + * plug-ins/script-fu/scripts/glossy.scm: applied patch from + Ulf-D. Ehlert that fixes a bug in the Glossy script when used with + a pattern instead of a gradient blend (bug #517285). + +2008-02-19 Manish Singh + + * plug-ins/pygimp/gimpmodule.c: add gimp.exit(), a wrapper around + the PDB function gimp-quit. + +2008-02-18 Sven Neumann + + * app/batch.c (batch_exit_after_callback): synced cleanup + procedure with app_exit_after_callback() and documented its purpose. + +2008-02-18 Michael Natterer + + * app/tools/gimpgegltool.c (gimp_gegl_tool_config_get_property): + clean up generic property handling of generated settings classes. + +2008-02-18 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_initialize): + don't create the recent settings menu if the tool did not set a + config object. + + * app/tools/gimpgegltool.[ch]: pack the operation's settings in a + frame and add a label when there is no operation selected. + +2008-02-16 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + * app/tools/gimpforegroundselecttool.c + * app/tools/gimpimagemaptool.c + * app/tools/gimpiscissorstool.c + * app/tools/gimppolygonselecttool.c + * app/tools/gimprectangletool.c + * app/tools/gimptransformtool.c + * app/tools/gimpvectortool.c + * app/widgets/gimpcontainerpopup.c + * app/widgets/gimppaletteview.c + * libgimpwidgets/gimpcolorhexentry.c + * libgimpwidgets/gimpnumberpairentry.c + * plug-ins/script-fu/script-fu-console.c: Unify the handling of + various "Enter" and "Space" keysyms all over the place. Fixes bug + #516544 (also see gtk bug #515047). + +2008-02-15 Kevin Cozens + + * configure.in: Adding a ; to the end of the list of mime types in + the gimp.desktop file. Fixes 'make dist'. + +2008-02-14 Michael Natterer + + * libgimpwidgets/Makefile.am + * libgimpwidgets/gimpscaleentry.[ch]: cleanup. + +2008-02-14 Bill Skaggs + + Merged from weskaggs branch at Mitch's request. Will + need to update devel docs. + + Place scale entry code into separate files, no + functional changes. + + * libgimpwidgets/gimpscaleentry.c + * libgimpwidgets/gimpscaleentry.h: new files. + + * libgimpwidgets/gimpwidgets.[ch] + * libgimpwidgets/Makefile.am: changed accordingly. + +2008-02-14 Sven Neumann + + * app/text/gimpfont.c (gimp_font_get_sample_string): check if the + font has the glyphs from the sample string. Fixes bug #514021. + +2008-02-13 Bill Skaggs + + * plug-ins/common/vpropagate.c: change "darker" to "lighter" + in blurb, in response to comment #24 in bug #156545. + +2008-02-13 Bill Skaggs + + * app/widgets/gimpcolormapeditor.c: change wording of new + hint for non-indexed images. + +2008-02-12 Michael Natterer + + * app/gegl/gimpoperationcolorbalance.c + * app/gegl/gimpoperationcolorize.c + * app/gegl/gimpoperationcurves.c + * app/gegl/gimpoperationdesaturate.c + * app/gegl/gimpoperationhuesaturation.c + * app/gegl/gimpoperationlevels.c + * app/gegl/gimpoperationposterize.c + * app/gegl/gimpoperationthreshold.c + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c: added categories and very + lame descriptions. Dunno if the categories are good that way but + at least they are not NULL now. + +2008-02-12 Sven Neumann + + * app/widgets/gimpcolormapeditor.[ch]: show a hint on non-indexed + images. Based on a patch from Olof Frahm. Closes bug #438217. + +2008-02-12 Sven Neumann + + * plug-ins/gfli/fli.c: applied patch from David Capello that fixes + loading of fli files that specify width and height as zero + (interpreting this as 320x200). It also fixes a problem in an + unused code path (writing of differential color chunks). + +2008-02-12 Sven Neumann + + * app/widgets/gimplanguagestore-parser.c: inverted logic; #ifdef + is IMO easier to read than #ifndef. + +2008-02-12 Tor Lillqvist + + * app/widgets/gimplanguagestore-parser.c + (gimp_language_store_populate): Don't use the compile-time paths + to iso-codes on Windows. Instead assume iso-codes is installed in + the same location as GIMP. Make sure translated language names are + in UTF-8 by calling bind_textdomain_codeset(). + +2008-02-11 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimplanguageentry.[ch] + * app/widgets/gimptexteditor.c: turned language entry into a widget. + +2008-02-11 Michael Natterer + + * app/widgets/gimptexteditor.c (gimp_text_editor_new): enable + wrapping so the text doesn't scroll out horizontally. + +2008-02-11 Sven Neumann + + * plug-ins/pygimp/plug-ins/pyconsole.py: formatting. + +2008-02-11 Michael Natterer + + * app/core/gimpcurve.[ch]: add gimp_curve_get_point(). + + * app/gegl/gimpcurvesconfig.c + * app/widgets/gimpcurveview.c: use it instead of accessing the + points array directly. + +2008-02-11 Sven Neumann + + * libgimpthumb/Makefile.am (libgimpthumb_2_0_la_LIBADD): + explicitly added GLIB_LIBS. Fixes bug #515566. + +2008-02-11 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesource.c: context_id argument was + removed from the process() call of GeglOperationSource. + +2008-02-10 Michael Natterer + + * app/widgets/gimpeditor.c: add button-relief style property which + defaults to NONE. + +2008-02-10 Bill Skaggs + + * app/widgets/gimpeditor.c: draw editor buttons without + relief, see bug #515621. + +2008-02-09 Bill Skaggs + + * plug-ins/common/ripple.c: add a "phase shift" control, + for interactive use only. Fixes bug #515144. + +2008-02-09 Michael Natterer + + * tools/pdbgen/pdb/color.pdb: don't include + + * app/pdb/color_cmds.c: regenerated. + +2008-02-09 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesource.c: + %s/get_defined_region/get_bounding_box/ + %s/adjust_result_region/get_cached_region/ + +2008-02-09 Michael Natterer + + * app/core/gimpcurve.[ch]: keep the anchor points as an array of + GimpVector2 instead of plain doubles. + + * app/gegl/gimpcurvesconfig.c + * app/widgets/gimpcurveview.c: changed accordingly. + +2008-02-09 Michael Natterer + + * app/widgets/gimpcurveview.c (gimp_curve_view_draw_point): cleanup. + +2008-02-09 Michael Natterer + + * app/widgets/gimpcurveview.[ch]: port internal cursor stuff to + gdouble, fix off-by-one in curve drawing, fix drawing artefact in + handle drawing by starting drawing on the handle's outline and not + its center. + +2008-02-09 Michael Natterer + + * app/widgets/gimpcurveview.[ch]: port the "xpos" API + to [0.0..1.0] doubles too. + + * app/tools/gimpcurvestool.[ch]: rename "col_value" member to + "picked_color" and use gdouble instead of gint. Also use GimpCurve + API to map the values instead of accessing the curve directly. + Fixes setting curve anchor points by color picking. + +2008-02-09 Michael Natterer + + * app/core/gimpcurve.[ch]: changed all values to be [0.0..1.0] + doubles instead of [0..255] integers. Also changed the API to use + doubles instead of ints. Still have the fixed-size arrays though. + + (gimp_curve_map): new function to map values. + + * app/gegl/gimpoperationcurves.c: remove private map() function + and use the one from GimpCurve. + + * app/gegl/gimpcurvesconfig.c + * app/core/gimpdrawable-curves.c: port to the new gdouble API. + + * app/tools/gimpcurvestool.c: use gimp_curve_get_uchar() to get + the arrays for the color bars. + + * app/widgets/gimpcurveview.[ch]: port to gdouble and some cleanup. + +2008-02-08 Sven Neumann + + * app/widgets/gimptexteditor.c: use an entry with completion for + language selection. Still not functional. + +2008-02-08 Sven Neumann + + * app/widgets/gimplanguagestore.[ch] + * app/widgets/gimplanguagestore-parser.c: actually populate the + language store. Still work in progress... + + * app/widgets/gimptexteditor.c: added a combo-box for language + selection. Not functional yet; just something to play with. + +2008-02-08 Sven Neumann + + * app/widgets/gimplanguagestore-parser.c: implemented the parser. + + * app/dialogs/tips-parser.c: minor cleanup. + +2008-02-08 Tor Lillqvist + + * libgimpconfig/gimpconfig.def: Add gimp_config_copy. + +2008-02-07 Michael Natterer + + * tools/pdbgen/app.pl: add some perl evilness to make the includes + in the generated files look almost like they should. + + * tools/pdbgen/pdb/*.pdb: remove inclusion of "core/gimp.h" where + not needed, clean up lists of includes and functions and reorder + some functions to make more sense. Zero logic changed. + + * app/pdb/*_cmds.c + * libgimp/gimpcontext_pdb.[ch] + * libgimp/gimpbrush_pdb.[ch]: regenerated. + +2008-02-07 Sven Neumann + + * configure.in: added configure checks for the iso-codes package. + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimplanguagestore.[ch]: + * app/widgets/gimplanguagestore-parser.[ch]: added rough outline + of GtkListStore for language selection. + +2008-02-07 Michael Natterer + + * app/base/base-utils.[ch]: add get_pid() which returns getpid(). + + * app/base/base.c + * app/base/tile-swap.c + * app/core/gimp-utils.c + * app/plug-in/gimppluginshm.c + * app/widgets/gimpselectiondata.c + * tools/pdbgen/pdb/misc.pdb: use it instead of getpid() and remove + all the #ifdef'ed includes getpid() needs. + + * tools/pdbgen/app.pl: remove support for these includes. Also + remove some perl cruft in the include handling which is not needed + any longer. + + * app/pdb/misc_cmds.c: regenerated. + +2008-02-07 Michael Natterer + + * app/app.c: #include instead of + +2008-02-07 Sven Neumann + + * app/text/gimptext-parasite.c: formatting. + +2008-02-06 Michael Natterer + + * app/tools/gimpgegltool.c (gimp_param_spec_duplicate) + * app/widgets/gimppropwidgets.c (gimp_prop_table_new): add support + for GParamSpecEnum. + + * app/core/gimpimagemap.c (gimp_image_map_apply): add even better + checks for input and output pads of the passed operation. + +2008-02-06 Michael Natterer + + * app/paint/gimpclone.c + * app/paint/gimpheal.c + * app/paint/gimpink.c + * app/widgets/gimphistogrameditor.c: remove includes that are + not needed any longer. + +2008-02-06 Michael Natterer + + * app/gegl/gimpoperationposterize.c + * app/gegl/gimpoperationhuesaturation.c (process): don't crash if + there is no config object. + +2008-02-06 Michael Natterer + + * app/core/gimpimagemap.c (gimp_image_map_apply): when using a + source operation, blend its output over the original image using + "over" instead of simply replacing the original image. + +2008-02-06 Michael Natterer + + * app/tools/gimpgegltool.c (gimp_param_spec_duplicate) + * app/widgets/gimppropwidgets.c (gimp_prop_table_new): support + multiline text and file paths. The multiline support is hacked up + and needs some proper solution. + +2008-02-05 Michael Natterer + + * app/tools/gimpgegltool.c: don't include any longer. + +2008-02-05 Michael Natterer + + * app/widgets/gimppropwidgets.c (gimp_prop_table_new): don't forget + the label for entry widgets. + +2008-02-05 Martin Nordholts + + Applied patch from Olof Frahm which makes loading of data + files (brushes and so on) happen recursively (bug #514160). + + * app/core/gimpdatafactory.c + (gimp_data_factory_data_load): Recursively search sub directories + for data files using the new helper function + (gimp_data_factory_load_data_recursive) + +2008-02-05 Sven Neumann + + * app/tools/gimpgegltool.c: spelling fix. + +2008-02-05 Michael Natterer + + * app/core/gimpimagemap.c (gimp_image_map_apply): use + gegl_node_get_pad() instead of gegl_node_find_property() to find + out whether the node has an "input" pad. + + * app/tools/gimpgegltool.c: #include "core/gimpimagemap.h" + +2008-02-05 Sven Neumann + + * themes/Default/images/stock-gegl-24.png + * themes/Default/images/stock-gegl-16.png: replaced placeholder + icon by a crappy drawing of a genetically engineered goat, large. + +2008-02-05 Michael Natterer + + * app/core/gimpimagemap.c (gimp_image_map_apply): do the right + thing for operations without "input" pad so we can use all source + operations too. + + * app/tools/gimpimagemaptool.[ch]: make + gimp_image_map_tool_create_map() public for the time being. + + * app/tools/gimpgegltool.c (gimp_gegl_tool_operation_changed): + recreate the GimpImageMap so we can switch from filter to source + operations and back. + +2008-02-05 Michael Natterer + + * app/widgets/gimppropwidgets.[ch] (gimp_prop_table_new): new + function which creates a table of prop widgets for all properties + of an object (pretty incomplete, does exactly what's needed in + GimpGeglTool, or even less). + + * app/tools/gimpgegltool.c: create a proxy config class for each + GegÄēOperation and create a prop table on the config class' + properties as GUI for the GEGL operation. Write the proxy object's + properties back to the GeglNode in map(). + +2008-02-05 Sven Neumann + + * app/display/gimpdisplayshell-transform.c: changed coordinate + transformation for floats. Fixes bug #510294. + +2008-02-05 Sven Neumann + + * app/dialogs/image-new-dialog.c (image_new_create_image): + use the user context when creating the new image. Fixes bug #514082. + +2008-02-05 Sven Neumann + + * plug-ins/common/mail.c: simplified code and user interface by + removing the uuencode option and the comment field which only + duplicated the message body. + (to64): fixed a bug in the base64 encoding. + +2008-02-05 Sven Neumann + + * plug-ins/common/mail.c: changed menu label and dialog title to + "Send by Email". + +2008-02-05 Sven Neumann + + * plug-ins/print/print.c: removed ellipsis from "Page Setup" menu + entry as specified in the HIG. + +2008-02-05 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_response): don't + try to add a NULL config to the recent settings menu. + +2008-02-05 Michael Natterer + + * themes/Default/images/Makefile.am + * themes/Default/images/stock-gegl-16.png + * themes/Default/images/stock-gegl-24.png + * libgimpwidgets/gimpstock.[ch]: new stock icon to be replaced by + somebody who can draw ;) + + * app/tools/gimpgegltool.c: use it. + +2008-02-05 Michael Natterer + + * app/tools/Makefile.am + * app/tools/gimpgegltool.[ch]: add experimental GEGL tool which + will allow to try arbitrary GEGL operations. 100% unusable at the + moment. + + * app/tools/gimp-tools.c: register it. + + * app/dialogs/dialogs.c: register its dialog. + + * menus/image-menu.xml.in: add it to the tools menu. + +2008-02-05 Sven Neumann + + * plug-ins/common/psd-save.c (write_pixel_data): check if drawable + is a layer before trying to access the layer mask. + +2008-02-04 Sven Neumann + + * app/display/gimpdisplayshell-preview.c + (gimp_display_shell_trace_tri_edge): use a gint for direction, not + a gchar which might be unsigned. Patch from Giuliano Pochini; + fixes bug #340965. + +2008-02-04 Sven Neumann + + * plug-ins/print/print-page-layout.c: only connect to page layout + changes for the lifetime of the dialog. + + * plug-ins/print/print-page-setup.[ch] + * plug-ins/print/print.c: use a temporary procedure to notify the + Print procedure about changes to the page setup. + +2008-02-04 Michael Natterer + + * app/base/gimphistogram.[ch]: add refcounting and replace free() + API by ref() and unref(). + + * app/core/gimpdrawable-equalize.c + * app/core/gimpdrawable-levels.c + * app/widgets/gimphistogrameditor.c + * tools/pdbgen/pdb/color.pdb: replace calls to + gimp_histogram_free() by gimp_histogram_unref(). + + * app/pdb/color_cmds.c: regenerated. + + * app/widgets/gimphistogramview.c: reference the histograms so we + don't need the widget's users to keep them around while the widget + exists. + + * app/tools/gimpcurvestool.[ch]: remove the histogram from the + tool struct and just create one locally to set it on the histogram + view widget. + + Unrelated: + + * app/tools/gimplevelstool.[ch] + * app/tools/gimpthresholdtool.[ch]: renamed "hist" members to + "histogram" plus some cleanup. + +2008-02-04 Michael Natterer + + * plug-ins/script-fu/script-fu.c: rename "Script-Fu Console" menu + item to simply "Console". + +2008-02-04 Michael Natterer + + * app/pdb/gimppdb-utils.[ch]: add gimp_pdb_item_is_attached() + which is a replacement for gimp_item_is_attached() and returns a + proper error message. + + * tools/pdbgen/pdb/color.pdb + * tools/pdbgen/pdb/drawable.pdb + * tools/pdbgen/pdb/drawable_transform.pdb + * tools/pdbgen/pdb/edit.pdb + * tools/pdbgen/pdb/floating_sel.pdb + * tools/pdbgen/pdb/layer.pdb + * tools/pdbgen/pdb/paint_tools.pdb + * tools/pdbgen/pdb/selection.pdb + * tools/pdbgen/pdb/text_tool.pdb + * tools/pdbgen/pdb/transform_tools.pdb: use it. + + * app/pdb/color_cmds.c + * app/pdb/drawable_cmds.c + * app/pdb/drawable_transform_cmds.c + * app/pdb/edit_cmds.c + * app/pdb/floating_sel_cmds.c + * app/pdb/layer_cmds.c + * app/pdb/paint_tools_cmds.c + * app/pdb/selection_cmds.c + * app/pdb/text_tool_cmds.c + * app/pdb/transform_tools_cmds.c: regenerated. + +2008-02-04 Sven Neumann + + * plug-ins/print/Makefile.am + * plug-ins/print/print-page-setup.[ch]: new files. + + * plug-ins/print/print-page-layout.c + * plug-ins/print/print-settings.c + * plug-ins/print/print.c: first draft of a Page Setup menu entry + instead of the "Adjust Page Size" button (bug #513291). + + * plug-ins/print/print.h + * plug-ins/print/print-draw-page.c: removed unused code. + +2008-02-04 Sven Neumann + + * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): + changed workaround to look at the brush size instead (bug #514309). + +2008-02-04 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_add_recent): + use localtime() instead of localtime_r() and don't use %F in + strftime(). Fixes bug #513966. + +2008-02-04 Michael Natterer + + * app/core/Makefile.am + * app/core/gimpdrawable-brightness-contrast.[ch] + * app/core/gimpdrawable-color-balance.[ch] + * app/core/gimpdrawable-colorize.[ch] + * app/core/gimpdrawable-curves.[ch] + * app/core/gimpdrawable-hue-saturation.[ch] + * app/core/gimpdrawable-posterize.[ch] + * app/core/gimpdrawable-threshold.[ch]: new files containing all + the code that was in pdb/color_cmds.c. Cleaned up and GEGL-enabled + everyting. + + * tools/pdbgen/pdb/color.pdb: remove almost all code and simply call + the new functions. + + * app/pdb/color_cmds.c: regenerated. + +2008-02-04 Sven Neumann + + * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): + only smooth the inner area of the mask so that we don't enlarge + the boundary for hard brushes (bug #304798). + +2008-02-04 Michael Natterer + + * app/tools/gimplevelstool.[ch] + * app/tools/gimpcurvestool.[ch]: remove boolean "color" and "alpha" + members from the tool structs and ask the drawable instead when + needed. + +2008-02-04 Michael Natterer + + * app/gegl/gimpthresholdconfig.[ch]: add "gboolean color" + parameter to gimp_threshold_config_to_cruft() and set the "color" + boolean in the Threshold cruft struct. + + * app/tools/gimpthresholdtool.c: don't fiddle with the cruft + struct any longer and pass gimp_drawable_is_rgb() to above + function instead. + +2008-02-02 Martin Nordholts + + * INSTALL: Update GEGL dependency to GEGL trunk. + +2008-02-02 Martin Nordholts + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_commit): Only create a selection from + the polygon if there are 3 or more vertices. + +2008-02-02 Martin Nordholts + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_oper_update): Don't hide the pending + point line if we are grabbing the first point. + (gimp_polygon_select_tool_motion): Also update the pending point + if we are moving the first point. + +2008-02-02 Martin Nordholts + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_remove_last): Properly halt the tool + when there are no vertices left. + +2008-02-02 Martin Nordholts + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_commit): Add a call to + gimp_image_flush() so that the undo state gets updated. + +2008-02-01 Martin Nordholts + + * themes/Default/images/tools/stock-tool-polygon-select-22.png: + Lower opacity of shadow to mimic appearance of other tool icons. + +2008-02-01 Michael Natterer + + * app/tools/gimpcurvestool.c: fix various curves tool brokenness. + Should behave (TM) now. + +2008-02-01 Michael Natterer + + * app/core/core-types.h + * app/gegl/gegl-types.h: have app/gegl know app/core's namespace. + + * app/gegl/gimpoperationcurves.h: remove temp hack includes. + + * app/gegl/gimpoperationcurves.c: include "core/gimpcurve.h" + + * app/gegl/gimpbrightnesscontrastconfig.[ch] + * app/gegl/gimpcolorbalanceconfig.[ch] + * app/gegl/gimpcolorizeconfig.[ch] + * app/gegl/gimpcurvesconfig.[ch] + * app/gegl/gimphuesaturationconfig.[ch] + * app/gegl/gimplevelsconfig.[ch] + * app/gegl/gimpoperationcurves.[ch] + * app/gegl/gimpposterizeconfig.[ch] + * app/gegl/gimpthresholdconfig.[ch]: derive from GimpViewable, install + properties using the GimpConfig macros, add implementations of + GimpConfigInterface::equal() and ::copy() where needed. + + * app/tools/gimpimagemaptool.[ch]: add prototype of a menu of + recently used settings so the same color correction can easily be + applied to many images. + +2008-02-01 Michael Natterer + + * app/widgets/gimpcontainerview.c + (gimp_container_view_set_container): refuse containers if their + children are not GimpViewables instead of crashing later. + +2008-02-01 Michael Natterer + + * app/tools/gimppolygonselecttool.h: fix include guards. + +2008-02-01 Michael Natterer + + * libgimpconfig/gimpconfig-iface.[ch]: add new method + GimpConfigInterface::copy() which by default calls + gimp_config_sync() but is overridable for objects which are not + entirely property-defined or otherwise evil. + + Freeze/thaw property notifications in deserialize() and reset(). + + * libgimpconfig/gimpconfig-utils.c (gimp_config_sync): freeze/thaw + property notifications on the dest object. + +2008-02-01 Sven Neumann + + * plug-ins/print/print.c: some minor cleanups and preparation for + adding a dedicated Page Setup menu entry (bug #513291). + +2008-01-31 Sven Neumann + + * plug-ins/common/mail.c: string change. + +2008-01-31 Sven Neumann + + Delay GEGL initialisation until after the command-line parsing so + that we can detect an already running GIMP instance and delegate + to that without going through the GEGL and babl initialisation. + + * app/app.c (app_libs_init): don't add the GEGL options group + here. GEGL doesn't add any command-line options and it doesn't + look as if it would do that anytime soon. + + * app/gegl/gimp-gegl.c (gimp_gegl_init): initialize GEGL here. + +2008-01-31 Sven Neumann + + * plug-ins/common/iwarp.c: choose a better tile cache size. + +2008-01-31 Martin Nordholts + + * app/tools/gimppolygonselecttool.[ch]: Code formating overhaul. + +2008-01-31 Martin Nordholts + + * app/tools/gimppolygonselecttool.[ch]: Made object instance + struct definition completely a private implementation detail. + +2008-01-31 Martin Nordholts + + * app/tools/gimppolygonselecttool.c + (gimp_polygon_select_tool_real_select): Correct undo description. + +2008-01-30 Martin Nordholts + + Added a Polygon Select Tool which is a primitive selection tool + based on Free Select Tool. Code filtered through David Gowers who + also made the tool icon. This version of the tool is a for-now + solution to bug #119646. + + * app/tools/gimppolygonselecttool.[ch]: The new tool. + + * app/tools/gimp-tools.c: Add the tool. + + * app/tools/Makefile.am: Add tool source. + + * app/widgets/gimphelp-ids.h: Add help id for the tool. + + * libgimpwidgets/gimpstock.[ch]: Setup for the new tool icon. + + * menus/image-menu.xml.in: Add action entry for the tool. + + * themes/Default/images/tools/stock-tool-polygon-select-{16,22}.png: + Tool icon graphics. + + * themes/Default/images/Makefile.am: Add tool icon graphics. + +2008-01-30 Michael Natterer + + * app/tools/gimpimagemaptool.[ch]: add "GObject **config" return + value to GimpImageMapTool::get_operation() and memory-manage the + config object here. + + Add default implementation of GimpImageMapTool::reset() which + calls gimp_config_reset() on the config object. + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: return the config object in + get_operation() and don't unref it in finalize(). + + Connect to the config object's "notify" signal and update the GUI + in the callback. Also call gimp_image_map_tool_preview() there. + Removed all other GUI update functions and all calls to preview(). + + Removed reset() implementations which only called + gimp_config_reset(). + +2008-01-30 Michael Natterer + + * app/widgets/gimphistogramview.c + (gimp_histogram_view_set_channel) + (gimp_histogram_view_set_scale) + (gimp_histogram_view_set_range): don't emit signals/notifications + if the setting didn't change. + +2008-01-30 Øyvind KolÃĨs + + * app/gegl/gimpoperationcolorbalance.c: + * app/gegl/gimpoperationcolorize.c: + * app/gegl/gimpoperationcurves.c: + * app/gegl/gimpoperationdesaturate.c: + * app/gegl/gimpoperationhuesaturation.c: + * app/gegl/gimpoperationlevels.c: + * app/gegl/gimpoperationposterize.c: + * app/gegl/gimpoperationthreshold.c: + * app/gegl/gimpoperationtilesink.c: + * app/gegl/gimpoperationtilesource.c: + * app/gegl/gimpoperationdesaturate.c: stop using + gegl_operation_class_set_name() for gimp gegl ops. + +2008-01-30 Michael Natterer + + * app/gegl/gimpcolorbalanceconfig.c + * app/gegl/gimpcurvesconfig.c + * app/gegl/gimphuesaturationconfig.c + * app/gegl/gimplevelsconfig.c: add missing notifications on + property changes. + +2008-01-28 Michael Natterer + + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c (process): return FALSE when + there is no tile manager. + +2008-01-28 Sven Neumann + + * plug-ins/gimpressionist/*.[ch]: added missing copyright header. + +2008-01-28 Michael Natterer + + * app/gegl/gimpoperationcolorbalance.c + * app/gegl/gimpoperationcolorize.c + * app/gegl/gimpoperationcurves.c + * app/gegl/gimpoperationdesaturate.c + * app/gegl/gimpoperationhuesaturation.c + * app/gegl/gimpoperationlevels.c + * app/gegl/gimpoperationposterize.c + * app/gegl/gimpoperationthreshold.c: replace for() loops over the + samples by while() loop counting down the passed "samples" + parameter. + +2008-01-28 Michael Natterer + + * app/gegl/gimpcolorbalanceconfig.c + * app/gegl/gimpcolorizeconfig.c + * app/gegl/gimpcurvesconfig.c + * app/gegl/gimphuesaturationconfig.c + * app/gegl/gimplevelsconfig.c + * app/gegl/gimpoperationdesaturate.c + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c + * app/gegl/gimpposterizeconfig.c + * app/gegl/gimpthresholdconfig.c: coding style paranoia: changed + one byte per file. + +2008-01-28 Michael Natterer + + * libgimpconfig/gimpconfig-serialize.c + (gimp_config_serialize_property): fix API docs. + +2008-01-28 Michael Natterer + + * app/gegl/gegl-types.h + * app/gegl/Makefile.am + * app/gegl/gimpbrightnesscontrastconfig.[ch]: new config object. + + * app/tools/gimpbrightnesscontrasttool.[ch]: use it. + +2008-01-28 Sven Neumann + + * plug-ins/common/lcms.c (lcms_dialog): fixed crash on missing + profile (bug #512529). + +2008-01-28 Sven Neumann + + * plug-ins/common/lcms.c (lcms_load_profile) + * plug-ins/common/wmf.c (load_image): fixed error messages. + +2008-01-28 Michael Natterer + + * app/dialogs/keyboard-shortcuts-dialog.c + (keyboard_shortcuts_dialog_new): don't show the horizontal + scrollbar if it's not needed. + +2008-01-28 Sven Neumann + + * app/display/gimpdisplayshell.[ch] (gimp_display_shell_snap_coords): + removed redundant GimpCoords parameter that use to cause valgrind + warnings about overlapping memory regions in memcpy(). + + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-autoscroll.c: changed accordingly. + +2008-01-28 Sven Neumann + + * plug-ins/common/cubism.c: minor cleanups. + +2008-01-28 Michael Natterer + + * app/base/tile-manager.c + * plug-ins/common/lcms.c: use G_STRLOC instead of + G_GNUC_FUNCTION (which is now deprecated). + +2008-01-28 Tor Lillqvist + + * modules/controller_dx_dinput.c: Make it compile again. + +2008-01-28 Sven Neumann + + * plug-ins/gimpressionist/gimp.c: minor cleanup. + +2008-01-27 Michael Natterer + + * app/gegl/gimpcolorbalanceconfig.[ch] + * app/gegl/gimpcolorizeconfig.[ch] + * app/gegl/gimpcurvesconfig.[ch] + * app/gegl/gimphuesaturationconfig.[ch] + * app/gegl/gimplevelsconfig.[ch] + * app/gegl/gimpposterizeconfig.[ch] + * app/gegl/gimpthresholdconfig.[ch]: implement the GimpConfig + interface and remove public reset() functions except special ones + which reset only parts of the objects. Add lots of property + notifications. + + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: use gimp_config_reset(), misc. + related changes and cleanups. + +2008-01-27 Kevin Cozens + + * plug-ins/imagemap/imap_cern.[ly] + * plug-ins/imagemap/imap_csim.[ly] + * plug-ins/imagemap/imap_ncsa.[ly]: Dynamically allocate space to + hold comments, links, strings, and co-ordinate lists. + Fixes bug #511072. + + * plug-ins/imagemap/imap_cern_lex.c + * plug-ins/imagemap/imap_cern_parse.[ch] + * plug-ins/imagemap/imap_csim_lex.c + * plug-ins/imagemap/imap_csim_parse.[ch] + * plug-ins/imagemap/imap_ncsa_lex.c + * plug-ins/imagemap/imap_ncsa_parse.[ch]: Regenerated. + +2008-01-27 Sven Neumann + + * plug-ins/gimpressionist/gimp.c (gimpressionist_main): transfer + the pixels to the core on a tile-by-tile basis. + +2008-01-27 Sven Neumann + + * plug-ins/gimpressionist/gimp.c (grabarea): changed code that + retrieves the source drawable to iterate over the data tile-by-tile. + Improves GIMPressionist startup time (bug #512126). + +2008-01-26 Manish Singh + + * plug-ins/pygimp/pygimp-colors.c (pygimp_rgb_from_pyobject): no + need to use a temporary in tuple translation, and clamp the result. + + * plug-ins/pygimp/gimpmodule.c (pygimp_set_background, + pygimp_set_foreground): restore support for passing in 3 args for + color components, for backward compatibility. + +2008-01-26 Joao S. O. Bueno + + * plug-ins/pygimp/pygimp-colors.c (pygimp_rgb_from_pyobject): fix + subsequent error (calculated parameters where not used) + +2008-01-26 Manish Singh + + * plug-ins/pygimp/pygimp-colors.c (pygimp_rgb_from_pyobject): fix + error reporting. + +2008-01-25 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationpointfilter.[ch]: new parent class for all + image map operations. Features a "config" member and "public" + get_property() and set_property() functions to be used by + subclasses. + + * app/gegl/gimpoperationcolorbalance.[ch] + * app/gegl/gimpoperationcolorize.[ch] + * app/gegl/gimpoperationcurves.[ch] + * app/gegl/gimpoperationhuesaturation.[ch] + * app/gegl/gimpoperationlevels.[ch] + * app/gegl/gimpoperationposterize.[ch] + * app/gegl/gimpoperationthreshold.[ch]: derive from + GimpOperationPointFilter, remove "config" members, remove + finalize(), get_property() and set_property() implementations and + use the ones provided by the parent class. + +2008-01-25 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpposterizeconfig.[ch]: new config object. + + * app/gegl/gimpoperationposterize.[ch] + * app/tools/gimpposterizetool.[ch]: use it. + +2008-01-25 Michael Natterer + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimpimagemaptool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: remove includes which are no + longer needed. + +2008-01-25 Michael Natterer + + * app/gegl/gimpcurvesconfig.[ch] + * app/gegl/gimplevelsconfig.[ch]: add load_cruft() and + save_cruft() functions which load/save the old (current) curves + and levels file formats. + + * app/tools/gimpcurvestool.c + * app/tools/gimplevelstool.c: use them here and remove a lot of + includes. + +2008-01-25 Michael Natterer + + * app/tools/gimphuesaturationtool.[ch]: removed the GimpHueRange + member from the tool struct and use the one from the config object + instead. Also did a global s/partition/range/. + +2008-01-25 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpthresholdconfig.[ch]: new config object. + + * app/gegl/gimpoperationthreshold.[ch]: use it. + + * app/tools/gimpthresholdtool.[ch]: ditto. + +2008-01-25 Michael Natterer + + * app/tools/gimpcurvestool.[ch] + * app/tools/gimplevelstool.[ch]: remove the "channel" member from + the tool struct and use the channel from the options object + instead. + +2008-01-25 Sven Neumann + + * app/widgets/gimpcolormapeditor.c (gimp_colormap_editor_draw): + avoid crashing when the widget allocation is small (bug #511926). + +2008-01-24 Sven Neumann + + * app/about.h (GIMP_COPYRIGHT): updated copyright. + +2008-01-24 Sven Neumann + + * themes/Default/images/stock-wilber-48.png: removed unused image. + + * themes/Default/images/Makefile.am + * themes/Default/images/stock-wilber-22.png: moved here from + libgimpwidgets. + + * libgimpwidgets/gimpstock.c: register Wilber icon in button size. + + * data/images/wilber.png: moved 256x256 icon here from + libgimpwidgets. + +2008-01-24 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpcolorbalanceconfig.[ch]: new config object. + + * app/gegl/gimpoperationcolorbalance.[ch]: use it. + + * app/tools/gimpcolorbalancetool.[ch]: port to + GimpColorBalanceConfig and use the old ColorBalance cruft only in + map(). The effect of the GEGL operator is now even more different + from the cruft code because I removed a hack that was applying an + additional factor when mapping between the ColorBalance values and + the new properties, but that was only a workaround to make it look + more similar anyway. Will have to fix this properly. + + * app/base/color-balance.[ch]: remove API that is now obsolete. + +2008-01-24 Sven Neumann + + * app/core/gimpimage.c + * app/core/gimpimage-undo.c: fixed handling of the image undo + counter for the case where the user has undone the image to a + state before the last save and then pushes a new undo. Fixes + bug #509822. + +2008-01-24 Michael Natterer + + * app/gegl/gimpcolorizeconfig.[ch]: added reset() and to_cruft() + functions. + + * app/tools/gimpcolorizetool.c: use them. + +2008-01-23 Martin Nordholts + + * app/tools/gimprectangleselecttool.c + (gimp_rect_select_tool_execute): Reset the automatic undo/redo + mechanism so that commiting pending rectangles with Return + works (bug #511599). + +2008-01-23 Sven Neumann + + * app/display/gimpdisplayshell-selection.c: show the selection, + even if the window is flagged as invisible, but don't start the + animation. Addresses bug #505758. + +2008-01-23 Michael Natterer + + * app/gegl/gimphuesaturationconfig.[ch] + (gimp_hue_saturation_config_to_cruft): call + hue_saturation_calculate_transfers() here... + + * app/tools/gimphuesaturationtool.c (gimp_hue_saturation_tool_map): + ...instead of here. + +2008-01-23 Michael Natterer + + * app/gegl/gimplevelsconfig.[ch]: to_levels_cruft() -> to_cruft(). + + * app/core/gimpdrawable-levels.c + * app/tools/gimplevelstool.c: changed accordingly. + +2008-01-23 Michael Natterer + + * app/tools/gimphuesaturationtool.c: change signature of widget + callbacks to take a GimpHueSaturationTool pointer instead of + "gpointer data". + + * app/tools/gimpposterizetool.c: remove redundant GTK_ADJUSTMENT() + casts. + +2008-01-23 Sven Neumann + + * app/sanity.c + * app/gui/gui.c (gui_sanity_check): minor cleanup. + +2008-01-23 Sven Neumann + + * app/dialogs/about-dialog.c (about_dialog_create): removed + obsolete version check. + +2008-01-23 Sven Neumann + + * plug-ins/imagemap/imap_mru.c (mru_remove_link): gracefully + handle a NULL link. + (mru_destruct): plugged a memory leak. + + * plug-ins/imagemap/imap_about.c: use "program-name" instead + of "name". + +2008-01-23 Michael Natterer + + * app/tools/gimpimagemaptool.h: don't #include + + * app/actions/tools-commands.c + * app/display/gimpdisplayshell-callbacks.c + * app/tools/gimp-tools.c: include it here. Whenever the build + breaks because of some GEGL change in GIMP, please inlcude + instead of or before in the + affected .c files. + +2008-01-23 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpcurvesconfig.[ch] + * app/gegl/gimpoperationcurves.[ch]: add curves operation and its + config object. Hack around badly to be able to use GimpCurve from + app/core. + + * app/gegl/gimp-gegl.c: register the curves operation. + + * app/tools/gimpcurvestool.[ch]: added get_operation() implementation + and use the new config object instead of keeping around 5 curves. + +2008-01-23 Michael Natterer + + * app/gegl/gimpoperationlevels.[ch] + (gimp_operation_levels_map_input): new utility function which maps + a single value. + + * app/tools/gimplevelstool.[ch] (levels_update_adjustments): use the + new function to create the input arrays for gimp_color_bar_set_buffer(). + + Removed the Levels struct from the GimpLevelsTool struct and only + use it in map() when needed. + + * app/base/levels.[ch]: remove obsolete API and struct members. + +2008-01-22 Sven Neumann + + * app/core/gimpprojection.c (gimp_projection_idle_render_init): + decreased the priority of the projection idle renderer to 150, + halfway between G_PRIORITY_HIGH_IDLE and G_PRIORITY_DEFAULT_IDLE. + Fixes bug #511214. + +2008-01-22 Sven Neumann + + * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): + smooth the mask instead of dilating. + +2008-01-22 Sven Neumann + + * app/paint/gimpbrushcore.c (gimp_brush_core_create_bound_segs): + dilate the brush mask in order to obtain a simpler boundary. + Addresses bug #304798. + + * app/tools/gimpbrushtool.c (gimp_brush_tool_draw_brush): removed + redundant casts. + +2008-01-22 Sven Neumann + + * app/base/boundary.c: minor cleanups. + +2008-01-22 Sven Neumann + + * plug-ins/imagemap/imap_csim.y: increased buffer size. Addresses + bug #511072. + + * plug-ins/imagemap/imap_csim_parse.[ch]: regenerated. + +2008-01-22 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-coords.[ch]: applied patch from + Alexia Death with further event filter improvements (bug #508639). + +2008-01-22 Sven Neumann + + * plug-ins/common/pcx.c: corrected check of the bytesperline field + which caused monochrome PCX images to be rejected (bug #510658). + +2008-01-22 Sven Neumann + + * app/core/gimp.[ch]: added new function gimp_use_gegl(). + + * app/core/gimpdrawable-desaturate.c + * app/core/gimpdrawable-levels.c + * app/core/gimpdrawable-invert.c + * app/tools/gimpimagemaptool.c + * app/pdb/color_cmds.c + * tools/pdbgen/pdb/color.pdb: use it instead of accessing the + GimpCoreConfig struct directly. + +2008-01-22 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimphuesaturationconfig.[ch]: new config object. + + * app/gegl/gimpoperationhuesaturation.[ch]: remove all properties + and add a "config" property. Also add API to map a single GimpRGB + needed by the hue-saturation tool's color areas. + + * app/tools/gimphuesaturationtool.[ch]: switch to using + GimpHueSaturationConfig, use the old HueSaturation struct only in + map(). + + * app/base/hue-saturation.[ch]: remove API that's no longer needed. + +2008-01-22 Øyvind KolÃĨs + + * app/gegl/gimpoperationcolorbalance.h: + * app/gegl/gimpoperationcolorize.h: + * app/gegl/gimpoperationdesaturate.h: + * app/gegl/gimpoperationhuesaturation.h: + * app/gegl/gimpoperationlevels.h: + * app/gegl/gimpoperationposterize.h: + * app/gegl/gimpoperationthreshold.h: + * app/gegl/gimpoperationtilesink.h: + * app/gegl/gimpoperationtilesource.h: #include + +2008-01-21 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_set_other_side_coord): Don't foget to update + the integer representation of the rectangle. + +2008-01-21 Martin Nordholts + + * app/tools/gimpeditselectiontool.[ch]: Moved the logic in _motion + to a new helper function _update_motion that is also called in + _active_modifier_key. Makes toggling Ctrl immediately apply/remove + movement constraints for the Move Tool when a move has been + initiated. This completes the fix for bug #78730. + +2008-01-21 Sven Neumann + + * app/core/gimpselection.c (gimp_selection_extract): don't clear + the selection as a side-effect of "Edit->Cut" (bug #510534). + +2008-01-21 Michael Natterer + + * app/widgets/gimpcolorbar.c (gimp_color_bar_class_init): fix the + ID of the "histogram-channel" property. + +2008-01-21 Michael Natterer + + * app/core/gimpdrawable-levels.c: port to GEGL and use the new + code path when use-gegl is TRUE. + + * app/base/levels.[ch]: remove stretch and pick APIs which are not + used any longer. + +2008-01-21 Michael Natterer + + * app/gegl/gimplevelsconfig.[ch]: add utility function + gimp_levels_config_to_levels_cruft() which fills the old Levels + struct from a GimpLevelsConfig object. + + * app/tools/gimplevelstool.c: use it. + +2008-01-21 Michael Natterer + + * app/gegl/gimpcolorizeconfig.h + * app/gegl/gimpoperationcolorize.h: add missing type macros. + +2008-01-19 Martin Nordholts + + * app/tools/gimpeditselectiontool.c + (gimp_edit_selection_tool_motion): Reformat a bit, essentially + just removed one pointless level of indentation. + +2008-01-18 Øyvind KolÃĨs + + Removed copies of GEGL headers from GIMP source, depend on installed + headers instead. GIMP trunk still depends on GEGL trunk but we're + moving towards a time when GIMP can depend on a GEGL tarball instead. + + * app/gegl/gegl/gegl-operation-filter.h: + * app/gegl/gegl/gegl-operation-point-filter.h: + * app/gegl/gegl/gegl-operation-sink.h: + * app/gegl/gegl/gegl-operation-source.h: + * app/gegl/gegl/gegl-operation.h: + * app/gegl/gegl/gegl-types.h: + * app/gegl/gegl/: removed. + + * app/gegl/gimpoperationcolorbalance.h: + * app/gegl/gimpoperationcolorize.h: + * app/gegl/gimpoperationdesaturate.h: + * app/gegl/gimpoperationhuesaturation.h: + * app/gegl/gimpoperationlevels.h: + * app/gegl/gimpoperationposterize.h: + * app/gegl/gimpoperationthreshold.h: + * app/gegl/gimpoperationtilesink.h: + * app/gegl/gimpoperationtilesource.h: modified path to parent class' + header file. + +2008-01-18 Bill Skaggs + + * app/base/lut-funcs.c (equalize_lut_func): Don't + equalize the alpha channel. Fixes bug #510210. + +2008-01-18 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpcolorizeconfig.[ch]: new config object. + + * app/gegl/gimpoperationcolorize.[ch]: remove all properties and + add a "config" property. + + * app/tools/gimpcolorizetool.[ch]: port to GimpColorizeConfig, use + the old Colorize struct only in map(). + +2008-01-18 Michael Natterer + + * app/gegl/gimplevelsconfig.[ch]: ported the stretch and pick + functions from base/levels.c. + + * app/tools/gimplevelstool.[ch]: use them instead of the old + stuff. Also switch to GimpLevelsConfig as primary storage for all + settings and fill the old Levels struct only when needed in map(). + Remove all hackish fiddling with levels_tool->channel because it + is now always what is set in the menu. + +2008-01-18 Michael Natterer + + * app/gegl/gimpoperationtilesink.c (class_init) + * app/gegl/gimpoperationcolorize.c (class_init): cosmetic. + +2008-01-17 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesink.c: + * app/gegl/gimpoperationtilesource.c: Some changes due to changed + location of where the various GEGL headers get installed on the + system. + * app/gegl/gegl/gegl-operation.h: synced from GEGL. + +2008-01-17 Martin Nordholts + + * app/tools/gimpeditselectiontool.c + (gimp_edit_selection_tool_get_active_item): Use this new helper + function instead of duplicating its logic. + +2008-01-17 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimplevelsconfig.[ch]: new config object for the levels + operation's settings. + + * app/gegl/gimpoperationlevels.[ch]: remove all properties and add + a "config" property instead. + + * app/tools/gimplevelstool.[ch]: keep a GimpLevelsConfig around. + +2008-01-17 Michael Natterer + + * app/gegl/gimpoperationcolorize.c + * app/gegl/gimpoperationhuesaturation.c (process): move some + calculations and assignments out of the inner loop. + +2008-01-17 Michael Natterer + + * app/tools/gimpimagemaptool.c: create the operation in + GObject::constructor() so it's available during the entire tool + life time (needed soon). + +2008-01-17 Michael Natterer + + * app/gegl/gegl/gegl-operation.h + * app/gegl/gegl/gegl-operation-filter.h: synced from GEGL. + +2008-01-17 Sven Neumann + + * app/core/Makefile.am + * app/core/core-types.h + * app/core/gimptagged.[ch]: define a simple interface for tagged + objects. + + * app/core/gimpdata.[ch]: implement the GimpTagged interface. + +2008-01-17 Sven Neumann + + * app/core/gimpviewable.h: formatting. + +2008-01-16 Øyvind KolÃĨs + + * app/gegl/gegl/gegl-operation.h: synced from GEGL. + * app/gegl/gegl/graph/gegl-node-context.h: removed, since none + of it's provided functionlity is any longer used by the GIMP + implemented ops. + * app/gegl/gegl/graph/: removed. + +2008-01-16 Øyvind KolÃĨs + + * app/gegl/gegl/buffer/gegl-buffer-types.h: removed. + * app/gegl/gegl/buffer/: removed. + * app/gegl/gegl/gegl-operation.h: synced from GEGL. Now includes + the installed gegl-buffer.h which contains the public typedefs + needed for implementing operations anyways. + +2008-01-16 Sven Neumann + + * app/base/boundary.c: minor cleanup. + +2008-01-16 Michael Natterer + + Fix gegl types and includes so we can include operations from + app/gegl in other gimp files (needed soon): + + * app/gegl/gegl/gegl-types.h: not copied from gegl any longer. + Now contains only two typedefs needed by the copied operation + headers. + + * app/gegl/gegl-types.h: include above types file. + + * app/gegl/gimp-gegl.c + * app/gegl/gimpoperationcolorbalance.c + * app/gegl/gimpoperationcolorize.c + * app/gegl/gimpoperationdesaturate.c + * app/gegl/gimpoperationhuesaturation.c + * app/gegl/gimpoperationlevels.c + * app/gegl/gimpoperationposterize.c + * app/gegl/gimpoperationthreshold.c + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c: include only and + "gegl-types.h" from this directory, which is much more gimpish + now. Include "gegl/buffer/gegl-buffer.h" in the source and sink + operations. + + * app/tools/gimpimagemaptool.h: warn about inclusion of + only if it hasn't been included before, so it only warns in the + files where we still have to address this issue. + +2008-01-16 Sven Neumann + + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-coords.c: applied parts of a change + from Alexia Death. This improves the event smoothing (bug #508639). + +2008-01-15 Martin Nordholts + + * app/tools/tools-utils.h: Added symbolic constants for common + values to the n_snap_lines parameter of + gimp_tool_motion_constrain. + + * app/tools/gimpblendtool.c: + * app/tools/gimpeditselectiontool.c: + * app/tools/gimpmeasuretool.c: + * app/tools/gimppainttool.c: Use these new symbolic constants. + +2008-01-15 Martin Nordholts + + * app/tools/gimpeditselectiontool.[ch]: Made it possible to + constrain movement with the Move Tool in 45 degree angles by + holding Ctrl when a move has been initiated. This fixes the + essential part of bug #78730. + +2008-01-15 Michael Natterer + + * app/gegl/gimpoperationcolorize.[ch] + * app/gegl/gimpoperationlevels.[ch] + * app/gegl/gimpoperationthreshold.[ch]: changed all properties from + float to double. + + * app/gegl/gimpoperationcolorize.c: normalized property ranges to + [0.0..1.0] or [-1.0..1.0] resp. + + * app/tools/gimpcolorizetool.c: changed accordingly. + +2008-01-15 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_notify_preview): + check for image_map_tool->image_map also when the preview is + switched on, not only when it's switched off. + +2008-01-15 Sven Neumann + + * plug-ins/common/bumpmap.c + * plug-ins/script-fu/scripts/swirltile.scm: applied patch from + Ulf-D. Ehlert that catches a potential division by zero in the + Bumpmap plug-in and adjusts the range of the Depth parameter in + the Swirl-Tile script (bug #509608). + +2008-01-15 Kevin Cozens + + * plug-ins/script-fu/scripts/3d-outline.scm + * plug-ins/script-fu/scripts/add-bevel.scm + * plug-ins/script-fu/scripts/burn-in-anim.scm + * plug-ins/script-fu/scripts/camo.scm + * plug-ins/script-fu/scripts/circuit.scm + * plug-ins/script-fu/scripts/clothify.scm + * plug-ins/script-fu/scripts/coffee.scm + * plug-ins/script-fu/scripts/contactsheet.scm + * plug-ins/script-fu/scripts/distress-selection.scm + * plug-ins/script-fu/scripts/flatland.scm + * plug-ins/script-fu/scripts/font-map.scm + * plug-ins/script-fu/scripts/fuzzyborder.scm + * plug-ins/script-fu/scripts/glossy.scm + * plug-ins/script-fu/scripts/land.scm + * plug-ins/script-fu/scripts/lava.scm + * plug-ins/script-fu/scripts/old-photo.scm + * plug-ins/script-fu/scripts/predator.scm + * plug-ins/script-fu/scripts/rendermap.scm + * plug-ins/script-fu/scripts/ripply-anim.scm + * plug-ins/script-fu/scripts/script-fu-set-cmap.scm + * plug-ins/script-fu/scripts/select-to-brush.scm + * plug-ins/script-fu/scripts/select-to-image.scm + * plug-ins/script-fu/scripts/select-to-pattern.scm + * plug-ins/script-fu/scripts/speed-text.scm + * plug-ins/script-fu/scripts/spinning-globe.scm + * plug-ins/script-fu/scripts/test-sphere.scm + * plug-ins/script-fu/scripts/text-circle.scm + * plug-ins/script-fu/scripts/unsharp-mask.scm + * plug-ins/script-fu/scripts/xach-effect.scm: Variables in a let + block must be of the form (variable value) per the R5RS. + +2008-01-14 Kevin Cozens + + * plug-ins/script-fu/scripts/script-fu-compat.init: Fixed definition + of 'prog1' due to recent fixes enforcing R5RS syntax for 'let'. + +2008-01-15 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_preview): + don't call map() if image_map_tool->image_map is NULL. + +2008-01-14 Martin Nordholts + + * app/tools/tools-utils.[ch] + (gimp_tool_motion_constrain): Generalized to allow a variable + number of lines for snapping, and rewritten to make snapping + happen more intuitively; snap the shortest distance rather than + only horizontally or vertically. + (gimp_tool_utils_point_to_line_distance): New helper function. + + * app/tools/gimpblendtool.c + * app/tools/gimpmeasuretool.c + * app/tools/gimppainttool.c: Adjust to the new function signature. + +2008-01-14 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationhuesaturation.[ch]: new operation. + + * app/gegl/gimp-gegl.c: register it. + + * app/tools/gimphuesaturationtool.c: use it. + +2008-01-14 Sven Neumann + + * app/core/core-types.h + * app/display/gimpdisplayshell-callbacks.c + * app/display/gimpdisplayshell-coords.[ch] + * app/display/gimpdisplayshell.h + * app/paint/gimpink.[ch] + * app/paint/gimpinkundo.[ch]: applied patch from Alexia Death that + adds an event evaluation function that decides if an event is + needed or can be discarded. As a side-product some useful dynamics + parameters like velocity are added to the GimpCoords struct. The + Ink tool is changed to use this information. See bug #508639. + +2008-01-13 Michael Natterer + + * modules/colorsel_cmyk_lcms.c (colorsel_cmyk_config_changed): set + a tooltip on the profile name label because it's often ellipsized. + +2008-01-12 Michael Natterer + + * app/base/color-balance.c: minor formatting fix. + +2008-01-11 Michael Natterer + + * modules/gimpinputdevicestore.h + * modules/gimpinputdevicestore-hal.c + * modules/gimpinputdevicestore-dx.c: use G_DEFINE_DYNAMIC_TYPE(). + + * modules/controller_dx_dinput.c + * modules/controller_linux_input.c: changed accordingly. + +2008-01-10 Manish Singh + + * plug-ins/pygimp/pygimp-pdb.c (pdb_getattro): Handle __members__ + specially to return the current PDB procedure list, and pass-through + any attributes that start with "_" without looking them up in the + PDB. + +2008-01-10 Sven Neumann + + * app/widgets/gimpuimanager.c (gimp_ui_manager_ui_popup): + gracefully deal with a NULL return value from + gtk_ui_manager_get_widget(). This happens when the XML menu + definitions are not found. + +2008-01-10 Sven Neumann + + * plug-ins/pygimp/plug-ins/gimpcons.py: fixed spelling of GIMP. + +2008-01-10 Sven Neumann + + * plug-ins/jpeg/Makefile.am: fixed conditional build of the JPEG + plug-in. + +2008-01-10 Bill Skaggs + + * libgimpbase/gimpenv.c: fix editing error in documentation. + +2008-01-10 Michael Natterer + + Simplify things a bit and enable gegl-only color correction + tools (without legacy functions). + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_create_map): + always create the operation if ::get_operation() is implemented + and always use it when creating the GimpImageMap if there is no + legacy apply_func. + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c (map): set the operation's + properties unconditionally since it always exists now if we also + implement ::get_operation(). + +2008-01-10 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationcolorbalance.[ch]: new operator. + + * app/gegl/gimp-gegl.c: register it. + + * app/tools/gimpcolorbalancetool.c: use it. + +2008-01-09 Joao S. O. Bueno + + * plug-ins/pygimp/pygimp-vectors.c: Allow Vectors.remove_stroke + method to accept VectorStroke objects besides stroke IDs. Fix + method names in error strings. + +2008-01-09 Michael Natterer + + * modules/cdisplay_colorblind.c + * modules/cdisplay_gamma.c + * modules/cdisplay_highcontrast.c + * modules/cdisplay_lcms.c + * modules/cdisplay_proof.c + * modules/colorsel_cmyk.c + * modules/colorsel_triangle.c + * modules/colorsel_water.c + * modules/controller_dx_dinput.c + * modules/controller_linux_input.c + * modules/controller_midi.c: use G_DEFINE_DYNAMIC_TYPE() instead + of boilerplate code. + +2008-01-09 Sven Neumann + + * modules/colorsel_cmyk_lcms.c (colorsel_cmyk_class_init): don't + abort on errors in lcms. + +2008-01-09 Sven Neumann + + * app/gegl/gimpoperationtilesink.c: use the marshaller from GLib; + don't include gimpmarshal.h from app/core. + +2008-01-09 Michael Natterer + + * app/tools/gimplevelstool.c (gimp_levels_tool_map): fix alpha + handling on greyscale images. + +2008-01-09 Sven Neumann + + * plug-ins/common/convmatrix.c (convolve_image): round the result + of the convolution. Fixes bug #508114. + +2008-01-09 Michael Natterer + + * app/core/core-types.h: add typedef GimpImageMapApplyFunc here. + + * app/core/gimpimagemap.[ch] (gimp_image_map_new): add apply_func + and apply_data parameters. + + (gimp_image_map_apply): remove them here and add a GeglRectangle + parameter which is the visible area of the affected drawable. + + * app/tools/gimpimagemaptool.[ch]: keep apply_func and apply_data + around in the GimpImageMapTool struct. + + (gimp_image_map_tool_create_map): pass them to gimp_image_map_new(). + + (gimp_image_map_tool_map): call gimp_image_map_apply() here and + pass the drawable's visible rectangle. + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c (init): set apply_func and + apply_data in the parent instance. + + (map): remove calls to gimp_image_map_apply(). + +2008-01-08 Sven Neumann + + * plug-ins/psd/psd-image-res-load.[ch] + * plug-ins/psd/psd-layer-res-load.[ch] + * plug-ins/psd/psd-load.c + * plug-ins/psd/psd-thumb-load.c + * plug-ins/psd/psd-util.[ch] + * plug-ins/psd/psd.[ch]: applied a patch from John Marshall that + improves error handling of the new PSD load plug-in (bug #448181). + +2008-01-08 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesink.c: removed no longer needed + context_id. + * app/gegl/gegl/gegl-operation-sink.h: resynced from GEGL. + * app/gegl/gegl/gegl-types.h: resynced from GEGL. + +2008-01-08 Sven Neumann + + * app/core/gimpitem.[ch]: removed "add_alpha" parameter from + gimp_item_duplicate() and gimp_item_convert(). This is a relict + from the time when only the bottom layer was allowed to have no + alpha channel. + + * app/actions/channels-commands.c + * app/actions/layers-commands.c + * app/actions/vectors-commands.c + * app/core/gimpchannel.c + * app/core/gimpdrawable.c + * app/core/gimpimage-duplicate.c + * app/core/gimpimage-merge.c + * app/core/gimpimage-quick-mask.c + * app/core/gimplayer.c + * app/core/gimplayermask.c + * app/core/gimpselection.c + * app/display/gimpdisplayshell-dnd.c + * app/file/file-open.c + * app/pdb/channel_cmds.c + * app/pdb/layer_cmds.c + * app/text/gimptextlayer.c + * app/vectors/gimpvectors.c + * app/vectors/gimpvectorsmodundo.c + * app/widgets/gimpchanneltreeview.c + * app/widgets/gimpitemtreeview.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimptoolbox-dnd.c + * tools/pdbgen/pdb/channel.pdb + * tools/pdbgen/pdb/layer.pdb: changed accordingly. + +2008-01-08 Sven Neumann + + * app/file/file-open.c (file_open_layers): moved code to a utility + function, in preparation for a possible fix for bug #507116. + +2008-01-08 Kevin Cozens + + * plug-ins/script-fu/ftx/ftx.c (foreign_filetype): Test for symlink + before testing for other file types. Spotted by David Martin. + +2008-01-07 Michael Natterer + + * app/gegl/gimpoperationlevels.[ch]: add properties, some cleanup. + + * app/tools/gimplevelstool.c: use gegl_node_set() instead of + accessing the operation directly. + +2008-01-07 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationlevels.[ch]: new operator. + + * app/gegl/gimp-gegl.c: register it. + + * app/tools/gimplevelstool.c: use it, + +2008-01-07 Michael Natterer + + * app/gegl/gimpoperationcolorize.c (process): add some comments + about how this code is different from base/colorize.c + +2008-01-07 Michael Natterer + + * app/core/core-types.h: include gegl/gegl-types.h instead of + base/base-types.h. + + * app/gegl/gegl/gegl-types.h: add ugly #ifdefs so we can include + gegl.h and this file at the same time. + +2008-01-07 Michael Natterer + + * app/core/gimplayer.c (gimp_layer_transform_color): reordered + and renamed parameters to make more sense. + +2008-01-07 Michael Natterer + + * app/gegl/Makefile.am (INCLUDES): remove GTK_CFLAGS. + +2008-01-07 Øyvind KolÃĨs + + * app/tools/gimpbrightnesscontrasttool.c: make the mapping between + slider values and gegl-op properties more closely resemble gimp for + the brightness property. + +2008-01-07 Michael Natterer + + * app/gegl/gegl/gegl-operation.h: updated from GEGL. + + * app/gegl/gimpoperationtilesource.c: use the passed buffer in + process() and add prepare() implementation which sets the format. + +2008-01-05 Joao S. O. Bueno + + * plug-ins/pygimp/pygimp-vectors.c: fixed incorrect function name + in error message for vs_flip + +2008-01-07 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesink.c: + * app/gegl/gimpoperationtilesource.c: modified to match newer API in + GEGL. + + * app/gegl/gegl/gegl-operation-sink.h: + * app/gegl/gegl/gegl-operation-source.h: updated from GEGL. + +2008-01-06 Michael Natterer + + * app/gegl/gegl/buffer/gegl-buffer-types.h + * app/gegl/gegl/gegl-operation-filter.h + * app/gegl/gegl/gegl-operation-point-filter.h + * app/gegl/gegl/gegl-operation-sink.h + * app/gegl/gegl/gegl-operation-source.h + * app/gegl/gegl/gegl-operation.h: updated from GEGL. + +2008-01-06 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_create_map): + don't call a NULL GimpImageMapToolClass::get_operation(). + +2008-01-06 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_gegl_notify): + toggle the image map mode only if an image map currently exists. + Fixes crash when toggling "Use GEGL" while the tool is not active. + +2008-01-06 Sven Neumann + + * configure.in: compile a list of MIME types that GIMP can read. + + * desktop/gimp.desktop.in.in: use the list of MIME types as + compiled by the configure script. Fixes bug #507318. + + * desktop/Makefile.am + * desktop/gimp.applications.in + * desktop/gimp.keys.in: removed; the gimp.applications and + gimp.keys files are obsolete. + + * plug-ins/psd/psd.c (MAIN): corrected MIME type in unused code. + +2008-01-06 Sven Neumann + + * configure.in: applied patch from Matt Smith that adds a + --without-hal configure option (bug #507595). + + * INSTALL: document the new option. + +2008-01-06 Sven Neumann + + * configure.in + * plug-ins/Makefile.am: fixed --without-jpeg configure option + (bug #507572). + +2008-01-06 Michael Natterer + + * app/gegl/gimpoperationtilesource.c + * app/gegl/gimpoperationtilesink.c: formatting. + +2008-01-06 Sven Neumann + + * libgimpbase/gimpchecks.c + * libgimp/gimpunitcache.c + * libgimpwidgets/gimppageselector.c + * libgimpwidgets/gimpcolorscales.c: removed redundant checks for + enum values (which are unsigned) >= 0. + +2008-01-06 Sven Neumann + + * plug-ins/common/convmatrix.c (convolve_image): fixed out-of-bounds + array access. + +2008-01-06 Sven Neumann + + * libgimpwidgets/gimpmemsizeentry.c: use G_GUINT64_CONSTANT() + instead of a cast. + +2008-01-06 Sven Neumann + + * plug-ins/common/tile.c (tile): update the progress less often. + +2008-01-05 Manish Singh + + * plug-ins/pygimp/pygimp-image.c: new Image.new_layer() method, + which is convenience for creating, filling, and attaching a new + layer onto an image. Based on a idea and patch by JoÃŖo S. O. Bueno + in bug #505982. + +2008-01-05 Manish Singh + + * app/core/gimpimagemap.c: hardcode a declaration of + gegl_node_add_child() in here for now. + +2008-01-05 Øyvind KolÃĨs + + * app/gegl/gegl/gegl-operation-sink.h: + * app/gegl/gegl/gegl-operation-source.h: + * app/gegl/gegl/gegl-operation.h: + * app/gegl/gegl/gegl-types.h: + * app/gegl/gegl/graph/: + * app/gegl/gegl/graph/gegl-node-context.h: synchronoised with GEGL + headers. + + * app/gegl/gimpoperationtilesink.c: + * app/gegl/gimpoperationtilesource.c: updated to new API, where a + GeglNodeContext is used in process methods instead of gpointer + context_id. + +2008-01-04 Øyvind KolÃĨs + + * app/gegl/gegl/gegl-operation-sink.h: + * app/gegl/gegl/gegl-operation-source.h: + * app/gegl/gegl/gegl-operation.h: synchronised with GEGL headers. + + * app/gegl/gimpoperationtilesink.c: + * app/gegl/gimpoperationtilesource.c: added const GeglRectangle + *result to arguments of _process(). + +2008-01-04 Sven Neumann + + * app/config/gimpdisplayconfig.c: changed the default marching ants + speed to 200. + +2008-01-04 Hans Breuer + + **/makefile.msc app/gimpcore.def : updated so it compiles and links + (almost, see bug #507298) + +2008-01-04 Sven Neumann + + Merged from gimp-2-4 branch: + + * app/display/gimpdisplayshell-selection.c: + draw marching ants with G_PRIORITY_DEFAULT_IDLE; fixes bug #479875. + +2008-01-04 Michael Natterer + + * tools/pdbgen/pdb/color.pdb: optionally use gegl where we already + have operations (breaking the indentation to keep the diff small + and readable). + + * app/pdb/Makefile.am: add GEGL_CFLAGS. + + * app/pdb/color_cmds.c: regenerated. + +2008-01-04 Michael Natterer + + * app/config/gimpcoreconfig.[ch]: add "use-gegl" property but + don't serialize it. + + * app/widgets/gimptoolbox.c: add super ugly "Use GEGL" toggle to + the toolbox so we don't need to have prefs open all the time when + experimenting with gegl. + + * app/tools/gimpimagemaptool.[ch]: remove "Use GEGL" toggle from + the tool dialogs and connect to the config property instead. + + * app/core/gimpdrawable-desaturate.c + * app/core/gimpdrawable-invert.c: made them runtime-switchable by + looking at the config property. + +2008-01-04 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationcolorize.[ch] + * app/gegl/gimpoperationposterize.[ch]: new operators which still + use a lot of gimp stuff they shouldn't use, but at least the + infrastructure for improving them is there now. + + * app/gegl/gimp-gegl.c: register them. + + * app/tools/gimpcolorizetool.c + * app/tools/gimpposterizetool.c: use them. + +2008-01-04 Michael Natterer + + * app/core/gimpimagemap.c (gimp_image_map_apply): switch tile + sources and sinks to assume linear data. + +2008-01-04 Michael Natterer + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_create_map): + enable disabling gegl again, which i broke with my last commit. + +2008-01-04 Jakub Steiner + + * data/images/wilber-devel-icon.png + * data/images/wilber-icon.png + * data/images/wilber-devel.png + * data/images/gimp-logo.png: sync to the latest wilber version. + +2008-01-04 Jakub Steiner + + * libgimpwidgets/wilber-16.png: + * libgimpwidgets/wilber-22.png: + * libgimpwidgets/wilber-32.png: + * libgimpwidgets/wilber-48.png: + * libgimpwidgets/wilber-64.png: + * libgimpwidgets/wilber-256.png: update app icon. Add 256x256px + for OS X and Vista + +2008-01-04 Sven Neumann + + * app/tools/gimprotatetool.c (rotate_angle_changed): also update + trans_info[REAL_ANGLE]. Fixes bug #507167. + +2008-01-03 Bill Skaggs + + committing patch by Simon Budig to give an indication + when working on a layer mask, updated to fix staleness + and respond to "edit-changed". Might fix bug #132204. + + * app/core/core-enums.[ch]: add GIMP_SELECTION_LAYER_ON. + + * app/core/gimplayermask.c: add handler for "edit-changed". + + * app/core/gimpcanvas.[ch]: add new style + GIMP_CANVAS_STYLE_LAYER_MASK_ACTIVE. + + * app/display/gimpdisplayshell-selection.c: use new style + when layer mask is active. + + +2008-01-03 Michael Natterer + + * app/tools/gimpimagemaptool.[ch]: keep the central processing + node around here... + + * app/tools/gimpbrightnesscontrasttool.[ch] + * app/tools/gimpthresholdtool.[ch]: ...instead of here. + +2008-01-03 Michael Natterer + + * app/core/gimpimagemap.c: quite some cleanup (use GeglRectangle + more globally and don't leave stuff around if we abort for + whatever reason). + +2008-01-03 Michael Natterer + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationthreshold.[ch]: gimpish threshold operator + which has "low" and "high" properties. + + * app/gegl/gimp-gegl.c: register it. + + * app/gegl/gimpoperationdesaturate.[ch]: fix copyright. + + * app/tools/gimpthresholdtool.[ch]: use the new operator. + +2008-01-03 Michael Natterer + + Some more gegl code to have some playground for experimenting. + + * app/gegl/Makefile.am + * app/gegl/gegl-types.h + * app/gegl/gimpoperationdesaturate.[ch]: ported desaturate. + + * app/gegl/gimp-gegl.c: register it. + + * app/gegl/gimpoperationtilesink.h: fix name of parent class member. + + * app/core/gimpdrawable-desaturate.c: use the new operator, but + keep the old code around (prepared for runtime switching). + + * app/core/gimpdrawable-invert.c: prepare for runtime switching + here too. + +2008-01-03 Michael Natterer + + * app/gegl/gegl/gegl-operation-sink.h + * app/gegl/gegl/gegl-operation-source.h: updated copies from gegl. + + * app/gegl/gegl/gegl-operation-filter.h + * app/gegl/gegl/gegl-operation-point-filter.h: new files from gegl. + +2008-01-03 Bill Skaggs + + * plug-ins/common/randomize.c: added previews for hurl, + pick, and slur. + +2008-01-02 Michael Natterer + + * app/core/Makefile.am + * app/core/gimpdrawable-operation.[ch]: new files containing + gimp_drawable_apply_operation() which applies a gegl operation + to a drawable's selected pixels using shadow tiles. Will soon + be used in more places than just invert. + + * app/core/gimpdrawable-invert.c: use it here, makes + gimp_drawable_invert() a 3-liner. + +2008-01-01 Martin Nordholts + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_start): Use × + instead of x when initializing the rectangle size in the status + bar. + +2007-12-30 Sven Neumann + + * app/gegl/gimp-gegl-utils.[ch]: added new function + gimp_bpp_to_babl_format_linear(). + + * app/gegl/gimpoperationtilesink.[ch] + * app/gegl/gimpoperationtilesource.[ch]: added boolean property to + toggle between linear and gamma-corrected data. + + * app/core/gimpdrawable-invert.c: assume linear data to be closer + to the original definition of the invert operation in GIMP. + Enable the GEGL code path per default. + +2007-12-30 Sven Neumann + + * app/core/gimpdrawable-invert.c (gimp_drawable_invert): moved + processing in the GEGL code path back to the main loop. + +2007-12-30 Michael Natterer + + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimpcurvestool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpposterizetool.c + * app/tools/gimpthresholdtool.c: #include . Fixes the build. + +2007-12-30 Michael Natterer + + First actual image processing with GEGL! Wheeeee :-) + + * app/core/gimpimagemap.[ch]: added code to use gegl instead of the + old apply_func and apply_data. + + (gimp_image_map_new): add GeglNode parameter that, if passed, + switches the whole thing to using a gegl graph with this node + as central processing node. + + * app/tools/gimpimagemaptool.[ch]: add virtual function + get_operation() which, if implemented, returns a GeglNode to pass + to gimp_image_map_new(). Added a "Use GEGL" toggle so we can + switch between legacy and gegl code for the migration period. + + * app/tools/gimpbrightnesscontrasttool.[ch]: implement + get_operation() and return a brightness-contrast node. + + (gimp_briughtness_contrast_tool_map): set the node's properties + from the GUI. + +2007-12-30 Sven Neumann + + * app/display/gimpstatusbar.[ch] + * app/widgets/gimpprogressbox.[ch]: only update the GtkProgressBar + if that would cause a visible change. + +2007-12-30 Manish Singh + + * plug-ins/pygimp/pygimp-tile.c: subscript API for PixelFetcher. + +2007-12-30 Michael Natterer + + * app/gegl/gimpoperationtilesource.c: minor cleanup. + + * app/gegl/gimpoperationtilesink.[ch]: add "data-written" signal + that is emitted whenever pixels have been written to the tile + manager. + +2007-12-30 Øyvind KolÃĨs + + * app/core/Makefile.am: added GEGL_CFLAGS. + * app/core/gimpdrawable-invert.c: added an alternate GEGL code path + that can be enabled by uncommenting ENABLE_GEGL in the file. + +2007-12-30 Manish Singh + + * plug-ins/pygimp/gimpmodule.c + * plug-ins/pygimp/pygimp-pdb.c + * plug-ins/pygimp/pygimp-colors.c + * plug-ins/pygimp/pygimpcolor-api.h + * plug-ins/pygimp/pygimpcolor.h: Move pygimp_rgb_from_pyobject into + the gimpcolor module, and make it handle translation of sequences + into colors too. Make the GimpParam translation code use it. + + * plug-ins/pygimp/gimpcolormodule.c: Initial wrapping of + gimp_bilinear color functions. + + * plug-ins/pygimp/gimpenumsmodule.c + * plug-ins/pygimp/gimpmodule.c + * plug-ins/pygimp/pygimp.h + * plug-ins/pygimp/pygimp-tile.c: Basic wrapping of GimpPixelFetcher. + +2007-12-30 Øyvind KolÃĨs + + reviewed by: + + * app/core/Makefile.am: + * app/core/gimpdrawable-invert.c: (idle_fun), + (gimp_drawable_invert): + +2007-12-30 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesink.c: specify that this operation does + not need the full buffer available before "flushing" the sink. + + * app/gegl/gegl/gegl-operation-sink.h: + * app/gegl/gegl/gegl-operation.h: updated copy of headers. + +2007-12-30 Sven Neumann + + * plug-ins/jpeg/jpegqual.c (quant_info): added entry for Canon + Digital Ixus v2 and removed duplicate entry. + +2007-12-30 Sven Neumann + + * plug-ins/jpeg/jpegqual.c: use G_OPTION_REMAINING to access the + filenames passed as command-line arguments. + +2007-12-30 Sven Neumann + + * plug-ins/script-fu/scripts/chip-away.scm: applied another patch + from Ulf-D. Ehlert for the parameter range (bug #506110). + +2007-12-29 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesource.c: override the default behaviour + of GeglOperationSource to expand the result rect to the full have + rect with a NULL (nop) implementation. + +2007-12-30 Sven Neumann + + * app/core/gimpdrawable-invert.[ch]: let gimp_drawable_invert() + take a GimpProgress parameter. + + * tools/pdbgen/pdb/color.pdb + * app/pdb/color_cmds.c + * app/actions/drawable-commands.c: changed accordingly. + +2007-12-29 Michael Natterer + + * app/actions/Makefile.am + * app/core/Makefile.am + * app/display/Makefile.am + * app/tools/Makefile.am: use GEGL_CFLAGS. + +2007-12-29 Sven Neumann + + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c: formatting. + +2007-12-29 Øyvind KolÃĨs + + * app/gegl/gimpoperationtilesource.c: do not fetch the full extent + of the TileManager but only the needed pixels. Pass rowstride + correctly when fecting subregions. + +2007-12-29 Øyvind KolÃĨs + + * configure.in: depend on GEGL 0.0.15 (version ends in odd, thus + depending on svn trunk of GEGL). + + * app/gegl/gimpoperationtilesource.c: + (gimp_operation_tile_source_process): just use GEGL_AUTO_ROWSTRIDE for + the rowstride in gegl_buffer_set for now. + +2007-12-29 Michael Natterer + + * app/tools/gimpbrightnesscontrasttool.c + * app/tools/gimpcolorbalancetool.c + * app/tools/gimpcolorizetool.c + * app/tools/gimphuesaturationtool.c + * app/tools/gimplevelstool.c + * app/tools/gimpthresholdtool.c: more cleanup in preparation of + migrating to gegl. + +2007-12-29 Michael Natterer + + * app/gegl/gimp-gegl.c + * app/gegl/gimpoperationtilesource.c + * app/gegl/gimpoperationtilesink.c: fixup includes a bit. + +2007-12-29 Øyvind KolÃĨs + + * app/gegl/gegl/buffer/: added. + * app/gegl/gegl/buffer/gegl-buffer-types.h: added from GEGL trunk. + + * app/gegl/gegl/gegl-operation.h: .. + * app/gegl/gegl/gegl-types.h: updated copy from GEGL trunk. + + * app/gegl/gimp-gegl.c: + * app/gegl/gimpoperationtilesink.c: + * app/gegl/gimpoperationtilesource.c: Modified to build with direct + copies of GEGL headers. + +2007-12-29 Michael Natterer + + * app/base/tile-manager.[ch]: add boxed type GIMP_TYPE_TILE_MANAGER. + + * app/gegl/gimpoperationtilesink.c + * app/gegl/gimpoperationtilesource.c: use GParamSpecBoxed instead + of GParamSpecPointer for the tile-manager properties and ref them + properly. Some cleanup. + +2007-12-29 Sven Neumann + + * app/gegl/gimp-gegl-utils.h: declare gimp_bpp_to_babl_format() as + G_GNUC_CONST. + +2007-12-29 Michael Natterer + + * app/gegl/gimpoperationtilesink.c (tile_sink_process): add + some const that should also be in the gegl api *cough*. + +2007-12-29 Michael Natterer + + * app/gegl/gimp-gegl-utils.c (gimp_bpp_to_babl_format): use + g_return_val_if_fail() instead of g_warning(). + +2007-12-29 Michael Natterer + + * app/gegl/gimp-gegl-utils.c: new files containing + gimp_bpp_to_babl_format(). + + * app/gegl/gimpoptilesink.[ch] + * app/gegl/gimpoptilesource.[ch]: renamed.. + + * app/gegl/gimpoperationtilesink.[ch] + * app/gegl/gimpoperationtilesource.[ch]: ...to these. Cleaned them + up quite a bit more. + + * app/gegl/Makefile.am + * app/gegl/gimp-gegl.c: changed accordingly. + +2007-12-29 Michael Natterer + + Some cleanup... + + * app/Makefile.am: change linking order. + + * app/main.c: move gegl initialization from here... + + * app/app.c: ...to here. + + * app/gegl/gimpops.c: removed. + + * app/gegl/gimp-gegl.[ch] + * app/gegl/gegl-types.h: added. + + * app/gegl/Makefile.am: changed accordingly. + + * app/gegl/gimpoptilesink.[ch] + * app/gegl/gimpoptilesource.[ch]: made more gimpish. + +2007-12-29 Øyvind KolÃĨs + + Added adapter GEGL operations for reading and writing to TileManagers. + + * configure.in: + * app/Makefile.am: added gegl subdir. + * app/gegl/Makefile.am: added. + * app/gegl/gimpops.c: (gimp_gegl_ops_init): + * app/gegl/gimpoptilesink.[ch]: adapter GEGL operation for writing to + GIMP tile managers. + * app/gegl/gimpoptilesource.[ch]: adapter GEGL operation for reading + from GIMP tile managers. + * app/main.c: (main): call gimp_gegl_ops_init() + * app/gegl/gegl/: added some headers from GEGL that are not installed + since they are not public API yet. + +2007-12-29 Simon Budig + + * app/display/gimpdisplayshell.c: don't use ceil, use SCALEX. + * app/display/gimpdisplayshell-transform.c: Round hopefully more + properly. + + This probably exchanges one set of artefacts for another one... + + * app/display/gimpdisplayshell-render.c: minor fixes. + * app/display/gimpdisplayshell-selection.c: whitespace fix + +2007-12-28 Sven Neumann + + * app/widgets/gimprender.h: removed GIMP_RENDER_BUF_WIDTH and + GIMP_RENDER_BUF_HEIGHT definitions. + + * app/display/gimpdisplayshell.h: define the size of the display + render buffer here. + + * app/display/gimpdisplayshell.c + * app/display/gimpdisplayshell-draw.c + * app/widgets/gimprender.c: changed accordingly. + +2007-12-28 Sven Neumann + + * app/widgets/gimpcolormapeditor.c: don't use the render buffer. + Use a white background until this widget is rewritten. + +2007-12-28 Michael Natterer + + * app/widgets/gimpsamplepointeditor.c + (gimp_sample_point_editor_points_changed): fix my last commit to + this file (don't access sample points of NULL images). + +2007-12-28 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_update_highlight): When setting the + highlight, use the external rectangle representation, not the + internal one. + +2007-12-28 Sven Neumann + + * libgimpwidgets/gimpcairo-utils.[ch]: addec const qualifiers to + GimpRGB parameters. + + * app/widgets/gimprender.[ch]: removed global variables for + checkerboard colors and introduced functions to get the + checkerboard colors as pointers to GimpRGB structs. + + * app/actions/view-actions.c + * app/display/gimpdisplayshell-appearance.c + * app/widgets/gimpviewrenderer.c + * app/widgets/gimpcolormapeditor.c: changed accordingly. + +2007-12-28 Sven Neumann + + * libgimpwidgets/gimpcairo-utils.[ch]: added light and dark check + color parameters to gimp_cairo_checkerboard_create(). + + * libgimpwidgets/gimpcellrenderercolor.c + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_real_draw): + changed accordingly. + +2007-12-28 Sven Neumann + + * plug-ins/script-fu/scripts/chip-away.scm: applied patch from + Ulf-D. Ehlert that fixes the range of the "Chip amount" parameter + (bug #506110). + +2007-12-28 Sven Neumann + + * app/widgets/gimpviewrenderer.c: cache the checkerboard pattern. + +2007-12-28 Sven Neumann + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_real_draw): + if the surface has CAIRO_CONTENT_COLOR_ALPHA, render it on a + checkerboard background. + + * app/widgets/gimpviewrenderergradient.[ch]: just draw the + gradient with alpha-transparency instead of doing the blend on the + checkerboard here. + + * app/widgets/gimpcolormapeditor.c: formatting. + +2007-12-27 Michael Natterer + + * app/tools/gimpcolorbalancetool.c: remove the same cruft here. + +2007-12-27 Michael Natterer + + * app/tools/gimpbrightnesscontrasttool.c: remove unused cruft. + +2007-12-27 Sven Neumann + + * app/widgets/gimpthumbbox.c (gimp_thumb_box_new): enable line + wrapping on the info label. + +2007-12-26 Michael Natterer + + * app/actions/image-commands.c + * app/actions/select-commands.c + * app/core/gimp-edit.c + * app/core/gimpdrawable-stroke.c + * app/core/gimpimage-duplicate.c + * app/core/gimpimage-preview.c + * app/core/gimpimage-rotate.c + * app/core/gimpimageundo.c + * app/core/gimpitem-preview.c + * app/dialogs/grid-dialog.c + * app/dialogs/layer-options-dialog.c + * app/dialogs/offset-dialog.c + * app/dialogs/stroke-dialog.c + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-title.c + * app/display/gimpdisplayshell.c + * app/display/gimpstatusbar.c + * app/paint/gimppaintoptions.c + * app/tools/gimpmagnifytool.c + * app/tools/gimpmeasuretool.c + * app/tools/gimppainttool.c + * app/tools/gimprectangletool.c + * app/tools/gimprotatetool.c + * app/tools/gimpscaletool.c + * app/tools/gimptexttool.c + * app/vectors/gimpvectors-export.c + * app/vectors/gimpvectors-import.c + * app/widgets/gimpcursorview.c + * app/widgets/gimpimagepropview.c + * app/widgets/gimptoolbox-dnd.c + * app/widgets/gimpviewrendererdrawable.c + * app/widgets/gimpviewrendererimage.c + * app/xcf/xcf-load.c + * app/xcf/xcf-save.c: use gimp_image_get/set_resolution() instead + of accessing the GimpImage members directly. + +2007-12-26 Sven Neumann + + * app/paint/gimpbrushcore.c: sprinkled with const qualifiers. + +2007-12-25 Michael Natterer + + * app/core/gimpimage-guides.[ch] + * app/core/gimpimage-sample-points.[ch]: add accessors for the lists + of guides and sample points. + + * app/core/gimpimage-crop.c + * app/core/gimpimage-duplicate.c + * app/core/gimpimage-flip.c + * app/core/gimpimage-resize.c + * app/core/gimpimage-rotate.c + * app/core/gimpimage-scale.c + * app/core/gimpimage-snap.c + * app/core/gimpimage.c + * app/display/gimpdisplayshell-appearance.c + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell.c + * app/widgets/gimpsamplepointeditor.c + * app/xcf/xcf-save.c: use the new accessors. + +2007-12-25 Michael Natterer + + * app/core/gimpimage.h (struct GimpImage):: renamed "cmap" to + "colormap" and "num_cols" to "n_colors". + + * app/core/gimpimage.c + * app/core/gimpimage-colormap.[ch] + * app/widgets/gimpcolormapeditor.c: changed accordingly. + +2007-12-25 Michael Natterer + + * app/actions/channels-commands.c + * app/actions/colormap-actions.c + * app/actions/colormap-commands.c + * app/actions/image-commands.c + * app/core/gimp-edit.c + * app/core/gimpdrawable-preview.c + * app/core/gimpimage-colorhash.c + * app/core/gimpimage-colormap.c + * app/core/gimpimage-convert.c + * app/core/gimpimage-crop.c + * app/core/gimpimage-duplicate.c + * app/core/gimpimage-flip.c + * app/core/gimpimage-guides.c + * app/core/gimpimage-merge.c + * app/core/gimpimage-preview.c + * app/core/gimpimage-quick-mask.c + * app/core/gimpimage-resize.c + * app/core/gimpimage-rotate.c + * app/core/gimpimage-sample-points.c + * app/core/gimpimage-scale.c + * app/core/gimpimage-snap.c + * app/core/gimpimage.c + * app/core/gimpimagefile.c + * app/core/gimpimageundo.c + * app/core/gimpitem-preview.c + * app/core/gimpitem.c + * app/core/gimplayer.c + * app/core/gimppalette-import.c + * app/core/gimpprojection-construct.c + * app/core/gimpprojection.c + * app/core/gimpselection.c + * app/core/gimpundo.c + * app/dialogs/layer-options-dialog.c + * app/dialogs/print-size-dialog.c + * app/display/gimpdisplay.c + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-scale.c + * app/display/gimpdisplayshell-scroll.c + * app/display/gimpdisplayshell-title.c + * app/display/gimpdisplayshell-transform.c + * app/display/gimpdisplayshell.c + * app/display/gimpstatusbar.c + * app/file/file-open.c + * app/paint/gimppaintoptions.c + * app/tools/gimpaligntool.c + * app/tools/gimpcolortool.c + * app/tools/gimpeditselectiontool.c + * app/tools/gimpiscissorstool.c + * app/tools/gimpmeasuretool.c + * app/tools/gimpmovetool.c + * app/tools/gimpperspectiveclonetool.c + * app/tools/gimprectangleselecttool.c + * app/tools/gimprectangletool.c + * app/tools/gimprotatetool.c + * app/vectors/gimpvectors-export.c + * app/vectors/gimpvectors-import.c + * app/vectors/gimpvectors.c + * app/widgets/gimpimagepropview.c + * app/widgets/gimpnavigationview.c + * app/widgets/gimpselectioneditor.c + * app/widgets/gimpviewrendererdrawable.c + * app/widgets/gimpviewrendererimage.c + * app/xcf/xcf-load.c + * app/xcf/xcf-save.c + * tools/pdbgen/pdb/guides.pdb + * tools/pdbgen/pdb/image.pdb: use accessors for many image properties. + + * app/pdb/guides_cmds.c + * app/pdb/image_cmds.c: regenerated. + +2007-12-25 Michael Natterer + + * app/dialogs/file-save-dialog.c: forgot to port some debug output + to GIMP_LOG(). + +2007-12-23 Michael Natterer + + * app/actions/layers-commands.c + * app/core/gimpchannel-combine.c + * app/core/gimpchannel-select.c + * app/core/gimpchannel.c + * app/core/gimpdrawable-convert.c + * app/core/gimpdrawable.c + * app/core/gimpdrawablemodundo.c + * app/core/gimpfloatingselundo.c + * app/core/gimpimage-convert.c + * app/core/gimpimage-merge.c + * app/core/gimpimage-resize.c + * app/core/gimpimage.c + * app/core/gimpitem-preview.c + * app/core/gimpitem.c + * app/core/gimplayer-floating-sel.c + * app/core/gimplayer.c + * app/core/gimplayermask.c + * app/core/gimplayerundo.c + * app/core/gimpmaskundo.c + * app/core/gimppalette-import.c + * app/core/gimpprojection-construct.c + * app/core/gimpselection.c + * app/dialogs/offset-dialog.c + * app/text/gimptextlayer-xcf.c + * app/text/gimptextlayer.c + * app/vectors/gimpvectors-compat.c + * app/vectors/gimpvectors.c + * app/vectors/gimpvectorsmodundo.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimpviewrendererdrawable.c + * app/widgets/gimpviewrenderervectors.c: use accessors for item, + layer, channel and mask attributes. + +2007-12-22 Sven Neumann + + * app/core/gimpimage-sample-points.c + (gimp_image_add_sample_point_at_pos): corrected undo description. + +2007-12-22 Sven Neumann + + * data/palettes/Tango.gpl: removed duplicate entry ("Untitled"). + +2007-12-21 Michael Natterer + + * app/tools/gimpeditselectiontool.c + * app/tools/gimpiscissorstool.c + * app/tools/gimptexttool.c + * app/tools/gimptransformtool.c: use accessors for drawable and + item properties. + +2007-12-21 Michael Natterer + + * app/xcf/xcf-save.c + * app/xcf/xcf-load.c: use accessors for colormap, parasites and + more item, layer, channel and mask properties instead of accessing + the object structs directly. Some minor style cleanups. + +2007-12-20 Sven Neumann + + * app/plug-in/gimppluginmanager-menu-branch.[ch]: added accessor + for the list of menu branches. + + * app/actions/plug-in-actions.c (plug_in_actions_setup): use it. + +2007-12-20 Sven Neumann + + * configure.in: readded some AC_SUBST() that were removed under + the wrong assumption they would not be needed any longer. + Consistently use # to mark comments in configure.in. + +2007-12-20 Sven Neumann + + * app/app.c: call gegl_exit() on shutdown. + +2007-12-20 Sven Neumann + + * INSTALL + * configure.in: require GEGL >= 0.0.14. + + * app/Makefile.am + * app/app.c: initialize the GEGL library. + +2007-12-20 Sven Neumann + + * app/paint/gimpink.c: minor cleanup. + +2007-12-20 Sven Neumann + + * authors.xml: updated last-active attribute for recent contributors. + +2007-12-20 Sven Neumann + + * configure.in + * plug-ins/Makefile.am + * plug-ins/psd: added new PSD load plug-in written by John Marshall. + This plug-in adds a couple of features. See bug #448181 for details. + + * plug-ins/common/Makefile.am + * plug-ins/common/plugin-defs.pl + * plug-ins/common/psd-load.c: removed old psd-load plug-in. + +2007-12-20 Sven Neumann + + * app/widgets/gimpprofilechooserdialog.c: added code for adding a + shortcut to the default ICC profile location on Windows. Based on + a patch by John Marshall (bug #503410). + +2007-12-20 Sven Neumann + + * app/actions/documents-commands.c (documents_clear_cmd_callback): + adapt to changed gimp_documents_save() API. + +2007-12-19 Michael Natterer + + * app/core/gimp-contexts.[ch] + * app/core/gimp-documents.[ch]: add GErrors to save() and load(). + + * app/core/gimp.c + * app/tools/gimp-tools.c: handle the returned errors. + +2007-12-18 Sven Neumann + + * plug-ins/common/psd-load.c: applied patch from John Marshall + that fixes handling of PSD files with blank layer names (bug #504149). + +2007-12-18 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c: Added extra checks to stop + bad syntax in LET*, LET, and LETREC from causing a segmentation fault + in Linux. See SourceForge bug #1817986. + +2007-12-18 Bill Skaggs + + * libgimpwidgets/gimpstock.h: fix typo that probably caused + bug #503834. + +2007-12-18 Michael Natterer + + * app/xcf/xcf-load.c + * app/xcf/xcf-save.c: use the proper APIs to get/set many item, + layer, channel and vectors properties instead of reading/writing + their struct members directly. + +2007-12-18 Sven Neumann + + * libgimpwidgets/gimpscrolledpreview.c + * libgimpwidgets/gimpcolorselect.c: don't rely on the pointer + position in the GdkEventMotion struct, query the pointer instead. + +2007-12-18 Sven Neumann + + * app/widgets/gimpgradienteditor.c: don't rely on the pointer + position in the GdkEventMotion struct, query the pointer instead. + +2007-12-18 Sven Neumann + + * app/display/gimpnavigationeditor.c: minor cleanup. + + * app/widgets/gimpnavigationview.c + (gimp_navigation_view_motion_notify): fixed handling of motion + events that broke when I introduced the call to + gdk_event_request_motions(). + +2007-12-18 Sven Neumann + + * app/core/gimppalette-import.c + * app/core/gimppalette-load.[ch]: applied slightly modified patch + from Nicola Archibald that adds import of colors from CSS files + (bug #464480). + + * app/core/gimppalette.c (gimp_palette_find_entry): allow to call + this function on an empty palette. + +2007-12-18 Sven Neumann + + * app/base/tile-pyramid.c: use the coordinate parameters in + tile_data_pointer() instead of adjusting the pointer manually. + +2007-12-18 Sven Neumann + + * app/base/tile-pyramid.c + * app/paint-funcs/paint-funcs.c: sprinkled with const qualifiers. + +2007-12-18 Sven Neumann + + * app/base/tile-manager.[ch]: renamed tile_manager_validate() to + tile_manager_validate_tile(). If no validate_proc is set, + initialize the tile data to all zero when validating it. This way + we never hand out uninitialized data and valgrind doesn't need to + complain any longer. + + * app/base/tile.c: changed accordingly. + + * app/core/gimpselection.c: no need to set an extra validate_proc + here as the default implementation now does the job for us. + +2007-12-18 Sven Neumann + + * app/core/gimpdrawable.[ch]: made get_tiles() a method of + GimpDrawable. + +2007-12-18 Sven Neumann + + * app/display/gimpdisplayshell-render.c + (render_image_tile_fault_nearest): added code for 1 and 3 bytes + per pixel. Fixes bug #504115. + +2007-12-16 Bill Skaggs + + * plug-ins/common/edge.c: reverted to state pre-12/16. + +2007-12-17 Sven Neumann + + * app/core/gimpprojection-construct.c (project_intensity): minor + cleanup. + +2007-12-17 Sven Neumann + + * libgimp/gimpregioniterator.c: code cleanup; reduced number of + progress updates. + +2007-12-16 Bill Skaggs + + * plug-ins/common/edge.c: name reverted to "Edge", + label in combo reverted to "Prewitt", other changes kept. + +2007-12-16 Bill Skaggs + + * plug-ins/common/edge.c: renamed to "Sharp Edges", + added "invert" option, other usability tweaks. + +2007-12-16 Bill Skaggs + + * menus/image-menu.xml.in: missed this yesterday + +2007-12-16 Sven Neumann + + * plug-ins/common/plugin-defs.pl + * plug-ins/common/Makefile.am: re-added psd-load. Looks like Bill + accidentally removed it. + +2007-12-16 Sven Neumann + + * libgimpwidgets/gimpcairo-utils.[ch]: added new function + gimp_cairo_set_focus_line_pattern(). + + * libgimpwidgets/gimpcellrenderercolor.c + (gimp_cell_renderer_color_render): use the focus line pattern to + emphasize the selected entry. + + * app/widgets/gimppaletteview.c (gimp_palette_view_expose): use the + new utility function. + + * libgimpwidgets/gimpwidgets.def: updated. + +2007-12-15 Bill Skaggs + + * app/widgets/gimphelp-ids.h + * app/display/gimpdisplayshell-scale.[ch] + * app/display/gimpnavigationeditor.[ch] + * app/actions/view-commands.[ch] + * app/actions/view-commands.c: + + Changed "Fit Image to Window" to "Fill Window", and changed + "fit-to" to "fill" in all the related things. Fixes + bug #490364. + +2007-12-15 Bill Skaggs + + * plug-ins/common/mapcolor.c: removed + * plug-ins/common/plugin-defs.pl + * plug-ins/common/Makefile.am: updated accordingly + + See bug #436145 for the reasons for removing this plug-in. + +2007-12-14 Sven Neumann + + * app/widgets/gimpfiledialog.c: added utility function to reduce + code duplication. + +2007-12-14 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c (eqv): Only return true + when numbers are of equal value AND of the same type (ie. both + exact or inexact). R5RS compliance fix. + +2007-12-14 Martin Nordholts + + Reverted the changes that made GimpRectangleTool keep track of its + active display in GimpRectangleToolPrivate, the approach is + broken. + +2007-12-14 Michael Natterer + + * tools/pdbgen/pdb/edit.pdb: use gimp_pdb_get_buffer() which + sets a proper error instead of looking up the buffers manually. + + * app/pdb/edit_cmds.c + * libgimp/gimpedit_pdb.c: regenerated. + +2007-12-14 Michael Natterer + + * app/core/gimp-edit.[ch]: added GErrors when functions can fail. + + * app/actions/edit-commands.c: handle the returned errors. + + * tools/pdbgen/pdb/edit.pdb: same here (*don't* pass the error as + usual since these functions never fail but have a boolean return + value indicating success instead; ugly, but better than having the + gimp_message() calls in the core). Also changed the named buffer + cut and copy functions to do the same (never fail but return a + NULL buffer name on failure), so they behave as documented. + + * app/pdb/edit_cmds.c: regenerated. + +2007-12-14 Sven Neumann + + * app/base/tile-pyramid.c: reduced rounding errors. + +2007-12-13 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Changed name of + `gimp_rectangle_tool_is_active_at' to + `gimp_rectangle_tool_is_active_on_display'. + + * app/tools/gimpcroptool.c + * app/tools/gimprectangleselecttool.c: Use the new name. + +2007-12-13 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Don't use the `display' member + of GimpTool for keeping track of what display the rectangle is + active on. Instead store the active display in + GimpRectangleToolPrivate. This change is based on a patch by Bill + Skaggs. + (gimp_rectangle_tool_is_active) + (gimp_rectangle_tool_is_active_at) + (gimp_rectangle_tool_get_active_display): New public functions for + GimpRectangleTool active-display interaction. + + * app/tools/gimpcroptool.c + * app/tools/gimprectangleselecttool.c + * app/tools/gimpellipseselecttool.c: Use the active display of + GimpRectangleTool instead of tool->display. + +2007-12-13 Bill Skaggs + + * app/widgets/gimpfiledialog.c (gimp_file_dialog_new): add + shortcut to user's DOCUMENTS dir, fixes bug #325294. + +2007-12-13 Sven Neumann + + * app/base/temp-buf.c (temp_buf_demultiply): corrected formula for + demultiplying the alpha value. + +2007-12-13 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_button_release): Make canceling work a bit + better. + +2007-12-13 Sven Neumann + + * app/base/tile-pyramid.c (tile_pyramid_write_quarter) + * app/display/gimpdisplayshell-render.c + (render_image_tile_fault_nearest): corrected formula used for + pre-multiplying the alpha value. + +2007-12-13 Sven Neumann + + Speed up our display rendering code paths by keeping data with + pre-multiplied alpha where possible. The projection tile-manager + at 100 % zoom is not affected. So we can still always get the + non-pre-multiplied pixel data. + + * app/core/gimpprojection.[ch]: removed + gimp_projection_get_opacity(), the projection is always opaque. + + * app/base/tile-pyramid.[ch]: use pre-multiplied alpha for the + upper levels of the pyramid. This speeds up validation of the + upper levels significantly. + + * app/base/temp-buf.[ch]: added temp_buf_demultiply(). + + * app/core/gimpimage-preview.c: demultiply the preview temp-buf + obtained from the projection's tile tyramid. + + * app/display/gimpdisplayshell-draw.c + * app/display/gimpdisplayshell-render.c: added code to deal with + pre-multiplied data. In fact all data returned by + render_image_tile_fault() is now pre-multiplied so that + render_image_rgb_a() and render_image_gray_a() don't need to use + the large lookup tables from gimprender.[ch] any longer. + +2007-12-13 Sven Neumann + + * app/widgets/gimprender.[ch]: export the light and dark check + color so that places that just need this information don't have to + access the gimp_render_blend_{dark,light}_check arrays. + + * app/actions/view-actions.c + * app/display/gimpdisplayshell-appearance.c + * app/widgets/gimpcolormapeditor.c: changed accordingly. + +2007-12-13 Sven Neumann + + * app/gimp-log.h: code cleanup. + +2007-12-13 Sven Neumann + + * app/base/tile-manager-crop.c (tile_manager_crop): code cleanup. + +2007-12-12 Tor Lillqvist + + * libgimpbase/gimpenv.c (gimp_locale_directory) [Win32]: Use + g_win32_locale_filename_from_utf8() instead of duplicating its + code. + +2007-12-12 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Extended public interface a + bit. + (gimp_rectangle_tool_point_in_rectangle): New convenience function + to test if a point is within the rectangle (if active). + (gimp_rectangle_tool_rectangle_is_new): New function so that + clients can determine if the rectangle currently being + rubber-banded was created from scatch or not. + +2007-12-12 Sven Neumann + + * libgimpwidgets/gimpcairo-utils.[ch]: renamed + gimp_cairo_set_source_color() to gimp_cairo_set_source_rgb() and + added an RGBA variant. + + * libgimpwidgets/gimpcellrenderercolor.c + (gimp_cell_renderer_color_render) + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): changed + accordingly. + + * libgimpwidgets/gimpwidgets.def: updated. + +2007-12-12 Sven Neumann + + * libgimpwidgets/gimpcairo-utils.[ch]: added new function + gimp_cairo_checkerboard_create() and renamed + gimp_cairo_create_surface_from_pixbuf() to + gimp_cairo_surface_create_from_pixbuf(). + + * libgimpwidgets/gimpcellrenderercolor.c + (gimp_cell_renderer_color_render): use Cairo utils here. + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_create_pattern): + changed accordingly. + + * libgimpwidgets/gimpwidgets.def: updated. + +2007-12-12 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/gimpcairo-utils.[ch]: removed here... + + * libgimpwidgets/Makefile.am + * libgimpwidgets/gimpcairo-utils.[ch]: and added here after some + cleanup. + + * libgimpwidgets/gimpwidgets.h: include gimpcairo-utils.h. + + * app/widgets/gimpviewrenderer.c + * app/widgets/gimpviewrenderergradient.c + * app/widgets/gimpviewrendererpalette.c: changed accordingly. + + * libgimpwidgets/gimpwidgets.def: updated for Cairo utils. + + * libgimp/gimp.def: added gimp_image_get_vectors_by_tattoo. + +2007-12-12 Michael Natterer + + * app/core/gimpitem.[ch]: added GError to GimpItem::rename(). + + * app/core/gimplayer.c + * app/core/gimplayermask.c: set errors when renaming is impossible. + + * app/text/gimptextlayer.c + * app/core/gimpimage-quick-mask.c: changed accordingly. + + * app/actions/channels-commands.c + * app/actions/layers-commands.c + * app/actions/vectors-commands.c + * app/widgets/gimpitemtreeview.c: handle the returned errors. + + * tools/pdbgen/pdb/drawable.pdb + * tools/pdbgen/pdb/vectors.pdb: pass the error. + + * app/pdb/drawable_cmds.c + * app/pdb/vectors_cmds.c: regenerated. + +2007-12-12 Michael Natterer + + * app/paint/gimpheal.c: no need to declare init() and class_init(), + these declarations come for free with G_DEFINE_TYPE(). + +2007-12-12 Michael Natterer + + * app/core/gimplayer-floating-sel.c (floating_sel_to_layer): add + missing return value, this is no void function any more. + +2007-12-12 Sven Neumann + + * plug-ins/common/whirlpinch.c: extended the range allowed for the + whirl angle (bug #499398). + +2007-12-12 Sven Neumann + + * INSTALL + * configure.in + * app/gui/gui.c (GTK_REQUIRED_MICRO): bumped minimum required + version of gtk+ to 2.12.1. + + * app/widgets/gimpdockbook.c (gimp_dockbook_tab_drag_motion): + removed unused parameter that was needed for gtk+ < 2.12.1. + +2007-12-12 Tor Lillqvist + + * libgimpbase/gimpenv.c (gimp_toplevel_directory) [Win32]: Use the + location of the libgimpbase DLL and not that of the main + executable (which will be the Python interpreter in the case of + python-fu) to determine the top-level GIMP installation + folder. (#502506) + + (gimp_locale_directory) [Win32]: Guard against the possibility + that we can't get the system codepage form of the locale + directory, in case the installation folder contains characters not + in the system codepage. In that case use the short name instead. + +2007-12-12 Sven Neumann + + * libgimpwidgets/gimpcellrenderercolor.c: draw using Cairo. + +2007-12-12 Tor Lillqvist + + * app/base/tile-private.h + * app/base/tile-swap.c: Move the LARGE_SEEK and LARGE_TRUNCATE + macros from tile-private.h to tile-swap.c as they aren't used + anywhere else, and the helper function used on Windows was static + in tile-swap.c anyway. (#503124) + +2007-12-11 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c (get_consecutive_cells): + Fix to prevent reporting out of memory when there should be plenty + of cells still available. See SourceForge bug #1794369. + +2007-12-11 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c: Don't abort the top-level + s-exp when loading a file. See SourceForge bug #1589711. + +2007-12-11 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme.c: Applied changes from + official version of TinyScheme which fix is_integer(). See + SourceForge bug #1593861. + +2007-12-11 Bill Skaggs + + * app/paint/gimpheal.c: heal from edge of brush mask + instead of edges of paint area. + + * app/paint/gimpbrushcore.[ch]: export + gimp_brush_core_get_brush_mask() to enable use of mask. + +2007-12-11 Michael Natterer + + * app/pdb/Makefile.am + * app/pdb/gimppdb-utils.[ch]: new utility functions which look up + brushes, patterns etc. and set appropriate error messages if the + objects are not found. + + * tools/pdbgen/pdb/brush.pdb + * tools/pdbgen/pdb/brushes.pdb + * tools/pdbgen/pdb/buffer.pdb + * tools/pdbgen/pdb/context.pdb + * tools/pdbgen/pdb/convert.pdb + * tools/pdbgen/pdb/gradient.pdb + * tools/pdbgen/pdb/gradients.pdb + * tools/pdbgen/pdb/paint_tools.pdb + * tools/pdbgen/pdb/palette.pdb + * tools/pdbgen/pdb/palettes.pdb + * tools/pdbgen/pdb/pattern.pdb + * tools/pdbgen/pdb/patterns.pdb: use them here. Also set non_empty + to TRUE for all brush, pattern etc. names. + + * app/pdb/brush_cmds.c + * app/pdb/brushes_cmds.c + * app/pdb/buffer_cmds.c + * app/pdb/context_cmds.c + * app/pdb/convert_cmds.c + * app/pdb/gradient_cmds.c + * app/pdb/gradients_cmds.c + * app/pdb/paint_tools_cmds.c + * app/pdb/palette_cmds.c + * app/pdb/palettes_cmds.c + * app/pdb/pattern_cmds.c + * app/pdb/patterns_cmds.c: regenerated. + +2007-12-11 Sven Neumann + + * app/plug-in/gimpplugin-message.c: added sanity checks to message + handlers. This doesn't keep us from crashing on invalid input, but + we will at least get some warnings before that happens. + + * libgimpbase/gimpprotocol.c: made the code more robust against + errors on the wire protocol level. + +2007-12-11 Sven Neumann + + * libgimpbase/gimpwire.c (_gimp_wire_read_string): use g_try_new() + so a plug-in can't easily crash the core by sending an invalid + string message. + +2007-12-11 Sven Neumann + + * libgimpbase/gimpwire.c (gimp_wire_register): allocate + GimpWireHandler structs using GSlice. + +2007-12-11 Sven Neumann + + * libgimpbase/gimpwire.c (_gimp_read_read_string): NULL-terminate + all strings coming in over the wire protocol. Should help with bug + #498207. + (gimp_wire_register): + +2007-12-10 Sven Neumann + + * plug-ins/pygimp/gimpmodule.c (pygimp_set_background) + (pygimp_set_foreground): allow the use of CSS color names and + hexadecimal color notation. + +2007-12-10 Bill Skaggs + + * app/paint/gimpheal.c: make the healing brush work properly + when dragged. Fixes bug #492575. + +2007-12-09 Hans Breuer + + * app/gimp-log.h : an ugly but working variant for no varargs macros + + * app/base/base-utils.c(get_physical_memory_size) : fallback to + GetMemoryStatus() for older compiler/sdk + + * app/core/gimplayer-floating-sel.c : second argument to g_set_error() + is an uint32, not a pointer + + * **/makefile.msc : updated and removed -GD to let msvc9 complain less + +2007-12-09 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Added + gimp_rectangle_tool_init() (and minor code cleanup). + + * app/tools/gimprectangleselecttool.c + (gimp_rect_select_tool_init): Call gimp_rectangle_tool_init(). + + * app/tools/gimpcroptool.c + (gimp_crop_tool_init): Call gimp_rectangle_tool_init(). + +2007-12-08 Sven Neumann + + * plug-ins/pygimp/gimpfu.py (_run): fixed logic that decides if a + dialog should be shown or not. + +2007-12-07 Bill Skaggs + + * app/core/gimpimage-snap.c: fix typo in previous commit. + +2007-12-07 Bill Skaggs + + * app/display/gimpdisplayshell-draw.c: draw grid correctly when + non-integer spacing is combined with a large offset. Fixes + bug #502374. + + * app/core/gimpimage-snap.c: make snapping to grid work when + coord is less than the grid offset. + +2007-12-07 Sven Neumann + + * configure.in: fixed indentation of --help output. + +2007-12-07 Sven Neumann + + * plug-ins/pygimp/pygimp-colors.c + * plug-ins/pygimp/gimpcolormodule.c: removed calls to PyMem_Free(). + +2007-12-07 Sven Neumann + + * libgimpcolor/test-color-parser.c: removed unused import. + +2007-12-07 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_tool_events): if a device change happens, make + sure we update the new active tool's focus display and modifier + state. Fixes most of bug #493176. + +2007-12-07 Michael Natterer + + * app/gimp-log.[ch]: renamed log domain TOOLS to TOOL_EVENTS and + added domain TOOL_FOCUS. + + * app/display/gimpdisplayshell-callbacks.c: s/TOOLS/TOOL_EVENTS/ + + * app/tools/gimptool.c: port focus debug output to GIMP_LOG(). + +2007-12-07 Michael Natterer + + * app/core/gimpselection.[ch]: added GErrors to + gimp_selection_extract() and gimp_selection_float(). + + * app/core/gimp-edit.c + * app/tools/gimpeditselectiontool.c + * app/actions/select-commands.c: handle the returned error. + + * app/core/gimpdrawable-transform.c: pass NULL errors since this + file knows what it does and won't get errors. + + * tools/pdbgen/pdb/selection.pdb: pass the error. + + * app/pdb/selection_cmds.c: regenerated. + +2007-12-07 Sven Neumann + + * plug-ins/pygimp/gimpui.py (ColorSelector.__init__): accept a + string and parse it using gimpcolor.rgb_parse_css(). + + * plug-ins/pygimp/plug-ins/sphere.py: show off the new feature. + +2007-12-07 Sven Neumann + + * plug-ins/pygimp/plug-ins/foggify.py: push/pop a context instead + of manually restoring the background color. + +2007-12-07 Sven Neumann + + * app/batch.c (batch_run): only show the message about using the + default batch interpreter when running in verbose mode. + +2007-12-06 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_set_property): Also update the integer + representation of the rect when the GObject properties has been + set. + +2007-12-06 Michael Natterer + + * app/core/gimpimage-merge.[ch] + * app/core/gimpimage-convert.[ch]: added GError parameters. + + * app/dialogs/convert-dialog.c + * app/actions/image-commands.c + * app/actions/vectors-commands.c: handle the returned error. + + * tools/pdbgen/pdb/convert.pdb: pass the error. + + * app/pdb/convert_cmds.c: regenerated. + +2007-12-06 Michael Natterer + + * app/core/gimpdrawable-bucket-fill.[ch]: add GError parameter. + + * app/tools/gimpbucketfilltool.c: handle the returned error. + + * tools/pdbgen/pdb/edit.pdb: pass the error. + + * app/pdb/edit_cmds.c: regenerated. + +2007-12-06 Michael Natterer + + * app/paint/gimppaintcore-stroke.[ch]: added GError arguments and + fixed all functions to abort when the first call to + gimp_paint_core_start() fails (it won't succeed either for the + next path or whatever segemts). + + * app/core/gimpitem.[ch]: added GError to gimp_item_stroke() + + * app/core/gimpselection.c + * app/core/gimpchannel.c + * app/vectors/gimpvectors.c: don't gimp_message() in + GimpItem::stroke() but set the error. + + * app/dialogs/stroke-dialog.c + * app/actions/vectors-commands.c + * app/actions/select-commands.c: handle the returned errors. + + * tools/pdbgen/pdb/edit.pdb + * tools/pdbgen/pdb/paths.pdb + * tools/pdbgen/pdb/paint_tools.pdb: pass the error to the stroke + functions. + + * app/pdb/paint_tools_cmds.c + * app/pdb/edit_cmds.c + * app/pdb/paths_cmds.c: regenerated. + +2007-12-06 Michael Natterer + + Move some gimp_message() calls where they belong: + + * app/core/gimplayer-floating-sel.[ch]: removed unreachable + gimp_message() in floating_sel_anchor() and added GError parameter + to floating_sel_to_layer(). + + * app/core/gimplayer.c + * app/core/gimpimage-quick-mask.c + * app/actions/layers-commands.c: pass NULL or an error as + appropriate and show the error message. + + * tools/pdbgen/pdb/floating_sel.pdb: set the error when the passed + layer was no floating selection. + + * app/pdb/floating_sel_cmds.c: regenerated. + +2007-12-05 Martin Nordholts + + * app/actions/tool-options-commands.c + (tool_options_save_to_cmd_callback) + (tool_options_restore_from_cmd_callback): Only care about + GIMP_CONFIG_PARAM_SERIALIZE properties, fixes bug #498948. + +2007-12-05 Michael Natterer + + * tools/pdbgen/pdb/fileops.pdb: pass the error also to + file_utils_filename_to_uri(). + + * app/pdb/fileops_cmds.c: regenerated. + +2007-12-05 Sven Neumann + + * modules/gimpinputdevicestore-dx.c + * modules/gimpinputdevicestore-hal.c: the code for !HAVE_LIBHAL + ended up in the wrong file. + +2007-12-05 Michael Natterer + + * tools/pdbgen/pdb/image.pdb (set_resolution): set the error + instead of using gimp_message(). + + * app/pdb/image_cmds.c: regenerated. + +2007-12-05 Michael Natterer + + * app/pdb/gimppdb-query.[ch]: added GError arguments and reduce + number of labels: to one by simply checking if the regex exists + before unreffing it. + + * tools/pdbgen/pdb/procedural_db.pdb: pass the error to the query + functions. + + * app/pdb/procedural_db_cmds.c: regenerated. + +2007-12-05 Michael Natterer + + * configure.in: disable deprecated API also for the current + develoment versions of glib, pango and gtk+, so we can fix new + deprecations as soon as they pop up. + +2007-12-04 Bill Skaggs + + * tools/pdbgen/pdb/image.pdb: pass "error" instead of NULL. + * app/pdb/image_cmds.c: regenerated. + +2007-12-04 Bill Skaggs + + * tools/pdbgen/pdb/gradient.pdb + * tools/pdbgen/pdb/palette.pdb + * tools/pdbgen/pdb/brush.pdb: use the new error arg instead + of creating a GError and handling it internally. + + * app/pdb/palette_cmds.c + * app/pdb/gradient_cmds.c + * app/pdb/brush_cmds.c: regenerated. + +2007-12-04 Michael Natterer + + * app/core/gimpdrawable.[ch]: added new API + gimp_drawable_estimate_memsize() and virtual function + GimpDrawable::estimate_memsize() which estimate the memsize of a + drawable after scaling/resizing. + + * app/core/gimplayer.c: implement the virtual function and take + the layer mask into account. + + * app/core/gimpimage-item-list.[ch] (gimp_image_item_list_get_list): + added const qualifiers. + + * app/core/gimpimage-scale.c (gimp_image_scale_check): use the new + function to correctly estimate the new size instead of scaling the + drawables' memsizes including all constant parts. Fixes bug #329468. + + * app/gimp-log.[ch]: added IMAGE_SCALE log domain. + + * app/core/gimpimage-scale.c: use it here for debugging output. + +2007-12-04 Sven Neumann + + * modules/Makefile.am + * modules/gimpinputdevicestore.c: split into two new files: + + * modules/gimpinputdevicestore-dx.c: DirectX Input implementation + * modules/gimpinputdevicestore-hal.c: HAL implementation + +2007-12-03 Michael Natterer + + * tools/pdbgen/pdb/fileops.pdb: pass the new error down to all + file functions which take GError arguments. + + * app/pdb/fileops_cmds.c: regenerated. + +2007-12-02 Manish Singh + + * app/dialogs/about-dialog.c (about_dialog_load_url): pass NULL + GError arg to gimp_pdb_execute_procedure_by_name. + + * app/xcf/xcf.c + * app/xcf/xcf-load.[ch] + * app/xcf/xcf-save.[ch]: throw GErrors from load/save invokers instead + of gimp_messages. + +2007-12-02 Sven Neumann + + * tools/pdbgen/app.pl: use GError for error reporting in PDB + invoker methods. + + * tools/pdbgen/pdb/vectors.pdb: use the GError for the procedures + introduced for bug #497159. + + * tools/pdbgen/pdb/fileops.pdb: use the GError from file-load and + file-save procedures. + + * app/pdb/*_cmds.c: regenerated. + + * app/pdb/Makefile.am + + * app/pdb/gimppdberror.[ch]: new file introducing the + GIMP_PDB_ERROR domain. + + * app/actions/plug-in-commands.c + * app/actions/vectors-commands.c + * app/batch.c + * app/core/gimpimagefile.c + * app/core/gimppdbprogress.c + * app/file/file-open.[ch] + * app/file/file-save.c + * app/plug-in/gimpplugin-message.c + * app/plug-in/gimppluginmanager-restore.c + * app/plug-in/gimppluginprocedure.c + * app/plug-in/gimptemporaryprocedure.c + * app/plug-in/plug-in-icc-profile.c + * app/widgets/gimpbrushselect.c + * app/widgets/gimpfontselect.c + * app/widgets/gimpgradientselect.c + * app/widgets/gimphelp.c + * app/widgets/gimppaletteselect.c + * app/widgets/gimppatternselect.c + * app/widgets/gimppdbdialog.[ch]: changed accordingly. + +2007-12-02 Sven Neumann + + * plug-ins/common/tiff-load.c (load_image): removed pointless and + untranslated warning. + +2007-12-02 Sven Neumann + + * plug-ins/jpeg/jpeg-load.c (jpeg_load_resolution): only set the + resolution if X_density and Y_density are not zero. Otherwise the + default resolution would be used anyway and the user sees an + annoying and confusion warning. + +2007-12-01 Sven Neumann + + * app/core/gimpviewable.h: changed GIMP_VIEWABLE_PRIORITY_IDLE to + G_PRIORITY_LOW. The reason for the very low priority was to keep + it lower than the projection idle renderer. + +2007-12-01 Martin Nordholts + + * docs/Makefile.am: Applied patch from Jesper de Jong that removes + an errant leading space in a command. Fixes bug #500826. + +2007-11-30 Sven Neumann + + * app/core/gimpprojection.c (gimp_projection_idle_render_init): + raised the idle renderer priority even higher (bug #499150). + +2007-11-30 Sven Neumann + + * app/base/tile-manager.c (tile_manager_invalidate_area): if no + tiles have been allocated, there's no need to invalidate any. + Should fix bug #500178. + +2007-11-29 Sven Neumann + + * app/core/gimpprojection.c (gimp_projection_idle_render_init): + raise the priority of the idle renderer to G_PRIORITY_DEFAULT_IDLE. + Should fix bug #499150. + +2007-11-29 Bill Skaggs + + * plug-ins/Lighting/lighting_ui.c: make sure to update bumpmap + when combo is changed. Addresses bug #500317. + +2007-11-28 Sven Neumann + + * app/actions/drawable-commands.c (drawable_flip_cmd_callback): + fixed orientation type used for linked items (bug #499161). + + * app/core/gimpdrawable-transform.c + (gimp_drawable_transform_tiles_flip): fixed typo in if condition + and added more sanity checks. + +2007-11-27 Bill Skaggs + + * app/tools/gimprectangletool.c: initialize vars to quiet + stupid compile warnings. + +2007-11-26 Sven Neumann + + * app/widgets/gimpwidgets-utils.c (gimp_widget_accel_changed): + escape text before using it in Pango text markup. + +2007-11-26 Sven Neumann + + * plug-ins/common/wmf.c (load_image): improved error reporting. + +2007-11-26 Sven Neumann + + * plug-ins/common/wmf.c: avoid filename encoding problems by not + using wmf_file_open() but mapping the file into memory with + GMappedFile. Fixes bug #499329. + +2007-11-26 Sven Neumann + + * app/widgets/gimpblobeditor.c (gimp_blob_editor_draw_blob): + corrected rendering of the blob (bug #499281). + +2007-11-24 Martin Nordholts + + * app/tools/gimprectangleoptions.c + (gimp_rectangle_options_iface_base_init): Fix indentation. + +2007-11-24 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Renamed RECT_* identifiers of + the GimpRectangleFunction enum to GIMP_RECTANGLE_TOOL_*. + + * app/tools/gimprectangleselecttool.c: Use the new names. + +2007-11-24 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Ported the internal + representation of the rectangle to gdouble:s instead of + gint:s. This solves problems like not being able to swap portrait + for landscape on very small rectangles and bug #442027, as well as + provides a nice base to solve other similar problems when they are + discovered. It is possible to choose what precision the + GimpRectangleTool:s will appear to have externally through a new + GimpRectanglePrecision enum and property, but the gdouble mode + still requires some work in order to be useful. Internally the + rectangle always is represented using gdouble:s of course. In the + processes quite some refactoring has taken place, mostly + restructuring code and splitting larger functions into smaller + more managable ones. + (gimp_rectangle_tool_rect_rubber_banding_func) + (gimp_rectangle_tool_setup_snap_offsets) + (gimp_rectangle_tool_apply_fixed_rule) + (gimp_rectangle_tool_update_int_rect) + (gimp_rectangle_tool_get_public_rect): New helper functions. + + * app/tools/tools-enums.h: Added GimpRectanglePrecision. + +2007-11-23 Sven Neumann + + * plug-ins/flame/rect.c: reduced progress updates based on a patch + from Tobias Jakobs (bug #499255). Untabified. + +2007-11-23 Sven Neumann + + * tools/pdbgen/pdb/procedural_db.pdb: removed outdated information + from comment. + + * app/pdb/procedural_db_cmds.c + * libgimp/gimpproceduraldb_pdb.c: regenerated. + +2007-11-22 Michael Natterer + + * app/widgets/gimpcolorbar.[ch]: derive from GtkEventBox instead + of GtkMisc, but use an input-only window. + + * app/tools/gimplevelstool.c: redirect the events of the color + bars to the handle bars. The histogram dialog has this change + already. Functionality should be 100% restored now. + +2007-11-22 Sven Neumann + + * libgimpwidgets/gimphelpui.[ch]: use + gtk_widget_set_tooltip_text() from gimp_help_set_help() and added + gimp_help_set_help_data_with_markup() for the cases where markup + is needed. + + * libgimpwidgets/gimpwidgets.def: updated. + + * app/tools/gimpselectionoptions.c + * app/widgets/gimpeditor.c + * app/widgets/gimpwidgets-utils.c: use the new function where markup + in tooltips is being used. + + * app/widgets/gimptoolbox-color-area.c: no need to escape the + ampersand any longer. + +2007-11-22 Jakub Steiner + + * data/images/gimp-splash.png: New unstable splash + * data/images/gimp-splash-2.4.png: looks like we keep stable + splashes around + +2007-11-22 Michael Natterer + + * app/tools/gimplevelstool.[ch]: use a GimpHandleBar also for the + input frame, added a second adjustment for gamma and map between + the linear and logarithmic gamma values in the adjustment + callbacks, get rid of one GtkFrame just as in the histogram + dialog. Still not finished since mouse events on the color bars + are currently not handled. + +2007-11-21 Sven Neumann + + * app/config/gimpguiconfig.c: use "open %s" as the default + web-browser command on Mac OS X. + +2007-11-21 Sven Neumann + + * HACKING + * autogen.sh: dropped support for automake 1.8 and require + automake >= 1.9.6. Require libtool 1.5 for all platforms. + +2007-11-20 Michael Natterer + + * app/widgets/gimpcontainercombobox.c: set the combo insensitive + when it has no items. Fixes bug #498511. + +2007-11-20 Michael Natterer + + * app/tools/gimplevelstool.[ch]: use a GimpHandleBar widget for + the output sliders. Removes a bunch of code already, more to + come... + +2007-11-20 Sven Neumann + + * plug-ins/script-fu/scripts/t-o-p-logo.scm: applied patch from + Ulf-D. Ehlert that fixes the background color used in the Particle + Trace filter (bug #498282). + +2007-11-20 Sven Neumann + + * app/widgets/gimpcolorbar.c (gimp_color_bar_expose): added const + qualifiers. + +2007-11-20 Michael Natterer + + * app/widgets/widgets-types.h + * app/widgets/Makefile.am + * app/widgets/gimphandlebar.[ch]: new widget implementing the slider + bar known from histogram and levels. + + * app/widgets/gimphistogrambox.[ch]: use the new widget. General + cleanup and UI streamlining. + +2007-11-20 Michael Natterer + + * app/widgets/gimpcolorbar.c + * app/widgets/gimphistogramview.c: cosmetic. + +2007-11-19 Sven Neumann + + * app/widgets/gimpcurveview.[ch]: draw a base-line with the grid. + Not sure if this should stay enabled for the Curves tool... + +2007-11-19 Tor Lillqvist + + * libgimpwidgets/gimpcolorscale.c (gimp_color_scale_render_stipple): + Don't write past end of buffer (bug #399484). + +2007-11-18 Martin Nordholts + + * app/tools/gimprectangleselecttool.c: Cosmitics. More strictly + align static function prototypes and consistently use the name + rect_sel_tool for pointers to GimpRectSelectTool. + +2007-11-18 Bill Skaggs + + * libgimp/gimp.def: forgot in previous commit + +2007-11-18 Bill Skaggs + + * tools/pdbgen/pdb/vectors.pdb: add code for + vectors-export-to-file and vectors-export-to-string, as + requested in bug #497159. + + * app/pdb/vectors_cmds.c + * app/pdb/internal_procs.c + * libgimp/gimpvectors_pdb.c + * libgimp/gimpvectors_pdb.h: rebuilt accordingly. + +2007-11-18 Sven Neumann + + * gimptool-2.0.in: removed. + + * configure.in: removed leftover references to the gimptool script. + +2007-11-18 Michael Natterer + + * app/gimp-log.[ch]: add SAVE_DIALOG log domain. + + * app/dialogs/file-save-dialog: port debug output to GIMP_LOG(). + +2007-11-18 Michael Natterer + + * app/gimp-log.[ch]: add DIALOG_FACTORY log domain. + + * app/widgets/gimpdialogfactory.c: port debug output to GIMP_LOG(). + +2007-11-18 Michael Natterer + + * app/gimp-log.[ch]: changed to work with different + compiler-specific ways of doing macro varargs. Also cope with no + macro vararg support at all. Pointed out by Hans Breuer. + +2007-11-18 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_tool_events): improve debug output. + +2007-11-17 Sven Neumann + + * app/base/base-utils.c (get_physical_memory_size): added a cast + to avoid an integer overflow on 32bit machines. + +2007-11-17 Sven Neumann + + * tools/gimptool.c: minor cleanup, hopefully not breaking anything. + +2007-11-17 Sven Neumann + + * app/base/base-utils.[ch]: changed to get_physical_memory_size() + and added an implementation for POSIX.2 platforms. + +2007-11-17 Tor Lillqvist + + * tools/gimptool.c: Ignore --msvc-syntax unless on Windows. Put + some Windows-only stuff inside ifdef. + +2007-11-16 Tor Lillqvist + + Use the gimptool program on Unix, too, instead of the gimptool + script. + + * configure.in + * Makefile.am: Drop gimptool script and gimptool-win32.c(.in) + + * tools/gimptool.c + * tools/Makefile.am: Move gimptool-win32.c.in here and call it + just gimptool.c. Build and install on all platforms. + + * tools/gimptool.c: Change accordingly. + + * doc/gimptool.1.in: Document the --msvc-syntax option. + +2007-11-16 Michael Natterer + + * app/gimp-log.[ch]: add HELP log domain. + + * app/widgets/gimphelp.c: port debug output to GIMP_LOG() and + improve it. + +2007-11-16 Tor Lillqvist + + * app/base/base-utils.c + * app/base/base-utils.h (get_physical_memory_size_megabytes): New + function that Sven asked for. Somebody please fill in Unix + implementation(s). Feel free to change the name, change to return + as bytes in a gint64, etc. + +2007-11-16 Michael Natterer + + * app/base/temp-buf.c + * app/base/tile-manager.c + * app/core/gimpobject.c: accept NULL in all get_memsize() functions. + + * app/core/gimp-utils.[ch]: ditto. Added gimp_string_get_memsize(). + + * app/core/gimp.c + * app/core/gimpbrush.c + * app/core/gimpbuffer.c + * app/core/gimpcontainer.c + * app/core/gimpcontext.c + * app/core/gimpdata.c + * app/core/gimpdrawable.c + * app/core/gimpdrawablemodundo.c + * app/core/gimpdrawableundo.c + * app/core/gimpimage.c + * app/core/gimpitempropundo.c + * app/core/gimplayer.c + * app/core/gimpmaskundo.c + * app/core/gimppalette.c + * app/core/gimpparasitelist.c + * app/core/gimppattern.c + * app/core/gimppreviewcache.c + * app/core/gimpundo.c + * app/core/gimpundostack.c + * app/core/gimpviewable.c + * app/pdb/gimpprocedure.c + * app/plug-in/gimpplugindef.c + * app/plug-in/gimppluginmanager.c + * app/plug-in/gimppluginprocedure.c + * app/text/gimptext.c + * app/text/gimptextlayer.c + * app/text/gimptextundo.c + * app/vectors/gimpvectorsmodundo.c: simplify + GimpObject::get_memsize() implementations accordingly. + + * app/core/gimpimageundo.c: ditto. Always keep around colormaps in + chunks of GIMP_IMAGE_COLORMAP_SIZE to be coonsistent with the + other colormap handling code. + +2007-11-16 Sven Neumann + + * app/base/lut-funcs.c (equalize_lut_setup): make sure we don't + get stuck in a loop if all pixels are transparent (bug #497291). + +2007-11-16 Sven Neumann + + * libgimpconfig/gimpcolorconfig.c: changed default value for using + the system monitor profile. Many users seem to have broken monitor + profiles and it's hard to figure out how to fix this (bug #496890). + +2007-11-15 Sven Neumann + + * app/tools/gimpselectionoptions.c (gimp_selection_options_gui): + plugged a memory leak. + + * libgimpwidgets/gimpintstore.c (gimp_int_store_add_empty): + initialize the iter to avoid using uninitialized memory. + +2007-11-15 Sven Neumann + + * plug-ins/common/screenshot.c: don't call gimp_edit_clear() if + the selection mask is empty after selecting the window shape and + inverting that selection. Fixes bug #493182. + +2007-11-15 Sven Neumann + + * plug-ins/common/tiff-save.c (save_image): fixed bug in colormap + handling (bug #497103). + +2007-11-15 Michael Natterer + + * app/display/gimpdisplayshell-dnd.c + * app/widgets/gimpdnd-xds.c + * app/widgets/gimpselectiondata.c: use GIMP_LOG(DND) here too. + +2007-11-15 Michael Natterer + + * app/gimp-log.[ch]: add DND log domain. + + * app/widgets/gimpdnd.c: use GIMP_LOG(). + +2007-11-15 Sven Neumann + + * app/core/gimpcurve-save.c: added sanity checks. + +2007-11-15 Michael Natterer + + * app/Makefile.am + * app/gimp-log.[ch]: new files implementing a log facility which + can be enabled using the GIMP_LOG environment variable. + + * app/main.c: initialize it. + + * app/display/gimpdisplayshell-callbacks.c: use it instead of + private debugging macros that need to be enabled at compile time. + +2007-11-15 Michael Natterer + + * app/core/gimpviewable.[ch]: add read-only property "frozen" and + new API gimp_viewable_preview_is_fozen(). Emit property notifications. + + * app/widgets/gimphistogramview.[ch]: add API to show a second + histogram in the background. Remove member "light_histogram" from + the GimpHistogramViewClass struct. + + * app/widgets/gimpcurveview.c: don't set "light_histogram". + + * app/tools/gimpcurvestool.c: set the background histogram instead. + + * app/widgets/gimphistogrameditor.[ch]: connect to "notify::frozen" + of the drawable and show its histogram at the freezing point in + the background. This way the original histogram is visible while + we are doing color corrections. + +2007-11-14 Michael Natterer + + * app/display/gimpcanvas.c + * app/widgets/gimpcurveview.c: free the cached PangoLayouts in + GtkWidget::style_set(). + + * app/widgets/gimppaletteview.c: draw the focus rectangle in + hardcoded black/white since we also hardcode the grid color to + black. + + * app/display/gimpstatusbar.c + * app/widgets/gimpdockable.c: small cleanups while reviewing + layout code. + +2007-11-14 Michael Natterer + + * app/widgets/gimpcolorframe.[ch]: replaced the number label with + a big Cairo-drawn number below the color value labels. + +2007-11-14 Michael Natterer + + * app/widgets/gimppaletteview.[ch]: port to Cairo drawing. + +2007-11-13 Martin Nordholts + + * app/tools/gimprectangletool.c: Avoid GimpRectangleTool internals + to make use of its own public interface by making + gimp_rectangle_tool_get_other_side() work on pointers to members + instead of GObject property names. + (gimp_rectangle_tool_set_other_side_coord) + (gimp_rectangle_tool_get_other_side_coord): Use + gimp_rectangle_tool_get_other_side() in the new way. + +2007-11-13 Martin Nordholts + + Fixed warnings about negative rectangle widths/heights when + toggling 'Fixed center' while rubber banding a rectangle. + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_set_other_side_coord): Finnishing off with a + call to gimp_rectangle_tool_check_function() as changing the + coordinates of the opposite side might swap the orientation of the + rectangle. + +2007-11-13 Sven Neumann + + * app/core/gimpimage-merge.c (gimp_image_merge_layers): when we + encounter an unsupported merge operation (merging an opaque + indexed layer onto an indexed layer with alpha channel), then add + an alpha channel and try again. Fixes bug #496437. + +2007-11-13 Michael Natterer + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): use + cairo_save()/cairo_restore() around calling the virtual function + instead of restoring the clipping area manually. + +2007-11-13 Michael Natterer + + * app/widgets/gimpviewrenderervectors.c + (gimp_view_renderer_vectors_draw): naive port to Cairo. Somebody + should check if this isn't better done with proper curve_to() + drawing using the original vectors data instead of interpolation. + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): reset + clipping before drawing the border because a subclass' draw() + might have done additional clipping. + +2007-11-13 Tor Lillqvist + + * gimptool-win32.c.in: Some cleanups, more coming. + +2007-11-13 Sven Neumann + + Fix for bug #494049 (painting doesn't update the histogram): + + * app/paint/gimppaintcore.c: freeze the drawable preview while we + are painting. Update the drawable instead of the image. + + * app/widgets/gimphistogrameditor.c: use a short timeout instead + of an idle handler to update the histogram. + +2007-11-13 Tor Lillqvist + + * gimp-zip.in: Drop the timestamp from the zip file names. Add the + .pc files to the developer package. + +2007-11-13 Michael Natterer + + Enable brush scaling for smudge (but only before, not while + painting). Fixes bug #471348. + + * app/paint/gimpbrushcore.[ch] (struct GimpBrushCoreClass): rename + member "use_scale" to "handles_scaling_brush". + + (gimp_brush_core_calc_brush_scale): apply pressure scale only if + both "handles_scaling_brush" and "use_pressure" are TRUE, and + apply the scaling from the options unconditionally. + + (gimp_brush_core_get_paint_area): don't re-fetch core->scale if + "handles_scaling_brush" is FALSE to keep the brush from scaling + *while* painting. + + (gimp_brush_core_create_bound_segs): use the brush scale from the + options unconditionally since that's always used now. + + * app/paint/gimpsmudge.c (gimp_smudge_brush_coords): use + gimp_brush_scale_size() to figure the accum_buffer's size instead + of using the brush mask's size directly. + + * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): show + the brush scale controls for all brush tools. + +2007-11-12 Sven Neumann + + * app/core/gimp-utils.c (gimp_get_default_unit): return + GIMP_UNIT_MM in case that we can't query the locale. + + * plug-ins/common/postscript.c: use gboolean for boolean variables. + +2007-11-12 Sven Neumann + + * app/core/gimpimage-merge.c (gimp_image_merge_layers): corrected + the size of the pixel region passed to color_region() in case of + an indexed image. Fixes bug #495990. + +2007-11-12 Michael Natterer + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_ruler_button_press): don't let + GimpImageMapTools move sample points. They fail badly and leave + the display in a paused state. + +2007-11-12 Michael Natterer + + * app/sanity.c: added Pango version sanity check. + +2007-11-12 Sven Neumann + + * plug-ins/common/tiff-load.c (run): properly handle a failure of + TIFFFdOpen() instead of crashing on TIFF files we can't handle. + +2007-11-12 Michael Natterer + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): don't + crash if gimp_display_shell_filter_new() returns NULL. + Fixes bug #495863. + +2007-11-11 Kevin Cozens + + * plug-ins/script-fu/scripts/script-fu-compat.init: Return a list + from cons-array when type is 'string. + +2007-11-11 Martin Nordholts + + * app/tools/gimprectangletool.[ch]: Removed + gimp_rectangle_tool_get_press_coords() as it doesn't make sense + for a rectangle tool interface to provide this functionality. + Clients should take care of that themselves. Also adjusted + internal code accordingly. + + * app/tools/gimprectangleselecttool.c: Remember the pressed + coordinates on _button_press instead of asking GimpRectangleTool + about it. + +2007-11-11 Michael Natterer + + * configure.in: depend on pango 1.18 + + * app/text/gimpfontlist.c (gimp_font_list_add_font): remove + workaround for old pango appending "Non-Rotated" to font names. + +2007-11-11 Martin Nordholts + + * app/tools/gimprectangleselecttool.[ch]: Don't expose private + instance members, use g_type_class_add_private() instead. + +2007-11-11 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_update_with_coord): Updated comments to + reflect current behaviour. + +2007-11-11 Martin Nordholts + + * app/tools/gimprectangletool.c: Lessen code bloat by removing + code that manages center-[xy] properies of GimpRectangleOptions. + Instead use x1, y1 and x2, y2 when working with the rectangle + center. + + * app/tools/gimprectangleoptions.[ch]: Removed "center-x" and + "center-y" properties. + +2007-11-10 Sven Neumann + + * libgimpwidgets/gimppageselector.c: formatting. + +2007-11-10 Sven Neumann + + * app/actions/view-actions.c (view_zoom_explicit_actions): fixed + incorrect tooltip (bug #495564). + + * app/dialogs/preferences-dialog.c (prefs_display_options_frame_add): + adapt to the changed return value of gimp_prop_enum_combo_box_new(). + +2007-11-10 Michael Natterer + + * libgimpwidgets/gimppropwidgets.c + (gimp_prop_file_chooser_button_*): remove all sorts of workarounds + for bugs of GtkFileChooserButton in GTK+ versions prior to 2.12. + +2007-11-10 Michael Natterer + + * libgimpwidgets/gimppropwidgets.c: remove event boxes that were + only there for the old tooltips. + + * modules/cdisplay_lcms.c: ditto. Also remove some code that was + only needed because of the event box hack. + +2007-11-10 Michael Natterer + + * app/tools/gimpairbrushtool.c (gimp_airbrush_tool_init) + * app/tools/gimppenciltool.c (gimp_pencil_tool_init): don't enable + color picking, it already gets enabled by the parent class. + +2007-11-10 Sven Neumann + + * plug-ins/helpbrowser/dialog.c (browser_dialog_make_index_foreach): + deal gracefully with NULL titles. + +2007-11-09 Sven Neumann + + * app/widgets/gimpcurveview.c (gimp_curve_view_expose): align the + overlay with the pixel grid. + +2007-11-09 Sven Neumann + + * app/widgets/gimpcurveview.c: draw the selected point filled and + outlines for the unselected points. + +2007-11-09 Sven Neumann + + * app/widgets/gimpcurveview.c (gimp_curve_view_expose): draw the + center grid lines slightly stronger than the other grid lines. + +2007-11-09 Sven Neumann + + * app/widgets/gimpcurveview.c (gimp_curve_view_expose): draw the + cursor position using a translucent overlay. + +2007-11-09 Sven Neumann + + * app/widgets/gimpcurveview.[ch]: added construct-only properties + to control the number of grid rows and columns. Increased the + default values to 8. + +2007-11-09 Michael Natterer + + * libgimpwidgets/gimphelpui.[ch]: use the new tooltip API instead + of the old deprecated one. Removed _gimp_help_init(). Remember + whether tooltips are enabled or not in a local variable that can + only be altered at startup time and not after. The API now expects + markup instead of plain text which might cause warnings and + perhaps needs to be changed. + + * libgimpwidgets/gimpwidgets-private.c: don't call _gimp_help_init(). + + * app/config/gimpguiconfig.c: made show-tooltips a + GIMP_CONFIG_PARAM_RESTART property. + + * app/widgets/gimptoolbox-color-area.c: don't add the tooltip here... + + * app/widgets/gimptoolbox.c: ...but here (as for all other + indicators). Also escape '&' properly because we now use markup. + + * app/tools/gimpselectionoptions.c + * app/widgets/gimpeditor.c + * app/widgets/gimpwidgets-utils.c: print modifiers and + shortcuts in bold instead of in (). + + * app/widgets/gimpcontainertreeview.c: show tooltips on rows if + gimp_viewable_get_description() returns a tip. + + * app/dialogs/preferences-dialog.c + * plug-ins/jpeg/jpeg-save.c + * plug-ins/MapObject/mapobject_ui.c + * plug-ins/Lighting/lighting_ui.c + * plug-ins/common/animationplay.c + * plug-ins/common/warp.c: no need to add event boxes just to have + tooltips, the new ones work on all widgets. + +2007-11-08 Sven Neumann + + * app/display/gimpstatusbar.c (gimp_statusbar_vprintf): also cut + the message at a '\r' character. Fixes the remaining aspect of + bug #492718. + +2007-11-08 Michael Natterer + + * libgimp/gimpenums.c.tail: replaced by generated version. + +2007-11-08 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_show_tooltip): + don't directly pass a message to gimp_statusbar_push(), it expects + a format string and printf-like varargs. Fixes the crash reported + in bug #492718. + +2007-11-08 Michael Natterer + + * app/core/gimpimage.c (gimp_image_clean_all): pass GIMP_DIRTY_ALL + to the "clean" signal instead of uninitialized memory. + +2007-11-06 Martin Nordholts + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_update_handle_sizes): don't use any dead + areas in narrow-mode, and enter narrow-mode earlier. + + * app/tools/gimpdrawtool.c (gimp_draw_tool_draw_corner): adjusted + to always draw side handles in narrow mode without dead areas. + +2007-11-06 Michael Natterer + + * configure.in: remove check for putenv(). + + * app/composite/gimp-composite-3dnow-test.c + * app/composite/gimp-composite-altivec-test.c + * app/composite/gimp-composite-mmx-test.c + * app/composite/gimp-composite-sse-test.c + * app/composite/gimp-composite-sse2-test.c + * app/composite/gimp-composite-vis-test.c + * libgimp/gimpui.c + * plug-ins/uri/uri-backend-wget.c + * tools/gimp-remote-x11.c: use g_setenv() instead of putenv(). + +2007-11-06 Sven Neumann + + * tools/pdbgen/pdb/plug_in.pdb: improved documentation for + gimp-plugin-menu-register. + + * app/pdb/plug_in_cmds.c + * libgimp/gimpplugin_pdb.c: regenerated. + +2007-11-06 Sven Neumann + + * app/widgets/gimpblobeditor.c: ported to Cairo drawing. + +2007-11-05 Michael Natterer + + * app/widgets/gimpcurveview.c (gimp_curve_view_expose): translate + by 0.5,0.5 instead of adding 0.5 to all coordinates (we always + want to draw on pixel centers here). Some cleanup. + +2007-11-05 Martin Nordholts + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_motion): Bail + out early if the rectangle function is RECT_DEAD. This prevents + flickering. + +2007-11-05 Martin Nordholts + + * app/tools/gimprectangletool.c: also don't show the shell + highlight when a rectangle is being moved. Achieved through + slightly modifying code logic and renaming variables and functions + a bit. + +2007-11-05 Sven Neumann + + * app/widgets/gimpgradienteditor.[ch]: use Cairo to draw the controls. + +2007-11-05 Sven Neumann + + * configure.in: don't bail out if the XFixes extension is not + available. + +2007-11-05 Sven Neumann + + * tools/pdbgen/pdb/image.pdb: create a libgimp C wrapper for + gimp-image-get-vectors-by-tattoo; this function was accidentally + forgotten in the 2.4 libgimp API. + + * app/pdb/image_cmds.c + * libgimp/gimpimage_pdb.[ch]: regenerated. + +2007-11-05 Sven Neumann + + * app/widgets/gimpcairo-utils.h: introduced macros to set a single + pixel in a Cairo surface without having to worry about endianness. + + * app/widgets/gimpcairo-utils.c + * app/widgets/gimpviewrenderer.c + * app/widgets/gimpviewrenderergradient.c + * app/widgets/gimpviewrendererpalette.c: use the new macros. + +2007-11-05 Michael Natterer + + * app/widgets/gimpcurveview.c (gimp_curve_view_expose): port to + Cairo. + +2007-11-05 Michael Natterer + + * app/core/gimpcurve.[ch]: don't recalculate the curve if the data + object is frozen. Recalculate on thaw instead. Made + gimp_curve_calculate() private and emit some GimpData::dirty + signals where appropriate. + + * app/tools/gimpcurvestool.c + * app/widgets/gimpcurveview.c + * tools/pdbgen/pdb/color.pdb: changed accodingly (connect to "dirty" + instead of "notify" and added some freeze/thaw where approproate). + + * app/pdb/color_cmds.c: regenerated. + +2007-11-05 Sven Neumann + + * app/core/gimpimagemap.c (gimp_image_map_clear): update the + drawable, not the image. This change was missing in the fix for + bug #490182. Fixes bug #493639. + +2007-11-05 Michael Natterer + + * app/widgets/gimpcurveview.[ch]: added event handling and + completely edit the curve here. + + * app/tools/gimpcurvestool.[ch]: remove all event handling and + curve editing code and only listen to curve signals. + +2007-11-04 Martin Nordholts + + Do not do shell darkening while GimpRectangleTool rectangles are + being rubber-banded. + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_button_press) + (gimp_rectangle_tool_button_release): Maintain a variable keeping + track of if the rectangle is being rubber banded or not. + (gimp_rectangle_tool_update_highlight): Do not set a shell + highligt if the rectangle is being rubber-banded. + (gimp_rectangle_tool_rubber_banding_func): New helper function. + +2007-11-04 Sven Neumann + + * app/widgets/gimpviewrendererbrush.c: implement + GimpViewRenderer::draw and draw the overlays with Cairo. + + * app/widgets/gimpviewrenderer.[ch] + * app/widgets/gimpviewrenderervectors.c: minor cleanups. + +2007-11-04 Sven Neumann + + * app/widgets/gimpviewrenderer.[ch]: replaced the RGB buffer with + a Cairo surface. + + * app/widgets/gimpviewrendererbuffer.c + * app/widgets/gimpviewrendererbrush.c + * app/widgets/gimpviewrendererdrawable.c + * app/widgets/gimpviewrenderergradient.c + * app/widgets/gimpviewrendererimage.c + * app/widgets/gimpviewrendererpalette.c + * app/widgets/gimpviewrenderervectors.c: changed accordingly. There + are some loose ends here that will be fixed over the next days. + + * app/widgets/gimprender.c: removed gimp_render_temp_buf; it is + not any longer needed. + + * app/core/gimpgradient.c (gimp_gradient_get_preview_size) + * app/core/gimppalette.c (gimp_palette_get_preview_size): return + an odd preview height to make the border align with the pixel grid. + +2007-11-04 Sven Neumann + + * app/tools/gimplevelstool.c (levels_input_area_event): minor cleanup. + +2007-11-04 Martin Nordholts + + * app/tools/gimprectangletool.c: Consistently use the name + `rect_tool' instead of `rectangle' or `rectangle_tool' for + pointers to GimpRectangleTool. + +2007-11-04 Martin Nordholts + + Put GimpRectangleTool handles on the outside of the rectangle when + it has a small width or height. Some polishing left to do but the + base functionality works nicely. + + * app/tools/gimpdrawtool.[ch] (gimp_draw_tool_draw_corner): Add a + put_outside boolean parameter that if true draws the handles on + the outside of the rectangle. + + * app/tools/gimprectangletool.c + (gimp_rectangle_tool_update_handle_sizes) + (gimp_rectangle_tool_coord_on_handle) + (gimp_rectangle_tool_draw): Take into account if the rectangle is + in narrow-mode or not. + +2007-11-04 Sven Neumann + + * app/widgets/gimpgradienteditor.c + * app/widgets/gimpnavigationview.c: use + gdk_event_request_motions() to handle motion hint events. + +2007-11-04 Michael Natterer + + * app/widgets/Makefile.am + * app/widgets/widgets-types.h + * app/widgets/gimpcurveview.[ch]: new GimpHistogramView subclass + which does all the curve stuff. + + * app/widgets/gimphistorgramview.[ch]: removed all curve code again. + + * app/tools/gimpcurvestool.c: changed accordingly. + +2007-11-04 Sven Neumann + + * libgimpwidgets/gimpcolorselect.c + * libgimpwidgets/gimpscrolledpreview.c: use + gdk_event_request_motions() to handle motion hint events. + +2007-11-04 Sven Neumann + + * INSTALL + * configure.in: bumped required version of GTK+ to 2.12.0. + + * app/sanity.c (sanity_check_glib) + * app/gui/gui.c (gui_sanity_check): updated sanity checks. + +2007-11-02 Michael Natterer + + * app/widgets/gimphistogramview.[ch]: added API to set the + selected point. + + * app/tools/gimpcurvestool.c: use it. + +2007-11-02 Michael Natterer + + * app/core/gimpcurve.[ch]: added API to modify free-form curves + and properties to listen to curve changes. + + * app/widgets/gimphistogramview.[ch]: added everything that's + needed for rendering a curve with all its color and cursor + indicators on top of a histogram. This code will move to a + subclass soon. + + * app/tools/gimpcurvestool.[ch]: removed all curve rendering here. + Also removed all explicit updating by connecting to curve signals + and updating in the callback. + +2007-11-02 Sven Neumann + + * app/widgets/gimpcairo-utils.[ch]: added utility function to create + a Cairo surface from a GdkPixbuf. + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_create_pattern): + use it from here. + +2007-11-02 Sven Neumann + + * core/gimplist.h: formatting. + +2007-11-02 Michael Natterer + + * app/core/Makefile.am + * app/core/core-types.h + * app/core/gimpcurve-save.[ch] + * app/core/gimpcurve-load.[ch] + * app/core/gimpcurve.[ch]: new GimpData subclass which keeps a + curve as known from the curves tool. Pretty much unfinished, but + can do everything that used to be done by base/curves.c and more. + + * app/base/curves.[ch]: stripped down to plain arrays of + uchar (the actual curve) and the LUT setup function. All the rest + is done by GimpCurve now. + + * app/tools/gimpcurvestool.[ch]: use an array of GimpCurves + instead of the old Curves cruft. Use Curves only for the last step + of creating the LUT. Pretty much unfinished migration here too. + + * tools/pdbgen/pdb/color.pdb: use a GimpCurve here too. + + * app/pdb/color_cmds.c: regenerated. + +2007-11-02 Sven Neumann + + * app/widgets/gimpcairo-utils.c (gimp_cairo_set_source_color): + also use the color's alpha channel. Added gtk-doc documentation. + +2007-11-02 Sven Neumann + + * app/widgets/Makefile.am + * app/widgets/gimpcairo-utils.[ch]: new files holding Cairo + utility functions. + + * app/widgets/gimpviewrenderer.[ch]: ported partly to Cairo drawing. + + * app/widgets/gimpcomponenteditor.c + * app/widgets/gimpcontainercombobox.c + * app/widgets/gimpcontainertreeview.c + * app/widgets/gimplayertreeview.c + * app/widgets/gimpview.c: removed calls to + gimp_view_renderer_unrealize() which are not needed anymore + because we don't allocate a GC in the renderer any longer. + + * app/widgets/gimpcellrendererdashes.c: removed a redundant cast. + +2007-11-01 Sven Neumann + + * app/widgets/gimpviewrenderer.c (gimp_view_renderer_draw): + removed code that draws a diagonal line across a renderer without + context. Emit a warning instead; this shouldn't happen any longer. + +2007-11-01 Sven Neumann + + * app/widgets/gimpdasheditor.c (gimp_dash_editor_expose): draw + using Cairo. + +2007-11-01 Sven Neumann + + * app/widgets/gimpcellrendererdashes.c + (gimp_cell_renderer_dashes_render): draw using Cairo. + +2007-11-01 Sven Neumann + + * plug-ins/script-fu/scripts/Makefile.am (scripts): + * plug-ins/script-fu/scripts/hsv-graph.scm: removed this script. + Fixes bug #491311. + +2007-11-01 Sven Neumann + + * libgimpwidgets/gimpscrolledpreview.c: changed move cursor to + GDK_HAND1 and switch to GDK_FLEUR while the mouse button is down. + +2007-11-01 Tor Lillqvist + + * app/base/base-utils.c + * app/base/base-utils.h: New files, with just one function so far, + get_number_of_processors(). Include implementation also for Win32. + + * app/base/Makefile.am (libappbase_a_SOURCES): Add new files. + + * app/config/gimpbaseconfig.c (gimp_base_config_class_init): Use + get_number_of_processors(). + +2007-11-01 Manish Singh + + * app/core/gimpcontainer-filter.c + * app/pdb/gimppdb-query.c + * app/plug-in/gimppluginmanager-query.c: replace usage of POSIX + regex API with GRegex. + + * configure.in: remove check for regex support in glibc. + + * app/Makefile.am + * plug-ins/script-fu/Makefile.am: remove REGEXREPL references. + + * tools/pdbgen/app.pl: remove code that references HAVE_GLIBC_REGEX. + + * regexrepl/* + * makefile.msc + * Makefile.am: remove regexrepl directory. + +2007-10-31 Sven Neumann + + * app/core/gimp-user-install.c: improved detection of old gimp + user directories and handle migration from 2.4. + +2007-10-31 Michael Natterer + + * app/core/gimpparamspecs.[ch] (GimpParamSpecString): remove + member "null_ok" and use GParamSpecString's "ensure_non_null" + instead. + +2007-10-31 Tor Lillqvist + + * README.win32: Remove. This kind of information belongs in the + wiki. + * Makefile.am (EXTRA_DIST): Drop from here, too. + +2007-10-31 Michael Natterer + + * libgimpbase/Makefile.am + * libgimpbase/xdg-user-dir.[ch]: removed. + + * libgimpbase/gimpbaseenums.[ch]: deprecate enum GimpUserDirectory. + + * libgimpbase/gimpenv.[ch]: deprecate gimp_user_directory() and make + the implementation call g_get_user_special_dir(). + + * libgimp/Makefile.am: #undef GIMP_DISABLE_DEPRECATED in gimpenums.c + + * app/widgets/gimpfiledialog.c: use g_get_user_special_dir() instead. + + * plug-ins/pygimp/gimpmodule.c: #undef GIMP_DISABLE_DEPRECATED. + +2007-10-31 Michael Natterer + + * configure.in + * app/Makefile.am + * tools/Makefile.am: bump some more hardcoded 2.4 to 2.5 + +2007-10-31 Sven Neumann + + * app/display/gimpdisplayshell-close.c + (gimp_display_shell_close_dialog): use g_timeout_source_new_seconds(). + +2007-10-31 Sven Neumann + + * INSTALL + * README + * NEWS: updated for 2.5. + +2007-10-31 Michael Natterer + + * configure.in: depend on glib 2.14.1 + + * app/tools/gimpdrawtool.c + * app/vectors/gimpvectors-import.c: use g_slice_dup() instead of + g_slice_new() and memcpy(). + +2007-10-31 Sven Neumann + + * plug-ins/common/retinex.c: use a combo-box instead of radio + buttons (bug #484838). + +2007-10-31 Michael Natterer + + * app/tools/gimprectangletool.c: some general indentation, spacing + and coding style convention paranoia cleanups. + + (gimp_rectangle_tool_get_constraints): set all return values also + when bailing out early to avoid valgrind warnings about + uninitialized memory. + +2007-10-31 Sven Neumann + + * configure.in: check for the XFIXES extension. + + * plug-ins/common/plugin-defs.pl + * plug-ins/common/Makefile.am: use XFIXES_CFLAGS for compiling the + screenshot plug-in. + + * plug-ins/common/screenshot.c: optionally add the mouse cursor + image on an extra layer. Work in progress... (bug #490779). + +2007-10-31 Sven Neumann + + * configure.in: bumped version to 2.5.0. + + Created branch gimp-2-4 for bug-fixes in the stable 2.4 series. + +2007-10-31 Sven Neumann + + * Made 2.4.1 release. + +2007-10-30 Sven Neumann + + * app/display/gimpdisplayshell-render.c (box_filter): shift only + by 4 bits instead of 8. Should still keep us from overflowing 32 + bit integers but reduces the rounding error and seems to really + fix bug #491503. + +2007-10-30 Martin Nordholts + + * app/tools/gimprectangleselecttool.c + (gimp_rect_select_tool_round_corners_notify): Update the selection + when Rounded corners is toggled or the radius is changed as + discussed in bug #418284. + +2007-10-30 Michael Natterer + + * modules/cdisplay_lcms.c: applied patch from Sven Neumann and + Marianne Gagnon which adds support for getting the system monitor + profile on OS/X. Fixes bug #488170. + +2007-10-30 Sven Neumann + + * app/display/gimpdisplayshell-handlers.c: reverted change that + was made for bug #490785. + +2007-10-30 Sven Neumann + + Fix drawing of straight lines using the Shift key and a tablet + (bug #164240): + + * app/tools/gimppainttool.c (gimp_paint_tool_button_press): set + use_pressure to FALSE when drawing a straight line. + + * app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): respect + the use_pressure flag. + +2007-10-30 Sven Neumann + + * app/display/gimpdisplayshell-render.c (box_filter): reduce + rounding errors. Fixes bug #491503. + + * app/base/tile-pyramid.c (tile_pyramid_write_quarter): reduce + rounding errors. + +2007-10-29 Sven Neumann + + * libgimpcolor/gimpadaptivesupersample.c + (gimp_adaptive_supersample_area): return with a warning if called + with NULL render_func or put_pixel_func. + +2007-10-29 Sven Neumann + + Fix bug #491272 (no cursor drawn for small brush sizes): + + * app/tools/gimpbrushtool.[ch] + (gimp_brush_tool_draw_brush): don't draw the brush outline if it + becomes too small. Instead draw a small cross, but only if + "draw_fallback" was passed as TRUE. + (gimp_brush_tool_draw_brush): pass TRUE for "draw_fallback" if + cursor drawing is disabled for the paint tools. + + * app/tools/gimpsourcetool.c (gimp_source_tool_draw): pass FALSE + for "draw_fallback". + + * app/tools/gimpdrawtool.c (gimp_draw_tool_draw_cross_by_anchor): + draw a symmetric cross for odd handle sizes. + +2007-10-29 Sven Neumann + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_coord_on_handle): + initialize variables to suppress a compiler warning. + +2007-10-28 Sven Neumann + + * app/pdb/gimppdb.c (gimp_pdb_execute_procedure_by_name): also + call va_end() in the error cases. + +2007-10-28 Sven Neumann + + * libgimpwidgets/gimpcolorscales.c (gimp_color_scales_set_channel): + fixed range check. + +2007-10-28 Sven Neumann + + * libgimpwidgets/gimpscrolledpreview.c + (gimp_scrolled_preview_nav_button_press): use small-checks for the + navigation popup and inherit the check-type from the preview. + +2007-10-27 Sven Neumann + + * app/widgets/gimpwidgets-utils.c (gimp_text_buffer_load): close + the file handle. + +2007-10-27 Sven Neumann + + * libgimpbase/gimpmemsize.c (string_to_memsize): don't just crash + right away if the impossible happens. + +2007-10-27 Sven Neumann + + * app/dialogs/preferences-dialog.c (prefs_resolution_source_callback): + g_object_get_data() should always return a size-entry here. Return + with a warning if it doesn't. + +2007-10-27 Sven Neumann + + * libgimpconfig/gimpscanner.c (gimp_scanner_parse_color): + initialize GimpRGB, just to be sure. + +2007-10-27 Sven Neumann + + * app/display/gimpdisplayshell-handlers.c: removed code that syncs + the padding color with the default values set in the preferences. + Fixes bug #490785. + +2007-10-27 Sven Neumann + + * plug-ins/common/pnm.c (pnm_load_ascii): fixed handling of + truncated ascii files. Fixes bug #490827. + +2007-10-27 Sven Neumann + + * plug-ins/common/pnm.c: formatting. + (pnm_load_ascii): + +2007-10-27 Sven Neumann + + * plug-ins/common/mkgen.pl: set the svn:ignore property instead of + writing a .cvsignore file. + +2007-10-27 Sven Neumann + + * libgimpconfig/gimpcolorconfig.h (struct _GimpColorConfig): + declared the fields as public so that they show up in the API + documentation. + +2007-10-27 Hans Breuer + + * app/base/makefile.msc app/file/makefile.msc app/gimpcore.def + app/gui/makefile.msc app/plug-in/makefile.msc + libgimpwidgets/makefile.msc : updated msvc build + * config.h.win32 : add ENABLE_TOOLBOX_MENU, it should only + vanish on Mac OSX (Quartz build) + +2007-10-27 Tor Lillqvist + + * libgimpbase/gimpenv.c (gimp_toplevel_directory): Drop the Win9x + code path here, too. + + * libgimpbase/gimpenv.c (gimp_locale_directory): On Windows return + the pathname in system codepage and not UTF-8. + +2007-10-26 Sven Neumann + + * app/text/gimptext.c: increased default font size to 24. + +2007-10-26 Martin Nordholts + + * app/tools/gimprectangletool.c (struct GimpRectangleToolPrivate): + Renamed handle_[wh] to corner_handle_[wh] since that are the + appropriate names. + +2007-10-26 Martin Nordholts + + * app/tools/gimprectangletool.c (gimp_rectangle_tool_oper_update): + Use new helper functions to decide if the cursor is on a + handle (or outside of the rectangle + handle bounds) to ease the + introduction of having handles on the outside of the pending + rectangle. + (gimp_rectangle_tool_coord_outside) + (gimp_rectangle_tool_coord_on_handle): New helper functions. + +2007-10-26 Sven Neumann + + * app/pdb/gimpprocedure.c (gimp_procedure_validate_args): don't pass + NULL strings to gimp_message(). Fixes bug #490617. + +2007-10-26 Sven Neumann + + Reenabled update of the histogram while doing color corrections + (bug #490182): + + * app/core/gimpviewable.[ch]: added new methods preview_freeze() + and preview_thaw(). + + * app/core/gimpimagemap.c + (gimp_image_map_new): freeze the drawable preview. + (gimp_image_map_dispose): thaw the drawable preview. + (gimp_image_map_do): update the drawable, not the image. + + * app/tools/gimpimagemaptool.c (gimp_image_map_tool_response): no + need to invalidate the drawable preview any longer. + +2007-10-26 Michael Natterer + + * app/xcf/xcf-load.c (xcf_load_image_props): never allocate + image->cmap smaller than GIMP_IMAGE_COLORMAP_SIZE. Fixes bug #490048. + +2007-10-26 Sven Neumann + + * app/widgets/gimphistogrameditor.c + (gimp_histogram_editor_layer_changed): connect to + GimpDrawable::update instead of GimpViewable::invalidate-preview. + +2007-10-25 Kevin Cozens + + * plug-ins/script-fu/tinyscheme/scheme-private.h + * plug-ins/script-fu/tinyscheme/scheme.c: + Allow a maximum of two calls to backchar() needed by the "case '.'" + part of the switch statement in token(). Fixes bug #490198. + +2007-10-25 Martin Nordholts + + * app/tools/gimprectangletool.c: Aligned static function + prototypes. + +2007-10-25 Martin Nordholts + + * app/tools/gimprectangletool.c: Tiny cosmetic change on the + ClampedSide enum definition. + +2007-10-25 Sven Neumann + + * tools/Makefile.am + * tools/gimp-remote.[ch] + * tools/gimp-remote-x11.c: split gimp-remote into common and X11 + specific code. + +2007-10-25 Michael Natterer + + * configure.in: made all tests consistently use + 'test "x$foo" = xbar' instead of 5 variants of which some were + broken. Spotted by Peter Breitenlohner, fixes bug #490068. + +2007-10-25 Sven Neumann + + * configure.in: bumped version to 2.4.1 (interface age 1). + +2007-10-25 Sven Neumann + + * app/plug-in/gimpplugin-message.c (gimp_plug_in_handle_proc_install): + set the procedure name before parsing the image types. + Fixes bug #490055. + +2007-10-25 Sven Neumann + + * app/display/gimpcanvas.c (gimp_canvas_gc_new): use INVERT + instead of XOR if the xor-color is configured as white. + +2007-10-24 Manish Singh + + * plug-ins/common/compose.c + * plug-ins/common/decompose.c: generate PDB docs from the same + source as the UI. + +2007-10-24 Kevin Cozens + + * Makefile.am: Applied patch from Stanislav Brabec which adds + NEWS.pre-2-4, ChangeLog.pre-2-2 and ChangeLog.pre-2-4 to EXTRA_DIST. + Fixes bug #489813. + +2007-10-24 Simon Budig + + * app/display/gimpdisplayshell.h: change the PROJ_ROUND macro + to do proper rounding. Seems to work well. + +2007-10-24 Sven Neumann + Michael Natterer + + * Made 2.4.0 release. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/config.guess /tmp/h4xbGc63vZ/gimp-2.6.1/config.guess --- gimp-2.6.0/config.guess 2007-10-23 20:18:59.000000000 +0100 +++ gimp-2.6.1/config.guess 2008-07-08 00:41:25.000000000 +0100 @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2007-07-22' +timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -56,8 +56,8 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -532,7 +532,7 @@ echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[45]) + *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -799,6 +799,9 @@ EM64T | authenticamd) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks @@ -833,7 +836,14 @@ echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu @@ -954,8 +964,8 @@ x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; - xtensa:Linux:*:*) - echo xtensa-unknown-linux-gnu + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so @@ -1474,9 +1484,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/config.sub /tmp/h4xbGc63vZ/gimp-2.6.1/config.sub --- gimp-2.6.0/config.sub 2007-10-23 20:18:59.000000000 +0100 +++ gimp-2.6.1/config.sub 2008-07-08 00:41:25.000000000 +0100 @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2007-06-28' +timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -72,8 +72,8 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -369,10 +369,14 @@ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -443,6 +447,14 @@ basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; c90) basic_machine=c90-cray os=-unicos @@ -668,6 +680,14 @@ basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -813,6 +833,14 @@ basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -1021,6 +1049,10 @@ basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/configure /tmp/h4xbGc63vZ/gimp-2.6.1/configure --- gimp-2.6.0/configure 2008-09-29 18:23:25.000000000 +0100 +++ gimp-2.6.1/configure 2008-10-08 23:09:52.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for GIMP 2.6.0. +# Generated by GNU Autoconf 2.61 for GIMP 2.6.1. # # Report bugs to . # @@ -728,8 +728,8 @@ # Identity of this package. PACKAGE_NAME='GIMP' PACKAGE_TARNAME='gimp' -PACKAGE_VERSION='2.6.0' -PACKAGE_STRING='GIMP 2.6.0' +PACKAGE_VERSION='2.6.1' +PACKAGE_STRING='GIMP 2.6.1' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP' ac_unique_file="app/core/gimp.c" @@ -1711,7 +1711,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GIMP 2.6.0 to adapt to many kinds of systems. +\`configure' configures GIMP 2.6.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1785,7 +1785,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GIMP 2.6.0:";; + short | recursive ) echo "Configuration of GIMP 2.6.1:";; esac cat <<\_ACEOF @@ -2003,7 +2003,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -GIMP configure 2.6.0 +GIMP configure 2.6.1 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -2017,7 +2017,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GIMP $as_me 2.6.0, which was +It was created by GIMP $as_me 2.6.1, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -2710,7 +2710,7 @@ # Define the identity of the package. PACKAGE='gimp' - VERSION='2.6.0' + VERSION='2.6.1' # Some tools Automake needs. @@ -2852,11 +2852,11 @@ GIMP_MAJOR_VERSION=2 GIMP_MINOR_VERSION=6 -GIMP_MICRO_VERSION=0 -GIMP_INTERFACE_AGE=0 -GIMP_BINARY_AGE=600 -GIMP_VERSION=2.6.0 -GIMP_REAL_VERSION=2.6.0 +GIMP_MICRO_VERSION=1 +GIMP_INTERFACE_AGE=1 +GIMP_BINARY_AGE=601 +GIMP_VERSION=2.6.1 +GIMP_REAL_VERSION=2.6.1 GIMP_API_VERSION=2.0 GIMP_APP_VERSION=2.6 GIMP_PLUGIN_VERSION=2.0 @@ -2888,7 +2888,7 @@ # These are used in the .pc files GLIB_REQUIRED_VERSION=2.16.1 -GTK_REQUIRED_VERSION=2.12.1 +GTK_REQUIRED_VERSION=2.12.5 @@ -2916,7 +2916,7 @@ -LT_VERSION_INFO="600:0:600" +LT_VERSION_INFO="600:1:600" LT_CURRENT_MINUS_AGE=0 @@ -25894,14 +25894,50 @@ # Put the nasty error message in config.log where it belongs echo "$BABL_PKG_ERRORS" >&5 - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } - { { echo "$as_me:$LINENO: error: Test for babl failed. Please get it from http://gegl.org/" >&5 -echo "$as_me: error: Test for babl failed. Please get it from http://gegl.org/" >&2;} + { { echo "$as_me:$LINENO: error: Package requirements (babl >= 0.0.22) were not met: + +$BABL_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables BABL_CFLAGS +and BABL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (babl >= 0.0.22) were not met: + +$BABL_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables BABL_CFLAGS +and BABL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then - { { echo "$as_me:$LINENO: error: Test for babl failed. Please get it from http://gegl.org/" >&5 -echo "$as_me: error: Test for babl failed. Please get it from http://gegl.org/" >&2;} + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables BABL_CFLAGS +and BABL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables BABL_CFLAGS +and BABL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else BABL_CFLAGS=$pkg_cv_BABL_CFLAGS @@ -25911,8 +25947,6 @@ : fi - - pkg_failed=no { echo "$as_me:$LINENO: checking for GEGL" >&5 echo $ECHO_N "checking for GEGL... $ECHO_C" >&6; } @@ -25971,14 +26005,50 @@ # Put the nasty error message in config.log where it belongs echo "$GEGL_PKG_ERRORS" >&5 - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } - { { echo "$as_me:$LINENO: error: Test for GEGL failed. Please get it from http://gegl.org/" >&5 -echo "$as_me: error: Test for GEGL failed. Please get it from http://gegl.org/" >&2;} + { { echo "$as_me:$LINENO: error: Package requirements (gegl >= 0.0.18) were not met: + +$GEGL_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GEGL_CFLAGS +and GEGL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&5 +echo "$as_me: error: Package requirements (gegl >= 0.0.18) were not met: + +$GEGL_PKG_ERRORS + +Consider adjusting the PKG_CONFIG_PATH environment variable if you +installed software in a non-standard prefix. + +Alternatively, you may set the environment variables GEGL_CFLAGS +and GEGL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. +" >&2;} { (exit 1); exit 1; }; } elif test $pkg_failed = untried; then - { { echo "$as_me:$LINENO: error: Test for GEGL failed. Please get it from http://gegl.org/" >&5 -echo "$as_me: error: Test for GEGL failed. Please get it from http://gegl.org/" >&2;} + { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GEGL_CFLAGS +and GEGL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +Alternatively, you may set the environment variables GEGL_CFLAGS +and GEGL_LIBS to avoid the need to call pkg-config. +See the pkg-config man page for more details. + +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } else GEGL_CFLAGS=$pkg_cv_GEGL_CFLAGS @@ -25988,7 +26058,6 @@ : fi - # Check whether --enable-glibtest was given. if test "${enable_glibtest+set}" = set; then enableval=$enable_glibtest; @@ -28130,7 +28199,7 @@ no_gtk=yes fi - min_gtk_version=2.12.1 + min_gtk_version=2.12.5 { echo "$as_me:$LINENO: checking for GTK+ - version >= $min_gtk_version" >&5 echo $ECHO_N "checking for GTK+ - version >= $min_gtk_version... $ECHO_C" >&6; } @@ -28391,12 +28460,12 @@ pkg_cv_GDK_PIXBUF_CFLAGS="$GDK_PIXBUF_CFLAGS" else if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0 >= 2.12.1\"") >&5 - ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0 >= 2.12.1") 2>&5 + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0 >= 2.12.5\"") >&5 + ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0 >= 2.12.5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.12.1" 2>/dev/null` + pkg_cv_GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.12.5" 2>/dev/null` else pkg_failed=yes fi @@ -28409,12 +28478,12 @@ pkg_cv_GDK_PIXBUF_LIBS="$GDK_PIXBUF_LIBS" else if test -n "$PKG_CONFIG" && \ - { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0 >= 2.12.1\"") >&5 - ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0 >= 2.12.1") 2>&5 + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0 >= 2.12.5\"") >&5 + ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0 >= 2.12.5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.12.1" 2>/dev/null` + pkg_cv_GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.12.5" 2>/dev/null` else pkg_failed=yes fi @@ -28433,14 +28502,14 @@ _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then - GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.12.1"` + GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.12.5"` else - GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.12.1"` + GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.12.5"` fi # Put the nasty error message in config.log where it belongs echo "$GDK_PIXBUF_PKG_ERRORS" >&5 - { { echo "$as_me:$LINENO: error: Package requirements (gdk-pixbuf-2.0 >= 2.12.1) were not met: + { { echo "$as_me:$LINENO: error: Package requirements (gdk-pixbuf-2.0 >= 2.12.5) were not met: $GDK_PIXBUF_PKG_ERRORS @@ -28451,7 +28520,7 @@ and GDK_PIXBUF_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. " >&5 -echo "$as_me: error: Package requirements (gdk-pixbuf-2.0 >= 2.12.1) were not met: +echo "$as_me: error: Package requirements (gdk-pixbuf-2.0 >= 2.12.5) were not met: $GDK_PIXBUF_PKG_ERRORS @@ -37521,7 +37590,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by GIMP $as_me 2.6.0, which was +This file was extended by GIMP $as_me 2.6.1, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -37574,7 +37643,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -GIMP config.status 2.6.0 +GIMP config.status 2.6.1 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" @@ -37683,8 +37752,8 @@ gimp_major_ver=2 gimp_minor_ver=6 - gimp_micro_ver=0 - gimp_ver=2.6.0 + gimp_micro_ver=1 + gimp_ver=2.6.1 gimp_api_ver=2.0 diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/configure.in /tmp/h4xbGc63vZ/gimp-2.6.1/configure.in --- gimp-2.6.0/configure.in 2008-09-29 18:23:02.000000000 +0100 +++ gimp-2.6.1/configure.in 2008-10-08 22:16:11.000000000 +0100 @@ -8,11 +8,11 @@ m4_define([gimp_major_version], [2]) m4_define([gimp_minor_version], [6]) -m4_define([gimp_micro_version], [0]) +m4_define([gimp_micro_version], [1]) m4_define([gimp_real_version], [gimp_major_version.gimp_minor_version.gimp_micro_version]) m4_define([gimp_version], [gimp_real_version]) -m4_define([gimp_interface_age], [0]) +m4_define([gimp_interface_age], [1]) m4_define([gimp_binary_age], [m4_eval(100 * gimp_minor_version + gimp_micro_version)]) @@ -43,7 +43,7 @@ m4_define([babl_required_version], [0.0.22]) m4_define([gegl_required_version], [0.0.18]) m4_define([glib_required_version], [2.16.1]) -m4_define([gtk_required_version], [2.12.1]) +m4_define([gtk_required_version], [2.12.5]) m4_define([gdk_pixbuf_required_version], [gtk_required_version]) m4_define([pangoft2_required_version], [1.18.0]) m4_define([fontconfig_required_version], [2.2.0]) @@ -437,13 +437,8 @@ # Checks for required libraries ############################### -PKG_CHECK_MODULES(BABL, babl >= babl_required_version, :, - AC_MSG_ERROR([Test for babl failed. Please get it from http://gegl.org/])) - - -PKG_CHECK_MODULES(GEGL, gegl >= gegl_required_version, :, - AC_MSG_ERROR([Test for GEGL failed. Please get it from http://gegl.org/])) - +PKG_CHECK_MODULES(BABL, babl >= babl_required_version) +PKG_CHECK_MODULES(GEGL, gegl >= gegl_required_version) AM_PATH_GLIB_2_0(glib_required_version, :, AC_MSG_ERROR(Test for GLIB failed. See the file 'INSTALL' for help.), diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/cursors/makefile.msc /tmp/h4xbGc63vZ/gimp-2.6.1/cursors/makefile.msc --- gimp-2.6.0/cursors/makefile.msc 2008-08-21 12:34:03.000000000 +0100 +++ gimp-2.6.1/cursors/makefile.msc 2008-10-08 22:16:05.000000000 +0100 @@ -60,6 +60,7 @@ tool_paths_segment tool-paths-segment.png \ tool_pencil tool-pencil.png \ tool_perspective tool-perspective.png \ + tool_polygon_select tool-polygon-select.png \ tool_rect_select tool-rect-select.png \ tool_resize tool-resize.png \ tool_rotate tool-rotate.png \ diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/data/tips/gimp-tips.xml /tmp/h4xbGc63vZ/gimp-2.6.1/data/tips/gimp-tips.xml --- gimp-2.6.0/data/tips/gimp-tips.xml 2008-09-29 18:11:04.000000000 +0100 +++ gimp-2.6.1/data/tips/gimp-tips.xml 2008-10-08 23:10:51.000000000 +0100 @@ -37,10 +37,11 @@ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤•āĨā¤¨āĨˆ ā¤Ēā¤¨ā¤ŋ ā¤¸ā¤Žā¤¯ā¤Žā¤ž F1 ā¤Ĩā¤ŋā¤šāĨ‡ā¤° ā¤—ā¤ŋā¤ŽāĨā¤Ēā¤•āĨ‹ ā¤ĩā¤ŋā¤ļāĨ‡ā¤ˇā¤¤ā¤žā¤šā¤°āĨ‚ā¤•āĨ‹ ā¤¸ā¤žā¤Žā¤žā¤—āĨā¤°āĨ€ ā¤¸ā¤ŽāĨā¤ĩāĨ‡ā¤Ļā¤¨ā¤ļāĨ€ā¤˛ ā¤Žā¤ĻāĨā¤Ļā¤¤ ā¤Ēā¤žā¤‰ā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ ā¤¯ā¤¸ā¤˛āĨ‡ ā¤ŽāĨ‡ā¤¨āĨā¤•āĨ‹ ā¤­ā¤ŋā¤¤āĨā¤° ā¤Ēā¤¨ā¤ŋ ā¤•ā¤žā¤Ž ā¤—ā¤°āĨā¤Ļā¤›āĨ¤ U kunt hulp krijgen bij de meeste eigenschappen van de GIMP door eender wanneer op de F1-toets te drukken. Dit werkt ook binnen de verschillende menu's. Du kan fÃĨ aktiv hjelp (kontekst hjelp) for det meste i GIMP ved ÃĨ halde musepeikaren over aktuelt omrÃĨde og trykke F1-tasten. - ā¨•ā¨ĻāŠ€ ā¨ĩāŠ€ ā¨¸ā¨ĩā¨ŋāŠąā¨š F1 ā¨Ļā¨Ŧā¨ž ā¨•āŠ‡ ā¨¤āŠā¨¸āŠ€ā¨‚ GIMP ā¨ĻāŠ€ā¨†ā¨‚ ā¨œā¨ŋā¨†ā¨Ļā¨žā¨¤ā¨° ā¨ĩā¨ŋā¨¸ā¨ŧāŠ‡ā¨¸ā¨ŧā¨¤ā¨žā¨ĩā¨žā¨‚ ā¨ĩā¨žā¨¸ā¨¤āŠ‡ ā¨Žā¨Ļā¨Ļ ā¨¸āŠ°ā¨–āŠ‡ā¨Ē ā¨ĒāŠā¨°ā¨žā¨Ēā¨¤ ā¨•ā¨° ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ ā¨‡ā¨š ā¨ŽāŠ‡ā¨¨āŠ‚ ā¨ĩā¨ŋāŠąā¨š ā¨ĩāŠ€ ā¨•āŠ°ā¨Ž ā¨•ā¨°ā¨Ļā¨ž ā¨šāŠˆāĨ¤ + ā¨•ā¨ĻāŠ€ ā¨ĩāŠ€ ā¨¸ā¨ĩā¨ŋāŠąā¨š F1 ā¨Ļā¨Ŧā¨ž ā¨•āŠ‡ ā¨¤āŠā¨¸āŠ€ā¨‚ GIMP ā¨ĻāŠ€ā¨†ā¨‚ ā¨œā¨ŋā¨†ā¨Ļā¨žā¨¤ā¨° ā¨ĩā¨ŋā¨¸ā¨ŧāŠ‡ā¨¸ā¨ŧā¨¤ā¨žā¨ĩā¨žā¨‚ ā¨ĩā¨žā¨¸ā¨¤āŠ‡ ā¨ŽāŠąā¨Ļā¨Ļ ā¨¸āŠ°ā¨–āŠ‡ā¨Ē ā¨ĒāŠā¨°ā¨žā¨Ēā¨¤ ā¨•ā¨° ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ ā¨‡ā¨š ā¨ŽāŠ‡ā¨¨āŠ‚ ā¨ĩā¨ŋāŠąā¨š ā¨ĩāŠ€ ā¨•āŠ°ā¨Ž ā¨•ā¨°ā¨Ļā¨ž ā¨šāŠˆāĨ¤ Pomoc do wielu narzędzi i efektÃŗw programu GIMP, dostępna jest po naciśnięciu klawisza F1. Dostępna jest ona rÃŗwnieÅŧ w menu. Pode obter ajuda sensível ao contexto para a maioria das funcionalidades do GIMP pressionando F1 em qualquer altura a tecla. Isto tambÊm funciona nos menus. VocÃĒ pode obter ajuda sensível ao contexto para a maioria das funcionalidades do GIMP pressionando a qualquer momento a tecla F1. Isso tambÊm funciona nos menus. + Puteți să obțineți ajutor contextual pentru majoritatea caracteristicilor GIMP prin apăsarea ÃŽn orice moment a tastei F1. Acest lucru funcționează de asemenea și ÃŽn interiorul meniurilor. КоĐŊŅ‚ĐĩĐēŅŅ‚ĐŊŅƒŅŽ ĐŋĐžĐŧĐžŅ‰ŅŒ Đ´ĐģŅ йОĐģŅŒŅˆĐ¸ĐŊŅŅ‚ва Ņ„ŅƒĐŊĐēŅ†Đ¸Đš и ĐŋŅƒĐŊĐēŅ‚Ов ĐŧĐĩĐŊŅŽ GIMP ĐŧĐžĐļĐŊĐž вŅ‹ĐˇĐ˛Đ°Ņ‚ŅŒ ĐēĐģавиŅˆĐĩĐš F1. Za večino funkcij GIMPa obstaja od konteksta odvisna pomoč, do katere lahko vedno dostopate s pritiskom na tipko F1. To deluje tudi znotraj menijev. Du kan fÃĨ sammanhangskänslig hjälp fÃļr de flesta av GIMP:s funktioner genom att när som helst trycka pÃĨ F1-tangenten. Detta fungerar även inne i menyerna. @@ -83,6 +84,7 @@ Program GIMP opiera swe działanie na warstwach, ktÃŗre umoÅŧliwiają porządkowanie obrazu. Warstwy moÅŧna sobie wyobraÅŧać jako ułoÅŧone w stos przeÅērocza lub filtry, natomiast efekt końcowy jest złoÅŧeniem zawartości składnikÃŗw stosu. O GIMP utiliza camadas que lhe permitem organizar a sua imagem. Pense nelas como uma pilha de diapositivos ou filtros, de forma a que olhando atravÊs da pilha observa um composto dos seus conteÃēdos. O GIMP usa camadas para organizar a sua imagem. Pense nelas como uma pilha de transparÃĒncias ou filtros, de modo que, olhando atravÊs dela, observa-se uma composiçÃŖo dos seus conteÃēdos. + GIMP folosește straturi pentru a vă permite organizarea imaginii la care lucrați. GÃĸndiți-vă la ele ca la o stivă de diapozitive sau filtre, unde dacă vă uitați prin ele vedeți o compunere a conținutului lor. ДĐģŅ ŅĐžĐˇĐ´Đ°ĐŊиŅ ŅĐģĐžĐļĐŊĐžĐŗĐž иСОйŅ€Đ°ĐļĐĩĐŊиŅ в GIMP иŅĐŋĐžĐģŅŒĐˇŅƒŅŽŅ‚ŅŅ ŅĐģОи. ЧŅ‚ОйŅ‹ ĐŋĐžĐŊŅŅ‚ŅŒ, Ņ‡Ņ‚Đž ŅŅ‚Đž Ņ‚Đ°ĐēĐžĐĩ, ĐŋŅ€ĐĩĐ´ŅŅ‚авŅŒŅ‚Đĩ ŅĐĩĐąĐĩ ŅŅ‚ĐžĐŋĐēŅƒ ĐēĐ°Ņ€Ņ‚иĐŊĐžĐē, ĐŊĐ°Ņ€Đ¸ŅĐžĐ˛Đ°ĐŊĐŊŅ‹Ņ… ĐŊĐ° ĐŋŅ€ĐžĐˇŅ€Đ°Ņ‡ĐŊОК ĐŋĐģĐĩĐŊĐēĐĩ, Ņ‚Đ°Đē Ņ‡Ņ‚Đž ĐŋŅ€Đ¸ ĐŋŅ€ĐžŅĐŧĐžŅ‚Ņ€Đĩ ĐžĐŊи видĐŊŅ‹ вŅĐĩ ŅŅ€Đ°ĐˇŅƒ. GIMP pouŞíva vrstvy na organizÃĄciu vaÅĄich obrÃĄzkov. MôŞete si ich predstaviÅĨ ako sadu fÃŗlií alebo filtrov, cez ktorÊ sa pozerÃĄte, keď chcete vidieÅĨ ich kompozíciu. GIMP uporablja plasti, s katerimi laÅžje organizirate slike. Predstavljate si jih kot večje ÅĄtevilo prosojnic ali filtrov, zloÅženih drug na drugega, tako da s pogledom od zgoraj vidite sestavljeno vsebino cele slike. @@ -130,6 +132,7 @@ Wiele operacji na warstwach (np. dopasowanie, przesuwanie) moÅŧesz wykonać klikając drugim przyciskiem myszy nazwę warstwy w oknie "Warstwy". Pode realizar muitas operaçÃĩes de camadas clicando com o botÃŖo direito na etiqueta de texto de uma camada no diÃĄlogo Camadas. VocÃĒ pode realizar muitas operaçÃĩes de camada clicando com o botÃŖo direito no rÃŗtulo de texto de uma camada no diÃĄlogo de Camadas. + Puteți executa multe operații de strat prin clic-dreapta pe eticheta text a unui strat ÃŽn dialogul de straturi. В диаĐģĐžĐŗĐĩ ŅĐģĐžĐĩв ĐĩŅŅ‚ŅŒ Ņ€Đ°ŅĐēŅ€Ņ‹Đ˛Đ°ŅŽŅ‰ĐĩĐĩŅŅ ĐŧĐĩĐŊŅŽ, Đ´Đ°ŅŽŅ‰ĐĩĐĩ Đ´ĐžŅŅ‚ŅƒĐŋ ĐēĐž ĐŧĐŊĐžĐŗиĐŧ Ņ„ŅƒĐŊĐēŅ†Đ¸ŅĐŧ Đ´ĐģŅ Ņ€Đ°ĐąĐžŅ‚Ņ‹ ŅĐž ŅĐģĐžŅĐŧи. ДĐģŅ ĐĩĐŗĐž вŅ‹ĐˇĐžĐ˛Đ° ĐŊĐ°ĐļĐŧиŅ‚Đĩ ĐŋŅ€Đ°Đ˛ŅƒŅŽ ĐēĐŊĐžĐŋĐēŅƒ ĐŧŅ‹ŅˆĐ¸ ĐŊĐ° ĐŊаСваĐŊии ŅĐģĐžŅ. K mnohÃŊm operÃĄciÃĄm s vrstvami mÃĄte prístup pomocou kliknutia pravÃŊm tlačítkom myÅĄi na označenie vrstvy v dialÃŗgu Vrstvy. Å tevilne operacije s plastmi lahko opravite z desnim klikom miÅĄke na ime plasti v pogovornem oknu Plasti. @@ -164,7 +167,7 @@ Ha egy elmentendő kÊpen a kÊsőbbiekben is szeretne majd mÃŗdosítÃĄsokat vÊgezni, akkor hasznÃĄlja az XCF formÃĄtumot, amely a GIMP sajÃĄt fÃĄjlformÃĄtuma (hasznÃĄlja ehhez a .xcf vÊgződÊst a fÃĄjlnÊvben). Ez a formÃĄtum megőrzi a kÊp Ãļsszes tulajdonsÃĄgÃĄt - pÊldÃĄul a rÊtegeket. Amikor a kÊp elkÊszÃŧlt, elmentheti JPEG, PNG, GIF, stb. formÃĄtumban. Þegar ÞÃē geymir mynd til að vinna með hana seinna, notaðu ÃžÃĄ XCF skrÃĄaformið, Það skrÃĄaform sem er GIMP eiginlegt (notaðu skrÃĄarendinguna .xcf). Þannig varðveitast lÃļg og sÊrhvert horf í verkinu Þínu. Þegar verkefni er lokið, getur ÞÃē geymt Það ÃĄ skrÃĄarformunum JPEG, PNG, GIF, ... Quando si salva un'immagine con l'intenzione di continuare a lavorarci sopra in seguito, provate ad usare il formato nativo di GIMP, XCF (usare l'estensione .xcf). Esso manterrà i livelli e ogni altro aspetto del lavoro. Una volta che il progetto è completato, è sempre possibile salvarlo come JPEG, PNG, GIF, ... - įˇ¨é›†ä¸­ãŽį”ģ像をäŋå­˜ã™ã‚‹æ™‚は、GIMP å›ē有ぎ XCF åŊĸåŧ(æ‹Ąåŧĩ子は .xcf)でäŋå­˜ã—よう。これだとãƒŦイヤãƒŧやチãƒŖãƒŗネãƒĢといãŖた、äŊœæĨ­ä¸­ãŽįŠļ態ぎすずãĻã‚’č¨˜éŒ˛ã—ãĻくれるんだ。į”ģ像を厌成させãĻから、JPEG, PNG, GIF としãĻäŋå­˜īŧˆãƒ•ã‚Ąã‚¤ãƒĢ → 名前をäģ˜ã‘ãĻäŋå­˜īŧ‰ã—ようね。 + įˇ¨é›†ä¸­ãŽį”ģ像をäŋå­˜ã™ã‚‹æ™‚は、GIMP å›ē有ぎ XCF åŊĸåŧ(æ‹Ąåŧĩ子は .xcf)でäŋå­˜ã—よう。これだとãƒŦイヤãƒŧやチãƒŖãƒŗネãƒĢといãŖた、äŊœæĨ­ä¸­ãŽįŠļ態ぎすずãĻã‚’č¨˜éŒ˛ã—ãĻくれるんだ。į”ģ像を厌成させãĻから、JPEG, PNG, GIF としãĻäŋå­˜īŧˆã€ãƒ•ã‚Ąã‚¤ãƒĢ】 → 【名前をäģ˜ã‘ãĻäŋå­˜ã€‘īŧ‰ã—ようね。 នៅ​ពេល​ដែល​ážĸ្នក​រក្សážļ​រážŧបភážļព​ទážģក​ដើម្បី​ធ្វើ​កážļរ​ជážļមážŊយ​វážļ​នៅ​ពេល​ក្រោយ​​ ​ព្យážļយážļម​ប្រើទ្រង់ទ្រážļយ​ឯកសážļរ​ដើម XCF ​របស់​ GIMP (​ប្រើ​កន្ទážģយ​ឯកសážļរ .xcf​) ។ កážļរ​បង្កážļរ​​ស្រទážļប់​នេះ​និង​ទិដ្ឋភážļពនៃ​កážļរងážļរ​ក្នážģង​វឌ្ឍនភážļព ។ គ្រážļ​មážŊយ​គម្រោង​ត្រážŧវ​បážļន​បញ្ចប់​ទážļំងស្រážģង​ ​ážĸ្នក​ážĸážļច​រក្សážļ​វážļ​ទážģក​ជážļ JPEG, PNG, GIF, ... 나ė¤‘ė— 다ė‹œ ėž‘ė—…í•  ė´ë¯¸ė§€ëĨŧ ė €ėžĨ할 때는 김프ė˜ ėžė˛´ 파ėŧ 형ė‹ė¸ XCF(파ėŧ 확ėžĨėžę°€ .xcfėž…니다)ëĨŧ ė‚ŦėšŠí•´ëŗ´ė„¸ėš”. ė´ 형ė‹ė„ ė‚ŦėšŠí•˜ëŠ´ 레ė´ė–´ė™€ ėž‘ė—… ė¤‘ė¸ ëĒ¨ë“  ė¸ĄëŠ´ë“¤ė´ ëŗ´ėĄ´ëŠë‹ˆë‹¤. 프로ė íŠ¸ëĨŧ ė™„ëŖŒí–ˆė„ 때, JPEG, PNG, GIF, ... 등ėœŧ로 ė €ėžĨ하면 됩니다. Kai saugote paveikslėlį, norėdami jį dar redaguoti ateityje, pabandykite jį iÅĄsaugoti naudodami gimtąjį GIMP failÅŗ formatą XCF (naudokite failo plėtinį .xcf). Taip iÅĄsaugomi sluoksniai ir visa jÅĢsÅŗ darbinė paveikslėlio bÅĢsena. Baigę projektą galėsite jį iÅĄsaugoti kaip JPEG, PNG, GIF, ... @@ -173,10 +176,11 @@ ā¤œā¤Ŧ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤›ā¤ĩā¤ŋā¤Žā¤ž ā¤ĢāĨ‡ā¤°ā¤ŋ ā¤Ēā¤›ā¤ŋ ā¤•ā¤žā¤Ž ā¤—ā¤°āĨā¤¨ ā¤Ŧā¤šā¤¤ ā¤—ā¤°āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›, GIMP ā¤•āĨ‹ ā¤¨ā¤œā¤ŋā¤•ā¤•āĨ‹ ā¤Ģā¤žā¤‡ā¤˛ ā¤ĸā¤žā¤ā¤šā¤ž (ā¤Ģā¤žā¤‡ā¤˛ ā¤ĩā¤ŋā¤¸āĨā¤¤ā¤žā¤° .xcf ā¤ĒāĨā¤°ā¤¯āĨ‹ā¤— ā¤—ā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ) XCF ā¤ĒāĨā¤°ā¤¯āĨ‹ā¤— ā¤—ā¤°āĨā¤¨āĨ‡ ā¤ĒāĨā¤°ā¤¯ā¤žā¤¸ ā¤—ā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨāĨ¤ ā¤¯ā¤¸ā¤˛āĨ‡ ā¤¤ā¤šā¤šā¤°āĨ‚ ā¤° ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤•āĨ‹ ā¤•ā¤žā¤Žā¤•āĨ‹ ā¤ĒāĨā¤°ā¤—ā¤¤ā¤ŋā¤•āĨ‹ ā¤šā¤°āĨ‡ā¤• ā¤­ā¤žā¤ĩā¤•āĨ‹ ā¤¸āĨā¤°ā¤•āĨā¤ˇā¤ž ā¤—ā¤°āĨā¤Ļā¤›āĨ¤ ā¤ā¤•ā¤Ēā¤Ÿā¤• ā¤Ēā¤°ā¤ŋā¤¯āĨ‹ā¤œā¤¨ā¤ž ā¤ĒāĨ‚ā¤°ā¤ž ā¤­ā¤ā¤Ēā¤›ā¤ŋ, ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ JPEG, PNG, GIF, ... ā¤•āĨ‹ ā¤°āĨ‚ā¤Ēā¤Žā¤ž ā¤¤āĨā¤¯ā¤¸ā¤˛ā¤žā¤ˆ ā¤Ŧā¤šā¤¤ ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ Als u een afbeelding opslaat om er later opnieuw mee te werken, gebruik dan GIMP's eigen bestandsformaat XCF (gebruik de extensie .xcf). Hiermee behoudt u de lagen en elk aspect van uw werk-in-wording. Wanneer een project is voltooid, kunt u de afbeelding ook als JPEG, PNG, GIF en dergelijke opslaan. NÃĨr du lagrar eit bilete som er under arbeid, bruk helst GIMP sitt eige filformat XCF, (filendinga .xcf). DÃĨ vil det aller meste av det du har gjort ogsÃĨ bli lagra. Dermed er det enklare ÃĨ fortsette arbeidet seinare. NÃĨr prosjektet er ferdig, kan du lagra det som JPEG, PNG, GIF el.l. - ā¨œā¨ĻāŠ‹ā¨‚ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‡ā¨• ā¨šā¨ŋāŠąā¨¤ā¨° ā¨¨āŠ‚āŠ° ā¨Ŧā¨žā¨…ā¨Ļ ā¨ĩā¨ŋā¨š ā¨•āŠ°ā¨Ž ā¨•ā¨°ā¨¨ ā¨ĩā¨žā¨¸ā¨¤āŠ‡ ā¨¸āŠ°ā¨­ā¨žā¨˛ā¨ĻāŠ‡ ā¨šāŠ‹ ā¨¤ā¨žā¨‚ ā¨œāŠˆā¨Žā¨Ē ā¨ŽāŠ‚ā¨˛ ā¨Ģā¨žā¨ˆā¨˛ ā¨°āŠ‚ā¨Ē, XCF ā¨ĩā¨°ā¨¤ā¨Ŗ ā¨ĻāŠ€ ā¨•āŠ‹ā¨¸ā¨ŧā¨ŋā¨¸ā¨ŧ ā¨•ā¨°āŠ‹ (ā¨Ģā¨žā¨ˆā¨˛ ā¨ĩā¨žā¨§ā¨ž .xcf ā¨ĩā¨°ā¨¤āŠ‹)āĨ¤ ā¨‡ā¨š ā¨Ēā¨°ā¨¤ ā¨…ā¨¤āŠ‡ ā¨šā¨°āŠ‡ā¨• ā¨¤ā¨°ā¨žā¨‚ ā¨ĻāŠ€ ā¨•āŠ°ā¨Ž ā¨ĻāŠ€ ā¨‰āŠąā¨¨ā¨¤āŠ€ ā¨Ŧā¨°ā¨•ā¨°ā¨žā¨° ā¨°ā¨–ā¨ĻāŠ€ ā¨šāŠˆāĨ¤ ā¨œā¨Ļ ā¨‡ā¨• ā¨ĩā¨žā¨° ā¨ĒāŠā¨°āŠ‹ā¨œāŠˆā¨•ā¨Ÿ ā¨ĒāŠ‚ā¨°ā¨ž ā¨šāŠ‹ ā¨œā¨žā¨ĩāŠ‡, ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‡ā¨¸ ā¨¨āŠ‚āŠ° JPEG, PNG, GIF, .ā¨ĻāŠ€ ā¨¤ā¨°ā¨žā¨‚ ā¨¸āŠ°ā¨­ā¨žā¨˛ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ + ā¨œā¨ĻāŠ‹ā¨‚ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‡ā¨• ā¨šā¨ŋāŠąā¨¤ā¨° ā¨¨āŠ‚āŠ° ā¨Ŧā¨žā¨…ā¨Ļ ā¨ĩā¨ŋā¨š ā¨•āŠ°ā¨Ž ā¨•ā¨°ā¨¨ ā¨ĩā¨žā¨¸ā¨¤āŠ‡ ā¨¸āŠ°ā¨­ā¨žā¨˛ā¨ĻāŠ‡ ā¨šāŠ‹ ā¨¤ā¨žā¨‚ ā¨œāŠˆā¨Žā¨Ē ā¨ŽāŠ‚ā¨˛ ā¨Ģā¨žā¨‡ā¨˛ ā¨Ģā¨žā¨°ā¨ŽāŠˆā¨Ÿ, XCF ā¨ĩā¨°ā¨¤ā¨Ŗ ā¨ĻāŠ€ ā¨•āŠ‹ā¨¸ā¨ŧā¨ŋā¨¸ā¨ŧ ā¨•ā¨°āŠ‹ (ā¨Ģā¨žā¨‡ā¨˛ ā¨‡ā¨•ā¨¸ā¨ŸāŠˆā¨¨ā¨¸ā¨ŧā¨¨ .xcf ā¨ĩā¨°ā¨¤āŠ‹ā¨‚)āĨ¤ ā¨‡ā¨š ā¨˛āŠ‡ā¨…ā¨°ā¨žā¨‚ ā¨…ā¨¤āŠ‡ ā¨šā¨°āŠ‡ā¨• ā¨¤ā¨°ā¨žā¨‚ ā¨ĻāŠ‡ ā¨œā¨žā¨°āŠ€ ā¨•āŠ°ā¨Ž ā¨¨āŠ‚āŠ° ā¨Ŧā¨°ā¨•ā¨°ā¨žā¨° ā¨°āŠąā¨–ā¨ĻāŠ€ ā¨šāŠˆāĨ¤ ā¨œā¨Ļ ā¨‡ā¨• ā¨ĩā¨žā¨° ā¨ĒāŠā¨°āŠ‹ā¨œāŠˆā¨•ā¨Ÿ ā¨ĒāŠ‚ā¨°ā¨ž ā¨šāŠ‹ ā¨œā¨žā¨ĩāŠ‡, ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‡ā¨¸ ā¨¨āŠ‚āŠ° JPEG, PNG, GIF,... ā¨ĻāŠ€ ā¨¤ā¨°ā¨žā¨‚ ā¨¸āŠ°ā¨­ā¨žā¨˛ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ Jeśli zapisujesz swoją pracę i masz zamiar ją wznowić innym razem, sprÃŗbuj uÅŧyć formatu XCF, formatu programu GIMP (rozszerzenie .xcf). Pozwoli to na zapisanie warstw, zaznaczeń oraz wielu innych rzeczy dotyczących danego projektu. Kiedy Twoja praca dobiegnie końca moÅŧesz zapisać obraz do docelowego formatu, jako JPEG, PNG, GIF, ... Quando grava uma imagem para mais tarde a trabalhar, tente utilizar XCF, o formato de ficheiro nativo do GIMP (utilize a extensÃŖo de ficheiro .xcf). Isto preserva as camadas e todos os aspectos do seu trabalho-em-curso. Assim que o projecto estiver acabado, pode gravÃĄ-lo como JPEG, PNG, GIF, ... Quando salvar uma imagem para trabalhar nela mais tarde, tente usar XCF, o formato de arquivo nativo do GIMP (use a extensÃŖo de arquivo .xcf). Isto preserva as camadas e todos os aspectos do seu trabalho em andamento. Uma vez completado o projeto, grave-o como JPEG, PNG, GIF, ... + CÃĸnd salvați o imagine pentru a lucra la ea mai tÃĸrziu, ÃŽncercați să folosiți XCF, formatul nativ GIMP (folosește extensia .xcf). Acest lucru conservă straturile și orice aspect al lucrului ÃŽn desfășurare. Odată ce proiectul este complet, puteți să ÃŽl salvați ca JPEG, PNG, GIF, ... ЕŅĐģи вŅ‹ Ņ…ĐžŅ‚иŅ‚Đĩ ĐŋŅ€ĐžĐ´ĐžĐģĐļиŅ‚ŅŒ Ņ€ĐĩĐ´Đ°ĐēŅ‚иŅ€ĐžĐ˛Đ°ĐŊиĐĩ иСОйŅ€Đ°ĐļĐĩĐŊиŅ ĐŋОСĐļĐĩ, ŅĐžŅ…Ņ€Đ°ĐŊŅĐšŅ‚Đĩ ĐĩĐŗĐž в Ņ„ĐžŅ€ĐŧĐ°Ņ‚Đĩ XCF. Đ­Ņ‚Đž вĐŊŅƒŅ‚Ņ€ĐĩĐŊĐŊиК Ņ„ĐžŅ€ĐŧĐ°Ņ‚ GIMP (.xcf) , ĐēĐžŅ‚ĐžŅ€Ņ‹Đš ŅĐžŅ…Ņ€Đ°ĐŊŅĐĩŅ‚ вŅĐĩ ŅĐģОи, ĐŧĐ°ŅĐēи и ĐŋŅ€ĐžŅ‡Đ¸Đĩ Ņ‡Đ°ŅŅ‚и иСОйŅ€Đ°ĐļĐĩĐŊиŅ иĐŧĐĩĐŊĐŊĐž в Ņ‚ĐžĐŧ видĐĩ, в ĐēĐžŅ‚ĐžŅ€ĐžĐŧ вŅ‹ иŅ… ĐžŅŅ‚авиĐģи. По ĐžĐēĐžĐŊŅ‡Đ°ĐŊии Ņ€Đ°ĐąĐžŅ‚Ņ‹ иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ ĐŧĐžĐļĐŊĐž ŅĐžŅ…Ņ€Đ°ĐŊиŅ‚ŅŒ в Ņ„ĐžŅ€ĐŧĐ°Ņ‚Đĩ JPEG, PNG, GIF, ... Keď ukladÃĄte obrÃĄzok, na ktorom budete eÅĄte pracovaÅĨ, skÃēste pouÅžiÅĨ natívny formÃĄt XCF programu GIMP (pouŞíva príponu .xcf), ktorÃŊ uchovÃĄ vrstvy a kaÅždÃŊ aspekt vaÅĄej nedokončenej prÃĄce. Po dokončení projektu ho môŞete uloÅžiÅĨ ako JPEG, PNG, GIF, ... Če obdelujete sliko in jo Åželite pozneje ÅĄe naprej obdelovati, jo shranite v zapisu GIMP (s končnico .xcf). Ta namreč omogoča shranjevanje vseh plasti in večine drugih nastavitev. Ko je projekt zaključen, ga lahko shranite v zapisih TIF, JPEG, PNG, GIF, ... @@ -206,7 +210,7 @@ A legtÃļbb bővítmÊny az aktuÃĄlis kÊp aktuÃĄlis rÊtegÊn vÊgez mÅąveletet. Bizonyos esetekben Ãļssze kell fÊsÃŧlni az Ãļsszes rÊteget ("KÊp→Egy rÊteggÊ lapítÃĄs" menÃŧpont) ahhoz, hogy a bővítmÊny a teljes kÊpet feldolgozza. Flest íforrit virka ÃĄ nÃēverandi lag í nÃēverandi mynd. Í sumum tilfellum Þarftu að setja Ãļll lÃļgin saman í eitt (Mynd→Fletja Mynd) ef ÞÃē vilt að íforritið virki ÃĄ myndina í heild. La maggior parte dei plug-in lavora sul livello attivo dell'immagine corrente. In alcuni casi è necessario unire tutti i livelli (Immagine->Appiattisci immagine) se vuoi che i plug-in agiscano sull'intera immagine. - 大半ぎプナグイãƒŗはäģŠäŊœæĨ­ä¸­ãŽį”ģ像ぎã‚ĸクテã‚ŖブãĒãƒŦイヤãƒŧだけãĢ働くんだ。だからį”ģ像全äŊ“ãĢ劚果を与えたいときãĢはį”ģ像をįĩąåˆ (į”ģ像 → į”ģ像ぎįĩąåˆ) するåŋ…čĻãŒã‚るんじゃãĒいかãĒ。 + 大半ぎプナグイãƒŗはäģŠäŊœæĨ­ä¸­ãŽį”ģ像ぎã‚ĸクテã‚ŖブãĒãƒŦイヤãƒŧだけãĢ働くんだ。だからį”ģ像全äŊ“ãĢ劚果を与えたいときãĢはį”ģ像をįĩąåˆ (【į”ģ像】 → 【į”ģ像ぎįĩąåˆã€‘) するåŋ…čĻãŒã‚るんじゃãĒいかãĒ。 កម្មវិធី​ជំនážŊយ​ភážļគ​ច្រើន​ដំណើរកážļរ​​លើ​ស្រទážļប់​បច្ចážģប្បន្ន​របស់​រážŧបភážļព​បច្ចážģប្បន្ន ។ ក្នážģង​ករណី​មážŊយ​ចំនážŊន ážĸ្នក​ត្រážŧវតែ​បញ្ចážŧល​ស្រទážļប់​ទážļំងážĸស់​ចážŧលគ្នážļ (រážŧបភážļព Image→Flatten) ប្រសិន​បើ​ážĸ្នក​ចង់​ឲ្យ​កម្មវិធី​ជំនážŊយ​ដំណើរកážļរ​លើ​រážŧបភážļព​ទážļំងមážŧល ។ 대ëļ€ëļ„ė˜ 플ëŸŦ꡸ė¸ë“¤ė€ 현ėžŦ ė´ë¯¸ė§€ė˜ 현ėžŦ 레ė´ė–´ė—ë§Œ ėĄ°ėž‘핊니다. ę˛Ŋėš°ė— 따ëŧ, 플ëŸŦ꡸ė¸ė´ ė „ė˛´ ė´ë¯¸ė§€ëĨŧ ėĄ°ėž‘í•˜ë„ëĄ 하려면 ëĒ¨ë“  레ė´ė–´ëĨŧ 합ėŗė•ŧ(ė´ë¯¸ė§€->ë°°ę˛Ŋėœŧ로 ė´ë¯¸ė§€ 합ėš˜ę¸°) 할 ėˆ˜ë„ ėžˆėŠĩ니다. Daugelis įskiepiÅŗ veikia esamo paveikslėlio esamame sluoksnyje. Tačiau pasitaiko atvejÅŗ, kai reikia, jog įskiepis veiktÅŗ visą paveikslėlį. Tada reikia sujungti sluoksnius (Paveikslėlis→Suploti paveikslėlį). @@ -215,9 +219,11 @@ ā¤§āĨ‡ā¤°āĨˆ ā¤œā¤¸āĨ‹ ā¤ĒāĨā¤˛ā¤—ā¤‡ā¤¨ā¤šā¤°āĨ‚ā¤˛āĨ‡ ā¤šā¤žā¤˛āĨ ā¤›ā¤ĩā¤ŋā¤•āĨ‹ ā¤šā¤žā¤˛āĨ ā¤¤ā¤šā¤Žā¤ž ā¤•ā¤žā¤Ž ā¤—ā¤°āĨā¤Ļā¤›āĨ¤ ā¤•āĨ‡ā¤šāĨ€ ā¤•āĨ‡ā¤¸ā¤šā¤°āĨ‚ā¤Žā¤ž, ā¤¯ā¤Ļā¤ŋ ā¤¤ā¤Ēā¤žā¤ˆā¤ ā¤ĒāĨ‚ā¤°āĨˆ ā¤›ā¤ĩā¤ŋā¤Žā¤ž ā¤ĒāĨā¤˛ā¤—ā¤‡ā¤¨ā¤˛āĨ‡ ā¤•ā¤žā¤Ž ā¤—ā¤°ā¤žā¤‰ā¤¨ ā¤šā¤žā¤šā¤¨āĨā¤šāĨā¤¨āĨā¤› ā¤­ā¤¨āĨ‡ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤¸ā¤ŦāĨˆ ā¤¤ā¤šā¤šā¤°āĨ‚ (Image→Flatten Image) ā¤—ā¤žā¤­āĨā¤¨āĨ ā¤Ēā¤°āĨā¤¨āĨ‡ā¤›āĨ¤ De meeste plug-ins werk op de huidige laag van de huidige afbeelding. In sommige gevallen zult u alle lagen moeten samenvoegen (Afbeelding→Alle lagen samenvoegen) om de plug-in op de hele afbeelding toe te passen. Dei fleste programtillegga arbeider pÃĨ det aktive laget i det aktive biletet. Dersom du ønskjer at programtillegget skal verke pÃĨ heile biletet, kan det hende du mÃĨ flette saman alle laga (bilete->flat ut biletet) først. + ā¨Ŧā¨šāŠā¨¤āŠ€ā¨†ā¨‚ ā¨Ēā¨˛āŠąā¨—ā¨‡ā¨¨ ā¨ŽāŠŒā¨œāŠ‚ā¨Ļā¨ž ā¨šā¨ŋāŠąā¨¤ā¨° ā¨ĻāŠ€ ā¨ŽāŠŒā¨œāŠ‚ā¨Ļā¨ž ā¨Ēā¨°ā¨¤ ā¨‰āŠąā¨¤āŠ‡ ā¨šāŠ€ ā¨•āŠ°ā¨Ž ā¨•ā¨°ā¨ĻāŠ€ā¨†ā¨‚ ā¨šā¨¨āĨ¤ ā¨•āŠā¨ ā¨šā¨žā¨˛ā¨¤ā¨žā¨‚ ā¨ĩā¨ŋā¨š ā¨¤āŠā¨šā¨žā¨¨āŠ‚āŠ° ā¨¸ā¨­ ā¨˛āŠ‡ā¨…ā¨°ā¨žā¨‚ (ā¨šā¨ŋāŠąā¨¤ā¨°â†’ā¨šā¨ŋāŠąā¨¤ā¨° ā¨¸ā¨Žā¨¤ā¨˛) ā¨¨āŠ‚āŠ° ā¨¸ā¨ŧā¨žā¨Žā¨ŋā¨˛ ā¨•ā¨°ā¨¨ā¨ž ā¨Ēā¨ĩāŠ‡ā¨—ā¨ž, ā¨œāŠ‡ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨Ēā¨˛āŠąā¨—ā¨‡ā¨¨ ā¨¨āŠ‚āŠ° ā¨ĒāŠ‚ā¨°āŠ‡ ā¨šā¨ŋāŠąā¨¤ā¨° ā¨¤āŠ‡ ā¨•āŠ°ā¨Ž ā¨•ā¨°ā¨ĩā¨žā¨‰ā¨Ŗā¨ž ā¨šā¨žā¨šāŠāŠ°ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ Większość wtyczek wykonuje operacje tylko na aktywnej warstwie. Jeśli operacja dotyczyć ma wszystkich warstw, przed jej wykonaniem naleÅŧy połączyć wszystkie warstwy w jedną ("Obraz>Spłaszcz obraz"). A maioria dos plug-ins funciona na camada actual da imagem actual. Nalguns casos, terÃĄ de juntar todas as camadas (Imagem→Unificar Imagem) se desejar que o plug-in funcione em toda a imagem. A maioria dos plug-ins funciona na camada ativa da imagem atual. Em alguns casos, Ê preciso combinar todas as camadas (Camadas→Achatar Imagem) se quiser que o plug-in funcione para toda a imagem. + Majoritatea plugin-urilor lucrează pe stratul curent al imaginii curente. În unele cazuri, va trebui să combinați toate straturile (Imagine → Aplatizează imaginea) dacă vreți ca plugin-ul să lucreze pe ÃŽntreaga imagine. БоĐģŅŒŅˆĐ¸ĐŊŅŅ‚вО Ņ€Đ°ŅŅˆĐ¸Ņ€ĐĩĐŊиК Ņ€Đ°ĐąĐžŅ‚Đ°ĐĩŅ‚ Ņ Đ°ĐēŅ‚ивĐŊŅ‹Đŧ ŅĐģĐžĐĩĐŧ Đ°ĐēŅ‚ивĐŊĐžĐŗĐž иСОйŅ€Đ°ĐļĐĩĐŊиŅ. В ĐŊĐĩĐēĐžŅ‚ĐžŅ€Ņ‹Ņ… ŅĐģŅƒŅ‡Đ°ŅŅ… ваĐŧ ĐŋŅ€Đ¸Đ´ĐĩŅ‚ŅŅ ОйŅŠĐĩдиĐŊиŅ‚ŅŒ ŅĐģОи (ÂĢИСОйŅ€Đ°ĐļĐĩĐŊиĐĩ→СвĐĩŅŅ‚и иСОйŅ€Đ°ĐļĐĩĐŊиĐĩÂģ), Ņ‡Ņ‚ОйŅ‹ Ņ€Đ°ŅŅˆĐ¸Ņ€ĐĩĐŊиĐĩ ОйŅ€Đ°ĐąĐžŅ‚Đ°ĐģĐž вŅĐĩ иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ. Večina vtičnikov obdela samo trenutno aktivno plast na odprti sliki. V nekaterih primerih je potrebno vse plasti zdruÅžiti v eno plast (Slika→SploÅĄÄi sliko), preden lahko uporabimo vtičnik na celi sliki. De flesta insticksmoduler arbetar med det aktuella lagret i den aktuella bilden. I en del fall mÃĨste du slÃĨ samman alla lager (Bild→Platta till bilden) om du vill att insticksmodulen ska arbeta pÃĨ hela bilden. @@ -247,7 +253,7 @@ Ha egy rÊteg neve a RÊtegek pÃĄrbeszÊdablakban fÊlkÃļvÊren jelenik meg, akkor a rÊteg nem rendelkezik alfa-csatornÃĄval. A RÊteg→ÁtlÃĄtszÃŗsÃĄg→Alfa-csatorna hozzÃĄadÃĄsa menÃŧpont segítsÊgÊvel adhat hozzÃĄ alfa-csatornÃĄt. Ef nafnið ÃĄ lagi er feitletrað í Valmynd fyrir LÃļg, ÃžÃĄ hefur Þetta lag enga alfa-rÃĄs. ÞÃē getur bÃĻtt við alfa-rÃĄs með Því að nota Lag→GagnsÃĻi→BÃĻta við alfa-rÃĄs. Se il nome di un livello nella finestra di dialogo dei livelli viene mostrato in grassetto significa che quel livello non possiede un canale alfa. È comunque possibile aggiungerlo usando Livello->Trasparenza->Aggiungi canale alfa. - ãƒŦイヤãƒŧダイã‚ĸログでãƒŦイヤãƒŧ名がå¤Ēå­—ã§čĄ¨į¤ēされãĻいたら、そぎãƒŦイヤãƒŧはã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを持ãŖãĻいãĒいんだ。そういãŖたãƒŦイヤãƒŧãĢã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢをčŋŊ加できるよīŧˆãƒŦイヤãƒŧ → 透明部分 → ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢをčŋŊ加īŧ‰ã€‚ 名前がį´°å­—ã§čĄ¨į¤ēされãĻいるãƒŦイヤãƒŧはã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを持ãŖãĻã„ã‚‹ã‚“ã ã€‚ã‚‚ãĄã‚ã‚“ããŽã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを削除することもできるよīŧˆãƒŦイヤãƒŧ → 透明部分 → ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを削除īŧ‰ã€‚ + ãƒŦイヤãƒŧダイã‚ĸログでãƒŦイヤãƒŧ名がå¤Ēå­—ã§čĄ¨į¤ēされãĻいたら、そぎãƒŦイヤãƒŧはã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを持ãŖãĻいãĒいんだ。そういãŖたãƒŦイヤãƒŧãĢã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢをčŋŊ加できるよīŧˆã€ãƒŦイヤãƒŧ】 → 【透明部分】 → 【ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢをčŋŊ加】īŧ‰ã€‚ 名前がį´°å­—ã§čĄ¨į¤ēされãĻいるãƒŦイヤãƒŧはã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを持ãŖãĻã„ã‚‹ã‚“ã ã€‚ã‚‚ãĄã‚ã‚“ããŽã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを削除することもできるよīŧˆã€ãƒŦイヤãƒŧ】 → 【透明部分】 → 【ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを削除】īŧ‰ã€‚ ប្រសិន​បើ​ឈ្មោះ​របស់​ស្រទážļប់​នៅ​ក្នážģង​ប្រážĸប់​ស្រទážļប់​បážļន​បង្ហážļញជážļ​ ដិត ស្រទážļប់​នេះ​មិនមážļន​ឆážļនែល​ážĸážļល់ហ្វážļ​ទេ ។ ážĸ្នក​ážĸážļច​បន្ថែម​ឆážļនែលážĸážļល់ហ្វážļ​ដោយ​ប្រើ​ឆážļនែល​ážĸážļល់ហ្វážļ Layer→Transparency→Add ។ 레ė´ė–´ 대화ėƒėžė—ė„œ 레ė´ė–´ė˜ ė´ëĻ„ė´ ęĩĩ게 표ė‹œë˜ëŠ´, 해당 레ė´ė–´ëŠ” ė•ŒíŒŒ ėą„널ė„ 가ė§€ęŗ  ėžˆė§€ ė•Šė€ 것ėž…니다. ė•ŒíŒŒėą„널ė€ 레ė´ė–´ -> íˆŦëĒ… -> ė•ŒíŒŒ ėą„널 ėļ”ę°€ ëĨŧ í†ĩ해 ėļ”가할 ėˆ˜ ėžˆėŠĩ니다. Jeigu sluoksnio pavadinimas sluoksniÅŗ dialoge rodomas pastorintas, ÅĄis sluoksnis neturi alfa kanalo. Alfą kanalą galite pridėti panaudodami Sluoksniai→Permatomumas→Pridėti alfa kanalą. @@ -255,9 +261,11 @@ ā¤¯ā¤Ļā¤ŋ ā¤¤ā¤š ā¤¸ā¤‚ā¤ĩā¤žā¤Ļā¤Žā¤ž ā¤ā¤‰ā¤Ÿā¤ž ā¤¤ā¤šā¤•āĨ‹ ā¤¨ā¤žā¤Ž ā¤Ŧā¤žā¤•āĨā¤˛āĨ‹ā¤Žā¤ž ā¤ĒāĨā¤°ā¤°āĨā¤Ļā¤ļā¤ŋā¤¤ ā¤­ā¤ā¤Žā¤ž, ā¤¤āĨā¤¯āĨ‹ ā¤¤ā¤šā¤¸ā¤ā¤— ā¤…ā¤˛āĨā¤Ģā¤ž-ā¤šāĨā¤¯ā¤žā¤¨ā¤˛ ā¤›āĨˆā¤¨āĨ¤ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤¤ā¤š->ā¤Ēā¤žā¤°ā¤Ļā¤°āĨā¤ļāĨ€ā¤¤ā¤ž->ā¤…ā¤˛āĨā¤Ģā¤ž ā¤šāĨā¤¯ā¤žā¤¨ā¤˛ ā¤Ĩā¤ĒāĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ ā¤ĒāĨā¤°ā¤¯āĨ‹ā¤— ā¤—ā¤°āĨ‡ā¤° ā¤…ā¤˛āĨā¤Ģā¤ž ā¤šāĨā¤¯ā¤žā¤¨ā¤˛ ā¤Ĩā¤Ē ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ Als een laagnaam in het dialoogvenster Lagen vet wordt weergegeven, bevat deze laag geen alfakanaal. U kunt een alfakanaal toevoegen met Laag→Transparantie→Alfakanaal toevoegen. Dersom lagnamnet er utheva i lagdialogen betyr dette at laget ikkje har alfakanal. Du kan legge til alfakanal ved hjelp av Lag→Gjennomsikt→Legg til alfakanal + ā¨œāŠ‡ ā¨˛āŠ‡ā¨…ā¨° ā¨Ąā¨žā¨ˆā¨˛ā¨žā¨— ā¨˛āŠ‡ā¨…ā¨° ā¨Ļā¨ž ā¨¨ā¨žā¨‚ ā¨—āŠ‚āŠœāŠ‡ ā¨…āŠąā¨–ā¨°ā¨žā¨‚ ā¨ĩā¨ŋāŠąā¨š ā¨šāŠ‹ā¨‡ā¨† ā¨¤ā¨žā¨‚ ā¨‡ā¨¸ ā¨Ēā¨°ā¨¤ ā¨ā¨˛ā¨Ģā¨ž-ā¨šāŠˆā¨¨ā¨˛ ā¨ĩā¨ŋāŠąā¨š ā¨¨ā¨šāŠ€ā¨‚ ā¨šāŠ‹ā¨ĩāŠ‡ā¨—āŠ€āĨ¤ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‡ā¨¸ ā¨ĩā¨ŋāŠąā¨š ā¨˛āŠ‡ā¨…ā¨°â†’ā¨Ÿā¨°ā¨žā¨‚ā¨¸ā¨Ēā¨°āŠ‡ā¨¸āŠ€â†’ā¨ā¨˛ā¨Ģā¨ŧā¨ž ā¨šāŠˆā¨¨ā¨˛ ā¨¸ā¨ŧā¨žā¨Žā¨˛ ā¨¨ā¨žā¨˛ ā¨¸ā¨ŧā¨žā¨Žā¨˛ ā¨•ā¨° ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ Jeśli nazwa warstwy w oknie "Warstwy" jest pogrubiona, oznacza to, Åŧe nie posiada ona kanału alfa (przezroczystości). MoÅŧesz dodać kanał alfa wybierając Warstwa>Przezroczystość>Dodaj kanał alfa. Se um nome de uma camada no diÃĄlogo de Camadas estiver a negrito, esta camada nÃŖo tem um canal-alfa. Pode adicionar um canal-alfa utilizando Camada→TransparÃĒncia→Adicionar Canal Alfa Se o nome de uma camada no diÃĄlogo de Camadas estiver em negrito, essa camada nÃŖo tem um canal alfa (transparÃĒncia). VocÃĒ pode adicionar um canal alfa usando Camada→TransparÃĒncia→Adicionar Canal Alfa. + Dacă numele unui strat ÃŽn dialogul de straturi este afișat ÃŽngroșat, acel strat nu are un canal alfa. Puteți adăuga un canal alfa folosind Strat → Transparență → Adaugă un canal alfa ЕŅĐģи иĐŧŅ ŅĐģĐžŅ в ĐŋĐ°ĐģиŅ‚Ņ€Đĩ ŅĐģĐžĐĩв ĐžŅ‚ОйŅ€Đ°ĐļĐĩĐŊĐž ĐļиŅ€ĐŊŅ‹Đŧ ŅˆŅ€Đ¸Ņ„Ņ‚ĐžĐŧ, ŅŅ‚Đž ОСĐŊĐ°Ņ‡Đ°ĐĩŅ‚, Ņ‡Ņ‚Đž Ņƒ Đ´Đ°ĐŊĐŊĐžĐŗĐž ŅĐģĐžŅ ĐŊĐĩŅ‚ Đ°ĐģŅŒŅ„Đ°-ĐēĐ°ĐŊĐ°ĐģĐ°. ВŅ‹ ĐŧĐžĐļĐĩŅ‚Đĩ дОйавиŅ‚ŅŒ Đ°ĐģŅŒŅ„Đ°-ĐēĐ°ĐŊĐ°Đģ Ņ‡ĐĩŅ€ĐĩС ĐŧĐĩĐŊŅŽ ÂĢĐĄĐģой→ПŅ€ĐžĐˇŅ€Đ°Ņ‡ĐŊĐžŅŅ‚ŅŒâ†’ДОйавиŅ‚ŅŒ Đ°ĐģŅŒŅ„Đ°-ĐēĐ°ĐŊĐ°ĐģÂģ. Če je ime plasti prikazano s krepko pisavo, ta kanal nima kanala alfa. Kanal alfa lahko dodate z ukazom Plast→Prosojnost→Dodaj kanal alfa. Om ett lagers namn i lagerdialogen visas med fet text innebär det att lagret inte har en alfakanal. Du kan lägga till en alfakanal med hjälp av Lager→Transparens→Lägg till alfakanal. @@ -285,7 +293,7 @@ A kÊp típusÃĄtÃŗl fÃŧggően elkÊpzelhető, hogy nem minden effektus alkalmazhatÃŗ arra. Ha nem alkalmazhatÃŗ, azt a megfelelő menÃŧbejegyzÊs szÃŧrkítÊse (inaktív ÃĄllapota) jelzi. Ilyenkor szÃŧksÊg lehet a kÊp mÃŗdjÃĄnak RGB-re valÃŗ mÃŗdosítÃĄsÃĄra ("KÊp→MÃŗd→RGB" menÃŧpont), alfa-csatorna felvÊtelÊre ("RÊteg→ÁtlÃĄtszÃŗsÃĄg→Alfa-csatorna hozzÃĄadÃĄsa" menÃŧpont) vagy a kÊp lapítÃĄsÃĄra ("KÊp→Egy rÊteggÊ lapítÃĄs" menÃŧpont). Ekki er hÃĻgt að nota allla effekta ÃĄ allar tegundir mynda. Þetta sÊst ÃĄ Því að atriði í valmynd eru grÃĄleit. ÞÃē gÃĻtir Þurft að breyta myndham í RGB (Mynd→Hamur→RGB), bÃĻta við alfa rÃĄs (Lag→GegnsÃĻi→BÃĻta við alfa rÃĄs) eða fletja hana (Mynd→Fletja Mynd). Non tutti gli effetti possono essere applicati ad ogni tipo di immagine. In caso di impossibilità la corrispondente voce del menu sarà resa in grigetto. Per risolvere il problema, basta cambiare la modalità immagine in RGB (Immagine->Modalità->RGB), aggiungere un canale alfa (Livelli->Trasparenze->Aggiungi canale alfa) o appiattire l'immagine (Immagine->Appiattisci immagine). - 全部ぎプナグイãƒŗがすずãĻぎį¨ŽéĄžãŽį”ģ像ãĢäŊŋえるわけじゃãĒいんだ。äŊœæĨ­ä¸­ãŽį”ģ像ãĢ寞しãĻäŊŋえãĒã„ã‚„ã¤ã¯ã€ãƒĄãƒ‹ãƒĨãƒŧがグãƒŦãƒŧã‚ĸã‚ĻトしãĻ選択できãĒくãĒãŖãĻるはずだよ。そんãĒ時ãĢは RGB åŊĸåŧãĢしたり (į”ģ像 → ãƒĸãƒŧド → RGB)、ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを加えたり (ãƒŦイヤãƒŧ → 透明部分 → ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢをčŋŊ加)、į”ģ像をįĩąåˆã—ãĻãŋたり (į”ģ像 → į”ģ像ぎįĩąåˆ) するといいかもしれãĒいね。 + 全部ぎプナグイãƒŗがすずãĻぎį¨ŽéĄžãŽį”ģ像ãĢäŊŋえるわけじゃãĒいんだ。äŊœæĨ­ä¸­ãŽį”ģ像ãĢ寞しãĻäŊŋえãĒã„ã‚„ã¤ã¯ã€ãƒĄãƒ‹ãƒĨãƒŧがグãƒŦãƒŧã‚ĸã‚ĻトしãĻ選択できãĒくãĒãŖãĻるはずだよ。そんãĒ時ãĢは RGB åŊĸåŧãĢしたり (【į”ģ像】 → 【ãƒĸãƒŧド】 → 【RGB】)、ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢを加えたり (【ãƒŦイヤãƒŧ】 → 【透明部分】 → 【ã‚ĸãƒĢãƒ•ã‚ĄãƒãƒŖãƒŗネãƒĢをčŋŊ加】)、į”ģ像をįĩąåˆã—ãĻãŋたり (【į”ģ像】 → 【į”ģ像ぎįĩąåˆã€‘) するといいかもしれãĒいね。 មិន​មែន​បែបផែន​ទážļំងážĸស់​ážĸážļច​ត្រážŧវ​បážļន​ážĸនážģវត្ត​ទៅ​លើ​រážŧបភážļព​គ្រប់​ប្រភេទ​នោះ​ទេ ។ វážļ​ត្រážŧវ​បážļន​ចង្ážĸážģល​បង្ហážļញ​ដោយ​​ធážļតážģ​ម៉ážēនážģយ​ប្រផេះ ។ ážĸ្នក​ប្រហែល​ត្រážŧវកážļរ​ផ្លážļស់ប្ដážŧរ​របៀប​រážŧបភážļព​ទៅជážļ RGB (Image→Mode→RGB) ​បន្ថែម​ឆážļនែល​ážĸážļល់ហ្វážļ (​ឆážļនែល​ážĸážļល់ហ្វážļ Layer→Transparency→Add) ážŦ​ធ្វើ​ឲ្យ​វážļ​រážļប​ស្មើ (​រážŧបភážļព Image→Flatten) ។ ëĒ¨ë“  효ęŗŧ가 ëĒ¨ë“  ėĸ…ëĨ˜ė˜ ė´ë¯¸ė§€ė— ė ėšŠë˜ė§€ëŠ” ė•ŠėŠĩ니다. ė´ëŸ° ę˛Ŋėš°ė—ëŠ” 메뉴 항ëĒŠė´ 회ėƒ‰ėœŧ로 표ė‹œëŠë‹ˆë‹¤. ė´ë¯¸ė§€ė˜ ëĒ¨ë“œëĨŧ RGB로 바꾸거나(ė´ë¯¸ė§€->ëĒ¨ë“œ->RGB), ė•ŒíŒŒ ėą„널ė„ 더하거나(레ė´ė–´->íˆŦëĒ…도->ė•ŒíŒŒ ėą„널 더하기), ë°°ę˛Ŋėœŧ로 합ėŗė•ŧ(ė´ë¯¸ė§€->ë°°ę˛Ŋėœŧ로 합ėš˜ę¸°) 할 ėˆ˜ë„ ėžˆėŠĩ니다. Ne visus efektus galima pritaikyti visÅŗ rÅĢÅĄiÅŗ paveikslėliuose. Tai parodoma pilkos spalvos meniu įraÅĄais. Jums gali reikti pakeisti paveikslėlio veikseną į RGB (Paveikslėlis→Veiksena→RGB), pridėti Alfa kanalą (Sluoksniai→Permatomumas→Pridėti alfa kanalą) arba jį suploti (Paveikslėlis→Suploti paveikslėlį). @@ -294,9 +302,11 @@ ā¤¸ā¤ŦāĨˆ ā¤ĒāĨā¤°ā¤­ā¤žā¤ĩā¤šā¤°āĨ‚ ā¤¸ā¤ŦāĨˆ ā¤ĒāĨā¤°ā¤•ā¤žā¤°ā¤•āĨ‹ ā¤›ā¤ĩā¤ŋā¤Žā¤ž ā¤˛ā¤žā¤—āĨ‚ ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•ā¤ŋā¤ā¤ĻāĨˆā¤¨ āĨ¤ ā¤¯āĨ‹ ā¤—āĨā¤°āĨ‡ā¤¯ā¤Ą-ā¤†ā¤‰ā¤Ÿ ā¤ŽāĨ‡ā¤¨āĨ ā¤ĒāĨā¤°ā¤ĩā¤ŋā¤ˇāĨā¤Ÿā¤ŋā¤ĻāĨā¤ĩā¤žā¤°ā¤ž ā¤‡ā¤‚ā¤•ā¤ŋā¤¤ ā¤—ā¤°ā¤ŋā¤ā¤•āĨ‹ ā¤šāĨā¤¨āĨā¤› āĨ¤ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤†ā¤°ā¤œāĨ€ā¤ŦāĨ€ (Image→Mode→RGB) ā¤Žā¤ž ā¤›ā¤ĩā¤ŋ ā¤ŽāĨ‹ā¤Ą ā¤Ēā¤°ā¤ŋā¤ĩā¤°āĨā¤¤ā¤¨ ā¤—ā¤°āĨā¤¨ ā¤†ā¤ĩā¤ļāĨā¤¯ā¤• ā¤›, ā¤ā¤‰ā¤Ÿā¤ž ā¤…ā¤˛āĨā¤Ģā¤ž ā¤šāĨā¤¯ā¤žā¤¨ā¤˛ (Layer→Transparency→Add Alpha Channel) ā¤Ĩā¤ĒāĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ ā¤ĩā¤ž ā¤¯ā¤¸ā¤˛ā¤žā¤ˆ (Image→Flatten Image) ā¤¸ā¤Žā¤¤ā¤˛ ā¤Ēā¤žā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ āĨ¤ Niet alle effecten kunnen worden toegepast op alle soorten afbeeldingen. Dit is het geval als een menu-item grijs is gemaakt. Het kan in zulke gevallen nodig zijn om de afbeeldingsmodus in te stellen op RGB (Afbeelding→Modus→RGB), een alfakanaal toe te voegen (Laag→Transparantie→Alfakanaal toevoegen) of de lagen samen te voegen (Afbeelding→Alle lagen samenvoegen). Ikkje alle funksjonane verkar pÃĨ alle typer bilete. Dette blir vist ved at menyinnslaget er grÃĨa ut. Skulle dette vere til hinder for arbeidet ditt, kan du prøve ÃĨ endre biletet til RGB-modus (Bilete->Modus->RGB), legge til ein alfakanal (Lag->Gjennomsikt->Legg til alfakanal) eller flate ut biletet (Bilete->Flat ut biletet). + ā¨¸ā¨žā¨°āŠ‡ ā¨ĒāŠā¨°ā¨­ā¨žā¨ĩ ā¨¸ā¨žā¨°āŠ€ā¨†ā¨‚ ā¨•ā¨ŋā¨¸ā¨Žā¨žā¨‚ ā¨ĻāŠ‡ ā¨šā¨ŋāŠąā¨¤ā¨°ā¨žā¨‚ ā¨¤āŠ‡ ā¨˛ā¨žā¨—āŠ‚ ā¨¨ā¨šāŠ€ā¨‚ ā¨•āŠ€ā¨¤āŠ‡ ā¨œā¨ž ā¨¸ā¨•ā¨ĻāŠ‡āĨ¤ ā¨‡ā¨š ā¨¸āŠ‚ā¨šāŠ€ ā¨ĩā¨ŋā¨šā¨˛āŠ‡ ā¨Ģā¨ŋāŠąā¨•āŠ‡ ā¨‡āŠ°ā¨Ļā¨°ā¨žā¨œā¨ŧ ā¨¤āŠ‹ā¨‚ ā¨Ēā¨¤ā¨ž ā¨šā¨˛ā¨Ļā¨ž ā¨šāŠˆāĨ¤ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨šā¨ŋāŠąā¨¤ā¨° ā¨°āŠ‚ā¨Ē ā¨¨āŠ‚āŠ° RGB ā¨Ŧā¨Ļā¨˛ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹ (ā¨šā¨ŋāŠąā¨¤ā¨°â†’ā¨ŽāŠ‹ā¨Ąâ†’RGB), ā¨‡ā¨• ā¨…ā¨˛ā¨ŧā¨Ģā¨ž ā¨šāŠˆā¨¨ā¨˛(ā¨˛āŠ‡ā¨…ā¨°ā¨žā¨‚→ā¨Ÿā¨°ā¨žā¨‚ā¨¸ā¨Ēā¨°āŠ‡ā¨¸āŠ€â†’ā¨…ā¨˛ā¨Ģā¨ŧā¨ž ā¨šāŠˆā¨¨ā¨˛ ā¨¸ā¨ŧā¨žā¨Žā¨˛) ā¨¸ā¨ŧā¨žā¨Žā¨˛ ā¨•ā¨°āŠ‹ ā¨œā¨žā¨‚ ā¨¸ā¨Žā¨¤ā¨˛ (ā¨šā¨ŋāŠąā¨¤ā¨°â†’ā¨šā¨ŋāŠąā¨¤ā¨° ā¨¸ā¨Žā¨¤ā¨˛) ā¨•ā¨°āŠ‹āĨ¤ Nie wszystkie efekty mogą być wykorzystywane na obrazach dowolnych typÃŗw. Efekty, ktÃŗrych nie moÅŧna uÅŧyć na bieÅŧącym obrazie, są w menu szare. Aby ich uÅŧyć, naleÅŧy zmienić tryb obrazu na RGB ("Obraz>Tryb>RGB"), dodać kanał alfa ("Warstwa>Przezroczystość>Dodaj kanał alfa") lub spłaszczyć obraz ("Obraz>Spłaszcz obraz"). Nem todos os efeitos podem ser aplicados a todos os tipos de imagem. Isto Ê indicado por uma opçÃŖo de menu cinzenta. PoderÃĄ ter uqe alterar o modo da imagem para RGB (Imagem→Modo→RGB), adicionar um canal alfa (Camadas→TransparÃĒncia→Adicionar Canal Alfa) ou unificÃĄ-la (Imagem→Unificar Imagem). - Nem todos os efeitos podem ser aplicados a todos os tipos de imagens. Isto Ê indicado por uma opçÃŖo de menu acinzentada. VocÃĒ pode ter que modificar o modo da imagem para RGB (Imagem→Modo→RGB), adicionar um canal alfa (Camadas→TransparÃĒncia→Adicionar Canal Alfa) ou achatÃĄ-la (Imagem→Achatar Imagem). + Nem todos os efeitos podem ser aplicados a todos os tipos de imagens. Isto Ê indicado por uma opçÃŖo de menu acinzentada. VocÃĒ pode ter que modificar o modo da imagem para RGB (Imagem→Modo→RGB), adicionar um canal alfa (Camadas→TransparÃĒncia→Adicionar Canal Alfa) ou achata-la (Imagem→Achatar Imagem). + Nu toate efectele pot fi aplicate la toate tipurile de imagini. Acest lucru este indicat prin colorarea ÃŽn gri a intrării de meniu inactive. Este posibil să trebuiească să schimbați modul imaginii la RGB (Imagine → Mod → RGB), să adăugați un canal alfa (Strat → Transparență → Adaugă un canal alfa), sau să o aplatizați (Imagine → Aplatizează imaginea). НĐĩĐēĐžŅ‚ĐžŅ€Ņ‹Đĩ ŅŅ„Ņ„ĐĩĐēŅ‚Ņ‹ ĐŋŅ€Đ¸ĐŧĐĩĐŊиĐŧŅ‹ ĐŊĐĩ ĐēĐž вŅĐĩĐŧ Ņ‚иĐŋĐ°Đŧ иСОйŅ€Đ°ĐļĐĩĐŊиŅ. ПŅƒĐŊĐēŅ‚ ĐŧĐĩĐŊŅŽ Ņ‚Đ°ĐēĐžĐŗĐž ŅŅ„Ņ„ĐĩĐēŅ‚Đ° ĐŊĐĩĐ´ĐžŅŅ‚ŅƒĐŋĐĩĐŊ Đ´ĐģŅ вŅ‹ĐąĐžŅ€Đ°. ИĐŊĐžĐŗĐ´Đ° Đ´ĐģŅ Ņ‚ĐžĐŗĐž, Ņ‡Ņ‚ОйŅ‹ вОŅĐŋĐžĐģŅŒĐˇĐžĐ˛Đ°Ņ‚ŅŒŅŅ Ņ‚ĐĩĐŧ иĐģи иĐŊŅ‹Đŧ Ņ„иĐģŅŒŅ‚Ņ€ĐžĐŧ, ĐŊŅƒĐļĐŊĐž ĐŋĐĩŅ€ĐĩвĐĩŅŅ‚и иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ в Ņ€ĐĩĐļиĐŧ RGB (ÂĢИСОйŅ€Đ°ĐļĐĩĐŊиĐĩ→РĐĩĐļиĐŧ→RGBÂģ), дОйавиŅ‚ŅŒ Đ°ĐģŅŒŅ„Đ°-ĐēĐ°ĐŊĐ°Đģ (ÂĢĐĄĐģой→ПŅ€ĐžĐˇŅ€Đ°Ņ‡ĐŊĐžŅŅ‚ŅŒâ†’ДОйавиŅ‚ŅŒ Đ°ĐģŅŒŅ„Đ°-ĐēĐ°ĐŊĐ°ĐģÂģ) иĐģи ŅĐ˛ĐĩŅŅ‚и иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ (ÂĢИСОйŅ€Đ°ĐļĐĩĐŊиĐĩ→СвĐĩŅŅ‚и иСОйŅ€Đ°ĐļĐĩĐŊиĐĩÂģ). Vsem vrstam slik ne moremo dodeliti vseh učinkov. To nakazujejo posiveli menijski vnosi. Morda morate spremeniti slikovni način v RGB (Slika→Način→RGB), dodati kanal alfa (Plast→Prosojnost→Dodaj kanal alfa) ali sploÅĄÄiti sliko (Slika→SploÅĄÄi sliko). Alla effekter kan inte tillämpas pÃĨ alla typer av bilder. Detta visas genom att menyposten är grÃĨtonad. Du kan behÃļva ändra bildläget till RGB (Bild→Läge→RGB), lägga till en alfakanal (Lager→Transparens→Lägg till alfakanal) eller platta till den (Bild→Platta till bild). @@ -326,9 +336,11 @@ Du kan justere og flytte et utvalg ved ÃĨ bruke Alt-dra. Hvis dette gjør at vinduet flyttes, er det vindubehandleren din som er skyld i dette. De fleste vindubehandlere kan settes opp til ÃĨ ikke bruke Alt-knappen eller ÃĨ bruke Super-knappen (eller knappen med Windows-logo) i stedet. U kunt een selectie aanpassen of verplaatsen door Alt in te drukken bij het slepen. Als in plaats hiervan uw venster beweegt, gebruikt uw windowmanager de Alt-toets al. De meeste windowmanagers kunnen zo ingesteld worden dat ze de Alt-toets negeren of dat ze de Super-toets (of "Windows logo") in de plaats gebruiken. Du kan flytte eit utval utan ÃĨ flytte innhaldet ved ÃĨ halde nede Alt-tasten samstundes som du flytter utvalet. Dersom dette flytter dette heile biletet betyr det at denne tasten er i bruk av vindaugehandteraren i maskinen din. I noen tilfelle kan du setje opp handteraren til ÃĨ ignorere Alt-tasten, eller du kan kanskje bruke Super-tasten eller "Windows logoen" i staden. + ā¨¤āŠā¨¸āŠ€ā¨‚ Alt-drag ā¨°ā¨žā¨šāŠ€ā¨‚ ā¨šāŠ‹ā¨Ŗ ā¨¨āŠ‚āŠ° ā¨¤ā¨°ā¨¤āŠ€ā¨Ŧ ā¨…ā¨¤āŠ‡ ā¨Ŧā¨Ļā¨˛ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ ā¨œāŠ‡ ā¨‡ā¨š ā¨ĩā¨ŋāŠ°ā¨ĄāŠ‹ ā¨¨āŠ‚āŠ° ā¨šā¨ŋā¨˛ā¨žā¨‚ā¨‰ā¨ĻāŠ€ ā¨šāŠˆ, ā¨¤āŠā¨šā¨žā¨Ąā¨ž ā¨ĩā¨ŋāŠ°ā¨ĄāŠ‹ ā¨ŽāŠˆā¨¨āŠ‡ā¨œā¨° ā¨Ēā¨šā¨ŋā¨˛ā¨žā¨‚ ā¨šāŠ€ Alt ā¨¸ā¨ĩā¨ŋāŠąā¨š ā¨ĩā¨°ā¨¤ā¨Ļā¨ž ā¨šāŠˆāĨ¤ ā¨Ŧā¨šāŠā¨¤ ā¨ĩā¨ŋāŠ°ā¨ĄāŠ‹ ā¨ŽāŠˆā¨¨āŠ‡ā¨œā¨°ā¨žā¨‚ ā¨¨āŠ‚āŠ° Alt ā¨¸ā¨ĩā¨ŋāŠąā¨š ā¨¨āŠ‚āŠ° ā¨…ā¨Ŗā¨Ąā¨ŋāŠąā¨ ā¨ž ā¨•ā¨°ā¨¨ ā¨œā¨žā¨‚ Super ā¨¸ā¨ĩā¨ŋāŠąā¨š (ā¨œā¨žā¨‚ "ā¨ĩā¨ŋāŠ°ā¨ĄāŠ‹ ā¨˛āŠ‹ā¨—āŠ‹") ā¨¨āŠ‚āŠ° ā¨ĩā¨°ā¨¤ā¨Ŗ ā¨˛ā¨ˆ ā¨¸āŠ°ā¨°ā¨šā¨ŋā¨¤ ā¨•āŠ€ā¨¤ā¨ž ā¨œā¨ž ā¨¸ā¨•ā¨Ļā¨ž ā¨šāŠˆ Zaznaczenie moÅŧna przesuwać, przeciągając je z klawiszem Alt. Jeśli to powoduje przesunięcie okna, oznacza to Åŧe twÃŗj menadÅŧer okien uÅŧywa juÅŧ klawisza Alt. Większość menadÅŧerÃŗw okien jest skonfigurowanych tak, aby ignorować klawisz Alt lub uÅŧywać zamiennie klawisza Super (lub "logo Windows") Pode ajustar e deslocar uma selecçÃŖo utilizando Alt-arrastar. Se isto fizer a janela mover-se, quer dizer que o seu gestor de janelas jÃĄ utiliza a tecla Alt. A maioria dos gestores de janelas podem ser configurados para ignorarem a tecla Alt ou para usarem a tecla Super (ou "tecla do Windows") em vez dessa. VocÃĒ pode ajustar ou mover uma seleçÃŖo usando Alt enquanto arrasta. Se isto fizer a janela mover, o seu gerenciador de janelas jÃĄ estÃĄ usando a tecla Alt. A maioria dos gerenciadores de janelas pode ser configurada para ignorar a tecla Alt ou usar a tecla Super (ou "Logotipo do Windows") no lugar. + Puteți să ajustați sau să mutați o selecție prin folosirea Alt-și-tragere. Dacă acest lucru determină mișcarea ferestrei, ÃŽnseamnă că gestionarul de fereastră folosește deja tasta Alt. Majoritatea gestionarilor de fereastră pot fi configurați să ignore tasta Alt, sau să folosească tasta Super (sau „sigla Windows”) ÃŽn loc. ВŅ‹ ĐŧĐžĐļĐĩŅ‚Đĩ ĐŋĐĩŅ€ĐĩĐŧĐĩŅŅ‚иŅ‚ŅŒ вŅ‹Đ´ĐĩĐģĐĩĐŊиĐĩ, ĐŊĐ°Đļав Alt и ĐŋĐĩŅ€ĐĩŅ‚Đ°Ņ‰Đ¸Đ˛ ĐĩĐŗĐž ĐŧŅ‹ŅˆĐēОК. ЕŅĐģи вĐŧĐĩŅŅ‚Đž вŅ‹Đ´ĐĩĐģĐĩĐŊиŅ ĐŋĐĩŅ€ĐĩĐŧĐĩŅ‰Đ°ĐĩŅ‚ŅŅ ĐžĐēĐŊĐž Ņ иСОйŅ€Đ°ĐļĐĩĐŊиĐĩĐŧ, СĐŊĐ°Ņ‡Đ¸Ņ‚ ваŅˆ ĐžĐēĐžĐŊĐŊŅ‹Đš ĐŧĐĩĐŊĐĩĐ´ĐļĐĩŅ€ ŅƒĐļĐĩ иŅĐŋĐžĐģŅŒĐˇŅƒĐĩŅ‚ ŅŅ‚Ņƒ ĐēĐžĐŧйиĐŊĐ°Ņ†Đ¸ŅŽ Ņ Alt. ПоĐŋŅ€ĐžĐąŅƒĐšŅ‚Đĩ ОдĐŊОвŅ€ĐĩĐŧĐĩĐŊĐŊĐž Ņ Alt ĐŊĐ°ĐļĐ°Ņ‚ŅŒ ĐēĐģавиŅˆŅƒ Shift, ĐģийО ŅĐŧĐĩĐŊиŅ‚Đĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēи ĐžĐēĐžĐŊĐŊĐžĐŗĐž ĐŧĐĩĐŊĐĩĐ´ĐļĐĩŅ€Đ° (ŅĐŧĐĩĐŊив Alt ĐŊĐ° Super иĐģи ĐēĐģавиŅˆŅƒ Ņ ĐģĐžĐŗĐžŅ‚иĐŋĐžĐŧ Windows). Izbor lahko premikate ali prilagodite s pomočjo Alt-povleci. Če se s to kombinacijo premakne okno, vaÅĄ okenski upravitelj Åže uporablja tipko Alt. Večina okenskih upraviteljev je mogoče nastaviti tako, da prezrejo pritisnjeno tipko Alt ali da namesto nje uporabijo tipko Super (ali "Logotip Windows"). Du kan justera eller flytta en markering genom att använda Alt och dra. Om detta gÃļr att fÃļnstret flyttar sig använder din fÃļnsterhanterare redan Alt-tangenten. De flesta fÃļnsterhanterare kan konfigureras till att ignorera Alt-tangenten eller till att använda Super-tangenten (eller "Windows logo") istället. @@ -375,6 +387,7 @@ W programie GIMP moÅŧesz przeciągać i upuszczać myszą wiele rzeczy. Np. przeciągnięcie koloru z narzędziÃŗwki (lub z palety kolorÃŗw) i upuszczenie go na obrazie spowoduje wypełnienie aktywnej warstwy (lub zaznaczenia) kolorem. Pode arrastar e largar muitas coisas no GIMP. Por exemplo, arrastar uma cor da caixa de ferramentas ou de uma paleta de cores e larga-la numa imagem irÃĄ encher a selecçÃŖo actual com essa cor. VocÃĒ pode arrastar e soltar muitas coisas no GIMP. Por exemplo, arrastar uma cor da caixa de ferramentas ou de uma paleta de cores e soltÃĄ-la numa imagem irÃĄ preencher a seleçÃŖo atual com aquela cor. + Puteți să trageți și să aruncați multe chestii ÃŽn GIMP. De exemplu, tragerea unei culori din trusa de instrumente sau dintr-o paletă de culoare și aruncarea acesteia peste o imagine va umple selecția curentă cu acea culoare. В GIMP ĐŧĐžĐļĐŊĐž ĐŋĐĩŅ€ĐĩŅ‚Đ°ŅĐēиваŅ‚ŅŒ ĐŧŅ‹ŅˆĐēОК ĐŧĐŊĐžĐŗиĐĩ ŅĐģĐĩĐŧĐĩĐŊŅ‚Ņ‹. НаĐŋŅ€Đ¸ĐŧĐĩŅ€, ĐĩŅĐģи ĐŋĐĩŅ€ĐĩŅ‚Đ°Ņ‰Đ¸Ņ‚ŅŒ Ņ†Đ˛ĐĩŅ‚ Ņ ĐŋĐ°ĐŊĐĩĐģи иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Ов иĐģи иС ĐŋĐ°ĐģиŅ‚Ņ€Ņ‹ ĐŊĐ° иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ, Ņ‚Đž иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ иĐģи ĐĩĐŗĐž вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊĐ°Ņ ОйĐģĐ°ŅŅ‚ŅŒ ĐąŅƒĐ´ĐĩŅ‚ СаĐģиŅ‚Đž ŅŅ‚иĐŧ Ņ†Đ˛ĐĩŅ‚ĐžĐŧ. Uporabite lahko marsikatero moÅžnost urejanja s pomočjo tehnike povleci in spusti, npr. z vlečenjem barve iz orodjarne ali barvne palete v sliko; trenutna slika ali izbrano področje se bo prebarvalo z izbrano barvo. Du kan dra och släppa mÃĨnga saker i GIMP. Att exempelvis dra en färg frÃĨn verktygslÃĨdan eller frÃĨn en färgpalett och släppa den i en bild gÃļr att den aktuella markeringen fylls med den färgen. @@ -413,6 +426,7 @@ Jeśli obraz jest większy od okna, do przewijania myszką obrazu, moÅŧna uÅŧyć środkowego przycisku (lub przytrzymując Spację). Pode utilizar o botÃŖo do meio do rato para se deslocar pela imagem (ou tambÊm pode segurar na Barra de Espaços enquanto move o rato). VocÃĒ pode usar o botÃŖo do meio do mouse para deslocar a imagem (ou, opcionalmente, pressione Espaço enquanto move o mouse). + Puteți folosi butonul din mijloc pentru a deplasa imaginea ÃŽn jur (sau opțional țineți apăsat tasta Spațiu ÃŽn timp ce mișcați mausul). ДĐģŅ ĐŋĐĩŅ€ĐĩĐŧĐĩŅ‰ĐĩĐŊиŅ ĐŋĐž иСОйŅ€Đ°ĐļĐĩĐŊиŅŽ иŅĐŋĐžĐģŅŒĐˇŅƒĐšŅ‚Đĩ ŅŅ€ĐĩĐ´ĐŊŅŽŅŽ ĐēĐģавиŅˆŅƒ ĐŧŅ‹ŅˆĐ¸. В диаĐģĐžĐŗĐĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐĩĐē ĐŧĐžĐļĐŊĐž иСĐŧĐĩĐŊиŅ‚ŅŒ ŅĐŋĐžŅĐžĐą ĐŊĐ° йОĐģĐĩĐĩ ĐŋŅ€Đ¸Đ˛Ņ‹Ņ‡ĐŊŅ‹Đš Đ´ĐģŅ ĐŋĐžĐģŅŒĐˇĐžĐ˛Đ°Ņ‚ĐĩĐģĐĩĐš Đ´Ņ€ŅƒĐŗиŅ… ĐŋŅ€ĐžĐŗŅ€Đ°ĐŧĐŧ — ŅƒĐ´ĐĩŅ€ĐļиваŅ ĐŊĐ°ĐļĐ°Ņ‚ОК ĐēĐģавиŅˆŅƒ ĐŋŅ€ĐžĐąĐĩĐģĐ°, ĐŋĐĩŅ€ĐĩĐŧĐĩŅ‰Đ°Ņ‚ŅŒ ĐēŅƒŅ€ŅĐžŅ€ ĐŧŅ‹ŅˆĐ¸. S srednjim gumbom miÅĄke si lahko pomagate za pomikanje okoli slike (ali po moÅžnosti drÅžite pritisnjeno preslednico, medtem ko premikate miÅĄko). Du kan använda den mittenmusknappen fÃļr att panorera Ãļver bilden (eller hÃĨlla ner blankstegstangenten när du flyttar musen). @@ -456,7 +470,7 @@ Aby umieścić na obrazie prowadnicę, naleÅŧy kliknąć linijkę i przeciągnąć ją w wybrane miejsce obrazu. Przy wszystkich operacjach wykonywanych z uÅŧyciem myszki wskaÅēnik będzie przyciągany do prowadnic. Aby usunąć prowadnicę, wystarczy, a następnie przeciągnąć prowadnicę narzędziem "Przesunięcie"poza obraz. Clique e arraste uma rÊgua para colocar uma guia numa imagem. Todas as selecçÃĩes arrastadas ir-se-ÃŖo colar às guias. Pode remover guias arrastando-as para fora da imagem com a ferramenta de Movimento. Clique e arraste numa rÊgua para colocar uma guia sobre a imagem. Todas as operaçÃĩes de seleçÃŖo arrastadas serÃŖo atraídas para as guias. VocÃĒ pode remover as guias arrastando-as para fora da imagem com a ferramenta de Movimento. - Dați clic pe o riglă și trageți de ea pentru a așeza un ghidaj pe o imagine. Toate selecțiile trase vor acroșa la ghidaje. Puteți elimina ghidajele prin tragerea lor ÃŽn afara imaginii cu instrumentul de mutare. + Clic pe o riglă și trageți de ea pentru a așeza un ghidaj pe o imagine. Toate selecțiile trase vor acroșa la ghidaje. Puteți elimina ghidajele prin tragerea lor ÃŽn afara imaginii cu instrumentul de mutare. ЧŅ‚ОйŅ‹ ĐŋĐžĐŧĐĩŅŅ‚иŅ‚ŅŒ ĐŊĐ°ĐŋŅ€Đ°Đ˛ĐģŅŅŽŅ‰ŅƒŅŽ ĐŊĐ° иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ, ĐŊĐ°ĐļĐŧиŅ‚Đĩ ĐģиĐŊĐĩĐšĐēŅƒ и ĐŋĐžŅ‚ŅĐŊиŅ‚Đĩ ĐēŅƒŅ€ŅĐžŅ€ ĐŧŅ‹ŅˆĐ¸ в ŅŅ‚ĐžŅ€ĐžĐŊŅƒ. ВŅĐĩ ĐŋĐĩŅ€ĐĩĐŧĐĩŅ‰Đ°ĐĩĐŧŅ‹Đĩ вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊŅ‹Đĩ ОйĐģĐ°ŅŅ‚и ĐąŅƒĐ´ŅƒŅ‚ ÂĢĐŋŅ€Đ¸ĐģиĐŋĐ°Ņ‚ŅŒÂģ Đē ĐŊĐ°ĐŋŅ€Đ°Đ˛ĐģŅŅŽŅ‰Đ¸Đŧ. ЧŅ‚ОйŅ‹ ŅƒĐąŅ€Đ°Ņ‚ŅŒ ĐŊĐ°ĐŋŅ€Đ°Đ˛ĐģŅŅŽŅ‰Đ¸Đĩ, ĐŋĐĩŅ€ĐĩĐēĐģŅŽŅ‡Đ¸Ņ‚ĐĩŅŅŒ ĐŊĐ° иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚ ÂĢПĐĩŅ€ĐĩĐŧĐĩŅ‰ĐĩĐŊиĐĩÂģ и ĐŋĐĩŅ€ĐĩŅ‚Đ°Ņ‰Đ¸Ņ‚Đĩ иŅ… Са ĐŋŅ€ĐĩĐ´ĐĩĐģŅ‹ иСОйŅ€Đ°ĐļĐĩĐŊиŅ, ĐģийО вОŅĐŋĐžĐģŅŒĐˇŅƒĐšŅ‚ĐĩŅŅŒ ĐēĐžĐŧĐ°ĐŊдОК ÂĢИСОйŅ€Đ°ĐļĐĩĐŊиĐĩ→НаĐŋŅ€Đ°Đ˛ĐģŅŅŽŅ‰Đ¸Đĩ→ĐŖĐ´Đ°ĐģиŅ‚ŅŒ ĐŊĐ°ĐŋŅ€Đ°Đ˛ĐģŅŅŽŅ‰Đ¸ĐĩÂģ. Kliknutím a potiahnutím na pravítko umiestnite do obrÃĄzka vodítko.VÅĄetky ÅĨahanÊ vÃŊbery budÃē pritiahnutÊ k tÃŊmto vodítkam. Vodítka môŞe odstrÃĄniÅĨ tak, Åže pomocou nÃĄstroja Presun ich vytiahnete mimo plochu obrÃĄzka. Kliknite in povlecite na ravnilo za postavitev vodila na sliko. Vse povlečene izbire se bodo pripele na vodila. Vodila odstranite z vlečenjem le-teh prek zunanjih robov slike z orodjem Premakni. @@ -505,6 +519,7 @@ MoÅŧesz przeciągnąć warstwę z okna "Warstwy" na narzędziÃŗwkę. W ten sposÃŗb stworzysz nowy obraz z zawartością tej warstwy. Pode arrastar uma camada do diÃĄlogo Camadas e larga-la na caixa de ferramentas. Isto irÃĄ criar uma nova imagem contendo apenas aquela camada. VocÃĒ pode arrastar uma camada do diÃĄlogo de "Camadas" e largÃĄ-la na caixa de ferramentas. Isto irÃĄ criar uma nova imagem contendo apenas aquela camada. + Puteți trage un strat din dialogul de straturi și să ÃŽl lăsați să cadă peste trusa de instrumente. În acest fel se va crea o nouă imagine ce conține doar acel strat. ЕŅĐģи ĐŋĐĩŅ€ĐĩŅ‚Đ°Ņ‰Đ¸Ņ‚ŅŒ ŅĐģОК иС диаĐģĐžĐŗĐ° ŅĐģĐžĐĩв ĐŊĐ° ĐŋĐ°ĐŊĐĩĐģŅŒ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Ов, ĐąŅƒĐ´ĐĩŅ‚ ŅĐžĐˇĐ´Đ°ĐŊĐž ĐŊОвОĐĩ иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ, ŅĐžŅŅ‚ĐžŅŅ‰ĐĩĐĩ Ņ‚ĐžĐģŅŒĐēĐž иС ŅŅ‚ĐžĐŗĐž ŅĐģĐžŅ. Vrstvu z dialÃŗgu Vrstvy môŞete chytiÅĨ a potiahnuÅĨ do panelu nÃĄstrojov. To vytvorí novÃŊ obrÃĄzok, ktorÃŊ bude obsahovaÅĨ iba tÃēto vrstvu. Če povlečete plast iz okna Plasti in jo spustite na orodjarno, boste iz nje ustvarili novo sliko, ki vsebuje samo to plast. @@ -598,6 +613,7 @@ Program GIMP obsługuję kompresję gzip w locie. Dodaj rozszerzenie .gz (lub .bz2, jeśli posiadasz zainstalowany bzip2) do nazwy swojego pliku, a TwÃŗj obraz zostanie skompresowany. Oczywiście moÅŧna takÅŧe wczytywać skompresowane obrazy. O GIMP suporta compressÃŖo gzip automaticamente. Basta adicionar .gz (ou .bz2, se tiver o bzip2 instalado) ao nome do ficheiro e a sua imagem serÃĄ gravada comprimida. Claro que ler imagens comprimidas tambÊm funciona. O GIMP suporta compressÃŖo gzip automaticamente. Basta adicionar .gz (ou .bz2, se o bzip2 estiver instalado) ao nome do arquivo e a sua imagem serÃĄ gravada comprimida. É claro que ler imagens comprimidas tambÊm funciona. + GIMP suportă comprimarea gzip din mers. Trebuie doar să adăugați .gz (sau .bz2, dacă aveți instalat bzip2) la numele de fișier și imaginile vor fi salvate gata comprimate. Desigur că ÃŽncărcarea imaginilor comprimate este de asemenea posibilă. В GIMP ĐŋОддĐĩŅ€ĐļиваĐĩŅ‚ŅŅ Đ°Ņ€Ņ…ивиŅ€ĐžĐ˛Đ°ĐŊиĐĩ gzip ÂĢĐŊĐ° ĐģĐĩŅ‚ŅƒÂģ. ДобавŅŒŅ‚Đĩ .gz (иĐģи .bz2) Đē иĐŧĐĩĐŊи Ņ„Đ°ĐšĐģĐ°, и иСОйŅ€Đ°ĐļĐĩĐŊиĐĩ ĐąŅƒĐ´ĐĩŅ‚ ŅĐžŅ…Ņ€Đ°ĐŊĐĩĐŊĐž ŅĐļĐ°Ņ‚Ņ‹Đŧ. ЗааŅ€Ņ…ивиŅ€ĐžĐ˛Đ°ĐŊĐŊŅ‹Đĩ иСОйŅ€Đ°ĐļĐĩĐŊиŅ ĐŧĐžĐļĐŊĐž ĐžŅ‚ĐēŅ€Ņ‹Đ˛Đ°Ņ‚ŅŒ Ņ‚ĐžŅ‡ĐŊĐž Ņ‚Đ°Đē ĐļĐĩ, ĐēĐ°Đē ОйŅ‹Ņ‡ĐŊŅ‹Đĩ. GIMP podporuje priebeÅžnÃē gzip kompresiu. Stačí pridaÅĨ koncovku .gz (alebo .bz2, ak mÃĄte nainÅĄtalovanÃŊ bzip2) k nÃĄzvu sÃēboru a obrÃĄzok bude uloÅženÃŊ komprimovanÃŊ. Rovnako to funguje, prirodzene, aj pri načítavaní obrÃĄzkov. GIMP omogoča neposredno shranjevanje v načinu stiskanja podatkov gzip. Dodajte le končnico .gz ( ali .bz2, če je nameÅĄÄen program bzip2) na koncu imena datoteke in ta se shrani v stisnjeni obliki. Tudi program lahko neposredno odpira tako stisnjene slike. @@ -644,6 +660,7 @@ Podczas korzystania z ktÃŗregokolwiek z narzędzi zaznaczania moÅŧliwe jest dodanie obszaru do juÅŧ istniejącego zaznaczenia. W tym celu naleÅŧy przed rozpoczęciem zaznaczania przycisnąć i przytrzymać klawisz Shift. Analogicznie, przyciśnięcie i przytrzymanie klawisza Ctrl spowoduje odjęcie nowego obszaru od istniejącego zaznaczenia. Premir e segurar a tecla iShift antes de fazer uma selecçÃŖo permite-lhe adicionar à selecçÃŖo actual em vez de a substituir. Utilizar o Ctrl antes de fazer uma selecçÃŖo subtrai à actual. Pressionar e segurar a tecla Shift antes de fazer uma seleçÃŖo permite aumentar uma seleçÃŖo existente em vez de substituí-la. Usar o Ctrl antes de fazer uma seleçÃŖo subtrai da seleçÃŖo atual. + Apăsarea și menținerea tastei Shift ÃŽnainte de a face o selecție vă permite să adăugați la selecția curentă ÃŽn loc să o ÃŽnlocuiți. Folosind Ctrl ÃŽnainte de a face o selecție scade din cea curentă. ЧŅ‚ОйŅ‹ дОйавиŅ‚ŅŒ ОйĐģĐ°ŅŅ‚ŅŒ Đē ŅƒĐļĐĩ вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊОК, иŅĐŋĐžĐģŅŒĐˇŅƒĐšŅ‚Đĩ ĐēĐģавиŅˆŅƒ Shift. ЧŅ‚ОйŅ‹ вŅ‹Ņ‡ĐĩŅŅ‚ŅŒ ОйĐģĐ°ŅŅ‚ŅŒ иС вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊĐžĐŗĐž, иŅĐŋĐžĐģŅŒĐˇŅƒĐšŅ‚Đĩ ĐēĐģавиŅˆŅƒ Ctrl. ХООŅ‚вĐĩŅ‚ŅŅ‚вŅƒŅŽŅ‰Đ¸Đĩ ĐēĐģавиŅˆĐ¸ ĐŊŅƒĐļĐŊĐž ĐŊĐ°ĐļиĐŧĐ°Ņ‚ŅŒ Đ´Đž ĐŊĐ°Ņ‡Đ°ĐģĐ° вŅ‹Đ´ĐĩĐģĐĩĐŊиŅ и ŅƒĐ´ĐĩŅ€ĐļиваŅ‚ŅŒ Đ´Đž ĐēĐžĐŊŅ†Đ° ĐŋŅ€ĐžŅ†ĐĩĐ´ŅƒŅ€Ņ‹. Stlačením a podrÅžaním klÃĄvesy Shift pred vytvorením vÃŊberu, bude novÃŊ vÃŊber pridanÃŊ k predchÃĄdzajÃēcemu. Naopak, pomocou klÃĄvesy Ctrl môŞete ubraÅĨ z aktuÃĄlneho vÃŊberu. Pritisnite in drÅžite pritisnjeno tipko Shift, da lahko pred izbiranjem s klikanjem leve tipke miÅĄke dodate novo področja k Åže obstoječemu izboru, namesto da ga nadomestite. Z uporabo tipke Ctrl pred začetkom izbire z miÅĄko od obstoječega izbora odÅĄtejete novi izbor. @@ -677,7 +694,7 @@ EgyszerÅą nÊgyzeteket Ês kÃļrÃļket rajzolhat a "SzerkesztÊs→KijelÃļlÊs kÃļrberajzolÃĄsa" menÃŧponttal. Ez a funkciÃŗ megrajzolja az aktuÃĄlis kijelÃļlÊs hatÃĄrvonalait. A bonyolultabb alakzatok elkÊszíthetők az ÃētvonaleszkÃļzzel vagy a "SzÅąrők→MegjelenítÊs→GFig" menÃŧponttal. ÞÃē getur teiknað einfalda ferninga eða hringi með Því að nota Breyta→Teikna Myndval. Það teiknar kantinn ÃĄ nÃēverandi myndvali. FlÃŗknari lÃļgun er hÃĻgt að draga með Því að nota StígatÃŗlið eða með Síur→Render→Gfig. Usando Modifica->Disegna selezione potrai disegnare semplici quadrati o cerchi tracciando la selezione corrente con il pennello attivo. Forme piÚ complesse possono essere disegnate con lo strumento tracciati o con Filtri->Render->Gfig. - įˇ¨é›† → 選択į¯„å›˛ãŽåĸƒį•Œįˇšã‚’描į”ģ をäŊŋãŖãĻã‚ĸクテã‚ŖブãĒãƒ–ãƒŠã‚ˇã§é¸æŠžį¯„å›˛ãŽį¸ãĢæ˛ŋãŖãĻ描くことができるんだ。æ­Ŗæ–šåŊĸやæ­Ŗ円を書きたい時ãĢはäžŋ刊だね。もãŖã¨č¤‡é›‘ãĒå›ŗåŊĸを描きたい時ãĢはパ゚ツãƒŧãƒĢや フã‚ŖãƒĢã‚ŋ → ä¸‹åĄ—ã‚Š → ã‚ˇã‚§ã‚¤ãƒ—(Gfig) だね。 + 【įˇ¨é›†ã€‘ → 【選択į¯„å›˛ãŽåĸƒį•Œįˇšã‚’描į”ģ】 をäŊŋãŖãĻã‚ĸクテã‚ŖブãĒãƒ–ãƒŠã‚ˇã§é¸æŠžį¯„å›˛ãŽį¸ãĢæ˛ŋãŖãĻ描くことができるんだ。æ­Ŗæ–šåŊĸやæ­Ŗ円を書きたい時ãĢはäžŋ刊だね。もãŖã¨č¤‡é›‘ãĒå›ŗåŊĸを描きたい時ãĢはパ゚ツãƒŧãƒĢや 【フã‚ŖãƒĢã‚ŋ】 → ã€ä¸‹åĄ—ã‚Šã€‘ → ã€ã‚ˇã‚§ã‚¤ãƒ—(Gfig)】 だね。 ážĸ្នក​ážĸážļច​គážŧរ​កážļរ៉េ​ ážŦ​រង្វង់​ធម្មតážļ​ដោយ​ប្រើ​​ជម្រើស Edit→Stroke ។ វážļ​ខ្វážļច់​គែម​របស់​ជម្រើស​បច្ចážģប្បន្ន​របស់​ážĸ្នក ។ រážļង​លំបážļក​បន្ថែម​ទៀត​ážĸážļច​ត្រážŧវ​បážļនគážŧរ​ដោយ​ប្រើ​ឧបករណ៍​ផ្លážŧវ ážŦ​ Filters→Render→Gfig ។ 편ė§‘->ė„ íƒ 따ëŧ꡸ëĻŦ기ëĨŧ ė‚ŦėšŠí•˜ëŠ´ 단ėˆœí•œ ė‚Ŧ격형ė´ë‚˜ ė›ė„ ꡸ëĻ´ ėˆ˜ ėžˆėŠĩ니다. 현ėžŦ ė„ íƒė˜ ëĒ¨ė„œëĻŦëĨŧ 따ëŧ ꡸ëĻŊ니다. 더 ëŗĩėžĄí•œ 도형ė€ ę˛Ŋ로 도ęĩŦ나 필터->렌더->GfigëĨŧ ė‚ŦėšŠí•´ė„œ ꡸ëĻ´ ėˆ˜ ėžˆėŠĩ니다. Paprastu kvadratus arba apskritimus galite nupieÅĄti naudodami Keisti→Apvesti paÅžymėtas vietas. Tai apveda tuo metu jÅĢsÅŗ pasirinktos srities kraÅĄtą. Sudėtingesnes formas galima nupieÅĄti naudojant KontÅĢrÅŗ įrankį arba Filtrai→Atvaizdavimas→Gfig. @@ -690,6 +707,7 @@ "Edycja -> Rysuj wzdłuÅŧ zaznaczenia..." pozwala na rysowanie bieÅŧącym pędzlem krzywych wzdłuÅŧ krawędzi zaznaczenia. Bardziej złoÅŧone figury uzyskasz, uÅŧywając opcji "Filtry -> Renderowanie -> Gfigury" lub narzędzia "ŚcieÅŧki". Pode desenhar quadrados ou círculos simples utilizando Editar→SelecçÃŖo Pincelada. Pincela a margem da sua selecçÃŖo actual. Formas mais complexas podem ser desenhadas com a ferramenta de Caminhos ou com Filtros→Renderizar→Gfig. VocÃĒ pode desenhar quadrados ou círculos simples usando Editar→Contornar SeleçÃŖo. Ela traça a margem da sua seleçÃŖo atual. Formas mais complexas podem ser desenhadas usando a ferramenta de Vetores ou com Filtros→Renderizar→Gfig. + Puteți desena pătrate simple sau cercuri folosind Editare → Trasează o seleție. Aceasta va trasa marginea selecției curente. Forme mai complexe pot fi desenate prin utilizarea instrumentului Căi, sau cu Filtre → Render → Gfig. ПŅ€Đ¸ ĐŋĐžĐŧĐžŅ‰Đ¸ ĐēĐžĐŧĐ°ĐŊĐ´Ņ‹, вŅ‹ĐˇŅ‹Đ˛Đ°ĐĩĐŧОК иС ĐŧĐĩĐŊŅŽ ÂĢПŅ€Đ°Đ˛Đēа→ОбвĐĩŅŅ‚и ĐŋĐž ĐēĐžĐŊŅ‚ŅƒŅ€Ņƒ...Âģ ĐŧĐžĐļĐŊĐž ĐąŅ‹ŅŅ‚Ņ€Đž ĐŊĐ°Ņ€Đ¸ŅĐžĐ˛Đ°Ņ‚ŅŒ ĐŋŅ€ĐžŅŅ‚Ņ‹Đĩ ĐŗĐĩĐžĐŧĐĩŅ‚Ņ€Đ¸Ņ‡ĐĩŅĐēиĐĩ Ņ„иĐŗŅƒŅ€Ņ‹, Ņ‚Đ°ĐēиĐĩ ĐēĐ°Đē ĐēвадŅ€Đ°Ņ‚Ņ‹ и ĐēŅ€ŅƒĐŗи. Đ­Ņ‚ОК ĐēĐžĐŧĐ°ĐŊдОК вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊĐ°Ņ ОйĐģĐ°ŅŅ‚ŅŒ ОйвОдиŅ‚ŅŅ ĐŋĐž ĐēĐžĐŊŅ‚ŅƒŅ€Ņƒ Đ°ĐēŅ‚ивĐŊОК ĐēиŅŅ‚ŅŒŅŽ иĐģи ĐŋŅƒĐŊĐēŅ‚иŅ€ĐžĐŧ Ņ СадаваĐĩĐŧŅ‹Đŧи ĐŋĐ°Ņ€Đ°ĐŧĐĩŅ‚Ņ€Đ°Đŧи. БоĐģĐĩĐĩ ŅĐģĐžĐļĐŊŅ‹Đĩ ĐŗĐĩĐžĐŧĐĩŅ‚Ņ€Đ¸Ņ‡ĐĩŅĐēиĐĩ Ņ„иĐŗŅƒŅ€Ņ‹ ĐŧĐžĐļĐŊĐž Ņ€Đ¸ŅĐžĐ˛Đ°Ņ‚ŅŒ ĐŋŅ€Đ¸ ĐŋĐžĐŧĐžŅ‰Đ¸ ĐŋОдĐŋŅ€ĐžĐŗŅ€Đ°ĐŧĐŧŅ‹ Gfig (ÂĢФиĐģŅŒŅ‚Ņ€Ņ‹â†’ВиСŅƒĐ°ĐģиСаŅ†Đ¸Ņâ†’GfigÂģ). Enostavne kvadrate ali kroge nariÅĄete z ukazom Uredi→Izbor poteze. S potezo oriÅĄe rob trenutnega izbora. Bolj zahtevne oblike lahko nariÅĄete z orodjem Pot ali z ukazom Filtri→Upodobi→Gfig. Du kan rita enkla fyrkanter och cirklar genom att använda Redigera→Stryk längs markering. Den stryker längs kanten av din aktuella markering. Mer komplexa figurer kan ritas med slingverktyget eller Filter→Rendera→Gfig. @@ -717,7 +735,7 @@ Egy Ãētvonal kÃļrberajzoltatÃĄsakor ("SzerkesztÊs→Útvonal kÃļrberajzolÃĄsa" menÃŧpont) a festőeszkÃļzÃļk az aktuÃĄlis beÃĄllítÃĄsaik szerint hasznÃĄlhatÃŗk. HasznÃĄlhatja az Ecset eszkÃļzt pÊldÃĄul színÃĄtmenet-mÃŗdban, vagy akÃĄr a Radír vagy a MaszatolÃĄs eszkÃļzt is. Ef ÞÃē teiknar ofan í stíg (Breyta→Teikna Ofan Í), mÃĄ nota mÃĄlningartÃŗlin með nÃēverandi stillingum. ÞÃē getur notað pensilinn í stigulshami eða jafnvel Strokleðrið eða Smudge tÃŗlið. Per delineare un tracciato (Modifica->Disegna tracciato), si possono usare anche gli strumenti di disegno con le loro impostazioni correnti. Si puÃ˛ usare il Pennello nella modalità gradiente oppure la Gomma o lo strumento Sfumino. - パ゚を描į”ģ (įˇ¨é›† → パ゚ぎåĸƒį•Œįˇšã‚’描į”ģ) するときは描į”ģツãƒŧãƒĢをäŊŋãŖãĻ描くことができるよ。グナデãƒŧã‚ˇãƒ§ãƒŗãƒĸãƒŧドをäŊŋãŖãĻãƒ–ãƒŠã‚ˇã§æį”ģすることもできるし、パã‚ŋãƒŧãƒŗをäŊŋãŖãĻã‚šã‚ŋãƒŗプで描į”ģしたりæļˆã—ゴムツãƒŧãƒĢやãĢじãŋツãƒŧãƒĢだãŖãĻäŊŋうことができるんだ。 + パ゚を描į”ģ (【įˇ¨é›†ã€‘ → 【パ゚ぎåĸƒį•Œįˇšã‚’描į”ģ】) するときは描į”ģツãƒŧãƒĢをäŊŋãŖãĻ描くことができるよ。グナデãƒŧã‚ˇãƒ§ãƒŗãƒĸãƒŧドをäŊŋãŖãĻãƒ–ãƒŠã‚ˇã§æį”ģすることもできるし、パã‚ŋãƒŧãƒŗをäŊŋãŖãĻã‚šã‚ŋãƒŗプで描į”ģしたりæļˆã—ゴムツãƒŧãƒĢやãĢじãŋツãƒŧãƒĢだãŖãĻäŊŋうことができるんだ。 ប្រសិន​បើ​ផ្លážŧវខ្វážļច់​ផ្លážŧវ (កែសម្រážŊល​ផ្លážŧវ​ខ្វážļច់) ឧបករណ៍​គážŧរ​ážĸážļច​ត្រážŧវ​បážļនប្រើ​ជážļ​មážŊយ​នឹង​កážļរ​កំណត់​បច្ចážģប្បន្ន​របស់​ពážŊកវážļ ។ ážĸ្នក​ážĸážļច​ប្រើ​ជក់​គážŧរ​នៅ​ក្នážģង​របៀប​ជម្រážļល ážŦ​ជ័រ​លážģប ážŦ​ឧបករណ៍ស្នážļម​ប្រឡážļក់ ។ ę˛Ŋ로ëĨŧ 따ëŧ꡸ëĻ´ 때(편ė§‘->ę˛Ŋ로 따ëŧ ꡸ëĻŦ기), ꡸ëĻŦ기 도ęĩŦ들ė„ 현ėžŦė„ ė„¤ė •ėœŧ로 ė‚ŦėšŠí•  ėˆ˜ ėžˆėŠĩ니다. ꡸ëŧ디ė–¸íŠ¸ ëĒ¨ë“œė˜ ëļ“ 도ęĩŦ는 ëŦŧ률ė´ęŗ  ė‹Ŧė§€ė–´ ė§€ėš°ę°œë‚˜ ëŦ¸ė§€ëĨ´ę¸° 도ęĩŦ도 ė‚ŦėšŠí•  ėˆ˜ ėžˆėŠĩ니다. Apvedant kontÅĢrą (Keisti→Apvesti kontÅĢrą) galima naudoti pieÅĄimo įrankius su jÅŗ esamais nustatymais. Galite naudoti teptuką su gradientu arba netgi trintuką ar iÅĄtepimo įrankį. @@ -730,6 +748,7 @@ Podczas rysowania wzdłuÅŧ ścieÅŧki ("Edycja>Rysuj wzdłuÅŧ ścieÅŧki...") moÅŧliwe jest uÅŧycie dowolnego narzędzia rysowania z jego bieÅŧącymi ustawieniami. MoÅŧna więc pociągnąć ścieÅŧkę "pędzlem" w trybie gradientu, "gumką" lub "rozsmarowywaniem". Se tiver desenhado um caminho (Editar→SelecçÃŖo Pincelar), as ferramentas de desenho podem ser utilizadas com as suas definiçÃĩes actuais. Pode utilizar o Spray em modo gradiente ou mesmo as ferramentas Borracha ou Esborratar. Se vocÃĒ for contornar um vetor (Editar→Contornar Vetor), as ferramentas de desenho podem ser usadas em suas configuraçÃĩes atuais. VocÃĒ pode usar a ferramenta de Preenchimento em modo degradÃĒ ou mesmo a ferramenta Borracha ou a ferramenta de Borrar. + Dacă trasați o cale (Editare → Trasează o cale...), instrumentele de pictură pot fi folosite cu setările lor curente. Puteți folosi pensula de pictură ÃŽn modul gradient, sau chiar ÃŽn instrumentul Gumă de șters sau MÃĸnjire. ПŅ€Đ¸ ОйвОдĐēĐĩ ĐŋĐž ĐēĐžĐŊŅ‚ŅƒŅ€Ņƒ (ÂĢПŅ€Đ°Đ˛Đēа→ОбвĐĩŅŅ‚и ĐŋĐž ĐēĐžĐŊŅ‚ŅƒŅ€Ņƒ...Âģ), иŅĐŋĐžĐģŅŒĐˇŅƒĐĩŅ‚ŅŅ Đ°ĐēŅ‚ивĐŊŅ‹Đš ĐŊĐ° Đ´Đ°ĐŊĐŊŅ‹Đš ĐŧĐžĐŧĐĩĐŊŅ‚ Ņ€Đ¸ŅŅƒŅŽŅ‰Đ¸Đš иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚ ŅĐž вŅĐĩĐŧи ĐŋĐ°Ņ€Đ°ĐŧĐĩŅ‚Ņ€Đ°Đŧи. ВŅ‹ ĐŧĐžĐļĐĩŅ‚Đĩ иŅĐŋĐžĐģŅŒĐˇĐžĐ˛Đ°Ņ‚ŅŒ ÂĢКиŅŅ‚ŅŒÂģ в Ņ€ĐĩĐļиĐŧĐĩ ĐŗŅ€Đ°Đ´Đ¸ĐĩĐŊŅ‚Đ°, ÂĢШŅ‚Đ°ĐŧĐŋÂģ Ņ иŅŅ‚ĐžŅ‡ĐŊиĐēĐžĐŧ иС ŅˆĐ°ĐąĐģĐžĐŊĐ° иĐģи Đ´Đ°ĐļĐĩ ÂĢЛаŅŅ‚иĐēÂģ и ÂĢПаĐģĐĩŅ†Âģ. Pri izrisu poti po obrisu predmeta (Uredi→Izris poti) uporabite trenutne nastavitve izbranega risarskega orodja. Uporabite npr. slikarski čopič v načinu barvnega preliva, radirko ali orodje za razmazovanje. Om du stryker en slinga (Redigera→Stryk slinga) kan ritverktygen användas med deras aktuella inställningar. Du kan använda mÃĨlarpenseln i gradientläget eller till och med suddaren eller smetverktyget. @@ -773,7 +792,7 @@ Przy uÅŧyciu narzędzia "ŚcieÅŧki", moÅŧesz tworzyć i modyfikować skomplikowane zaznaczenia. Okno "ŚcieÅŧki" pozwala pracować nad wieloma ścieÅŧkami i konwertować je do zaznaczenia. Pode criar e editar selecçÃĩes complexas utilizando a ferramenta de Caminho. O diÃĄlogo de Caminhos permite-lhe trabalhar em mÃēltiplos caminhos e converte-los em selecçÃĩes. VocÃĒ pode criar e editar seleçÃĩes complexas usando a ferramenta de Vetores. O diÃĄlogo de "Vetores" permite a vocÃĒ trabalhar em vÃĄrios vetores e convertÃĒ-los em seleçÃĩes. - Puteți crea și edita selecții complexe utilizÃĸnd instrumentul de traseu. Dialogul de trasee vă permite să lucrați pe trasee multiple și să le convertiți la selecții. + Puteți crea și edita selecții complexe utilizÃĸnd instrumentul de cale. Dialogul de căi vă permite să lucrați pe căi multiple și să le convertiți la selecții. В GIMP вŅ‹ ĐŧĐžĐļĐĩŅ‚Đĩ ŅĐžĐˇĐ´Đ°Đ˛Đ°Ņ‚ŅŒ и Ņ€ĐĩĐ´Đ°ĐēŅ‚иŅ€ĐžĐ˛Đ°Ņ‚ŅŒ ŅĐžŅŅ‚авĐŊŅ‹Đĩ ОйĐģĐ°ŅŅ‚и вŅ‹Đ´ĐĩĐģĐĩĐŊиŅ ĐŋŅ€Đ¸ ĐŋĐžĐŧĐžŅ‰Đ¸ ĐēĐžĐŊŅ‚ŅƒŅ€ĐžĐ˛. В диаĐģĐžĐŗĐĩ ĐēĐžĐŊŅ‚ŅƒŅ€ĐžĐ˛ ĐŧĐžĐļĐŊĐž Ņ€Đ°ĐąĐžŅ‚Đ°Ņ‚ŅŒ Ņ ĐŊĐĩŅĐēĐžĐģŅŒĐēиĐŧи ĐēĐžĐŊŅ‚ŅƒŅ€Đ°Đŧи и ĐŋŅ€ĐĩОйŅ€Đ°ĐˇĐžĐ˛Ņ‹Đ˛Đ°Ņ‚ŅŒ иŅ… в ОйĐģĐ°ŅŅ‚и вŅ‹Đ´ĐĩĐģĐĩĐŊиŅ. MôŞete vytvoriÅĨ a upravovaÅĨ komplexnÃŊ vÃŊber pouÅžitím nÃĄstroja Cesta. DialÃŗg Cesty umoŞňuje pracovaÅĨ s viacerÃŊmi cestami a konvertovaÅĨ ich do vÃŊberu. ZahtevnejÅĄe izbore naredimo in urejamo s pomočjo orodja Poti. Pogovorno okno Poti omogoča hkratno delo na večjem ÅĄtevilu poti in pretvorbo le-teh v izbor. @@ -821,7 +840,7 @@ ā¨šāŠ‹ā¨Ŗ ā¨¨āŠ‚āŠ° ā¨Ŧā¨Ļā¨˛ā¨Ŗ ā¨˛ā¨ˆ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨°āŠ°ā¨—ā¨¤ ā¨ŸāŠ‚ā¨˛ ā¨ĩā¨°ā¨¤ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ ā¨šā¨ŋāŠąā¨¤ā¨° ā¨Ąā¨žā¨ˆā¨˛ā¨žā¨— ā¨ĻāŠ‡ ā¨šāŠ‡ā¨ ā¨žā¨‚ ā¨–āŠąā¨ŦāŠ‡ "ā¨¤āŠā¨°āŠ°ā¨¤ ā¨Žā¨žā¨¸ā¨•" ā¨Ŧā¨Ÿā¨¨ ā¨•ā¨˛ā¨ŋāŠąā¨• ā¨•ā¨°āŠ‹āĨ¤ ā¨šā¨ŋāŠąā¨¤ā¨° ā¨¨āŠ‚āŠ° ā¨°āŠ°ā¨— ā¨•ā¨°ā¨•āŠ‡ ā¨†ā¨Ēā¨ŖāŠ€ ā¨šāŠ‹ā¨Ŗ ā¨Ŧā¨Ļā¨˛āŠ‹ ā¨…ā¨¤āŠ‡ ā¨‡ā¨¸ ā¨¨āŠ‚āŠ° ā¨¸ā¨§ā¨žā¨°ā¨Ŗ ā¨šāŠ‹ā¨Ŗ ā¨ĩā¨ŋā¨š ā¨Ŧā¨Ļā¨˛ā¨Ŗ ā¨ĩā¨žā¨¸ā¨¤āŠ‡ ā¨ŽāŠāŠœ ā¨Ŧā¨Ÿā¨¨ ā¨•ā¨˛ā¨ŋāŠąā¨• ā¨•ā¨°āŠ‹āĨ¤ Do zmiany zaznaczenia moÅŧesz uÅŧywać narzędzi malowania. Kliknij przycisk "Szybka maska" w lewym dolnym rogu okna obrazu (mały kwadracik). Od tej chwili moÅŧesz modyfikować zaznaczenie jako kolor, uÅŧywając bieÅŧącego narzędzia. Po zakończeniu modyfikacji przywrÃŗć zwykły widok, klikając jeszcze raz na przycisk z "kwadracikiem". VocÃĒ pode usar as ferramentas de pintura para alterar a seleçÃŖo. Clique no botÃŖo "MÃĄscara RÃĄpida" à esquerda inferior da janela de imagem. Altere a sua seleçÃŖo pintando na imagem e clique novamente no botÃŖo para convertÃĒ-la de volta a uma seleçÃŖo normal. - Puteți folosi uneltele de desenat pentru a modifica selecția. Clic pe butonul „Mască rapidă” din partea din stÃĸnga jos a unei ferestre cu o imagine. Modificați selecația prin desenarea ÃŽn imagine după care clic din nou pe buton pentru a-l converti la loc la o selecție normală. + Puteți folosi uneltele de desenat pentru a modifica selecția. Clic pe butonul „Mască rapidă” din partea din stÃĸnga jos a unei ferestre cu o imagine. Modificați selecția prin desenare ÃŽn imagine după care clic din nou pe buton pentru a-l converti la loc la o selecție normală. ПŅ€Đ¸ Ņ€ĐĩĐ´Đ°ĐēŅ‚иŅ€ĐžĐ˛Đ°ĐŊии ĐŗŅ€Đ°ĐŊиŅ† вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊОК ОйĐģĐ°ŅŅ‚и ĐŧĐžĐļĐŊĐž иŅĐŋĐžĐģŅŒĐˇĐžĐ˛Đ°Ņ‚ŅŒ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Ņ‹ Đ´ĐģŅ Ņ€Đ¸ŅĐžĐ˛Đ°ĐŊиŅ. ДĐģŅ ŅŅ‚ĐžĐŗĐž ĐŊĐ°Đ´Đž вĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ ÂĢБŅ‹ŅŅ‚Ņ€ŅƒŅŽ ĐŧĐ°ŅĐēŅƒÂģ, ĐžŅ‚Ņ€ĐĩĐ´Đ°ĐēŅ‚иŅ€ĐžĐ˛Đ°Ņ‚ŅŒ вŅ‹Đ´ĐĩĐģĐĩĐŊиĐĩ ОйĐģĐ°ŅŅ‚и Ņ€Đ¸ŅŅƒŅŽŅ‰Đ¸Đŧ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚ĐžĐŧ, Đ° ĐŋĐžŅ‚ĐžĐŧ вŅ‹ĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ ÂĢБŅ‹ŅŅ‚Ņ€ŅƒŅŽ ĐŧĐ°ŅĐēŅƒÂģ. Na zmenu vÃŊberu môŞete pouÅžiÅĨ kresliace nÃĄstroje. Stačí stlačiÅĨ tlačítko "RÃŊchla maska" na Äžavom spodnom okraji okna. Zmena sa uskutoční kreslením do obrÃĄzku a opätovnÊ stlačenie tlačítka ju skonvertuje späÅĨ na normÃĄly vÃŊber. Orodja za slikanje lahko uporabite tudi za spreminjanje izbora. Kliknite na spodnji levi gumb "Hitra maska" v oknu odprte slike. S slikanjem po sliki spreminjate izbor, s ponovnim klikom na gumb pa izbor spremenite nazaj v navadno izbiro. @@ -853,7 +872,7 @@ Elmenthet egy kijelÃļlÊst csatornÃĄba ("KijelÃļlÊs→MentÊs csatornÃĄba" menÃŧpont), majd mÃŗdosíthatja a csatornÃĄt bÃĄrmely festőeszkÃļzzel. A CsatornÃĄk pÃĄrbeszÊdablak gombjainak segítsÊgÊvel ÃĄtkapcsolhatja az Ãēj csatorna lÃĄthatÃŗsÃĄgÃĄt, vagy kijelÃļlÊssÊ alakíthatja a csatornÃĄt. ÞÃē geur vistað myndval í rÃĄs (Velja→Vista í rÃĄs) og síðan breytt Þessari rÃĄs með hvaða teikni eða mÃĄlningartÃŗli sem er. Með Því að nota hnappana í valmyndinni fyrir RÃĄsir, getur ÞÃē víxlað sÃŊnileika nÃŊju rÃĄsarinnar eða breytt henni í myndval. Puoi salvare una selezione in un canale (Seleziona->Salva in Canale) e poi modificare il canale con gli strumenti di disegno. Con i pulsanti presenti nella finestra di dialogo Canali, puoi rendere visibile o invisibile il nuovo canale o convertirlo in una selezione. - 選択į¯„å›˛ã‚’ãƒãƒŖãƒŗネãƒĢãĢäŋå­˜ã—ãĻ (選択→チãƒŖãƒŗネãƒĢãĢäŋå­˜)、描į”ģツãƒŧãƒĢでこぎチãƒŖãƒŗネãƒĢをäŋŽæ­Ŗすることができるよ。チãƒŖãƒŗネãƒĢダイã‚ĸログぎボã‚ŋãƒŗをäŊŋãŖãĻ、こぎチãƒŖãƒŗネãƒĢã‚’čĄ¨į¤ēしたり選択į¯„å›˛ãĢ変換したりできるよ。 + 選択į¯„å›˛ã‚’ãƒãƒŖãƒŗネãƒĢãĢäŋå­˜ã—ãĻ (【選択】→【チãƒŖãƒŗネãƒĢãĢäŋå­˜ã€‘)、描į”ģツãƒŧãƒĢでこぎチãƒŖãƒŗネãƒĢをäŋŽæ­Ŗすることができるよ。チãƒŖãƒŗネãƒĢダイã‚ĸログぎボã‚ŋãƒŗをäŊŋãŖãĻ、こぎチãƒŖãƒŗネãƒĢã‚’čĄ¨į¤ēしたり選択į¯„å›˛ãĢ変換したりできるよ。 ážĸ្នក​ážĸážļច​រក្សážļទážģក​ជម្រើស​ទៅ​ឆážļនែល (ជ្រើស​រក្សážļទážģក​ទៅ​ឆážļនែល) ហើយ​បន្ទážļប់​មក​កែប្រែ​ឆážļនែល​នេះ​ដោយ​ឧបករណ៍​គážŧរ​ណážļ​មážŊយ ។ ដោយ​ប្រើ​ប៊ážŧតážģង​នៅ​ក្នážģង​ប្រážĸប់​ឆážļនែល ážĸ្នក​ážĸážļច​បិទ​បើក​ភážļព​មើល​ឃើញ​របស់​ឆážļនែល​ថ្មី​នេះ ážŦ​បម្លែង​ទៅ​ជážļ​ជម្រើស​មážŊយ ។ ė„ íƒė„ ėą„널ė— ė €ėžĨ하ęŗ (ė„ íƒ->ėą„ë„ëĄœ ė €ėžĨ), ė´ ėą„널ė„ ė›í•˜ëŠ” ꡸ëĻŦ기 도ęĩŦ로 ęŗ ėš  ėˆ˜ ėžˆėŠĩ니다. ėą„널 대화ėƒėžė˜ 단ėļ”들ė„ ė´ėšŠí•´ė„œ ėą„널ė„ 표ė‹œí•˜ęą°ë‚˜ ėˆ¨ę¸¸ ėˆ˜ ėžˆęŗ , ė„ íƒėœŧ로 ëŗ€í™˜í•  ėˆ˜ë„ ėžˆėŠĩ니다. Galite iÅĄsaugoti paÅžymėjimą į kanalą (PaÅžymėti→IÅĄsaugoti į kanalą) ir tada modifikuoti ÅĄi kanalą bet kuriuo pieÅĄimo įrankiu. Mygtukais KanalÅŗ dialoge galite įjungti/iÅĄjungti ÅĄio naujo kanalo matomumą arba konvertuoti jį į paÅžymėjimą. @@ -862,9 +881,11 @@ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤Žā¤žā¤§āĨā¤¯ā¤Ž (ā¤Žā¤žā¤§āĨā¤¯ā¤Žā¤Žā¤ž ā¤šā¤¯ā¤¨ ->ā¤Ŧā¤šā¤¤ ā¤—ā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨ) ā¤Žā¤ž ā¤šā¤¯ā¤¨ ā¤Ŧā¤šā¤¤ ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤› ā¤° ā¤¤āĨā¤¯ā¤¸ā¤Ēā¤›ā¤ŋ ā¤¯āĨ‹ ā¤Žā¤žā¤§āĨā¤¯ā¤Žā¤˛ā¤žā¤ˆ ā¤•āĨā¤¨āĨˆ ā¤°ā¤™ ā¤˛ā¤—ā¤žā¤‰ā¤¨āĨ‡ ā¤‰ā¤Ēā¤•ā¤°ā¤Ŗā¤˛āĨ‡ ā¤Ēā¤°ā¤ŋā¤Žā¤žā¤°āĨā¤œā¤¨ ā¤—ā¤°āĨā¤¨āĨā¤šāĨ‹ā¤¸āĨāĨ¤ ā¤Žā¤žā¤§āĨā¤¯ā¤Ž ā¤¸ā¤‚ā¤ĩā¤žā¤Ļā¤šā¤°āĨ‚ā¤Žā¤ž ā¤Ŧā¤Ÿā¤¨ ā¤ĒāĨā¤°ā¤¯āĨ‹ā¤— ā¤—ā¤°āĨ‡ā¤Žā¤ž, ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤¯ā¤¸ ā¤¨ā¤¯ā¤žā¤ ā¤Žā¤žā¤§āĨā¤¯ā¤Žā¤•āĨ‹ ā¤ĻāĨƒā¤ļāĨā¤¯ā¤žā¤¤āĨā¤Žā¤•ā¤¤ā¤ž ā¤Ÿā¤—ā¤˛ ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤› ā¤ĩā¤ž ā¤šā¤¯ā¤¨ā¤Žā¤ž ā¤Ēā¤°ā¤ŋā¤ĩā¤°āĨā¤¤ā¤¨ ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ U kunt een selectie opslaan in een kanaal (Selecteren→Opslaan in kanaal) en vervolgens dit kanaal aanpassen met een willekeurig schildergereedschap. Met de knoppen in het dialoogvenster Kanalen kunt u de zichtbaarheid van dit nieuwe kanaal veranderen of het kanaal weer omzetten naar een selectie. Du kan lagre eit utval til ein kanal (Vel→Lagra til kanal) og deretter gjere endringar pÃĨ kanalen med teikneverktøya. Bruk knappane i kanaldialogen for ÃĨ gjere den nye kanalen synleg eller usynleg, eller omforme kanalen til eit utval igjen. + ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨šāŠˆā¨¨ā¨˛ ā¨ĻāŠ€ ā¨šāŠ‹ā¨Ŗ ā¨¸ā¨žā¨‚ā¨­ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹ (ā¨šāŠ‹ā¨Ŗ→ā¨šāŠˆā¨¨ā¨˛ ā¨ĩā¨ŋāŠąā¨š ā¨¸āŠ°ā¨­ā¨žā¨˛āŠ‹) ā¨…ā¨¤āŠ‡ ā¨Ģā¨ŋā¨° ā¨•ā¨ŋā¨¸āŠ‡ ā¨ĒāŠ‡ā¨‚ā¨Ÿ ā¨ŸāŠ‚ā¨˛ ā¨¨ā¨žā¨˛ ā¨‡ā¨š ā¨šāŠˆā¨¨ā¨˛ ā¨Ŧā¨Ļā¨˛āŠ‹āĨ¤ ā¨šāŠˆā¨¨ā¨˛ ā¨Ąā¨žā¨ˆā¨˛ā¨žā¨— ā¨ĻāŠ‡ ā¨Ŧā¨Ÿā¨¨ ā¨ĩā¨°ā¨¤ ā¨•āŠ‡ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨¨ā¨ĩāŠ‡ā¨‚ ā¨šāŠˆā¨¨ā¨˛ ā¨ĻāŠ€ ā¨Ļā¨ŋāŠąā¨– ā¨Ŧā¨Ļā¨˛ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹ ā¨œā¨žā¨‚ ā¨‡ā¨¸ ā¨¨āŠ‚āŠ° ā¨šāŠ‹ā¨Ŗ ā¨ĩā¨ŋā¨š ā¨Ŧā¨Ļā¨˛ ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ MoÅŧna zapisywać zaznaczenie do kanału (Zaznaczenie>Zapisz do kanału) i modyfikować je dowolnym narzędziem malarskim. Przyciskami w oknie "Kanały" moÅŧesz ustawić widoczność kanału lub przekonwertować go na zaznaczenie. Pode gravar uma selecçÃŖo para um canal (Seleccionar→Gravar para Canal) e depois alterar este canal com quaisquer ferramentas de desenho. Utilizando os botÃĩes no diÃĄlogo Canais, pode alternar a visibilidade deste novo canal ou converte-lo numa selecçÃŖo. VocÃĒ pode salvar uma seleçÃŖo em um canal (SeleçÃŖo→Salvar para Canal) e depois modificar este canal com quaisquer ferramentas de desenho. Usando os botÃĩes do diÃĄlogo de Canais, vocÃĒ pode alternar a visibilidade deste novo canal ou convertÃĒ-lo numa seleçÃŖo. + Puteți salva o selecție la un canal (Selecție → Salvează ÃŽn canal) și modifica după aceea acest canal cu orice instrument de pictură. Folosind butoanele ÃŽn dialogul de canale, puteți comuta vizibilitatea acestui canal nou, sau să ÃŽl convertiți la selecție. ВŅ‹Đ´ĐĩĐģĐĩĐŊĐŊŅƒŅŽ ОйĐģĐ°ŅŅ‚ŅŒ ĐŧĐžĐļĐŊĐž ŅĐžŅ…Ņ€Đ°ĐŊиŅ‚ŅŒ ĐēĐ°Đē ĐēĐ°ĐŊĐ°Đģ (ÂĢВŅ‹Đ´ĐĩĐģĐĩĐŊиĐĩ→СоŅ…Ņ€Đ°ĐŊиŅ‚ŅŒ в ĐēĐ°ĐŊĐ°ĐģĐĩÂģ), Đ° ĐŋĐžŅ‚ĐžĐŧ Ņ€ĐĩĐ´Đ°ĐēŅ‚иŅ€ĐžĐ˛Đ°Ņ‚ŅŒ ŅŅ‚ĐžŅ‚ ĐēĐ°ĐŊĐ°Đģ ĐģŅŽĐąŅ‹Đŧ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚ĐžĐŧ Ņ€Đ¸ŅĐžĐ˛Đ°ĐŊиŅ. ИСĐŧĐĩĐŊŅŅ‚ŅŒ видиĐŧĐžŅŅ‚ŅŒ ĐēĐ°ĐŊĐ°ĐģĐ° и ĐŋŅ€ĐĩОйŅ€Đ°ĐˇĐžĐ˛Ņ‹Đ˛Đ°Ņ‚ŅŒ ĐĩĐŗĐž в вŅ‹Đ´ĐĩĐģĐĩĐŊиĐĩ вŅ‹ ĐŧĐžĐļĐĩŅ‚Đĩ ĐŋŅ€Đ¸ ĐŋĐžĐŧĐžŅ‰Đ¸ ĐēĐŊĐžĐŋĐžĐē в диаĐģĐžĐŗĐĩ ĐēĐ°ĐŊĐ°ĐģОв. Izbor lahko shranite v kanal (Izberi→Shrani v kanal) in ga potem obdelate s katerim koli orodjem za risanje. S pomočjo gumbov v pogovornem oknu Kanali lahko spreminjate vidnost novega kanala ali ga spremenite v izbiro. Du kan spara en markering till en kanal (Markera→Spara till kanal) och sedan ändra denna kanal med nÃĨgot av mÃĨlarverktygen. Genom att använda knapparna i kanaldialogen kan du växla synligheten pÃĨ denna nya kanal eller konvertera den till en markering. @@ -906,7 +927,7 @@ Jeśli w preferencjach GIMP-a aktywna jest opcja "Dynamiczne skrÃŗty klawiszowe", wÃŗwczas moÅŧesz zmieniać skrÃŗty klawiszowe w trakcie działania. Aby to zrobić, wystarczy otworzyć menu z wybranym poleceniem, wyrÃŗÅŧnić pozycję odpowiadającą poleceniu, a następnie przycisnąć kombinację klawiszy stanowiącą nowy skrÃŗt klawiszowy. Jeśli w preferencjach aktywna jest opcja "Zapisz skrÃŗty klawiszowe przed zakończeniem", to wszystkie skrÃŗty klawiszowe zostaną zapamiętane podczas wyjścia z programu GIMP. Następnym razem warto wyłączyć "Dynamiczne skrÃŗty klawiszowe", aby uniknąć przypadkowej ich zmiany. ApÃŗs activar "Atalhos de Teclado DinÃĸmicos" no diÃĄlogo de PreferÃĒncias, pode redefinir teclas de atalho. Para o fazer, faça surgir o menu, seleccionando um item do menu, e premindo a nova combinaçÃŖo de teclas de atalho. Se "Gravar Atalhos de Menu" estiver activo, os atalhos serÃŖo gravados quando sair do GIMP. Depois deverÃĄ desactivar "Atalhos de Teclado DinÃĸmicos" para evitar a redefiniçÃŖo de atalhos acidentalmente. Depois de habilitar os "Atalhos de Teclado DinÃĸmicos" no diÃĄlogo de PreferÃĒncias, vocÃĒ poderÃĄ modificar os atalhos. Para fazer isso, deixe o cursor sobre um item do menu, e pressione a combinaçÃŖo de teclas desejada. Se a opçÃŖo "Salvar Atalhos de Teclado" estiver habilitada, as modificaçÃĩes serÃŖo salvas quando sair do GIMP. VocÃĒ deve provavelmente desabilitar os "Atalhos de Teclado DinÃĸmicos" depois, para evitar reconfigurÃĄ-los por acidente. - După ce ați activat „Scurtături dinamice de tastatură” ÃŽn dialogul de preferințe, puteți reasigna scurtături de tastatură. Aceasta se face prin afișarea meniului, selectarea unui element al meniului și apăsarea combinației de taste dorite. Dacă „Salvează scurtăturile de tastatură” este activată, tema de combinații de taste este salvată la ieșirea GIMP. Pobabil că după asta ar trebui să dezactivați „Scurtături dinamice de tastatură”, pentru a preveni asignarea/reasignarea accidentală a scurtăturilor. + După ce ați activat „Scurtături dinamice de tastatură” ÃŽn dialogul de preferințe, puteți reasocia scurtături de tastatură. Aceasta se face prin afișarea meniului, selectarea unui element al meniului și apăsarea combinației de taste dorite. Dacă „Salvează scurtăturile de tastatură” este activată, tema de combinații de taste este salvată la ieșirea GIMP. Pobabil că după aceea ar trebui să dezactivați „Scurtături dinamice de tastatură”, pentru a preveni asocierea/reasocierea accidentală a scurtăturilor. ПоŅĐģĐĩ Ņ‚ĐžĐŗĐž, ĐēĐ°Đē вŅ‹ вĐēĐģŅŽŅ‡Đ¸Đģи в диаĐģĐžĐŗĐĩ ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēи Ņ„ŅƒĐŊĐēŅ†Đ¸ŅŽ ÂĢДиĐŊĐ°ĐŧиŅ‡ĐĩŅĐēиĐĩ ĐēĐģавиаŅ‚ŅƒŅ€ĐŊŅ‹Đĩ ĐēĐžĐŧйиĐŊĐ°Ņ†Đ¸Đ¸Âģ, вŅ‹ ĐŧĐžĐļĐĩŅ‚Đĩ ĐŋĐĩŅ€ĐĩĐžĐŋŅ€ĐĩĐ´ĐĩĐģиŅ‚ŅŒ ŅĐžŅ‡ĐĩŅ‚Đ°ĐŊиŅ ĐēĐģавиŅˆ ĐąŅ‹ŅŅ‚Ņ€ĐžĐŗĐž Đ´ĐžŅŅ‚ŅƒĐŋĐ°. ЧŅ‚ОйŅ‹ ŅŅ‚Đž ŅĐ´ĐĩĐģĐ°Ņ‚ŅŒ, ĐŊавĐĩдиŅ‚Đĩ ĐēŅƒŅ€ŅĐžŅ€ ĐŧŅ‹ŅˆĐ¸ ĐŊĐ° ĐŊŅƒĐļĐŊŅ‹Đš ĐŋŅƒĐŊĐēŅ‚ ĐŧĐĩĐŊŅŽ и ĐŊĐ°ĐļĐŧиŅ‚Đĩ ŅƒĐ´ĐžĐąĐŊĐžĐĩ ваĐŧ ŅĐžŅ‡ĐĩŅ‚Đ°ĐŊиĐĩ ĐēĐģавиŅˆ. ПŅ€ĐžĐ˛ĐĩŅ€ŅŒŅ‚Đĩ, ŅŅ‚ОиŅ‚ Đģи в ĐŊĐ°ŅŅ‚Ņ€ĐžĐšĐēĐ°Ņ… GIMP Ņ„ĐģĐ°ĐļĐžĐē ĐŊĐ°ĐŋŅ€ĐžŅ‚ив ÂĢĐĄĐžŅ…Ņ€Đ°ĐŊŅŅ‚ŅŒ ĐēĐģавиŅˆĐ¸ ĐąŅ‹ŅŅ‚Ņ€ĐžĐŗĐž Đ´ĐžŅŅ‚ŅƒĐŋĐ° ĐŋŅ€Đ¸ вŅ‹Ņ…ОдĐĩÂģ, Ņ‡Ņ‚ОйŅ‹ ĐŋŅ€Đ¸ ŅĐģĐĩĐ´ŅƒŅŽŅ‰ĐĩĐŧ СаĐŋŅƒŅĐēĐĩ ĐŋŅ€ĐžĐŗŅ€Đ°ĐŧĐŧŅ‹ ĐŊĐĩ ĐŋĐĩŅ€ĐĩĐŊаСĐŊĐ°Ņ‡Đ°Ņ‚ŅŒ вŅŅ‘ СаĐŊОвО. ПоŅĐģĐĩ ŅƒŅŅ‚Đ°ĐŊОвĐēи вŅĐĩŅ… ĐēĐžĐŧйиĐŊĐ°Ņ†Đ¸Đš, вОСĐŧĐžĐļĐŊĐž, ŅŅ‚ОиŅ‚ ĐžŅ‚ĐēĐģŅŽŅ‡Đ¸Ņ‚ŅŒ диĐŊĐ°ĐŧиŅ‡ĐĩŅĐēĐžĐĩ СаĐŋĐžĐŧиĐŊĐ°ĐŊиĐĩ, Ņ‡Ņ‚ОйŅ‹ ŅĐģŅƒŅ‡Đ°ĐšĐŊĐž ĐŊиŅ‡ĐĩĐŗĐž ĐŊĐĩ ĐŋĐĩŅ€ĐĩĐŊаСĐŊĐ°Ņ‡Đ¸Ņ‚ŅŒ. Potem ko omogočite "Uporabi dinamične tipke za bliÅžnjice" v pogovornem oknu nastavitev, lahko tipke za bliÅžnjice prerazporedite. Prikličite meni, izberite ukaz v njem, nato pritisnite Åželeno kombinacijo tipk. Če je "Shrani tipke za bliÅžnjice ob izhodu" vključen, bodo nove kombinacije tipk shranjene ob izhodu iz aplikacije GIMP. Kasneje raje izključite "Dinamične tipke za bliÅžnjice", da preprečite nenamerno dodeljevanje novih bliÅžnjic. När du har aktiverat "Dynamiska tangentbordsgenvägar" i inställningsdialogen kan du konfigurera om genvägstangenter. Detta gÃļr du genom att ta fram menyn, välja ett menyobjekt och trycka pÃĨ den Ãļnskade tangentkombinationen. Om "Spara tangentbordsgenvägar" är aktiverad kommer tangentbindningarna att sparas när du avslutar GIMP. Du bÃļr antagligen inaktivera "Dynamiska tangentbordsgenvägar" efterÃĨt fÃļr att fÃļrhindra att genvägar konfigureras av misstag. @@ -944,9 +965,11 @@ ā¤¯ā¤Ļā¤ŋ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤•āĨ‹ ā¤¸āĨā¤•āĨā¤°ā¤ŋā¤¨ ā¤ā¤•ā¤Ļā¤Ž ā¤—ā¤Ąā¤Ŧā¤Ą ā¤› ā¤­ā¤¨āĨ‡ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤‰ā¤Ēā¤•ā¤°ā¤Ŗ ā¤Ŧā¤žā¤•ā¤¸ ā¤° ā¤…ā¤°āĨ‚ ā¤¸ā¤‚ā¤ĩā¤žā¤Ļā¤˛ā¤žā¤ˆ ā¤˛āĨā¤•ā¤žā¤‰ā¤¨ ā¤ĩā¤ž ā¤ĻāĨ‡ā¤–ā¤žā¤‰ā¤¨ ā¤›ā¤ĩā¤ŋ ā¤¸ā¤žāĨā¤āĨā¤¯ā¤žā¤˛ā¤Žā¤ž ā¤§āĨ‡ā¤°āĨˆ ā¤Ēā¤Ÿā¤• Tab ā¤Ĩā¤ŋā¤šāĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ Als uw scherm te druk is, kunt u in een afbeeldingsvenster op Tab drukken om de gereedschapskist en andere dialoogvensters te verbergen. Dersom skjermen er svÃĻrt rotete, kan du trykke Tab-tasten fleire gonger for ÃĨ skjule eller vise verktøykassa og andre dialogar. + ā¨œāŠ‡ ā¨¤āŠā¨šā¨žā¨ĄāŠ€ ā¨¸ā¨•ā¨°āŠ€ā¨¨ ā¨Ŧā¨šāŠā¨¤āŠ€ ā¨ŦāŠ‡ā¨¤ā¨°ā¨¤āŠ€ā¨ŦāŠ€ ā¨šāŠˆ ā¨¤ā¨žā¨‚ ā¨šā¨ŋāŠąā¨¤ā¨° ā¨Ąā¨žā¨ˆā¨˛ā¨žā¨— ā¨ĩā¨ŋā¨š ā¨ŸāŠ‚ā¨˛-ā¨Ŧā¨žā¨•ā¨¸ ā¨…ā¨¤āŠ‡ ā¨šāŠ‹ā¨° ā¨Ąā¨žā¨ˆā¨˛ā¨žā¨— ā¨ĸāŠąā¨•ā¨Ŗ ā¨œā¨žā¨‚ ā¨Ļā¨ŋā¨–ā¨žā¨‰ā¨Ŗ ā¨ĩā¨žā¨¸ā¨¤āŠ‡ ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‡āŠąā¨• ā¨šā¨ŋāŠąā¨¤ā¨° ā¨ĩā¨ŋāŠ°ā¨ĄāŠ‹ ā¨ĩā¨ŋāŠąā¨š ā¨œā¨ŋā¨†ā¨Ļā¨ž ā¨ĩā¨žā¨° Tab ā¨Ļā¨Ŧā¨ž ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ Jeśli na ekranie jest zbyt mało miejsca, moÅŧna ukryć część okien przyciskając klawisz Tab. KaÅŧde przyciśnięcie spowoduje ukrycie/wyświetlenie okien dialogowych lub narzędziÃŗwki. Se o seu ecrÃŖ estiver demasiado cheio, pode premir Tab numa janela de imagem para esconder ou mostrar a caixa de ferramentas e outros diÃĄlogos. - Se a sua tela estiver muito cheia, vocÃĒ pode pressionarTab numa janela de imagem para esconder ou mostrar a caixa de ferramentas e outros diÃĄlogos. + Se a sua tela estiver muito cheia, vocÃĒ pode pressionar Tab numa janela de imagem para esconder ou mostrar a caixa de ferramentas e outros diÃĄlogos. + Dacă ecranul calculatorului este prea aglomerat, puteți apăsa Tab ÃŽntr-o fereastră de imagine pentru a comuta vizibilitatea barei de unelte și a altor dialoguri. ЕŅĐģи ĐŊĐ° ŅĐēŅ€Đ°ĐŊĐĩ ĐŧĐ°ĐģĐž ĐŧĐĩŅŅ‚Đ°, ĐŧĐžĐļĐŊĐž вОŅĐŋĐžĐģŅŒĐˇĐžĐ˛Đ°Ņ‚ŅŒŅŅ ĐēĐŊĐžĐŋĐēОК Tab в ĐžĐēĐŊĐĩ иСОйŅ€Đ°ĐļĐĩĐŊиŅ, Ņ‡Ņ‚ОйŅ‹ ŅĐēŅ€Ņ‹Ņ‚ŅŒ иĐģи ĐŋĐžĐēаСаŅ‚ŅŒ ĐŋĐ°ĐŊĐĩĐģŅŒ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Ов и ĐžĐēĐŊĐ° диаĐģĐžĐŗОв. Če je vaÅĄe namizje preveč nastlano, lahko pritisnete tipko Tab v oknu slike, da vključite ali izključite vidnost orodne vrstice in drugih pogovornih oken. Om din bildskärm är fÃļr stÃļkig kan du trycka pÃĨ tabulator i ett bildfÃļnster fÃļr att växla synligheten pÃĨ verktygslÃĨdan och andra dialoger. @@ -992,7 +1015,7 @@ Shift i kliknięcie ikony oka umieszczonej obok podglądu wybranej warstwy (w oknie "Warstwy"), ukrywa wszystkie warstwy poza jedną. Ponowne kliknięcie ikony oka z klawiszem Shift wyświetli wszystkie warstwy. Clique-Shift no ícone do olho no diÃĄlogo de Camadas para esconder todas as camadas menos essa. Clique-Shift novamente para mostrar todas as camadas. Clique com Shift pressionado no ícone do olho no diÃĄlogo de Camadas para esconder todas as outras camadas. Clique com Shift novamente para mostrar todas as outras camadas. - Shift-clic pe simbolul ochi din dialogul de straturi pentru a ascunde toate straturile ÃŽn afară de acela. Shift-clic din nou pentru a arăta toate straturile. + Shift-clic pe simbolul ochi din dialogul de straturi determină ascunderea tuturor straturilor ÃŽn afară de acela. Shift-clic din nou arată la loc toate straturile. ЕŅĐģи в диаĐģĐžĐŗĐĩ ŅĐģĐžĐĩв ĐŊĐ°ĐļĐ°Ņ‚ŅŒ СĐŊĐ°Ņ‡ĐžĐē Ņ ĐŗĐģаСОĐŧ, ŅƒĐ´ĐĩŅ€ĐļиваŅ ĐŊĐ°ĐļĐ°Ņ‚ОК ĐēĐģавиŅˆŅƒ Shift, ĐŊĐĩвидиĐŧŅ‹Đŧи ŅŅ‚Đ°ĐŊŅƒŅ‚ вŅĐĩ ŅĐģОи ĐēŅ€ĐžĐŧĐĩ Ņ‚ĐžĐŗĐž, Ņ‡ĐĩĐš СĐŊĐ°Ņ‡ĐžĐē вŅ‹ ĐŊĐ°ĐļĐ°Đģи. ЧŅ‚ОйŅ‹ ŅĐ´ĐĩĐģĐ°Ņ‚ŅŒ вŅĐĩ ŅĐģОи видиĐŧŅ‹Đŧи, ŅĐŊОва ĐŊĐ°ĐļĐŧиŅ‚Đĩ Ņ‚ĐžŅ‚ ĐļĐĩ СĐŊĐ°Ņ‡ĐžĐē, ŅƒĐ´ĐĩŅ€ĐļиваŅ ĐŊĐ°ĐļĐ°Ņ‚ОК ĐēĐģавиŅˆŅƒ Shift. Kliknutie na ikonu oka v dialÃŗgu Vrstvy so stlačenou klÃĄvesou Shiftje moÅžnÊ skryÅĨ vÅĄetky vrstvy okrem tej, na ktorÃē ste klikli. ĎalÅĄie kliknutie vÅĄetkyvrstvy zobrazí. Shift-klik na ikono očesa v pogovornem oknu Plasti skrije vse druge plasti. S ponovnim klikom na Shift jih zopet vse pokaÅže. @@ -1080,6 +1103,7 @@ Pomiędzy warstwami obrazu moÅŧesz przełączać się przy uÅŧyciu klawiszy Alt-Tab (o ile nie przechwyci jej twÃŗj menedÅŧer okien). Pode utilizar Ctrl-Tab para percorrer entre todas as camadas numa imagem (se o seu gestor de janelas nÃŖo estiver a utilizar essa combinaçÃŖo de teclas...). VocÃĒ pode usar Ctrl-Tab para alternar entre todas as camadas numa imagem (se o seu gerenciador de janelas nÃŖo capturar essas teclas...). + Puteți folosi Ctrl-Tab pentru a comuta ciclic prin toate straturile unei imagini (asta dacă gestionarul de ferestre nu capturează aceste taste ...). ПĐĩŅ€ĐĩĐēĐģŅŽŅ‡Đ°Ņ‚ŅŒŅŅ ĐŧĐĩĐļĐ´Ņƒ ŅĐģĐžŅĐŧи ĐŧĐžĐļĐŊĐž ĐŋĐž Ctrl-Tab (ĐĩŅĐģи ваŅˆ ĐžĐēĐžĐŊĐŊŅ‹Đš ĐŧĐĩĐŊĐĩĐ´ĐļĐĩŅ€ ĐŊĐĩ иŅĐŋĐžĐģŅŒĐˇŅƒĐĩŅ‚ ŅŅ‚Đž ŅĐžŅ‡ĐĩŅ‚Đ°ĐŊиĐĩ ĐēĐģавиŅˆ). Uporabite kombinacijo tipk Ctrl in Tab za prehajanje med plastmi slike (če vaÅĄ upravljalnik oken to dovoljuje in ne prestreÅže te kombinacije tipk). Du kan använda Alt-tabulator fÃļr att växla mellan alla lager i en bild (om din fÃļnsterhanterare inte fÃĨngar dessa tangenter...). @@ -1120,7 +1144,7 @@ Ctrl i kliknięcie na "Wypełnienie kubełkiem", powoduje Åŧe do wypełnienia zostanie uÅŧyty kolor tła, zamiast koloru pierwszoplanowego. Podobnie Ctrl i kliknięcie na "Kroplomierzu" ustawia kolor tła zamiast koloru pierwszoplanowego. Clique-Ctrl com a ferramenta de Enchimento para que ela utilize a cor de fundo em vez da cor de primeiro plano. Da mesma maneira, clique-Ctrl com a ferramenta pipeta utiliza a cor de fundo em vez da cor de primeiro plano. Use a ferramenta de Preenchimento com o Ctrl apertado para usar a cor de fundo ao invÊs da cor de frente. Da mesma forma, clicar com a ferramenta de seleçÃŖo de cores com Ctrl seleciona a cor de fundo. - Ctrl-clic pe instrumentul de umplere cu găleata determină folosirea de către aceasta a culorii de fundal ÃŽn locul celei de prim plan. Similar, Ctrl-clic pe instrumentul pipetă determină stabilirea culorii de fundal ÃŽn locul celei de prim plan. + Ctrl-clic pe instrumentul Umplere cu găleata determină folosirea de către aceasta a culorii de fundal ÃŽn locul celei de prim plan. Similar, Ctrl-clic pe instrumentul Pipetă determină stabilirea culorii de fundal ÃŽn locul celei de prim plan. ИĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚ ÂĢЗаĐģивĐēĐ°Âģ ĐŋĐž ŅƒĐŧĐžĐģŅ‡Đ°ĐŊиŅŽ иŅĐŋĐžĐģŅŒĐˇŅƒĐĩŅ‚ Ņ†Đ˛ĐĩŅ‚ ĐŋĐĩŅ€ĐĩĐ´ĐŊĐĩĐŗĐž ĐŋĐģĐ°ĐŊĐ°. ЧŅ‚ОйŅ‹ СаĐģиŅ‚ŅŒ ОйĐģĐ°ŅŅ‚ŅŒ Ņ†Đ˛ĐĩŅ‚ĐžĐŧ Ņ„ĐžĐŊĐ° иŅĐŋĐžĐģŅŒĐˇŅƒĐšŅ‚Đĩ ĐēĐģавиŅˆŅƒ Ctrl. АĐŊĐ°ĐģĐžĐŗиŅ‡ĐŊĐž, ĐŋŅ€Đ¸ ĐŊĐ°ĐļĐ°Ņ‚ОК ĐēĐģавиŅˆĐĩ Ctrl ĐŋиĐŋĐĩŅ‚ĐēĐ° ŅĐŊиĐŧĐ°ĐĩŅ‚ Ņ†Đ˛ĐĩŅ‚ Đ´ĐģŅ Ņ„ĐžĐŊĐ°, Đ° ĐŊĐĩ Đ´ĐģŅ ĐŋĐĩŅ€ĐĩĐ´ĐŊĐĩĐŗĐž ĐŋĐģĐ°ĐŊĐ°. Ctrl-klik v orodju Zapolni s kanglico uporabi barvo ozadja namesto barve ospredja. Podobno Ctrl-klik v orodju kapalke nastavi barvo ozadja namesto barve ospredja. HÃĨll ner Ctrl och klicka med fyllnadsverktyget fÃļr att gÃļra sÃĨ att det använder bakgrundsfärgen istället fÃļr fÃļrgrundsfärgen. PÃĨ samma sätt ställer ett Ctrl-klick med pipettverktyget in bakgrundsfärgen istället fÃļr fÃļrgrundsfärgen. @@ -1163,7 +1187,7 @@ Podczas korzystania z narzędzia "ObrÃŗt", przeciąganie wskaÅēnika przy wciśniętym klawiszu Ctrl wymusza obrÃŗt z krokiem co 15 stopni. Arrastar-Ctrl com a ferramenta de RotaçÃŖo irÃĄ restringir a rotaçÃŖo a Ãĸngulos de 15 graus. Arrastar com o Ctrl com a ferramenta de RotaçÃŖo limita a rotaçÃŖo a Ãĸngulos de 15 graus. - Folosirea instrumentului de rotire cu tasta Ctrl apăsată va constrÃĸnge unghiul de rotire ÃŽn incremente de 15 grade. + Ctrl-și-tragere cu instrumentul Rotire va constrÃĸnge unghiul de rotire ÃŽn incremente de 15 grade. ЧŅ‚ОйŅ‹ ĐŋОвĐĩŅ€ĐŊŅƒŅ‚ŅŒ ŅĐģОК иĐģи вŅ‹Đ´ĐĩĐģĐĩĐŊĐŊŅƒŅŽ ОйĐģĐ°ŅŅ‚ŅŒ ĐŊĐ° Ņ‡Đ¸ŅĐģĐž ĐŗŅ€Đ°Đ´ŅƒŅĐžĐ˛, ĐēŅ€Đ°Ņ‚ĐŊĐžĐĩ 15, иŅĐŋĐžĐģŅŒĐˇŅƒĐšŅ‚Đĩ ĐēĐģавиŅˆŅƒ Ctrl Ņ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚ĐžĐŧ иĐŊŅ‚ĐĩŅ€Đ°ĐēŅ‚ивĐŊĐžĐŗĐž вŅ€Đ°Ņ‰ĐĩĐŊиŅ. Ťahanie s Ctrl s nÃĄstrojom Otočenie spôsobí otÃĄÄanie s 15 stupňovÃŊmi krokmi. Ctrl-vleka z orodjem Zasukaj povzroči vrtenje po 15-stopinjskih korakih. @@ -1197,7 +1221,7 @@ Ha bizonyos szkennelt fÊnykÊpek nem elÊggÊ színesek, akkor a színtartomÃĄnyuk bővíthető a Szintek eszkÃļz (Színek→Szintek menÃŧpont) "Automatikus" gombjÃĄval. Ha a színek arÃĄnya nem megfelelő, akkor a GÃļrbÊk eszkÃļzzel (Színek→GÃļrbÊk menÃŧpont) vÊgezhető el a javítÃĄs. Ef einhverjar af skÃļnnuðu myndununum Þínum eru ekki nÃŗgu litríkar, getur ÞÃē auðveldlega lagað litatÃŗnana með hnappinum mertum "SjÃĄlfvirkt" í tÃŗlinu fyrir Birtustig (Litir→Birtustig). Ef einhverjir litir eru rangir, getur ÞÃē lagað ÃžÃĄ með tÃŗlinu sem kallast Ferlar (Litir→Ferlar). Se le tue foto appena digitalizzate appaiono un po' sbiadite, puoi facilmente migliorare l'intervallo tonale con il pulsante "Auto" nello strumento Livelli (Colori->Livelli). Se sono presenti delle dominanti di colore puoi correggerle con lo strumento Curve (Colori->Curve). - ã‚šã‚­ãƒŖãƒŗしたį”ģåƒãŽč‰˛ãŒæ¸›ãŖãĄã‚ƒã†ã¨ããĢは、ãƒŦベãƒĢツãƒŧãƒĢ (色 → ãƒŦベãƒĢ) で"č‡Ē動čĒŋ整"ボã‚ŋãƒŗをäŊŋãŖãĻトãƒŧãƒŗをį°Ąå˜ãĢ攚善することができるよ。ã‚ĢナãƒŧキãƒŖ゚トがあれば、ã‚ĢãƒŧブツãƒŧãƒĢ (色 → トãƒŧãƒŗã‚Ģãƒŧブ) でäŋŽæ­Ŗすることができるよ。 + ã‚šã‚­ãƒŖãƒŗしたį”ģåƒãŽč‰˛ãŒæ¸›ãŖãĄã‚ƒã†ã¨ããĢは、ãƒŦベãƒĢツãƒŧãƒĢ (ã€č‰˛ã€‘ → 【ãƒŦベãƒĢ】) で"č‡Ē動čĒŋ整"ボã‚ŋãƒŗをäŊŋãŖãĻトãƒŧãƒŗをį°Ąå˜ãĢ攚善することができるよ。ã‚ĢナãƒŧキãƒŖ゚トがあれば、ã‚ĢãƒŧブツãƒŧãƒĢ (ã€č‰˛ã€‘ → 【トãƒŧãƒŗã‚Ģãƒŧブ】) でäŋŽæ­Ŗすることができるよ。 ប្រសិន​បើ​​រážŧបថត​ដែល​ស្កេន​មážŊយ​ចំនážŊន​របស់​ážĸ្នក​មើល​ទៅ​គ្មážļន​ពណ៌​គ្រប់គ្រážļន់​ទេ ážĸ្នក​ážĸážļច​បង្កើន​ជážŊរ​របស់ពážŊកវážļ​យ៉ážļង​ងážļយស្រážŊលដោយ​ប៊ážŧតážģង"ស្វ័យ​ប្រវត្តិ" នៅ​ក្នážģង​ឧបករណ៍​កម្រិត (កម្រិត​ពណ៌) ។ ប្រសិន​បើ​មážļន​កážļរ​ចោល​ពណ៌​មážŊយ​ចំនážŊន ážĸ្នក​ážĸážļច​កែ​ពážŊកវážļ​ដោយ​ឧបករណ៍​ខ្សែកោង (ខ្សែកោង​ពណ៌) ។ ėŠ¤ėē”된 ė‚Ŧė§„ė´ ėš™ėš™í•´ ëŗ´ėŧ 때, 레벨 도ęĩŦ(레ė´ė–´->ėƒ‰ėƒ->레벨)ė—ė„œ "ėžë™" 단ėļ”ëĨŧ ė‚ŦėšŠí•˜ëŠ´ ė†ė‰Ŋ게 ėƒ‰ėĄ°ė˜ 폭ė„ í–Ĩėƒ ė‹œí‚Ŧ ėˆ˜ ėžˆėŠĩ니다. ėƒ‰ėƒė´ ëŦ´ė–¸ę°€ ëļˆė•ˆí•˜ë‹¤ëŠ´, ėģ¤ë¸Œ 도ęĩŦ(ėƒ‰ėƒ 도ęĩŦ->ėģ¤ë¸Œ)ëĨŧ ė‚ŦėšŠí•´ė„œ ėˆ˜ė •í•  ėˆ˜ ėžˆėŠĩ니다. Jei kai kurie jÅĢsÅŗ nuskenuoti paveikslėliai atrodo nepakankamai spalvingi, galite lengvai pagerinti jÅŗ toninį diapazoną LygiÅŗ įrankyje paspausdami mygtuką „Automatinis“ (Spalvos→Lygiai). Atspalvius galite koreguoti KreiviÅŗ įrankiu (Spalvos→Kreivės). @@ -1206,9 +1230,11 @@ ā¤¯ā¤Ļā¤ŋ ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤•āĨ‹ ā¤•āĨ‡ā¤šāĨ€ ā¤¸āĨā¤•āĨā¤¯ā¤žā¤¨ ā¤—ā¤°ā¤ŋā¤ā¤•āĨ‹ ā¤ĢāĨ‹ā¤ŸāĨ‹ā¤šā¤°āĨ‚ ā¤°ā¤žā¤ŽāĨā¤°āĨ‹ ā¤°ā¤™ā¤ŋā¤¨ ā¤ĻāĨ‡ā¤–ā¤ŋā¤ā¤¨ ā¤­ā¤¨āĨ‡, ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤¤ā¤š ā¤‰ā¤Ēā¤•ā¤°ā¤Ŗā¤šā¤°āĨ‚ (ā¤¤ā¤š-> ā¤°ā¤™ā¤šā¤°āĨ‚-> ā¤¤ā¤šā¤°āĨ‚) " ā¤Žā¤ž ā¤¸āĨā¤ĩā¤¤ " ā¤Ŧā¤Ÿā¤¨ā¤¸ā¤ā¤—āĨˆ ā¤¤ā¤ŋā¤¨ā¤ŋā¤šā¤°āĨ‚ā¤•āĨ‹ ā¤ŸāĨ‹ā¤¨ā¤˛ ā¤Ļā¤žā¤¯ā¤°ā¤ž ā¤¸ā¤œā¤ŋā¤˛āĨˆ ā¤Ēā¤°ā¤ŋā¤Žā¤žā¤°āĨā¤œā¤¨ ā¤—ā¤°āĨā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ ā¤¯ā¤Ļā¤ŋ ā¤•āĨā¤¨āĨˆ ā¤°ā¤™ā¤•āĨ‹ ā¤āĨā¤•ā¤žā¤ĩ ā¤­ā¤, ā¤¤ā¤Ēā¤žā¤ˆā¤ā¤˛āĨ‡ ā¤Ŧā¤•āĨā¤° ā¤‰ā¤Ēā¤•ā¤°ā¤Ŗ (ā¤¤ā¤š->ā¤°ā¤™ā¤šā¤°āĨ‚->ā¤Ŧā¤•āĨā¤°ā¤šā¤°āĨ‚) ā¤˛āĨ‡ ā¤¸ā¤šāĨā¤¯ā¤žā¤‰ā¤¨ ā¤¸ā¤•āĨā¤¨āĨā¤šāĨā¤¨āĨā¤›āĨ¤ Als sommige van uw gescande foto's er niet fleurig genoeg uitzien, kunt u hun kleurtoonbereik gemakkelijk verbeteren met de knop "Automatisch" in het gereedschap Niveaus (Kleuren→Niveau's). Als er kleurzwemen in de foto zitten, kunt u deze verwijderen met het gereedschap Curves (Kleuren→Curves). Den enklaste mÃĨten ÃĨ forbetra blasse fargar i eit bilete pÃĨ, er ÃĨ bruke "Auto"-knappen i nivÃĨverktøyet (Lag->Fargar->NivÃĨ). Uheldige fargestikk kan korrigerast med kurveverktøyet (Lag->Fargar->Kurver). + ā¨œāŠ‡ ā¨¤āŠā¨šā¨žā¨ĄāŠ€ā¨†ā¨‚ ā¨¸ā¨•āŠˆā¨¨ ā¨•āŠ€ā¨¤āŠ€ā¨†ā¨‚ ā¨¤ā¨¸ā¨ĩāŠ€ā¨°ā¨žā¨‚ ā¨ āŠ€ā¨• ā¨¤ā¨°ā¨žā¨‚ ā¨°āŠ°ā¨—ā¨Ļā¨žā¨° ā¨¨ā¨šāŠ€ā¨‚ ā¨Ļā¨ŋā¨¸ā¨ĻāŠ€ā¨†ā¨‚,ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨˛āŠˆā¨ĩā¨˛ ā¨ŸāŠ‚ā¨˛ (ā¨°āŠ°ā¨—→ā¨˛āŠˆā¨ĩā¨˛) ā¨ĩā¨ŋāŠąā¨š "ā¨†ā¨ŸāŠ‹" ā¨¸ā¨ĩā¨ŋāŠąā¨š ā¨¨ā¨žā¨˛ ā¨“ā¨šā¨¨ā¨žā¨‚ ā¨ĻāŠ‡ ā¨°āŠ°ā¨— ā¨ĻāŠ€ ā¨—ā¨šā¨ŋā¨°ā¨žā¨ˆ ā¨¨āŠ‚āŠ° ā¨¸āŠā¨§ā¨žā¨° ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ ā¨œāŠ‡ ā¨‰ā¨ĨāŠ‡ ā¨•āŠ‹ā¨ˆ ā¨°āŠ°ā¨— ā¨Ŧā¨Ŗā¨Ļā¨ž ā¨šāŠˆ,ā¨¤āŠā¨¸āŠ€ā¨‚ ā¨‰ā¨¸ā¨¨āŠ‚āŠ° ā¨•ā¨°ā¨ĩ ā¨ŸāŠ‚ā¨˛ (ā¨°āŠ°ā¨—→ā¨•ā¨°ā¨ĩ) ā¨¨ā¨žā¨˛ ā¨ āŠ€ā¨• ā¨•ā¨° ā¨¸ā¨•ā¨ĻāŠ‡ ā¨šāŠ‹āĨ¤ Jeśli zeskanowane zdjęcia są mało kolorowe, moÅŧna poprawić ich kolorystykę korzystając z narzędzia "Poziomy..." ("Warstwa>Kolory>Poziomy..."), klikająć przycisk "Automatycznie". Zniekształcenia kolorÃŗw (ang. color cast) moÅŧna skorygować za pomocą narzędzia "Krzywe" ("Warstwa>Kolory>Krzywe..."). Se algumas das suas fotografias assadas no scanner nÃŖo tiverem cor suficiente, pode facilmente melhorar o seu intervalo de cores com o botÃŖo "Auto" na ferramenta de Níveis (Cores→Níveis). Se existirem quaisquer esbatimentos de cor, poderÃĄ corrigi-los com a ferramenta de Curvas (Cores→Curvas). Se algumas das suas fotos digitalizadas nÃŖo parecem coloridas o suficiente, vocÃĒ pode facilmente melhorar suas tonalidades com o botÃŖo "AutomÃĄtico" na ferramenta de Níveis (Cores→Níveis). Se existirem vazamentos de cores, vocÃĒ pode corrigi-los com a ferramenta de Curvas (Cores→Curvas). + Dacă unele dintre fotografiile scanate nu arată suficient de colorate, puteți să ÃŽmbunătățiți cu ușurință gama lor tonală cu butonul „Automat” ÃŽn instrumentul Niveluri (Culori → Niveluri). Dacă sunt prezente dominante de culoare, puteți să le corectați cu instrumentul Curbe (Culori → Curbe). ЕŅĐģи Ņ†Đ˛ĐĩŅ‚Đ° ĐžŅ‚ŅĐēĐ°ĐŊиŅ€ĐžĐ˛Đ°ĐŊĐŊŅ‹Ņ… Ņ„ĐžŅ‚ĐžĐŗŅ€Đ°Ņ„иК вŅ‹ĐŗĐģŅĐ´ŅŅ‚ ĐŊĐĩĐ´ĐžŅŅ‚Đ°Ņ‚ĐžŅ‡ĐŊĐž ŅĐžŅ‡ĐŊŅ‹Đŧи, ŅŅ‚Đž ĐŧĐžĐļĐŊĐž иŅĐŋŅ€Đ°Đ˛Đ¸Ņ‚ŅŒ ĐŋŅ€Đ¸ ĐŋĐžĐŧĐžŅ‰Đ¸ ĐēĐŊĐžĐŋĐēи ÂĢАвŅ‚ĐžÂģ в диаĐģĐžĐŗĐĩ ÂĢĐŖŅ€ĐžĐ˛ĐŊиÂģ (ÂĢĐĻвĐĩŅ‚→ĐŖŅ€ĐžĐ˛ĐŊи...Âģ). ОŅ‚Ņ‚ĐĩĐŊĐēи Ņ†Đ˛ĐĩŅ‚Đ° ĐŧĐžĐļĐŊĐž Ņ€ĐĩĐ´Đ°ĐēŅ‚иŅ€ĐžĐ˛Đ°Ņ‚ŅŒ ĐŋŅ€Đ¸ ĐŋĐžĐŧĐžŅ‰Đ¸ иĐŊŅŅ‚Ņ€ŅƒĐŧĐĩĐŊŅ‚Đ° ÂĢКŅ€Đ¸Đ˛Ņ‹ĐĩÂģ (ÂĢĐĻвĐĩŅ‚→КŅ€Đ¸Đ˛Ņ‹Đĩ...Âģ). Če nekatere skenirane slike niso videti dovolj barvite, lahko njihov tonski obseg enostavno spremenite z gumbom "Samodejno" v orodju Ravni (Barve→Ravni). Če so barve na sliki nepravilno prikazane, lahko to popravite z orodjem Krivulje (Barve→Krivulje). Om en del av dina inlästa bilder inte ser ut att vara tillräckligt färggranna kan du enkelt fÃļrbättra deras färgtonsintervall med knappen "Auto" i nivÃĨverktyget (Färger→NivÃĨer). Om det finns nÃĨgra färgskiftningar kan du korrigera dem med kurvverktyget (Färger→Kurvor). diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/debian/changelog /tmp/h4xbGc63vZ/gimp-2.6.1/debian/changelog --- gimp-2.6.0/debian/changelog 2008-10-23 12:12:11.000000000 +0100 +++ gimp-2.6.1/debian/changelog 2008-10-23 12:12:13.000000000 +0100 @@ -1,3 +1,50 @@ +gimp (2.6.1-1~ppa2) hardy; urgency=low + + * Bumping version number to use .tar.gz instead of .tar.bz2 upload + + -- David Fraser Thu, 23 Oct 2008 11:22:07 +0200 + +gimp (2.6.1-1~ppa1) hardy; urgency=low + + * Backported to Hardy + + -- David Fraser Fri, 10 Oct 2008 10:33:46 +0200 + +gimp (2.6.1-1~getdeb1) intrepid; urgency=low + + Overview of Changes from GIMP 2.6.0 to GIMP 2.6.1 + ================================================= + + * Bugs fixed: + 555587 – PSD file crashes PSD plug-in + 555222 – PSD Load Plugin: unsupported compression mode + 555362 – gimp-remote is not working properly + 555280 – some gif files will not be open + 554890 – JPEG Save Options Dialog does not remember + 554966 – Gimp crashes creating a new image using a + template + 554785 – Compile failure on uri-backend-libcurl + 554646 – Opening Help crashes GIMP with lqr-plugin + installed + 553534 – centering issues after image scaling and + setting zoom + 554898 – Compile failure on uri-backend-wget.c + + * Updated translations: + Belarusian (be) + Catalan (ca) + Finnish (fi) + French (fr) + Japanese (ja) + Macedonian (mk) + Punjab (pa) + Brazilian Portuguese (pt_BR) + Romanian (ro) + Slovenian (sl) + Swedish (sv) + + -- Christoph Korn Thu, 09 Oct 2008 11:55:20 +0200 + gimp (2.6.0-1~ppa2) hardy; urgency=low * Backported to Hardy diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/debian/control /tmp/h4xbGc63vZ/gimp-2.6.1/debian/control --- gimp-2.6.0/debian/control 2008-10-23 12:12:11.000000000 +0100 +++ gimp-2.6.1/debian/control 2008-10-23 12:12:13.000000000 +0100 @@ -18,7 +18,7 @@ libgnomeui-dev (>= 2.10.0), libcurl4-gnutls-dev, libasound2-dev (>= 1.0.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libhal-dev (>= 0.5.7), libdbus-glib-1-dev (>= 0.70), - liblcms1-dev | liblcms-dev, libbabl-0.0-0-dev, libgegl-0.0-dev, xsltproc + liblcms1-dev | liblcms-dev, libbabl-0.0-0-dev, libgegl-0.0-dev #Build-Conflicts: libgimp2.0 XS-Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/gimp/ XS-Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/gimp/ @@ -50,26 +50,6 @@ * Sphere: Generate simple spheres with drop shadows * Whirl and Pinch: Distorts an image by whirling and pinching -Package: gimp-gnomevfs -Architecture: any -Section: graphics -Depends: gimp (= ${binary:Version}), libgnomevfs2-extra, ${shlibs:Depends} -Conflicts: gimp-libcurl, gimp (<= 2.3.12-2) -Replaces: gimp-libcurl, gimp (<= 2.3.12-2) -Description: GNOME-VFS URI plugin for GIMP - This package includes a plugin for GIMP which will open URIs (e.g. - ftp:, http:, smb:, and sftp:) using protocol handlers from GNOME-VFS. - -Package: gimp-libcurl -Architecture: any -Section: graphics -Depends: gimp (= ${binary:Version}), ${shlibs:Depends} -Conflicts: gimp-gnomevfs, gimp (<= 2.3.12-2) -Replaces: gimp-gnomevfs, gimp (<= 2.3.12-2) -Description: libcurl URI plugin for GIMP - This package includes a plugin for GIMP which will open URIs (e.g. - ftp: and http:) using protocol handlers from libcurl. - Package: gimp Architecture: any Section: graphics diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/debian/gimp-gnomevfs.dirs /tmp/h4xbGc63vZ/gimp-2.6.1/debian/gimp-gnomevfs.dirs --- gimp-2.6.0/debian/gimp-gnomevfs.dirs 2008-10-23 12:12:11.000000000 +0100 +++ gimp-2.6.1/debian/gimp-gnomevfs.dirs 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -usr/lib/gimp/2.0/plug-ins diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/debian/gimp-libcurl.dirs /tmp/h4xbGc63vZ/gimp-2.6.1/debian/gimp-libcurl.dirs --- gimp-2.6.0/debian/gimp-libcurl.dirs 2008-10-23 12:12:11.000000000 +0100 +++ gimp-2.6.1/debian/gimp-libcurl.dirs 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -usr/lib/gimp/2.0/plug-ins diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/debian/patches/menu.patch /tmp/h4xbGc63vZ/gimp-2.6.1/debian/patches/menu.patch --- gimp-2.6.0/debian/patches/menu.patch 2008-10-23 12:12:11.000000000 +0100 +++ gimp-2.6.1/debian/patches/menu.patch 1970-01-01 01:00:00.000000000 +0100 @@ -1,1326 +0,0 @@ -diff -Nur gimp-2.6.0.orig/menus/image-menu.xml gimp-2.6.0/menus/image-menu.xml ---- gimp-2.6.0.orig/menus/image-menu.xml 2008-09-29 19:11:08.000000000 +0200 -+++ gimp-2.6.0/menus/image-menu.xml 1970-01-01 01:00:00.000000000 +0100 -@@ -1,1322 +0,0 @@ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/debian/rules /tmp/h4xbGc63vZ/gimp-2.6.1/debian/rules --- gimp-2.6.0/debian/rules 2008-10-23 12:12:11.000000000 +0100 +++ gimp-2.6.1/debian/rules 2008-10-23 12:12:13.000000000 +0100 @@ -63,37 +63,11 @@ # postrm by dh_python find $(CURDIR)/debian/tmp -name "*.py[co]" -exec rm '{}' ';' -# rm debian/tmp/usr/lib/gimp/2.0/plug-ins/uri rm debian/tmp/usr/lib/*.la dh_movefiles dh_icons -binary-install/gimp-gnomevfs:: - # Build gnomevfs URI plugin -# rm $(DEB_BUILDDIR)/plug-ins/uri/uri.o - -# cd $(DEB_BUILDDIR)/plug-ins/uri && make - -# cp $(DEB_BUILDDIR)/plug-ins/uri/.libs/uri \ -# $(CURDIR)/debian/gimp-gnomevfs/usr/lib/gimp/2.0/plug-ins/uri - -binary-install/gimp-libcurl:: - # Build libcurl URI plugin -# rm $(DEB_BUILDDIR)/plug-ins/uri/uri.o - -# sed -e 's/\(backend_sources.*gnome\)/#\1/' \ -# -e 's/#\(backend_sources.*libcurl\)/\1/' \ -# -e 's/\(am__objects.*gnome\)/#\1/' \ -# -e 's/#\(am__objects.*libcurl\)/\1/' \ -# -e 's/$$(URI_GNOME_VFS/$$(URI_LIBCURL/g' \ -# $(DEB_BUILDDIR)/plug-ins/uri/Makefile > \ -# $(DEB_BUILDDIR)/plug-ins/uri/Makefile.libcurl -# cd $(DEB_BUILDDIR)/plug-ins/uri && make -f Makefile.libcurl - -# cp $(DEB_BUILDDIR)/plug-ins/uri/.libs/uri \ -# $(CURDIR)/debian/gimp-libcurl/usr/lib/gimp/2.0/plug-ins/uri - binary-install/gimp-python:: dh_pysupport -pgimp-python /usr/lib/gimp/2.0/python diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpAspectPreview.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpAspectPreview.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpAspectPreview.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpAspectPreview.html 2008-10-08 23:32:59.000000000 +0100 @@ -55,20 +55,38 @@

Synopsis

                     GimpAspectPreview;
-GtkWidget*          gimp_aspect_preview_new             (GimpDrawable *drawable,
-                                                         gboolean *toggle);
+GtkWidget*          gimp_aspect_preview_new             (GimpDrawable *drawable,
+                                                         gboolean *toggle);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpPreview
@@ -79,12 +97,16 @@
 

Implemented Interfaces

GimpAspectPreview implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "drawable"                 gpointer              : Read / Write / Construct Only
+  "drawable"                 gpointer              : Read / Write / Construct Only
 
@@ -105,8 +127,12 @@

gimp_aspect_preview_new ()

-
GtkWidget*          gimp_aspect_preview_new             (GimpDrawable *drawable,
-                                                         gboolean *toggle);
+
GtkWidget*          gimp_aspect_preview_new             (GimpDrawable *drawable,
+                                                         gboolean *toggle);

Creates a new GimpAspectPreview widget for drawable. See also gimp_drawable_preview_new(). @@ -149,7 +175,9 @@

Property Details

The "drawable" property

-
  "drawable"                 gpointer              : Read / Write / Construct Only
+
  "drawable"                 gpointer              : Read / Write / Construct Only

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpBrushSelectButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpBrushSelectButton.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpBrushSelectButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpBrushSelectButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,32 +57,68 @@

Synopsis

                     GimpBrushSelectButton;
-GtkWidget*          gimp_brush_select_button_new        (const gchar *title,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+GtkWidget*          gimp_brush_select_button_new        (const gchar *title,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);
-const  gchar*       gimp_brush_select_button_get_brush  (GimpBrushSelectButton *button,
-                                                         gdouble *opacity,
-                                                         gint *spacing,
+const  gchar*       gimp_brush_select_button_get_brush  (GimpBrushSelectButton *button,
+                                                         gdouble *opacity,
+                                                         gint *spacing,
                                                          GimpLayerModeEffects *paint_mode);
 void                gimp_brush_select_button_set_brush  (GimpBrushSelectButton *button,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpSelectButton
                                              +----GimpBrushSelectButton
 
@@ -91,16 +127,28 @@

Implemented Interfaces

GimpBrushSelectButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "brush-name"               gchar*                : Read / Write
-  "brush-opacity"            gdouble               : Read / Write
-  "brush-paint-mode"         gint                  : Read / Write
-  "brush-spacing"            gint                  : Read / Write
-  "title"                    gchar*                : Read / Write / Construct Only
+  "brush-name"               gchar*                : Read / Write
+  "brush-opacity"            gdouble               : Read / Write
+  "brush-paint-mode"         gint                  : Read / Write
+  "brush-spacing"            gint                  : Read / Write
+  "title"                    gchar*                : Read / Write / Construct Only
 
@@ -127,16 +175,26 @@

gimp_brush_select_button_new ()

-
GtkWidget*          gimp_brush_select_button_new        (const gchar *title,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
GtkWidget*          gimp_brush_select_button_new        (const gchar *title,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);

-Creates a new GtkWidget that completely controls the selection of -a GimpBrush. This widget is suitable for placement in a table in +Creates a new GtkWidget that completely controls the selection of +a GimpBrush. This widget is suitable for placement in a table in a plug-in dialog.

@@ -146,13 +204,17 @@

title :

- Title of the dialog to use or NULL means to use the default + Title of the dialog to use or NULL means to use the default title.

brush_name :

- Initial brush name or NULL to use current selection. + Initial brush name or NULL to use current selection. @@ -172,7 +234,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -184,9 +248,15 @@

gimp_brush_select_button_get_brush ()

-
const  gchar*       gimp_brush_select_button_get_brush  (GimpBrushSelectButton *button,
-                                                         gdouble *opacity,
-                                                         gint *spacing,
+
const  gchar*       gimp_brush_select_button_get_brush  (GimpBrushSelectButton *button,
+                                                         gdouble *opacity,
+                                                         gint *spacing,
                                                          GimpLayerModeEffects *paint_mode);

Retrieves the properties of currently selected brush.

@@ -231,9 +301,15 @@

gimp_brush_select_button_set_brush ()

void                gimp_brush_select_button_set_brush  (GimpBrushSelectButton *button,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);

Sets the current brush and other values for the brush select @@ -251,7 +327,9 @@

brush_name :

- Brush name to set; NULL means no change. + Brush name to set; NULL means no change. @@ -279,7 +357,9 @@

Property Details

The "brush-name" property

-
  "brush-name"               gchar*                : Read / Write
+
  "brush-name"               gchar*                : Read / Write

The name of the currently selected brush.

@@ -292,7 +372,9 @@


The "brush-opacity" property

-
  "brush-opacity"            gdouble               : Read / Write
+
  "brush-opacity"            gdouble               : Read / Write

The opacity of the currently selected brush.

Allowed values: [-1,100]

Default value: -1

@@ -300,7 +382,9 @@

The "brush-paint-mode" property

-
  "brush-paint-mode"         gint                  : Read / Write
+
  "brush-paint-mode"         gint                  : Read / Write

The paint mode of the currently selected brush.

Allowed values: [-1,22]

Default value: -1

@@ -308,7 +392,9 @@

The "brush-spacing" property

-
  "brush-spacing"            gint                  : Read / Write
+
  "brush-spacing"            gint                  : Read / Write

The spacing of the currently selected brush.

Allowed values: [-2147483647,1000]

Default value: -1

@@ -316,7 +402,9 @@

The "title" property

-
  "title"                    gchar*                : Read / Write / Construct Only
+
  "title"                    gchar*                : Read / Write / Construct Only

The title to be used for the brush selection popup dialog.

@@ -332,15 +420,33 @@

The "brush-set" signal

void                user_function                      (GimpBrushSelectButton *widget,
-                                                        gchar                 *brush_name,
-                                                        gdouble                opacity,
-                                                        gint                   spacing,
-                                                        gint                   paint_mode,
-                                                        gint                   width,
-                                                        gint                   height,
-                                                        gpointer               mask_data,
-                                                        gboolean               dialog_closing,
-                                                        gpointer               user_data)           : Run First
+ gchar *brush_name, + gdouble opacity, + gint spacing, + gint paint_mode, + gint width, + gint height, + gpointer mask_data, + gboolean dialog_closing, + gpointer user_data) : Run First

The ::brush-set signal is emitted when the user selects a brush.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpDrawablePreview.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpDrawablePreview.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpDrawablePreview.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpDrawablePreview.html 2008-10-08 23:32:59.000000000 +0100 @@ -55,8 +55,12 @@

Synopsis

                     GimpDrawablePreview;
-GtkWidget*          gimp_drawable_preview_new           (GimpDrawable *drawable,
-                                                         gboolean *toggle);
+GtkWidget*          gimp_drawable_preview_new           (GimpDrawable *drawable,
+                                                         gboolean *toggle);
 GimpDrawable*       gimp_drawable_preview_get_drawable  (GimpDrawablePreview *preview);
 void                gimp_drawable_preview_draw_region   (GimpDrawablePreview *preview,
                                                          const GimpPixelRgn *region);
@@ -65,13 +69,27 @@
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpPreview
@@ -85,12 +103,16 @@
 

Implemented Interfaces

GimpDrawablePreview implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "drawable"                 gpointer              : Read / Write / Construct Only
+  "drawable"                 gpointer              : Read / Write / Construct Only
 
@@ -111,8 +133,12 @@

gimp_drawable_preview_new ()

-
GtkWidget*          gimp_drawable_preview_new           (GimpDrawable *drawable,
-                                                         gboolean *toggle);
+
GtkWidget*          gimp_drawable_preview_new           (GimpDrawable *drawable,
+                                                         gboolean *toggle);

Creates a new GimpDrawablePreview widget for drawable.

@@ -210,7 +236,9 @@

Property Details

The "drawable" property

-
  "drawable"                 gpointer              : Read / Write / Construct Only
+
  "drawable"                 gpointer              : Read / Write / Construct Only

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpFontSelectButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpFontSelectButton.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpFontSelectButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpFontSelectButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,23 +57,47 @@

Synopsis

                     GimpFontSelectButton;
-GtkWidget*          gimp_font_select_button_new         (const gchar *title,
-                                                         const gchar *font_name);
-const gchar*        gimp_font_select_button_get_font    (GimpFontSelectButton *button);
+GtkWidget*          gimp_font_select_button_new         (const gchar *title,
+                                                         const gchar *font_name);
+const gchar*        gimp_font_select_button_get_font    (GimpFontSelectButton *button);
 void                gimp_font_select_button_set_font    (GimpFontSelectButton *button,
-                                                         const gchar *font_name);
+                                                         const gchar *font_name);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpSelectButton
                                              +----GimpFontSelectButton
 
@@ -82,13 +106,19 @@

Implemented Interfaces

GimpFontSelectButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "font-name"                gchar*                : Read / Write
-  "title"                    gchar*                : Read / Write / Construct Only
+  "font-name"                gchar*                : Read / Write
+  "title"                    gchar*                : Read / Write / Construct Only
 
@@ -115,10 +145,18 @@

gimp_font_select_button_new ()

-
GtkWidget*          gimp_font_select_button_new         (const gchar *title,
-                                                         const gchar *font_name);
-

-Creates a new GtkWidget that completely controls the selection of +

GtkWidget*          gimp_font_select_button_new         (const gchar *title,
+                                                         const gchar *font_name);
+

+Creates a new GtkWidget that completely controls the selection of a font. This widget is suitable for placement in a table in a plug-in dialog.

@@ -129,7 +167,9 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title. @@ -139,7 +179,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -151,7 +193,9 @@

gimp_font_select_button_get_font ()

-
const gchar*        gimp_font_select_button_get_font    (GimpFontSelectButton *button);
+
const gchar*        gimp_font_select_button_get_font    (GimpFontSelectButton *button);

Retrieves the name of currently selected font.

@@ -180,7 +224,9 @@

gimp_font_select_button_set_font ()

void                gimp_font_select_button_set_font    (GimpFontSelectButton *button,
-                                                         const gchar *font_name);
+ const gchar *font_name);

Sets the current font for the font select button.

@@ -196,7 +242,9 @@

font_name :

- Font name to set; NULL means no change. + Font name to set; NULL means no change. @@ -209,7 +257,9 @@

Property Details

The "font-name" property

-
  "font-name"                gchar*                : Read / Write
+
  "font-name"                gchar*                : Read / Write

The name of the currently selected font.

@@ -222,7 +272,9 @@


The "title" property

-
  "title"                    gchar*                : Read / Write / Construct Only
+
  "title"                    gchar*                : Read / Write / Construct Only

The title to be used for the font selection popup dialog.

@@ -238,9 +290,15 @@

The "font-set" signal

void                user_function                      (GimpFontSelectButton *widget,
-                                                        gchar                *font_name,
-                                                        gboolean              dialog_closing,
-                                                        gpointer              user_data)           : Run First
+ gchar *font_name, + gboolean dialog_closing, + gpointer user_data) : Run First

The ::font-set signal is emitted when the user selects a font.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpGradientSelectButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpGradientSelectButton.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpGradientSelectButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpGradientSelectButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,25 +57,49 @@

Synopsis

                     GimpGradientSelectButton;
-GtkWidget*          gimp_gradient_select_button_new     (const gchar *title,
-                                                         const gchar *gradient_name);
-const gchar*        gimp_gradient_select_button_get_gradient
+GtkWidget*          gimp_gradient_select_button_new     (const gchar *title,
+                                                         const gchar *gradient_name);
+const gchar*        gimp_gradient_select_button_get_gradient
                                                         (GimpGradientSelectButton *button);
 void                gimp_gradient_select_button_set_gradient
                                                         (GimpGradientSelectButton *button,
-                                                         const gchar *gradient_name);
+                                                         const gchar *gradient_name);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpSelectButton
                                              +----GimpGradientSelectButton
 
@@ -84,13 +108,19 @@

Implemented Interfaces

GimpGradientSelectButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "gradient-name"            gchar*                : Read / Write
-  "title"                    gchar*                : Read / Write / Construct Only
+  "gradient-name"            gchar*                : Read / Write
+  "title"                    gchar*                : Read / Write / Construct Only
 
@@ -117,10 +147,18 @@

gimp_gradient_select_button_new ()

-
GtkWidget*          gimp_gradient_select_button_new     (const gchar *title,
-                                                         const gchar *gradient_name);
-

-Creates a new GtkWidget that completely controls the selection of +

GtkWidget*          gimp_gradient_select_button_new     (const gchar *title,
+                                                         const gchar *gradient_name);
+

+Creates a new GtkWidget that completely controls the selection of a gradient. This widget is suitable for placement in a table in a plug-in dialog.

@@ -131,7 +169,9 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title. @@ -141,7 +181,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -153,7 +195,9 @@

gimp_gradient_select_button_get_gradient ()

-
const gchar*        gimp_gradient_select_button_get_gradient
+
const gchar*        gimp_gradient_select_button_get_gradient
                                                         (GimpGradientSelectButton *button);

Retrieves the name of currently selected gradient.

@@ -184,7 +228,9 @@

gimp_gradient_select_button_set_gradient ()

void                gimp_gradient_select_button_set_gradient
                                                         (GimpGradientSelectButton *button,
-                                                         const gchar *gradient_name);
+ const gchar *gradient_name);

Sets the current gradient for the gradient select button.

@@ -213,7 +259,9 @@

Property Details

The "gradient-name" property

-
  "gradient-name"            gchar*                : Read / Write
+
  "gradient-name"            gchar*                : Read / Write

The name of the currently selected gradient.

@@ -226,7 +274,9 @@


The "title" property

-
  "title"                    gchar*                : Read / Write / Construct Only
+
  "title"                    gchar*                : Read / Write / Construct Only

The title to be used for the gradient selection popup dialog.

@@ -242,11 +292,21 @@

The "gradient-set" signal

void                user_function                      (GimpGradientSelectButton *widget,
-                                                        gchar                    *gradient_name,
-                                                        gint                      width,
-                                                        gpointer                  grad_data,
-                                                        gboolean                  dialog_closing,
-                                                        gpointer                  user_data)           : Run First
+ gchar *gradient_name, + gint width, + gpointer grad_data, + gboolean dialog_closing, + gpointer user_data) : Run First

The ::gradient-set signal is emitted when the user selects a gradient.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpImageComboBox.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpImageComboBox.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpImageComboBox.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpImageComboBox.html 2008-10-08 23:32:59.000000000 +0100 @@ -53,22 +53,46 @@

Synopsis

                     GimpImageComboBox;
-gboolean            (*GimpImageConstraintFunc)          (gint32 image_id,
-                                                         gpointer data);
-GtkWidget*          gimp_image_combo_box_new            (GimpImageConstraintFunc constraint,
-                                                         gpointer data);
+gboolean            (*GimpImageConstraintFunc)          (gint32 image_id,
+                                                         gpointer data);
+GtkWidget*          gimp_image_combo_box_new            (GimpImageConstraintFunc constraint,
+                                                         gpointer data);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
@@ -79,7 +103,13 @@
 

Implemented Interfaces

GimpImageComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

Description

@@ -99,8 +129,14 @@

GimpImageConstraintFunc ()

-
gboolean            (*GimpImageConstraintFunc)          (gint32 image_id,
-                                                         gpointer data);
+
gboolean            (*GimpImageConstraintFunc)          (gint32 image_id,
+                                                         gpointer data);

@@ -130,14 +166,20 @@

gimp_image_combo_box_new ()

-
GtkWidget*          gimp_image_combo_box_new            (GimpImageConstraintFunc constraint,
-                                                         gpointer data);
+
GtkWidget*          gimp_image_combo_box_new            (GimpImageConstraintFunc constraint,
+                                                         gpointer data);

Creates a new GimpIntComboBox filled with all currently opened images. If a constraint function is specified, it is called for -each image and only if the function returns TRUE, the image is +each image and only if the function returns TRUE, the image is added to the combobox.

@@ -157,7 +199,9 @@

constraint :

- a GimpImageConstraintFunc or NULL + a GimpImageConstraintFunc or NULL diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpPaletteSelectButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpPaletteSelectButton.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpPaletteSelectButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpPaletteSelectButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,25 +57,49 @@

Synopsis

                     GimpPaletteSelectButton;
-GtkWidget*          gimp_palette_select_button_new      (const gchar *title,
-                                                         const gchar *palette_name);
-const gchar*        gimp_palette_select_button_get_palette
+GtkWidget*          gimp_palette_select_button_new      (const gchar *title,
+                                                         const gchar *palette_name);
+const gchar*        gimp_palette_select_button_get_palette
                                                         (GimpPaletteSelectButton *button);
 void                gimp_palette_select_button_set_palette
                                                         (GimpPaletteSelectButton *button,
-                                                         const gchar *palette_name);
+                                                         const gchar *palette_name);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpSelectButton
                                              +----GimpPaletteSelectButton
 
@@ -84,13 +108,19 @@

Implemented Interfaces

GimpPaletteSelectButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "palette-name"             gchar*                : Read / Write
-  "title"                    gchar*                : Read / Write / Construct Only
+  "palette-name"             gchar*                : Read / Write
+  "title"                    gchar*                : Read / Write / Construct Only
 
@@ -117,10 +147,18 @@

gimp_palette_select_button_new ()

-
GtkWidget*          gimp_palette_select_button_new      (const gchar *title,
-                                                         const gchar *palette_name);
-

-Creates a new GtkWidget that completely controls the selection of +

GtkWidget*          gimp_palette_select_button_new      (const gchar *title,
+                                                         const gchar *palette_name);
+

+Creates a new GtkWidget that completely controls the selection of a palette. This widget is suitable for placement in a table in a plug-in dialog.

@@ -131,7 +169,9 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title. @@ -141,7 +181,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -153,7 +195,9 @@

gimp_palette_select_button_get_palette ()

-
const gchar*        gimp_palette_select_button_get_palette
+
const gchar*        gimp_palette_select_button_get_palette
                                                         (GimpPaletteSelectButton *button);

Retrieves the name of currently selected palette.

@@ -184,7 +228,9 @@

gimp_palette_select_button_set_palette ()

void                gimp_palette_select_button_set_palette
                                                         (GimpPaletteSelectButton *button,
-                                                         const gchar *palette_name);
+ const gchar *palette_name);

Sets the current palette for the palette select button.

@@ -200,7 +246,9 @@

palette_name :

- Palette name to set; NULL means no change. + Palette name to set; NULL means no change. @@ -213,7 +261,9 @@

Property Details

The "palette-name" property

-
  "palette-name"             gchar*                : Read / Write
+
  "palette-name"             gchar*                : Read / Write

The name of the currently selected palette.

@@ -226,7 +276,9 @@


The "title" property

-
  "title"                    gchar*                : Read / Write / Construct Only
+
  "title"                    gchar*                : Read / Write / Construct Only

The title to be used for the palette selection popup dialog.

@@ -242,9 +294,15 @@

The "palette-set" signal

void                user_function                      (GimpPaletteSelectButton *widget,
-                                                        gchar                   *palette_name,
-                                                        gboolean                 dialog_closing,
-                                                        gpointer                 user_data)           : Run First
+ gchar *palette_name, + gboolean dialog_closing, + gpointer user_data) : Run First

The ::palette-set signal is emitted when the user selects a palette.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpPatternSelectButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpPatternSelectButton.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpPatternSelectButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpPatternSelectButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,25 +57,49 @@

Synopsis

                     GimpPatternSelectButton;
-GtkWidget*          gimp_pattern_select_button_new      (const gchar *title,
-                                                         const gchar *pattern_name);
-const gchar*        gimp_pattern_select_button_get_pattern
+GtkWidget*          gimp_pattern_select_button_new      (const gchar *title,
+                                                         const gchar *pattern_name);
+const gchar*        gimp_pattern_select_button_get_pattern
                                                         (GimpPatternSelectButton *button);
 void                gimp_pattern_select_button_set_pattern
                                                         (GimpPatternSelectButton *button,
-                                                         const gchar *pattern_name);
+                                                         const gchar *pattern_name);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpSelectButton
                                              +----GimpPatternSelectButton
 
@@ -84,13 +108,19 @@

Implemented Interfaces

GimpPatternSelectButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "pattern-name"             gchar*                : Read / Write
-  "title"                    gchar*                : Read / Write / Construct Only
+  "pattern-name"             gchar*                : Read / Write
+  "title"                    gchar*                : Read / Write / Construct Only
 
@@ -117,10 +147,18 @@

gimp_pattern_select_button_new ()

-
GtkWidget*          gimp_pattern_select_button_new      (const gchar *title,
-                                                         const gchar *pattern_name);
-

-Creates a new GtkWidget that completely controls the selection of +

GtkWidget*          gimp_pattern_select_button_new      (const gchar *title,
+                                                         const gchar *pattern_name);
+

+Creates a new GtkWidget that completely controls the selection of a pattern. This widget is suitable for placement in a table in a plug-in dialog.

@@ -131,17 +169,23 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title.

pattern_name :

- Initial pattern name or NULL to use current selection. + Initial pattern name or NULL to use current selection.

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -153,7 +197,9 @@

gimp_pattern_select_button_get_pattern ()

-
const gchar*        gimp_pattern_select_button_get_pattern
+
const gchar*        gimp_pattern_select_button_get_pattern
                                                         (GimpPatternSelectButton *button);

Retrieves the name of currently selected pattern.

@@ -184,7 +230,9 @@

gimp_pattern_select_button_set_pattern ()

void                gimp_pattern_select_button_set_pattern
                                                         (GimpPatternSelectButton *button,
-                                                         const gchar *pattern_name);
+ const gchar *pattern_name);

Sets the current pattern for the pattern select button.

@@ -200,7 +248,9 @@

pattern_name :

- Pattern name to set; NULL means no change. + Pattern name to set; NULL means no change. @@ -213,7 +263,9 @@

Property Details

The "pattern-name" property

-
  "pattern-name"             gchar*                : Read / Write
+
  "pattern-name"             gchar*                : Read / Write

The name of the currently selected pattern.

@@ -226,7 +278,9 @@


The "title" property

-
  "title"                    gchar*                : Read / Write / Construct Only
+
  "title"                    gchar*                : Read / Write / Construct Only

The title to be used for the pattern selection popup dialog.

@@ -242,13 +296,27 @@

The "pattern-set" signal

void                user_function                      (GimpPatternSelectButton *widget,
-                                                        gchar                   *pattern_name,
-                                                        gint                     width,
-                                                        gint                     height,
-                                                        gint                     bpp,
-                                                        gpointer                 mask_data,
-                                                        gboolean                 dialog_closing,
-                                                        gpointer                 user_data)           : Run First
+ gchar *pattern_name, + gint width, + gint height, + gint bpp, + gpointer mask_data, + gboolean dialog_closing, + gpointer user_data) : Run First

The ::pattern-set signal is emitted when the user selects a pattern.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpProcBrowserDialog.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpProcBrowserDialog.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpProcBrowserDialog.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpProcBrowserDialog.html 2008-10-08 23:32:59.000000000 +0100 @@ -55,28 +55,54 @@

Synopsis

                     GimpProcBrowserDialog;
-GtkWidget*          gimp_proc_browser_dialog_new        (const gchar *title,
-                                                         const gchar *role,
+GtkWidget*          gimp_proc_browser_dialog_new        (const gchar *title,
+                                                         const gchar *role,
                                                          GimpHelpFunc help_func,
-                                                         const gchar *help_id,
+                                                         const gchar *help_id,
                                                          ...);
-gchar*              gimp_proc_browser_dialog_get_selected
+gchar*              gimp_proc_browser_dialog_get_selected
                                                         (GimpProcBrowserDialog *dialog);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkWindow
-                                       +----GtkDialog
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkWindow
+                                       +----GtkDialog
                                              +----GimpDialog
@@ -87,7 +113,9 @@
 

Implemented Interfaces

GimpProcBrowserDialog implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -114,12 +142,20 @@

gimp_proc_browser_dialog_new ()

-
GtkWidget*          gimp_proc_browser_dialog_new        (const gchar *title,
-                                                         const gchar *role,
+
GtkWidget*          gimp_proc_browser_dialog_new        (const gchar *title,
+                                                         const gchar *role,
                                                          GimpHelpFunc help_func,
-                                                         const gchar *help_id,
+                                                         const gchar *help_id,
                                                          ...);

Create a new GimpProcBrowserDialog.

@@ -136,7 +172,9 @@

role :

- The dialog's role, see gtk_window_set_role(). + The dialog's role, see gtk_window_set_role(). @@ -151,7 +189,9 @@

... :

- A NULL-terminated list destribing the action_area buttons. + A NULL-terminated list destribing the action_area buttons. @@ -168,7 +208,9 @@

gimp_proc_browser_dialog_get_selected ()

-
gchar*              gimp_proc_browser_dialog_get_selected
+
gchar*              gimp_proc_browser_dialog_get_selected
                                                         (GimpProcBrowserDialog *dialog);

Retrieves the name of the currently selected procedure.

@@ -185,7 +227,9 @@

Returns :

- The name of the selected procedure of NULL if no + The name of the selected procedure of NULL if no procedure is selected. @@ -201,9 +245,13 @@

The "row-activated" signal

void                user_function                      (GimpProcBrowserDialog *dialog,
-                                                        gpointer               user_data)      : Run Last
-

-Emitted when one of the rows in the contained GtkTreeView is activated.

+ gpointer user_data) : Run Last
+

+Emitted when one of the rows in the contained GtkTreeView is activated.

@@ -226,9 +274,13 @@

The "selection-changed" signal

void                user_function                      (GimpProcBrowserDialog *dialog,
-                                                        gpointer               user_data)      : Run Last
-

-Emitted when the selection in the contained GtkTreeView changes.

+ gpointer user_data) : Run Last
+

+Emitted when the selection in the contained GtkTreeView changes.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpProgressBar.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpProgressBar.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpProgressBar.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpProgressBar.html 2008-10-08 23:32:59.000000000 +0100 @@ -53,18 +53,32 @@

Synopsis

                     GimpProgressBar;
-GtkWidget*          gimp_progress_bar_new               (void);
+GtkWidget*          gimp_progress_bar_new               (void);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkProgress
-                           +----GtkProgressBar
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkProgress
+                           +----GtkProgressBar
                                  +----GimpProgressBar
 
@@ -72,7 +86,9 @@

Implemented Interfaces

GimpProgressBar implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

@@ -93,7 +109,9 @@

gimp_progress_bar_new ()

-
GtkWidget*          gimp_progress_bar_new               (void);
+
GtkWidget*          gimp_progress_bar_new               (void);

Creates a new GimpProgressBar widget.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpSelectButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpSelectButton.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpSelectButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpSelectButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -59,13 +59,27 @@

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpSelectButton
                                              +----GimpBrushSelectButton
                                              +----GimpFontSelectButton
@@ -78,7 +92,9 @@
 

Implemented Interfaces

GimpSelectButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/GimpZoomPreview.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/GimpZoomPreview.html --- gimp-2.6.0/devel-docs/libgimp/html/GimpZoomPreview.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/GimpZoomPreview.html 2008-10-08 23:32:59.000000000 +0100 @@ -55,17 +55,31 @@

Synopsis

                     GimpZoomPreview;
-GtkWidget*          gimp_zoom_preview_new               (GimpDrawable *drawable);
-GtkWidget*          gimp_zoom_preview_new_with_model    (GimpDrawable *drawable,
+GtkWidget*          gimp_zoom_preview_new               (GimpDrawable *drawable);
+GtkWidget*          gimp_zoom_preview_new_with_model    (GimpDrawable *drawable,
                                                          GimpZoomModel *model);
-guchar*             gimp_zoom_preview_get_source        (GimpZoomPreview *preview,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
+guchar*             gimp_zoom_preview_get_source        (GimpZoomPreview *preview,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);
 GimpDrawable*       gimp_zoom_preview_get_drawable      (GimpZoomPreview *preview);
-gdouble             gimp_zoom_preview_get_factor        (GimpZoomPreview *preview);
+gdouble             gimp_zoom_preview_get_factor        (GimpZoomPreview *preview);
 GimpZoomModel*      gimp_zoom_preview_get_model         (GimpZoomPreview *preview);
@@ -74,13 +88,27 @@
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpPreview
@@ -94,12 +122,16 @@
 

Implemented Interfaces

GimpZoomPreview implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "drawable"                 gpointer              : Read / Write / Construct Only
+  "drawable"                 gpointer              : Read / Write / Construct Only
   "model"                    GimpZoomModel*        : Read / Write / Construct Only
@@ -123,7 +155,9 @@
 

gimp_zoom_preview_new ()

-
GtkWidget*          gimp_zoom_preview_new               (GimpDrawable *drawable);
+
GtkWidget*          gimp_zoom_preview_new               (GimpDrawable *drawable);

Creates a new GimpZoomPreview widget for drawable.

@@ -152,7 +186,9 @@


gimp_zoom_preview_new_with_model ()

-
GtkWidget*          gimp_zoom_preview_new_with_model    (GimpDrawable *drawable,
+
GtkWidget*          gimp_zoom_preview_new_with_model    (GimpDrawable *drawable,
                                                          GimpZoomModel *model);
@@ -198,10 +234,18 @@

gimp_zoom_preview_get_source ()

-
guchar*             gimp_zoom_preview_get_source        (GimpZoomPreview *preview,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
+
guchar*             gimp_zoom_preview_get_source        (GimpZoomPreview *preview,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);

Returns the scaled image data of the part of the drawable the GimpZoomPreview is currently showing, as a newly allocated array of guchar. @@ -237,7 +281,9 @@

Returns :

- newly allocated data that should be released using g_free() + newly allocated data that should be released using g_free() when it is not any longer needed @@ -278,7 +324,9 @@

gimp_zoom_preview_get_factor ()

-
gdouble             gimp_zoom_preview_get_factor        (GimpZoomPreview *preview);
+
gdouble             gimp_zoom_preview_get_factor        (GimpZoomPreview *preview);

Returns the zoom factor the preview is currently using.

@@ -342,7 +390,9 @@

Property Details

The "drawable" property

-
  "drawable"                 gpointer              : Read / Write / Construct Only
+
  "drawable"                 gpointer              : Read / Write / Construct Only

The drawable the GimpZoomPreview is attached to.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/index.html --- gimp-2.6.0/devel-docs/libgimp/html/index.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/index.html 2008-10-08 23:32:59.000000000 +0100 @@ -27,7 +27,7 @@

- for GIMP 2.6.0 + for GIMP 2.6.1

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrushes.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrushes.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,27 +48,77 @@

Synopsis

-gboolean            gimp_brushes_refresh                (void);
-gchar**             gimp_brushes_get_list               (const gchar *filter,
-                                                         gint *num_brushes);
-gchar*              gimp_brushes_get_brush              (gint *width,
-                                                         gint *height,
-                                                         gint *spacing);
-gboolean            gimp_brushes_set_brush              (const gchar *name);
-gdouble             gimp_brushes_get_opacity            (void);
-gboolean            gimp_brushes_set_opacity            (gdouble opacity);
+gboolean            gimp_brushes_refresh                (void);
+gchar**             gimp_brushes_get_list               (const gchar *filter,
+                                                         gint *num_brushes);
+gchar*              gimp_brushes_get_brush              (gint *width,
+                                                         gint *height,
+                                                         gint *spacing);
+gboolean            gimp_brushes_set_brush              (const gchar *name);
+gdouble             gimp_brushes_get_opacity            (void);
+gboolean            gimp_brushes_set_opacity            (gdouble opacity);
 GimpLayerModeEffects gimp_brushes_get_paint_mode        (void);
-gboolean            gimp_brushes_set_paint_mode         (GimpLayerModeEffects paint_mode);
-gint                gimp_brushes_get_spacing            (void);
-gboolean            gimp_brushes_set_spacing            (gint spacing);
-gchar*              gimp_brushes_get_brush_data         (const gchar *name,
-                                                         gdouble *opacity,
-                                                         gint *spacing,
+gboolean            gimp_brushes_set_paint_mode         (GimpLayerModeEffects paint_mode);
+gint                gimp_brushes_get_spacing            (void);
+gboolean            gimp_brushes_set_spacing            (gint spacing);
+gchar*              gimp_brushes_get_brush_data         (const gchar *name,
+                                                         gdouble *opacity,
+                                                         gint *spacing,
                                                          GimpLayerModeEffects *paint_mode,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *length,
-                                                         guint8 **mask_data);
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *length,
+                                                         guint8 **mask_data);
 
@@ -81,7 +131,9 @@

Details

gimp_brushes_refresh ()

-
gboolean            gimp_brushes_refresh                (void);
+
gboolean            gimp_brushes_refresh                (void);

Refresh current brushes. This function always succeeds.

@@ -103,8 +155,14 @@

gimp_brushes_get_list ()

-
gchar**             gimp_brushes_get_list               (const gchar *filter,
-                                                         gint *num_brushes);
+
gchar**             gimp_brushes_get_list               (const gchar *filter,
+                                                         gint *num_brushes);

Retrieve a complete listing of the available brushes.

@@ -139,9 +197,17 @@

gimp_brushes_get_brush ()

-
gchar*              gimp_brushes_get_brush              (gint *width,
-                                                         gint *height,
-                                                         gint *spacing);
+
gchar*              gimp_brushes_get_brush              (gint *width,
+                                                         gint *height,
+                                                         gint *spacing);

Warning

gimp_brushes_get_brush is deprecated and should not be used in newly-written code.

@@ -180,7 +246,11 @@

gimp_brushes_set_brush ()

-
gboolean            gimp_brushes_set_brush              (const gchar *name);
+
gboolean            gimp_brushes_set_brush              (const gchar *name);

Warning

gimp_brushes_set_brush is deprecated and should not be used in newly-written code.

@@ -209,7 +279,9 @@

gimp_brushes_get_opacity ()

-
gdouble             gimp_brushes_get_opacity            (void);
+
gdouble             gimp_brushes_get_opacity            (void);

Warning

gimp_brushes_get_opacity is deprecated and should not be used in newly-written code.

@@ -231,7 +303,11 @@

gimp_brushes_set_opacity ()

-
gboolean            gimp_brushes_set_opacity            (gdouble opacity);
+
gboolean            gimp_brushes_set_opacity            (gdouble opacity);

Warning

gimp_brushes_set_opacity is deprecated and should not be used in newly-written code.

@@ -282,7 +358,9 @@

gimp_brushes_set_paint_mode ()

-
gboolean            gimp_brushes_set_paint_mode         (GimpLayerModeEffects paint_mode);
+
gboolean            gimp_brushes_set_paint_mode         (GimpLayerModeEffects paint_mode);

Warning

gimp_brushes_set_paint_mode is deprecated and should not be used in newly-written code.

@@ -311,7 +389,9 @@

gimp_brushes_get_spacing ()

-
gint                gimp_brushes_get_spacing            (void);
+
gint                gimp_brushes_get_spacing            (void);

Warning

gimp_brushes_get_spacing is deprecated and should not be used in newly-written code.

@@ -333,7 +413,11 @@

gimp_brushes_set_spacing ()

-
gboolean            gimp_brushes_set_spacing            (gint spacing);
+
gboolean            gimp_brushes_set_spacing            (gint spacing);

Warning

gimp_brushes_set_spacing is deprecated and should not be used in newly-written code.

@@ -362,14 +446,30 @@

gimp_brushes_get_brush_data ()

-
gchar*              gimp_brushes_get_brush_data         (const gchar *name,
-                                                         gdouble *opacity,
-                                                         gint *spacing,
+
gchar*              gimp_brushes_get_brush_data         (const gchar *name,
+                                                         gdouble *opacity,
+                                                         gint *spacing,
                                                          GimpLayerModeEffects *paint_mode,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *length,
-                                                         guint8 **mask_data);
+ gint *width, + gint *height, + gint *length, + guint8 **mask_data);

Warning

gimp_brushes_get_brush_data is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrush.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrush.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrush.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrush.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,49 +48,173 @@

Synopsis

-gchar*              gimp_brush_new                      (const gchar *name);
-gchar*              gimp_brush_duplicate                (const gchar *name);
-gchar*              gimp_brush_rename                   (const gchar *name,
-                                                         const gchar *new_name);
-gboolean            gimp_brush_delete                   (const gchar *name);
-gboolean            gimp_brush_get_info                 (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *mask_bpp,
-                                                         gint *color_bpp);
-gboolean            gimp_brush_get_pixels               (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *mask_bpp,
-                                                         gint *num_mask_bytes,
-                                                         guint8 **mask_bytes,
-                                                         gint *color_bpp,
-                                                         gint *num_color_bytes,
-                                                         guint8 **color_bytes);
-gboolean            gimp_brush_get_spacing              (const gchar *name,
-                                                         gint *spacing);
-gboolean            gimp_brush_set_spacing              (const gchar *name,
-                                                         gint spacing);
-GimpBrushGeneratedShape gimp_brush_get_shape            (const gchar *name);
-GimpBrushGeneratedShape gimp_brush_set_shape            (const gchar *name,
+gchar*              gimp_brush_new                      (const gchar *name);
+gchar*              gimp_brush_duplicate                (const gchar *name);
+gchar*              gimp_brush_rename                   (const gchar *name,
+                                                         const gchar *new_name);
+gboolean            gimp_brush_delete                   (const gchar *name);
+gboolean            gimp_brush_get_info                 (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *mask_bpp,
+                                                         gint *color_bpp);
+gboolean            gimp_brush_get_pixels               (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *mask_bpp,
+                                                         gint *num_mask_bytes,
+                                                         guint8 **mask_bytes,
+                                                         gint *color_bpp,
+                                                         gint *num_color_bytes,
+                                                         guint8 **color_bytes);
+gboolean            gimp_brush_get_spacing              (const gchar *name,
+                                                         gint *spacing);
+gboolean            gimp_brush_set_spacing              (const gchar *name,
+                                                         gint spacing);
+GimpBrushGeneratedShape gimp_brush_get_shape            (const gchar *name);
+GimpBrushGeneratedShape gimp_brush_set_shape            (const gchar *name,
                                                          GimpBrushGeneratedShape shape_in);
-gint                gimp_brush_get_spikes               (const gchar *name);
-gint                gimp_brush_set_spikes               (const gchar *name,
-                                                         gint spikes_in);
-gdouble             gimp_brush_get_angle                (const gchar *name);
-gdouble             gimp_brush_set_angle                (const gchar *name,
-                                                         gdouble angle_in);
-gdouble             gimp_brush_get_radius               (const gchar *name);
-gdouble             gimp_brush_set_radius               (const gchar *name,
-                                                         gdouble radius_in);
-gdouble             gimp_brush_get_aspect_ratio         (const gchar *name);
-gdouble             gimp_brush_set_aspect_ratio         (const gchar *name,
-                                                         gdouble aspect_ratio_in);
-gdouble             gimp_brush_get_hardness             (const gchar *name);
-gdouble             gimp_brush_set_hardness             (const gchar *name,
-                                                         gdouble hardness_in);
-gboolean            gimp_brush_is_generated             (const gchar *name);
-gboolean            gimp_brush_is_editable              (const gchar *name);
+gint                gimp_brush_get_spikes               (const gchar *name);
+gint                gimp_brush_set_spikes               (const gchar *name,
+                                                         gint spikes_in);
+gdouble             gimp_brush_get_angle                (const gchar *name);
+gdouble             gimp_brush_set_angle                (const gchar *name,
+                                                         gdouble angle_in);
+gdouble             gimp_brush_get_radius               (const gchar *name);
+gdouble             gimp_brush_set_radius               (const gchar *name,
+                                                         gdouble radius_in);
+gdouble             gimp_brush_get_aspect_ratio         (const gchar *name);
+gdouble             gimp_brush_set_aspect_ratio         (const gchar *name,
+                                                         gdouble aspect_ratio_in);
+gdouble             gimp_brush_get_hardness             (const gchar *name);
+gdouble             gimp_brush_set_hardness             (const gchar *name,
+                                                         gdouble hardness_in);
+gboolean            gimp_brush_is_generated             (const gchar *name);
+gboolean            gimp_brush_is_editable              (const gchar *name);
 
@@ -103,7 +227,11 @@

Details

gimp_brush_new ()

-
gchar*              gimp_brush_new                      (const gchar *name);
+
gchar*              gimp_brush_new                      (const gchar *name);

Creates a new brush

@@ -134,7 +262,11 @@

gimp_brush_duplicate ()

-
gchar*              gimp_brush_duplicate                (const gchar *name);
+
gchar*              gimp_brush_duplicate                (const gchar *name);

Duplicates a brush

@@ -165,8 +297,14 @@

gimp_brush_rename ()

-
gchar*              gimp_brush_rename                   (const gchar *name,
-                                                         const gchar *new_name);
+
gchar*              gimp_brush_rename                   (const gchar *name,
+                                                         const gchar *new_name);

Rename a brush

@@ -202,7 +340,11 @@

gimp_brush_delete ()

-
gboolean            gimp_brush_delete                   (const gchar *name);
+
gboolean            gimp_brush_delete                   (const gchar *name);

Deletes a brush

@@ -233,11 +375,23 @@

gimp_brush_get_info ()

-
gboolean            gimp_brush_get_info                 (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *mask_bpp,
-                                                         gint *color_bpp);
+
gboolean            gimp_brush_get_info                 (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *mask_bpp,
+                                                         gint *color_bpp);

Retrieve information about the specified brush.

@@ -289,15 +443,35 @@

gimp_brush_get_pixels ()

-
gboolean            gimp_brush_get_pixels               (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *mask_bpp,
-                                                         gint *num_mask_bytes,
-                                                         guint8 **mask_bytes,
-                                                         gint *color_bpp,
-                                                         gint *num_color_bytes,
-                                                         guint8 **color_bytes);
+
gboolean            gimp_brush_get_pixels               (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *mask_bpp,
+                                                         gint *num_mask_bytes,
+                                                         guint8 **mask_bytes,
+                                                         gint *color_bpp,
+                                                         gint *num_color_bytes,
+                                                         guint8 **color_bytes);

Retrieve information about the specified brush.

@@ -369,8 +543,14 @@

gimp_brush_get_spacing ()

-
gboolean            gimp_brush_get_spacing              (const gchar *name,
-                                                         gint *spacing);
+
gboolean            gimp_brush_get_spacing              (const gchar *name,
+                                                         gint *spacing);

Get the brush spacing.

@@ -408,8 +588,14 @@

gimp_brush_set_spacing ()

-
gboolean            gimp_brush_set_spacing              (const gchar *name,
-                                                         gint spacing);
+
gboolean            gimp_brush_set_spacing              (const gchar *name,
+                                                         gint spacing);

Set the brush spacing.

@@ -446,7 +632,9 @@

gimp_brush_get_shape ()

-
GimpBrushGeneratedShape gimp_brush_get_shape            (const gchar *name);
+
GimpBrushGeneratedShape gimp_brush_get_shape            (const gchar *name);

Get the shape of a generated brush.

@@ -482,7 +670,9 @@

gimp_brush_set_shape ()

-
GimpBrushGeneratedShape gimp_brush_set_shape            (const gchar *name,
+
GimpBrushGeneratedShape gimp_brush_set_shape            (const gchar *name,
                                                          GimpBrushGeneratedShape shape_in);

Set the shape of a generated brush. @@ -524,7 +714,11 @@


gimp_brush_get_spikes ()

-
gint                gimp_brush_get_spikes               (const gchar *name);
+
gint                gimp_brush_get_spikes               (const gchar *name);

Get the number of spikes for a generated brush.

@@ -556,8 +750,14 @@

gimp_brush_set_spikes ()

-
gint                gimp_brush_set_spikes               (const gchar *name,
-                                                         gint spikes_in);
+
gint                gimp_brush_set_spikes               (const gchar *name,
+                                                         gint spikes_in);

Set the number of spikes for a generated brush.

@@ -594,7 +794,11 @@

gimp_brush_get_angle ()

-
gdouble             gimp_brush_get_angle                (const gchar *name);
+
gdouble             gimp_brush_get_angle                (const gchar *name);

Get the rotation angle of a generated brush.

@@ -626,8 +830,14 @@

gimp_brush_set_angle ()

-
gdouble             gimp_brush_set_angle                (const gchar *name,
-                                                         gdouble angle_in);
+
gdouble             gimp_brush_set_angle                (const gchar *name,
+                                                         gdouble angle_in);

Set the rotation angle of a generated brush.

@@ -664,7 +874,11 @@

gimp_brush_get_radius ()

-
gdouble             gimp_brush_get_radius               (const gchar *name);
+
gdouble             gimp_brush_get_radius               (const gchar *name);

Get the radius of a generated brush.

@@ -696,8 +910,14 @@

gimp_brush_set_radius ()

-
gdouble             gimp_brush_set_radius               (const gchar *name,
-                                                         gdouble radius_in);
+
gdouble             gimp_brush_set_radius               (const gchar *name,
+                                                         gdouble radius_in);

Set the radius of a generated brush.

@@ -734,7 +954,11 @@

gimp_brush_get_aspect_ratio ()

-
gdouble             gimp_brush_get_aspect_ratio         (const gchar *name);
+
gdouble             gimp_brush_get_aspect_ratio         (const gchar *name);

Get the aspect ratio of a generated brush.

@@ -766,8 +990,14 @@

gimp_brush_set_aspect_ratio ()

-
gdouble             gimp_brush_set_aspect_ratio         (const gchar *name,
-                                                         gdouble aspect_ratio_in);
+
gdouble             gimp_brush_set_aspect_ratio         (const gchar *name,
+                                                         gdouble aspect_ratio_in);

Set the aspect ratio of a generated brush.

@@ -804,7 +1034,11 @@

gimp_brush_get_hardness ()

-
gdouble             gimp_brush_get_hardness             (const gchar *name);
+
gdouble             gimp_brush_get_hardness             (const gchar *name);

Get the hardness of a generated brush.

@@ -837,8 +1071,14 @@

gimp_brush_set_hardness ()

-
gdouble             gimp_brush_set_hardness             (const gchar *name,
-                                                         gdouble hardness_in);
+
gdouble             gimp_brush_set_hardness             (const gchar *name,
+                                                         gdouble hardness_in);

Set the hardness of a generated brush.

@@ -875,7 +1115,11 @@

gimp_brush_is_generated ()

-
gboolean            gimp_brush_is_generated             (const gchar *name);
+
gboolean            gimp_brush_is_generated             (const gchar *name);

Tests if brush is generated

@@ -906,7 +1150,11 @@

gimp_brush_is_editable ()

-
gboolean            gimp_brush_is_editable              (const gchar *name);
+
gboolean            gimp_brush_is_editable              (const gchar *name);

Tests if brush can be edited

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,18 +48,40 @@

Synopsis

-GtkWidget*          gimp_brush_select_widget_new        (const gchar *title,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+GtkWidget*          gimp_brush_select_widget_new        (const gchar *title,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode,
                                                          GimpRunBrushCallback callback,
-                                                         gpointer data);
-void                gimp_brush_select_widget_close      (GtkWidget *widget);
-void                gimp_brush_select_widget_set        (GtkWidget *widget,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+                                                         gpointer data);
+void                gimp_brush_select_widget_close      (GtkWidget *widget);
+void                gimp_brush_select_widget_set        (GtkWidget *widget,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);
 
@@ -73,22 +95,34 @@

Details

gimp_brush_select_widget_new ()

-
GtkWidget*          gimp_brush_select_widget_new        (const gchar *title,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
GtkWidget*          gimp_brush_select_widget_new        (const gchar *title,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode,
                                                          GimpRunBrushCallback callback,
-                                                         gpointer data);
+ gpointer data);

Warning

gimp_brush_select_widget_new is deprecated and should not be used in newly-written code.

-Creates a new GtkWidget that completely controls the selection of -a GimpBrush. This widget is suitable for placement in a table in +Creates a new GtkWidget that completely controls the selection of +a GimpBrush. This widget is suitable for placement in a table in a plug-in dialog.

@@ -98,12 +132,16 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title.

brush_name :

- Initial brush name or NULL to use current selection. + Initial brush name or NULL to use current selection. @@ -133,7 +171,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -142,7 +182,9 @@

gimp_brush_select_widget_close ()

-
void                gimp_brush_select_widget_close      (GtkWidget *widget);
+
void                gimp_brush_select_widget_close      (GtkWidget *widget);

Warning

gimp_brush_select_widget_close is deprecated and should not be used in newly-written code.

@@ -164,10 +206,18 @@

gimp_brush_select_widget_set ()

-
void                gimp_brush_select_widget_set        (GtkWidget *widget,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
void                gimp_brush_select_widget_set        (GtkWidget *widget,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);

Warning

@@ -190,7 +240,9 @@

brush_name :

- Brush name to set; NULL means no change. + Brush name to set; NULL means no change. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrushselect.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrushselect.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,34 +48,90 @@

Synopsis

-void                (*GimpRunBrushCallback)             (const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+void                (*GimpRunBrushCallback)             (const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode,
-                                                         gint width,
-                                                         gint height,
-                                                         const guchar *mask_data,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
-const gchar*        gimp_brush_select_new               (const gchar *title,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+                                                         gint width,
+                                                         gint height,
+                                                         const guchar *mask_data,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);
+const gchar*        gimp_brush_select_new               (const gchar *title,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode,
                                                          GimpRunBrushCallback callback,
-                                                         gpointer data);
-void                gimp_brush_select_destroy           (const gchar *brush_callback);
-gboolean            gimp_brushes_popup                  (const gchar *brush_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_brush,
-                                                         gdouble opacity,
-                                                         gint spacing,
+                                                         gpointer data);
+void                gimp_brush_select_destroy           (const gchar *brush_callback);
+gboolean            gimp_brushes_popup                  (const gchar *brush_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_brush,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);
-gboolean            gimp_brushes_close_popup            (const gchar *brush_callback);
-gboolean            gimp_brushes_set_popup              (const gchar *brush_callback,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+gboolean            gimp_brushes_close_popup            (const gchar *brush_callback);
+gboolean            gimp_brushes_set_popup              (const gchar *brush_callback,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);
 
@@ -89,15 +145,31 @@

Details

GimpRunBrushCallback ()

-
void                (*GimpRunBrushCallback)             (const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
void                (*GimpRunBrushCallback)             (const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode,
-                                                         gint width,
-                                                         gint height,
-                                                         const guchar *mask_data,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
+ gint width, + gint height, + const guchar *mask_data, + gboolean dialog_closing, + gpointer user_data);

@@ -157,13 +229,25 @@

gimp_brush_select_new ()

-
const gchar*        gimp_brush_select_new               (const gchar *title,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
const gchar*        gimp_brush_select_new               (const gchar *title,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode,
                                                          GimpRunBrushCallback callback,
-                                                         gpointer data);
+ gpointer data);

@@ -218,7 +302,9 @@

gimp_brush_select_destroy ()

-
void                gimp_brush_select_destroy           (const gchar *brush_callback);
+
void                gimp_brush_select_destroy           (const gchar *brush_callback);

@@ -236,11 +322,23 @@

gimp_brushes_popup ()

-
gboolean            gimp_brushes_popup                  (const gchar *brush_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_brush,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
gboolean            gimp_brushes_popup                  (const gchar *brush_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_brush,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);

Invokes the Gimp brush selection. @@ -294,7 +392,11 @@


gimp_brushes_close_popup ()

-
gboolean            gimp_brushes_close_popup            (const gchar *brush_callback);
+
gboolean            gimp_brushes_close_popup            (const gchar *brush_callback);

Close the brush selection dialog.

@@ -322,10 +424,20 @@

gimp_brushes_set_popup ()

-
gboolean            gimp_brushes_set_popup              (const gchar *brush_callback,
-                                                         const gchar *brush_name,
-                                                         gdouble opacity,
-                                                         gint spacing,
+
gboolean            gimp_brushes_set_popup              (const gchar *brush_callback,
+                                                         const gchar *brush_name,
+                                                         gdouble opacity,
+                                                         gint spacing,
                                                          GimpLayerModeEffects paint_mode);

Sets the current brush in a brush selection dialog. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbuffer.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbuffer.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpbuffer.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpbuffer.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,17 +48,47 @@

Synopsis

-gchar**             gimp_buffers_get_list               (const gchar *filter,
-                                                         gint *num_buffers);
-gchar*              gimp_buffer_rename                  (const gchar *buffer_name,
-                                                         const gchar *new_name);
-gboolean            gimp_buffer_delete                  (const gchar *buffer_name);
-gint                gimp_buffer_get_width               (const gchar *buffer_name);
-gint                gimp_buffer_get_height              (const gchar *buffer_name);
-gint                gimp_buffer_get_bytes               (const gchar *buffer_name);
+gchar**             gimp_buffers_get_list               (const gchar *filter,
+                                                         gint *num_buffers);
+gchar*              gimp_buffer_rename                  (const gchar *buffer_name,
+                                                         const gchar *new_name);
+gboolean            gimp_buffer_delete                  (const gchar *buffer_name);
+gint                gimp_buffer_get_width               (const gchar *buffer_name);
+gint                gimp_buffer_get_height              (const gchar *buffer_name);
+gint                gimp_buffer_get_bytes               (const gchar *buffer_name);
 GimpImageBaseType   gimp_buffer_get_image_type          (const gchar *buffer_name);
+>GimpImageBaseType   gimp_buffer_get_image_type          (const gchar *buffer_name);
 
@@ -71,8 +101,14 @@

Details

gimp_buffers_get_list ()

-
gchar**             gimp_buffers_get_list               (const gchar *filter,
-                                                         gint *num_buffers);
+
gchar**             gimp_buffers_get_list               (const gchar *filter,
+                                                         gint *num_buffers);

Retrieve a complete listing of the available buffers.

@@ -109,8 +145,14 @@

gimp_buffer_rename ()

-
gchar*              gimp_buffer_rename                  (const gchar *buffer_name,
-                                                         const gchar *new_name);
+
gchar*              gimp_buffer_rename                  (const gchar *buffer_name,
+                                                         const gchar *new_name);

Renames a named buffer.

@@ -146,7 +188,11 @@

gimp_buffer_delete ()

-
gboolean            gimp_buffer_delete                  (const gchar *buffer_name);
+
gboolean            gimp_buffer_delete                  (const gchar *buffer_name);

Deletes a named buffer.

@@ -177,7 +223,11 @@

gimp_buffer_get_width ()

-
gint                gimp_buffer_get_width               (const gchar *buffer_name);
+
gint                gimp_buffer_get_width               (const gchar *buffer_name);

Retrieves the specified buffer's width.

@@ -208,7 +258,11 @@

gimp_buffer_get_height ()

-
gint                gimp_buffer_get_height              (const gchar *buffer_name);
+
gint                gimp_buffer_get_height              (const gchar *buffer_name);

Retrieves the specified buffer's height.

@@ -239,7 +293,11 @@

gimp_buffer_get_bytes ()

-
gint                gimp_buffer_get_bytes               (const gchar *buffer_name);
+
gint                gimp_buffer_get_bytes               (const gchar *buffer_name);

Retrieves the specified buffer's bytes.

@@ -272,7 +330,9 @@

gimp_buffer_get_image_type ()

GimpImageBaseType   gimp_buffer_get_image_type          (const gchar *buffer_name);
+>GimpImageBaseType gimp_buffer_get_image_type (const gchar *buffer_name);

Retrieves the specified buffer's image type.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpchannel.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpchannel.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpchannel.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpchannel.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,41 +48,101 @@

Synopsis

-gint32              gimp_channel_new                    (gint32 image_ID,
-                                                         const gchar *name,
-                                                         guint width,
-                                                         guint height,
-                                                         gdouble opacity,
+gint32              gimp_channel_new                    (gint32 image_ID,
+                                                         const gchar *name,
+                                                         guint width,
+                                                         guint height,
+                                                         gdouble opacity,
                                                          const GimpRGB *color);
-gint32              gimp_channel_new_from_component     (gint32 image_ID,
+gint32              gimp_channel_new_from_component     (gint32 image_ID,
                                                          GimpChannelType component,
-                                                         const gchar *name);
-gint32              gimp_channel_copy                   (gint32 channel_ID);
-gboolean            gimp_channel_get_show_masked        (gint32 channel_ID);
-gboolean            gimp_channel_set_show_masked        (gint32 channel_ID,
-                                                         gboolean show_masked);
-gdouble             gimp_channel_get_opacity            (gint32 channel_ID);
-gboolean            gimp_channel_set_opacity            (gint32 channel_ID,
-                                                         gdouble opacity);
-gboolean            gimp_channel_get_color              (gint32 channel_ID,
+                                                         const gchar *name);
+gint32              gimp_channel_copy                   (gint32 channel_ID);
+gboolean            gimp_channel_get_show_masked        (gint32 channel_ID);
+gboolean            gimp_channel_set_show_masked        (gint32 channel_ID,
+                                                         gboolean show_masked);
+gdouble             gimp_channel_get_opacity            (gint32 channel_ID);
+gboolean            gimp_channel_set_opacity            (gint32 channel_ID,
+                                                         gdouble opacity);
+gboolean            gimp_channel_get_color              (gint32 channel_ID,
                                                          GimpRGB *color);
-gboolean            gimp_channel_set_color              (gint32 channel_ID,
+gboolean            gimp_channel_set_color              (gint32 channel_ID,
                                                          const GimpRGB *color);
-gboolean            gimp_channel_combine_masks          (gint32 channel1_ID,
-                                                         gint32 channel2_ID,
+gboolean            gimp_channel_combine_masks          (gint32 channel1_ID,
+                                                         gint32 channel2_ID,
                                                          GimpChannelOps operation,
-                                                         gint offx,
-                                                         gint offy);
+                                                         gint offx,
+                                                         gint offy);
 
@@ -95,11 +155,23 @@

Details

gimp_channel_new ()

-
gint32              gimp_channel_new                    (gint32 image_ID,
-                                                         const gchar *name,
-                                                         guint width,
-                                                         guint height,
-                                                         gdouble opacity,
+
gint32              gimp_channel_new                    (gint32 image_ID,
+                                                         const gchar *name,
+                                                         guint width,
+                                                         guint height,
+                                                         gdouble opacity,
                                                          const GimpRGB *color);
@@ -161,11 +233,17 @@

gimp_channel_new_from_component ()

-
gint32              gimp_channel_new_from_component     (gint32 image_ID,
+
gint32              gimp_channel_new_from_component     (gint32 image_ID,
                                                          GimpChannelType component,
-                                                         const gchar *name);
+ const gchar *name);

Create a new channel from a color component

@@ -206,7 +284,11 @@

gimp_channel_copy ()

-
gint32              gimp_channel_copy                   (gint32 channel_ID);
+
gint32              gimp_channel_copy                   (gint32 channel_ID);

Copy a channel.

@@ -234,7 +316,11 @@

gimp_channel_get_show_masked ()

-
gboolean            gimp_channel_get_show_masked        (gint32 channel_ID);
+
gboolean            gimp_channel_get_show_masked        (gint32 channel_ID);

Get the composite method of the specified channel.

@@ -264,8 +350,14 @@

gimp_channel_set_show_masked ()

-
gboolean            gimp_channel_set_show_masked        (gint32 channel_ID,
-                                                         gboolean show_masked);
+
gboolean            gimp_channel_set_show_masked        (gint32 channel_ID,
+                                                         gboolean show_masked);

Set the composite method of the specified channel.

@@ -300,7 +392,11 @@

gimp_channel_get_opacity ()

-
gdouble             gimp_channel_get_opacity            (gint32 channel_ID);
+
gdouble             gimp_channel_get_opacity            (gint32 channel_ID);

Get the opacity of the specified channel.

@@ -328,8 +424,14 @@

gimp_channel_set_opacity ()

-
gboolean            gimp_channel_set_opacity            (gint32 channel_ID,
-                                                         gdouble opacity);
+
gboolean            gimp_channel_set_opacity            (gint32 channel_ID,
+                                                         gdouble opacity);

Set the opacity of the specified channel.

@@ -362,7 +464,11 @@

gimp_channel_get_color ()

-
gboolean            gimp_channel_get_color              (gint32 channel_ID,
+
gboolean            gimp_channel_get_color              (gint32 channel_ID,
                                                          GimpRGB *color);
@@ -398,7 +504,11 @@

gimp_channel_set_color ()

-
gboolean            gimp_channel_set_color              (gint32 channel_ID,
+
gboolean            gimp_channel_set_color              (gint32 channel_ID,
                                                          const GimpRGB *color);
@@ -434,13 +544,23 @@

gimp_channel_combine_masks ()

-
gboolean            gimp_channel_combine_masks          (gint32 channel1_ID,
-                                                         gint32 channel2_ID,
+
gboolean            gimp_channel_combine_masks          (gint32 channel1_ID,
+                                                         gint32 channel2_ID,
                                                          GimpChannelOps operation,
-                                                         gint offx,
-                                                         gint offy);
+ gint offx, + gint offy);

Combine two channel masks.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpcolor.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpcolor.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpcolor.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpcolor.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,66 +48,196 @@

Synopsis

-gboolean            gimp_brightness_contrast            (gint32 drawable_ID,
-                                                         gint brightness,
-                                                         gint contrast);
-gboolean            gimp_levels                         (gint32 drawable_ID,
+gboolean            gimp_brightness_contrast            (gint32 drawable_ID,
+                                                         gint brightness,
+                                                         gint contrast);
+gboolean            gimp_levels                         (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint low_input,
-                                                         gint high_input,
-                                                         gdouble gamma,
-                                                         gint low_output,
-                                                         gint high_output);
-gboolean            gimp_levels_auto                    (gint32 drawable_ID);
-gboolean            gimp_levels_stretch                 (gint32 drawable_ID);
-gboolean            gimp_posterize                      (gint32 drawable_ID,
-                                                         gint levels);
-gboolean            gimp_desaturate                     (gint32 drawable_ID);
-gboolean            gimp_desaturate_full                (gint32 drawable_ID,
+                                                         gint low_input,
+                                                         gint high_input,
+                                                         gdouble gamma,
+                                                         gint low_output,
+                                                         gint high_output);
+gboolean            gimp_levels_auto                    (gint32 drawable_ID);
+gboolean            gimp_levels_stretch                 (gint32 drawable_ID);
+gboolean            gimp_posterize                      (gint32 drawable_ID,
+                                                         gint levels);
+gboolean            gimp_desaturate                     (gint32 drawable_ID);
+gboolean            gimp_desaturate_full                (gint32 drawable_ID,
                                                          GimpDesaturateMode desaturate_mode);
-gboolean            gimp_equalize                       (gint32 drawable_ID,
-                                                         gboolean mask_only);
-gboolean            gimp_invert                         (gint32 drawable_ID);
-gboolean            gimp_curves_spline                  (gint32 drawable_ID,
+gboolean            gimp_equalize                       (gint32 drawable_ID,
+                                                         gboolean mask_only);
+gboolean            gimp_invert                         (gint32 drawable_ID);
+gboolean            gimp_curves_spline                  (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint num_points,
-                                                         const guint8 *control_pts);
-gboolean            gimp_curves_explicit                (gint32 drawable_ID,
+                                                         gint num_points,
+                                                         const guint8 *control_pts);
+gboolean            gimp_curves_explicit                (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint num_bytes,
-                                                         const guint8 *curve);
-gboolean            gimp_color_balance                  (gint32 drawable_ID,
+                                                         gint num_bytes,
+                                                         const guint8 *curve);
+gboolean            gimp_color_balance                  (gint32 drawable_ID,
                                                          GimpTransferMode transfer_mode,
-                                                         gboolean preserve_lum,
-                                                         gdouble cyan_red,
-                                                         gdouble magenta_green,
-                                                         gdouble yellow_blue);
-gboolean            gimp_colorize                       (gint32 drawable_ID,
-                                                         gdouble hue,
-                                                         gdouble saturation,
-                                                         gdouble lightness);
-gboolean            gimp_histogram                      (gint32 drawable_ID,
+                                                         gboolean preserve_lum,
+                                                         gdouble cyan_red,
+                                                         gdouble magenta_green,
+                                                         gdouble yellow_blue);
+gboolean            gimp_colorize                       (gint32 drawable_ID,
+                                                         gdouble hue,
+                                                         gdouble saturation,
+                                                         gdouble lightness);
+gboolean            gimp_histogram                      (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint start_range,
-                                                         gint end_range,
-                                                         gdouble *mean,
-                                                         gdouble *std_dev,
-                                                         gdouble *median,
-                                                         gdouble *pixels,
-                                                         gdouble *count,
-                                                         gdouble *percentile);
-gboolean            gimp_hue_saturation                 (gint32 drawable_ID,
+                                                         gint start_range,
+                                                         gint end_range,
+                                                         gdouble *mean,
+                                                         gdouble *std_dev,
+                                                         gdouble *median,
+                                                         gdouble *pixels,
+                                                         gdouble *count,
+                                                         gdouble *percentile);
+gboolean            gimp_hue_saturation                 (gint32 drawable_ID,
                                                          GimpHueRange hue_range,
-                                                         gdouble hue_offset,
-                                                         gdouble lightness,
-                                                         gdouble saturation);
-gboolean            gimp_threshold                      (gint32 drawable_ID,
-                                                         gint low_threshold,
-                                                         gint high_threshold);
+                                                         gdouble hue_offset,
+                                                         gdouble lightness,
+                                                         gdouble saturation);
+gboolean            gimp_threshold                      (gint32 drawable_ID,
+                                                         gint low_threshold,
+                                                         gint high_threshold);
 
@@ -121,9 +251,17 @@

Details

gimp_brightness_contrast ()

-
gboolean            gimp_brightness_contrast            (gint32 drawable_ID,
-                                                         gint brightness,
-                                                         gint contrast);
+
gboolean            gimp_brightness_contrast            (gint32 drawable_ID,
+                                                         gint brightness,
+                                                         gint contrast);

Modify brightness/contrast in the specified drawable.

@@ -163,13 +301,27 @@

gimp_levels ()

-
gboolean            gimp_levels                         (gint32 drawable_ID,
+
gboolean            gimp_levels                         (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint low_input,
-                                                         gint high_input,
-                                                         gdouble gamma,
-                                                         gint low_output,
-                                                         gint high_output);
+ gint low_input, + gint high_input, + gdouble gamma, + gint low_output, + gint high_output);

Modifies intensity levels in the specified drawable.

@@ -238,7 +390,11 @@

gimp_levels_auto ()

-
gboolean            gimp_levels_auto                    (gint32 drawable_ID);
+
gboolean            gimp_levels_auto                    (gint32 drawable_ID);

Warning

gimp_levels_auto is deprecated and should not be used in newly-written code.

@@ -267,7 +423,11 @@

gimp_levels_stretch ()

-
gboolean            gimp_levels_stretch                 (gint32 drawable_ID);
+
gboolean            gimp_levels_stretch                 (gint32 drawable_ID);

Automatically modifies intensity levels in the specified drawable.

@@ -299,8 +459,14 @@

gimp_posterize ()

-
gboolean            gimp_posterize                      (gint32 drawable_ID,
-                                                         gint levels);
+
gboolean            gimp_posterize                      (gint32 drawable_ID,
+                                                         gint levels);

Posterize the specified drawable.

@@ -334,7 +500,11 @@

gimp_desaturate ()

-
gboolean            gimp_desaturate                     (gint32 drawable_ID);
+
gboolean            gimp_desaturate                     (gint32 drawable_ID);

Desaturate the contents of the specified drawable.

@@ -363,7 +533,11 @@

gimp_desaturate_full ()

-
gboolean            gimp_desaturate_full                (gint32 drawable_ID,
+
gboolean            gimp_desaturate_full                (gint32 drawable_ID,
                                                          GimpDesaturateMode desaturate_mode);
@@ -405,8 +579,14 @@

gimp_equalize ()

-
gboolean            gimp_equalize                       (gint32 drawable_ID,
-                                                         gboolean mask_only);
+
gboolean            gimp_equalize                       (gint32 drawable_ID,
+                                                         gboolean mask_only);

Equalize the contents of the specified drawable.

@@ -446,7 +626,11 @@

gimp_invert ()

-
gboolean            gimp_invert                         (gint32 drawable_ID);
+
gboolean            gimp_invert                         (gint32 drawable_ID);

Invert the contents of the specified drawable.

@@ -477,10 +661,18 @@

gimp_curves_spline ()

-
gboolean            gimp_curves_spline                  (gint32 drawable_ID,
+
gboolean            gimp_curves_spline                  (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint num_points,
-                                                         const guint8 *control_pts);
+ gint num_points, + const guint8 *control_pts);

Modifies the intensity curve(s) for specified drawable.

@@ -529,10 +721,18 @@

gimp_curves_explicit ()

-
gboolean            gimp_curves_explicit                (gint32 drawable_ID,
+
gboolean            gimp_curves_explicit                (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint num_bytes,
-                                                         const guint8 *curve);
+ gint num_bytes, + const guint8 *curve);

Modifies the intensity curve(s) for specified drawable.

@@ -581,14 +781,26 @@

gimp_color_balance ()

-
gboolean            gimp_color_balance                  (gint32 drawable_ID,
+
gboolean            gimp_color_balance                  (gint32 drawable_ID,
                                                          GimpTransferMode transfer_mode,
-                                                         gboolean preserve_lum,
-                                                         gdouble cyan_red,
-                                                         gdouble magenta_green,
-                                                         gdouble yellow_blue);
+ gboolean preserve_lum, + gdouble cyan_red, + gdouble magenta_green, + gdouble yellow_blue);

Modify the color balance of the specified drawable.

@@ -648,10 +860,20 @@

gimp_colorize ()

-
gboolean            gimp_colorize                       (gint32 drawable_ID,
-                                                         gdouble hue,
-                                                         gdouble saturation,
-                                                         gdouble lightness);
+
gboolean            gimp_colorize                       (gint32 drawable_ID,
+                                                         gdouble hue,
+                                                         gdouble saturation,
+                                                         gdouble lightness);

Render the drawable as a grayscale image seen through a colored glass. @@ -700,16 +922,36 @@


gimp_histogram ()

-
gboolean            gimp_histogram                      (gint32 drawable_ID,
+
gboolean            gimp_histogram                      (gint32 drawable_ID,
                                                          GimpHistogramChannel channel,
-                                                         gint start_range,
-                                                         gint end_range,
-                                                         gdouble *mean,
-                                                         gdouble *std_dev,
-                                                         gdouble *median,
-                                                         gdouble *pixels,
-                                                         gdouble *count,
-                                                         gdouble *percentile);
+ gint start_range, + gint end_range, + gdouble *mean, + gdouble *std_dev, + gdouble *median, + gdouble *pixels, + gdouble *count, + gdouble *percentile);

Returns information on the intensity histogram for the specified drawable. @@ -795,11 +1037,21 @@


gimp_hue_saturation ()

-
gboolean            gimp_hue_saturation                 (gint32 drawable_ID,
+
gboolean            gimp_hue_saturation                 (gint32 drawable_ID,
                                                          GimpHueRange hue_range,
-                                                         gdouble hue_offset,
-                                                         gdouble lightness,
-                                                         gdouble saturation);
+ gdouble hue_offset, + gdouble lightness, + gdouble saturation);

Modify hue, lightness, and saturation in the specified drawable.

@@ -849,9 +1101,17 @@

gimp_threshold ()

-
gboolean            gimp_threshold                      (gint32 drawable_ID,
-                                                         gint low_threshold,
-                                                         gint high_threshold);
+
gboolean            gimp_threshold                      (gint32 drawable_ID,
+                                                         gint low_threshold,
+                                                         gint high_threshold);

Threshold the specified drawable.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpcontext.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpcontext.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpcontext.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpcontext.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,40 +48,106 @@

Synopsis

-gboolean            gimp_context_push                   (void);
-gboolean            gimp_context_pop                    (void);
-gboolean            gimp_context_get_foreground         (gboolean            gimp_context_push                   (void);
+gboolean            gimp_context_pop                    (void);
+gboolean            gimp_context_get_foreground         (GimpRGB *foreground);
-gboolean            gimp_context_set_foreground         (const gboolean            gimp_context_set_foreground         (const GimpRGB *foreground);
-gboolean            gimp_context_get_background         (gboolean            gimp_context_get_background         (GimpRGB *background);
-gboolean            gimp_context_set_background         (const gboolean            gimp_context_set_background         (const GimpRGB *background);
-gboolean            gimp_context_set_default_colors     (void);
-gboolean            gimp_context_swap_colors            (void);
-gdouble             gimp_context_get_opacity            (void);
-gboolean            gimp_context_set_opacity            (gdouble opacity);
+gboolean            gimp_context_set_default_colors     (void);
+gboolean            gimp_context_swap_colors            (void);
+gdouble             gimp_context_get_opacity            (void);
+gboolean            gimp_context_set_opacity            (gdouble opacity);
 GimpLayerModeEffects gimp_context_get_paint_mode        (void);
-gboolean            gimp_context_set_paint_mode         (GimpLayerModeEffects paint_mode);
-gchar*              gimp_context_get_brush              (void);
-gboolean            gimp_context_set_brush              (const gchar *name);
-gchar*              gimp_context_get_pattern            (void);
-gboolean            gimp_context_set_pattern            (const gchar *name);
-gchar*              gimp_context_get_gradient           (void);
-gboolean            gimp_context_set_gradient           (const gchar *name);
-gchar*              gimp_context_get_palette            (void);
-gboolean            gimp_context_set_palette            (const gchar *name);
-gchar*              gimp_context_get_font               (void);
-gboolean            gimp_context_set_font               (const gchar *name);
-gchar*              gimp_context_get_paint_method       (void);
-gboolean            gimp_context_set_paint_method       (const gchar *name);
-gboolean            gimp_context_list_paint_methods     (gint *num_paint_methods,
-                                                         gchar ***paint_methods);
+gboolean            gimp_context_set_paint_mode         (GimpLayerModeEffects paint_mode);
+gchar*              gimp_context_get_brush              (void);
+gboolean            gimp_context_set_brush              (const gchar *name);
+gchar*              gimp_context_get_pattern            (void);
+gboolean            gimp_context_set_pattern            (const gchar *name);
+gchar*              gimp_context_get_gradient           (void);
+gboolean            gimp_context_set_gradient           (const gchar *name);
+gchar*              gimp_context_get_palette            (void);
+gboolean            gimp_context_set_palette            (const gchar *name);
+gchar*              gimp_context_get_font               (void);
+gboolean            gimp_context_set_font               (const gchar *name);
+gchar*              gimp_context_get_paint_method       (void);
+gboolean            gimp_context_set_paint_method       (const gchar *name);
+gboolean            gimp_context_list_paint_methods     (gint *num_paint_methods,
+                                                         gchar ***paint_methods);
 
@@ -94,7 +160,9 @@

Details

gimp_context_push ()

-
gboolean            gimp_context_push                   (void);
+
gboolean            gimp_context_push                   (void);

Pushes a context to the top of the plug-in's context stack.

@@ -120,7 +188,9 @@

gimp_context_pop ()

-
gboolean            gimp_context_pop                    (void);
+
gboolean            gimp_context_pop                    (void);

Pops the topmost context from the plug-in's context stack.

@@ -147,7 +217,9 @@

gimp_context_get_foreground ()

-
gboolean            gimp_context_get_foreground         (gboolean            gimp_context_get_foreground         (GimpRGB *foreground);

@@ -182,7 +254,9 @@


gimp_context_set_foreground ()

-
gboolean            gimp_context_set_foreground         (const gboolean            gimp_context_set_foreground         (const GimpRGB *foreground);

@@ -217,7 +291,9 @@


gimp_context_get_background ()

-
gboolean            gimp_context_get_background         (gboolean            gimp_context_get_background         (GimpRGB *background);

@@ -252,7 +328,9 @@


gimp_context_set_background ()

-
gboolean            gimp_context_set_background         (const gboolean            gimp_context_set_background         (const GimpRGB *background);

@@ -288,7 +366,9 @@


gimp_context_set_default_colors ()

-
gboolean            gimp_context_set_default_colors     (void);
+
gboolean            gimp_context_set_default_colors     (void);

Set the current GIMP foreground and background colors to black and white. @@ -314,7 +394,9 @@


gimp_context_swap_colors ()

-
gboolean            gimp_context_swap_colors            (void);
+
gboolean            gimp_context_swap_colors            (void);

Swap the current GIMP foreground and background colors.

@@ -340,7 +422,9 @@

gimp_context_get_opacity ()

-
gdouble             gimp_context_get_opacity            (void);
+
gdouble             gimp_context_get_opacity            (void);

Get the opacity.

@@ -365,7 +449,11 @@

gimp_context_set_opacity ()

-
gboolean            gimp_context_set_opacity            (gdouble opacity);
+
gboolean            gimp_context_set_opacity            (gdouble opacity);

Set the opacity.

@@ -423,7 +511,9 @@

gimp_context_set_paint_mode ()

-
gboolean            gimp_context_set_paint_mode         (GimpLayerModeEffects paint_mode);
+
gboolean            gimp_context_set_paint_mode         (GimpLayerModeEffects paint_mode);

Set the paint mode.

@@ -454,7 +544,9 @@

gimp_context_get_brush ()

-
gchar*              gimp_context_get_brush              (void);
+
gchar*              gimp_context_get_brush              (void);

Retrieve the currently active brush.

@@ -480,7 +572,11 @@

gimp_context_set_brush ()

-
gboolean            gimp_context_set_brush              (const gchar *name);
+
gboolean            gimp_context_set_brush              (const gchar *name);

Set the specified brush as the active brush.

@@ -515,7 +611,9 @@

gimp_context_get_pattern ()

-
gchar*              gimp_context_get_pattern            (void);
+
gchar*              gimp_context_get_pattern            (void);

Retrieve the currently active pattern.

@@ -541,7 +639,11 @@

gimp_context_set_pattern ()

-
gboolean            gimp_context_set_pattern            (const gchar *name);
+
gboolean            gimp_context_set_pattern            (const gchar *name);

Set the specified pattern as the active pattern.

@@ -577,7 +679,9 @@

gimp_context_get_gradient ()

-
gchar*              gimp_context_get_gradient           (void);
+
gchar*              gimp_context_get_gradient           (void);

Retrieve the currently active gradient.

@@ -601,7 +705,11 @@

gimp_context_set_gradient ()

-
gboolean            gimp_context_set_gradient           (const gchar *name);
+
gboolean            gimp_context_set_gradient           (const gchar *name);

Sets the specified gradient as the active gradient.

@@ -637,7 +745,9 @@

gimp_context_get_palette ()

-
gchar*              gimp_context_get_palette            (void);
+
gchar*              gimp_context_get_palette            (void);

Retrieve the currently active palette.

@@ -661,7 +771,11 @@

gimp_context_set_palette ()

-
gboolean            gimp_context_set_palette            (const gchar *name);
+
gboolean            gimp_context_set_palette            (const gchar *name);

Set the specified palette as the active palette.

@@ -697,7 +811,9 @@

gimp_context_get_font ()

-
gchar*              gimp_context_get_font               (void);
+
gchar*              gimp_context_get_font               (void);

Retrieve the currently active font.

@@ -721,7 +837,11 @@

gimp_context_set_font ()

-
gboolean            gimp_context_set_font               (const gchar *name);
+
gboolean            gimp_context_set_font               (const gchar *name);

Set the specified font as the active font.

@@ -756,7 +876,9 @@

gimp_context_get_paint_method ()

-
gchar*              gimp_context_get_paint_method       (void);
+
gchar*              gimp_context_get_paint_method       (void);

Retrieve the currently active paint method.

@@ -781,7 +903,11 @@

gimp_context_set_paint_method ()

-
gboolean            gimp_context_set_paint_method       (const gchar *name);
+
gboolean            gimp_context_set_paint_method       (const gchar *name);

Set the specified paint method as the active paint method.

@@ -817,8 +943,14 @@

gimp_context_list_paint_methods ()

-
gboolean            gimp_context_list_paint_methods     (gint *num_paint_methods,
-                                                         gchar ***paint_methods);
+
gboolean            gimp_context_list_paint_methods     (gint *num_paint_methods,
+                                                         gchar ***paint_methods);

Lists the available paint methods.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpconvert.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpconvert.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpconvert.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpconvert.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,20 +48,50 @@

Synopsis

-gboolean            gimp_image_convert_rgb              (gint32 image_ID);
-gboolean            gimp_image_convert_grayscale        (gint32 image_ID);
-gboolean            gimp_image_convert_indexed          (gint32 image_ID,
+gboolean            gimp_image_convert_rgb              (gint32 image_ID);
+gboolean            gimp_image_convert_grayscale        (gint32 image_ID);
+gboolean            gimp_image_convert_indexed          (gint32 image_ID,
                                                          GimpConvertDitherType dither_type,
                                                          GimpConvertPaletteType palette_type,
-                                                         gint num_cols,
-                                                         gboolean alpha_dither,
-                                                         gboolean remove_unused,
-                                                         const gchar *palette);
-gboolean            gimp_image_convert_set_dither_matrix
-                                                        (gint width,
-                                                         gint height,
-                                                         gint matrix_length,
-                                                         const guint8 *matrix);
+                                                         gint num_cols,
+                                                         gboolean alpha_dither,
+                                                         gboolean remove_unused,
+                                                         const gchar *palette);
+gboolean            gimp_image_convert_set_dither_matrix
+                                                        (gint width,
+                                                         gint height,
+                                                         gint matrix_length,
+                                                         const guint8 *matrix);
 
@@ -75,7 +105,11 @@

Details

gimp_image_convert_rgb ()

-
gboolean            gimp_image_convert_rgb              (gint32 image_ID);
+
gboolean            gimp_image_convert_rgb              (gint32 image_ID);

Convert specified image to RGB color

@@ -106,7 +140,11 @@

gimp_image_convert_grayscale ()

-
gboolean            gimp_image_convert_grayscale        (gint32 image_ID);
+
gboolean            gimp_image_convert_grayscale        (gint32 image_ID);

Convert specified image to grayscale (256 intensity levels)

@@ -136,13 +174,25 @@

gimp_image_convert_indexed ()

-
gboolean            gimp_image_convert_indexed          (gint32 image_ID,
+
gboolean            gimp_image_convert_indexed          (gint32 image_ID,
                                                          GimpConvertDitherType dither_type,
                                                          GimpConvertPaletteType palette_type,
-                                                         gint num_cols,
-                                                         gboolean alpha_dither,
-                                                         gboolean remove_unused,
-                                                         const gchar *palette);
+ gint num_cols, + gboolean alpha_dither, + gboolean remove_unused, + const gchar *palette);

Convert specified image to and Indexed image

@@ -212,11 +262,21 @@

gimp_image_convert_set_dither_matrix ()

-
gboolean            gimp_image_convert_set_dither_matrix
-                                                        (gint width,
-                                                         gint height,
-                                                         gint matrix_length,
-                                                         const guint8 *matrix);
+
gboolean            gimp_image_convert_set_dither_matrix
+                                                        (gint width,
+                                                         gint height,
+                                                         gint matrix_length,
+                                                         const guint8 *matrix);

Set dither matrix for conversion to indexed

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpdisplay.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpdisplay.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpdisplay.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpdisplay.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,13 +48,37 @@

Synopsis

-gint32              gimp_display_new                    (gint32 image_ID);
-gboolean            gimp_display_delete                 (gint32 display_ID);
-gboolean            gimp_display_is_valid               (gint32 display_ID);
-gint                gimp_display_get_window_handle      (gint32 display_ID);
-gboolean            gimp_displays_flush                 (void);
-gboolean            gimp_displays_reconnect             (gint32 old_image_ID,
-                                                         gint32 new_image_ID);
+gint32              gimp_display_new                    (gint32 image_ID);
+gboolean            gimp_display_delete                 (gint32 display_ID);
+gboolean            gimp_display_is_valid               (gint32 display_ID);
+gint                gimp_display_get_window_handle      (gint32 display_ID);
+gboolean            gimp_displays_flush                 (void);
+gboolean            gimp_displays_reconnect             (gint32 old_image_ID,
+                                                         gint32 new_image_ID);
 
@@ -68,7 +92,11 @@

Details

gimp_display_new ()

-
gint32              gimp_display_new                    (gint32 image_ID);
+
gint32              gimp_display_new                    (gint32 image_ID);

Create a new display for the specified image.

@@ -100,7 +128,11 @@

gimp_display_delete ()

-
gboolean            gimp_display_delete                 (gint32 display_ID);
+
gboolean            gimp_display_delete                 (gint32 display_ID);

Delete the specified display.

@@ -132,7 +164,11 @@

gimp_display_is_valid ()

-
gboolean            gimp_display_is_valid               (gint32 display_ID);
+
gboolean            gimp_display_is_valid               (gint32 display_ID);

Returns TRUE if the display is valid.

@@ -164,7 +200,11 @@

gimp_display_get_window_handle ()

-
gint                gimp_display_get_window_handle      (gint32 display_ID);
+
gint                gimp_display_get_window_handle      (gint32 display_ID);

Get a handle to the native window for an image display.

@@ -199,7 +239,9 @@

gimp_displays_flush ()

-
gboolean            gimp_displays_flush                 (void);
+
gboolean            gimp_displays_flush                 (void);

Flush all internal changes to the user interface

@@ -223,8 +265,14 @@

gimp_displays_reconnect ()

-
gboolean            gimp_displays_reconnect             (gint32 old_image_ID,
-                                                         gint32 new_image_ID);
+
gboolean            gimp_displays_reconnect             (gint32 old_image_ID,
+                                                         gint32 new_image_ID);

Reconnect displays from one image to another image.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpdrawable.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpdrawable.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,129 +49,411 @@

Synopsis

                     GimpDrawable;
-GimpDrawable*       gimp_drawable_get                   (gint32 drawable_ID);
+GimpDrawable*       gimp_drawable_get                   (gint32 drawable_ID);
 void                gimp_drawable_detach                (GimpDrawable *drawable);
 void                gimp_drawable_flush                 (GimpDrawable *drawable);
-gboolean            gimp_drawable_delete                (gint32 drawable_ID);
-gboolean            gimp_drawable_is_valid              (gint32 drawable_ID);
-gchar*              gimp_drawable_get_name              (gint32 drawable_ID);
-gboolean            gimp_drawable_set_name              (gint32 drawable_ID,
-                                                         const gchar *name);
-gboolean            gimp_drawable_get_visible           (gint32 drawable_ID);
-gboolean            gimp_drawable_set_visible           (gint32 drawable_ID,
-                                                         gboolean visible);
-gboolean            gimp_drawable_get_linked            (gint32 drawable_ID);
-gboolean            gimp_drawable_set_linked            (gint32 drawable_ID,
-                                                         gboolean linked);
-gint                gimp_drawable_get_tattoo            (gint32 drawable_ID);
-gboolean            gimp_drawable_set_tattoo            (gint32 drawable_ID,
-                                                         gint tattoo);
-guint8*             gimp_drawable_get_pixel             (gint32 drawable_ID,
-                                                         gint x_coord,
-                                                         gint y_coord,
-                                                         gint *num_channels);
-gboolean            gimp_drawable_set_pixel             (gint32 drawable_ID,
-                                                         gint x_coord,
-                                                         gint y_coord,
-                                                         gint num_channels,
-                                                         const guint8 *pixel);
+gboolean            gimp_drawable_delete                (gint32 drawable_ID);
+gboolean            gimp_drawable_is_valid              (gint32 drawable_ID);
+gchar*              gimp_drawable_get_name              (gint32 drawable_ID);
+gboolean            gimp_drawable_set_name              (gint32 drawable_ID,
+                                                         const gchar *name);
+gboolean            gimp_drawable_get_visible           (gint32 drawable_ID);
+gboolean            gimp_drawable_set_visible           (gint32 drawable_ID,
+                                                         gboolean visible);
+gboolean            gimp_drawable_get_linked            (gint32 drawable_ID);
+gboolean            gimp_drawable_set_linked            (gint32 drawable_ID,
+                                                         gboolean linked);
+gint                gimp_drawable_get_tattoo            (gint32 drawable_ID);
+gboolean            gimp_drawable_set_tattoo            (gint32 drawable_ID,
+                                                         gint tattoo);
+guint8*             gimp_drawable_get_pixel             (gint32 drawable_ID,
+                                                         gint x_coord,
+                                                         gint y_coord,
+                                                         gint *num_channels);
+gboolean            gimp_drawable_set_pixel             (gint32 drawable_ID,
+                                                         gint x_coord,
+                                                         gint y_coord,
+                                                         gint num_channels,
+                                                         const guint8 *pixel);
 GimpTile*           gimp_drawable_get_tile              (GimpDrawable *drawable,
-                                                         gboolean shadow,
-                                                         gint row,
-                                                         gint col);
+                                                         gboolean shadow,
+                                                         gint row,
+                                                         gint col);
 GimpTile*           gimp_drawable_get_tile2             (GimpDrawable *drawable,
-                                                         gboolean shadow,
-                                                         gint x,
-                                                         gint y);
-guchar*             gimp_drawable_get_thumbnail_data    (gint32 drawable_ID,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
-guchar*             gimp_drawable_get_sub_thumbnail_data
-                                                        (gint32 drawable_ID,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint src_width,
-                                                         gint src_height,
-                                                         gint *dest_width,
-                                                         gint *dest_height,
-                                                         gint *bpp);
-void                gimp_drawable_get_color_uchar       (gint32 drawable_ID,
+                                                         gboolean shadow,
+                                                         gint x,
+                                                         gint y);
+guchar*             gimp_drawable_get_thumbnail_data    (gint32 drawable_ID,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);
+guchar*             gimp_drawable_get_sub_thumbnail_data
+                                                        (gint32 drawable_ID,
+                                                         gint src_x,
+                                                         gint src_y,
+                                                         gint src_width,
+                                                         gint src_height,
+                                                         gint *dest_width,
+                                                         gint *dest_height,
+                                                         gint *bpp);
+void                gimp_drawable_get_color_uchar       (gint32 drawable_ID,
                                                          const GimpRGB *color,
-                                                         guchar *color_uchar);
-gboolean            gimp_drawable_merge_shadow          (gint32 drawable_ID,
-                                                         gboolean undo);
-gboolean            gimp_drawable_free_shadow           (gint32 drawable_ID);
-gboolean            gimp_drawable_fill                  (gint32 drawable_ID,
+                                                         guchar *color_uchar);
+gboolean            gimp_drawable_merge_shadow          (gint32 drawable_ID,
+                                                         gboolean undo);
+gboolean            gimp_drawable_free_shadow           (gint32 drawable_ID);
+gboolean            gimp_drawable_fill                  (gint32 drawable_ID,
                                                          GimpFillType fill_type);
-gboolean            gimp_drawable_update                (gint32 drawable_ID,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height);
-gboolean            gimp_drawable_mask_bounds           (gint32 drawable_ID,
-                                                         gint *x1,
-                                                         gint *y1,
-                                                         gint *x2,
-                                                         gint *y2);
-gboolean            gimp_drawable_mask_intersect        (gint32 drawable_ID,
-                                                         gint *x,
-                                                         gint *y,
-                                                         gint *width,
-                                                         gint *height);
-gint32              gimp_drawable_get_image             (gint32 drawable_ID);
-gboolean            gimp_drawable_set_image             (gint32 drawable_ID,
-                                                         gint32 image_ID);
-gboolean            gimp_drawable_has_alpha             (gint32 drawable_ID);
+gboolean            gimp_drawable_update                (gint32 drawable_ID,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height);
+gboolean            gimp_drawable_mask_bounds           (gint32 drawable_ID,
+                                                         gint *x1,
+                                                         gint *y1,
+                                                         gint *x2,
+                                                         gint *y2);
+gboolean            gimp_drawable_mask_intersect        (gint32 drawable_ID,
+                                                         gint *x,
+                                                         gint *y,
+                                                         gint *width,
+                                                         gint *height);
+gint32              gimp_drawable_get_image             (gint32 drawable_ID);
+gboolean            gimp_drawable_set_image             (gint32 drawable_ID,
+                                                         gint32 image_ID);
+gboolean            gimp_drawable_has_alpha             (gint32 drawable_ID);
 GimpImageType       gimp_drawable_type_with_alpha       (gint32 drawable_ID);
+>GimpImageType       gimp_drawable_type_with_alpha       (gint32 drawable_ID);
 GimpImageType       gimp_drawable_type                  (gint32 drawable_ID);
-gboolean            gimp_drawable_is_rgb                (gint32 drawable_ID);
-gboolean            gimp_drawable_is_gray               (gint32 drawable_ID);
-gboolean            gimp_drawable_is_indexed            (gint32 drawable_ID);
-gint                gimp_drawable_bpp                   (gint32 drawable_ID);
-gint                gimp_drawable_width                 (gint32 drawable_ID);
-gint                gimp_drawable_height                (gint32 drawable_ID);
-gboolean            gimp_drawable_offsets               (gint32 drawable_ID,
-                                                         gint *offset_x,
-                                                         gint *offset_y);
-gboolean            gimp_drawable_is_channel            (gint32 drawable_ID);
-gboolean            gimp_drawable_is_layer              (gint32 drawable_ID);
-gboolean            gimp_drawable_is_layer_mask         (gint32 drawable_ID);
-gboolean            gimp_drawable_is_text_layer         (gint32 drawable_ID);
-gboolean            gimp_drawable_offset                (gint32 drawable_ID,
-                                                         gboolean wrap_around,
+>GimpImageType       gimp_drawable_type                  (gint32 drawable_ID);
+gboolean            gimp_drawable_is_rgb                (gint32 drawable_ID);
+gboolean            gimp_drawable_is_gray               (gint32 drawable_ID);
+gboolean            gimp_drawable_is_indexed            (gint32 drawable_ID);
+gint                gimp_drawable_bpp                   (gint32 drawable_ID);
+gint                gimp_drawable_width                 (gint32 drawable_ID);
+gint                gimp_drawable_height                (gint32 drawable_ID);
+gboolean            gimp_drawable_offsets               (gint32 drawable_ID,
+                                                         gint *offset_x,
+                                                         gint *offset_y);
+gboolean            gimp_drawable_is_channel            (gint32 drawable_ID);
+gboolean            gimp_drawable_is_layer              (gint32 drawable_ID);
+gboolean            gimp_drawable_is_layer_mask         (gint32 drawable_ID);
+gboolean            gimp_drawable_is_text_layer         (gint32 drawable_ID);
+gboolean            gimp_drawable_offset                (gint32 drawable_ID,
+                                                         gboolean wrap_around,
                                                          GimpOffsetType fill_type,
-                                                         gint offset_x,
-                                                         gint offset_y);
-gboolean            gimp_drawable_foreground_extract    (gint32 drawable_ID,
+                                                         gint offset_x,
+                                                         gint offset_y);
+gboolean            gimp_drawable_foreground_extract    (gint32 drawable_ID,
                                                          GimpForegroundExtractMode mode,
-                                                         gint32 mask_ID);
+                                                         gint32 mask_ID);
 GimpParasite*       gimp_drawable_parasite_find         (gint32 drawable_ID,
-                                                         const gchar *name);
-gboolean            gimp_drawable_parasite_list         (gint32 drawable_ID,
-                                                         gint *num_parasites,
-                                                         gchar ***parasites);
-gboolean            gimp_drawable_parasite_attach       (gint32 drawable_ID,
+>GimpParasite*       gimp_drawable_parasite_find         (gint32 drawable_ID,
+                                                         const gchar *name);
+gboolean            gimp_drawable_parasite_list         (gint32 drawable_ID,
+                                                         gint *num_parasites,
+                                                         gchar ***parasites);
+gboolean            gimp_drawable_parasite_attach       (gint32 drawable_ID,
                                                          const GimpParasite *parasite);
-gboolean            gimp_drawable_parasite_detach       (gint32 drawable_ID,
-                                                         const gchar *name);
-gboolean            gimp_drawable_attach_new_parasite   (gint32 drawable_ID,
-                                                         const gchar *name,
-                                                         gint flags,
-                                                         gint size,
-                                                         gconstpointer data);
+gboolean            gimp_drawable_parasite_detach       (gint32 drawable_ID,
+                                                         const gchar *name);
+gboolean            gimp_drawable_attach_new_parasite   (gint32 drawable_ID,
+                                                         const gchar *name,
+                                                         gint flags,
+                                                         gint size,
+                                                         gconstpointer data);
 
@@ -203,7 +485,9 @@

gimp_drawable_get ()

-
GimpDrawable*       gimp_drawable_get                   (gint32 drawable_ID);
+
GimpDrawable*       gimp_drawable_get                   (gint32 drawable_ID);

This function creates a GimpDrawable structure for the core drawable identified by drawable_ID. The returned structure @@ -287,7 +571,11 @@


gimp_drawable_delete ()

-
gboolean            gimp_drawable_delete                (gint32 drawable_ID);
+
gboolean            gimp_drawable_delete                (gint32 drawable_ID);

Delete a drawable.

@@ -319,7 +607,11 @@

gimp_drawable_is_valid ()

-
gboolean            gimp_drawable_is_valid              (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_valid              (gint32 drawable_ID);

Returns TRUE if the drawable is valid.

@@ -351,7 +643,11 @@

gimp_drawable_get_name ()

-
gchar*              gimp_drawable_get_name              (gint32 drawable_ID);
+
gchar*              gimp_drawable_get_name              (gint32 drawable_ID);

Get the name of the specified drawable.

@@ -379,8 +675,14 @@

gimp_drawable_set_name ()

-
gboolean            gimp_drawable_set_name              (gint32 drawable_ID,
-                                                         const gchar *name);
+
gboolean            gimp_drawable_set_name              (gint32 drawable_ID,
+                                                         const gchar *name);

Set the name of the specified drawable.

@@ -413,7 +715,11 @@

gimp_drawable_get_visible ()

-
gboolean            gimp_drawable_get_visible           (gint32 drawable_ID);
+
gboolean            gimp_drawable_get_visible           (gint32 drawable_ID);

Get the visibility of the specified drawable.

@@ -441,8 +747,14 @@

gimp_drawable_set_visible ()

-
gboolean            gimp_drawable_set_visible           (gint32 drawable_ID,
-                                                         gboolean visible);
+
gboolean            gimp_drawable_set_visible           (gint32 drawable_ID,
+                                                         gboolean visible);

Set the visibility of the specified drawable.

@@ -475,7 +787,11 @@

gimp_drawable_get_linked ()

-
gboolean            gimp_drawable_get_linked            (gint32 drawable_ID);
+
gboolean            gimp_drawable_get_linked            (gint32 drawable_ID);

Get the linked state of the specified drawable.

@@ -503,8 +819,14 @@

gimp_drawable_set_linked ()

-
gboolean            gimp_drawable_set_linked            (gint32 drawable_ID,
-                                                         gboolean linked);
+
gboolean            gimp_drawable_set_linked            (gint32 drawable_ID,
+                                                         gboolean linked);

Set the linked state of the specified drawable.

@@ -537,7 +859,11 @@

gimp_drawable_get_tattoo ()

-
gint                gimp_drawable_get_tattoo            (gint32 drawable_ID);
+
gint                gimp_drawable_get_tattoo            (gint32 drawable_ID);

Get the tattoo of the specified drawable.

@@ -568,8 +894,14 @@

gimp_drawable_set_tattoo ()

-
gboolean            gimp_drawable_set_tattoo            (gint32 drawable_ID,
-                                                         gint tattoo);
+
gboolean            gimp_drawable_set_tattoo            (gint32 drawable_ID,
+                                                         gint tattoo);

Set the tattoo of the specified drawable.

@@ -605,10 +937,20 @@

gimp_drawable_get_pixel ()

-
guint8*             gimp_drawable_get_pixel             (gint32 drawable_ID,
-                                                         gint x_coord,
-                                                         gint y_coord,
-                                                         gint *num_channels);
+
guint8*             gimp_drawable_get_pixel             (gint32 drawable_ID,
+                                                         gint x_coord,
+                                                         gint y_coord,
+                                                         gint *num_channels);

Gets the value of the pixel at the specified coordinates.

@@ -653,11 +995,23 @@

gimp_drawable_set_pixel ()

-
gboolean            gimp_drawable_set_pixel             (gint32 drawable_ID,
-                                                         gint x_coord,
-                                                         gint y_coord,
-                                                         gint num_channels,
-                                                         const guint8 *pixel);
+
gboolean            gimp_drawable_set_pixel             (gint32 drawable_ID,
+                                                         gint x_coord,
+                                                         gint y_coord,
+                                                         gint num_channels,
+                                                         const guint8 *pixel);

Sets the value of the pixel at the specified coordinates.

@@ -710,9 +1064,15 @@

gimp_drawable_get_tile ()

GimpTile*           gimp_drawable_get_tile              (GimpDrawable *drawable,
-                                                         gboolean shadow,
-                                                         gint row,
-                                                         gint col);
+ gboolean shadow, + gint row, + gint col);

@@ -753,9 +1113,15 @@

gimp_drawable_get_tile2 ()

GimpTile*           gimp_drawable_get_tile2             (GimpDrawable *drawable,
-                                                         gboolean shadow,
-                                                         gint x,
-                                                         gint y);
+ gboolean shadow, + gint x, + gint y);

@@ -795,10 +1161,20 @@

gimp_drawable_get_thumbnail_data ()

-
guchar*             gimp_drawable_get_thumbnail_data    (gint32 drawable_ID,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
+
guchar*             gimp_drawable_get_thumbnail_data    (gint32 drawable_ID,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);

@@ -838,15 +1214,33 @@

gimp_drawable_get_sub_thumbnail_data ()

-
guchar*             gimp_drawable_get_sub_thumbnail_data
-                                                        (gint32 drawable_ID,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint src_width,
-                                                         gint src_height,
-                                                         gint *dest_width,
-                                                         gint *dest_height,
-                                                         gint *bpp);
+
guchar*             gimp_drawable_get_sub_thumbnail_data
+                                                        (gint32 drawable_ID,
+                                                         gint src_x,
+                                                         gint src_y,
+                                                         gint src_width,
+                                                         gint src_height,
+                                                         gint *dest_width,
+                                                         gint *dest_height,
+                                                         gint *bpp);

@@ -906,11 +1300,15 @@

gimp_drawable_get_color_uchar ()

-
void                gimp_drawable_get_color_uchar       (gint32 drawable_ID,
+
void                gimp_drawable_get_color_uchar       (gint32 drawable_ID,
                                                          const GimpRGB *color,
-                                                         guchar *color_uchar);
+ guchar *color_uchar);

@@ -940,8 +1338,14 @@

gimp_drawable_merge_shadow ()

-
gboolean            gimp_drawable_merge_shadow          (gint32 drawable_ID,
-                                                         gboolean undo);
+
gboolean            gimp_drawable_merge_shadow          (gint32 drawable_ID,
+                                                         gboolean undo);

Merge the shadow buffer with the specified drawable.

@@ -977,7 +1381,11 @@

gimp_drawable_free_shadow ()

-
gboolean            gimp_drawable_free_shadow           (gint32 drawable_ID);
+
gboolean            gimp_drawable_free_shadow           (gint32 drawable_ID);

Free the specified drawable's shadow data (if it exists).

@@ -1011,7 +1419,11 @@

gimp_drawable_fill ()

-
gboolean            gimp_drawable_fill                  (gint32 drawable_ID,
+
gboolean            gimp_drawable_fill                  (gint32 drawable_ID,
                                                          GimpFillType fill_type);

Fill the drawable with the specified fill mode. @@ -1054,11 +1466,23 @@


gimp_drawable_update ()

-
gboolean            gimp_drawable_update                (gint32 drawable_ID,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height);
+
gboolean            gimp_drawable_update                (gint32 drawable_ID,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height);

Update the specified region of the drawable.

@@ -1109,11 +1533,23 @@

gimp_drawable_mask_bounds ()

-
gboolean            gimp_drawable_mask_bounds           (gint32 drawable_ID,
-                                                         gint *x1,
-                                                         gint *y1,
-                                                         gint *x2,
-                                                         gint *y2);
+
gboolean            gimp_drawable_mask_bounds           (gint32 drawable_ID,
+                                                         gint *x1,
+                                                         gint *y1,
+                                                         gint *x2,
+                                                         gint *y2);

Find the bounding box of the current selection in relation to the specified drawable. @@ -1173,11 +1609,23 @@


gimp_drawable_mask_intersect ()

-
gboolean            gimp_drawable_mask_intersect        (gint32 drawable_ID,
-                                                         gint *x,
-                                                         gint *y,
-                                                         gint *width,
-                                                         gint *height);
+
gboolean            gimp_drawable_mask_intersect        (gint32 drawable_ID,
+                                                         gint *x,
+                                                         gint *y,
+                                                         gint *width,
+                                                         gint *height);

Find the bounding box of the current selection in relation to the specified drawable. @@ -1233,7 +1681,11 @@


gimp_drawable_get_image ()

-
gint32              gimp_drawable_get_image             (gint32 drawable_ID);
+
gint32              gimp_drawable_get_image             (gint32 drawable_ID);

Returns the drawable's image.

@@ -1261,8 +1713,14 @@

gimp_drawable_set_image ()

-
gboolean            gimp_drawable_set_image             (gint32 drawable_ID,
-                                                         gint32 image_ID);
+
gboolean            gimp_drawable_set_image             (gint32 drawable_ID,
+                                                         gint32 image_ID);

Warning

gimp_drawable_set_image is deprecated and should not be used in newly-written code.

@@ -1296,7 +1754,11 @@

gimp_drawable_has_alpha ()

-
gboolean            gimp_drawable_has_alpha             (gint32 drawable_ID);
+
gboolean            gimp_drawable_has_alpha             (gint32 drawable_ID);

Returns TRUE if the drawable has an alpha channel.

@@ -1328,7 +1790,9 @@

gimp_drawable_type_with_alpha ()

GimpImageType       gimp_drawable_type_with_alpha       (gint32 drawable_ID);
+>GimpImageType gimp_drawable_type_with_alpha (gint32 drawable_ID);

Returns the drawable's type with alpha.

@@ -1361,7 +1825,9 @@

gimp_drawable_type ()

GimpImageType       gimp_drawable_type                  (gint32 drawable_ID);
+>GimpImageType gimp_drawable_type (gint32 drawable_ID);

Returns the drawable's type.

@@ -1389,7 +1855,11 @@

gimp_drawable_is_rgb ()

-
gboolean            gimp_drawable_is_rgb                (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_rgb                (gint32 drawable_ID);

Returns whether the drawable is an RGB type.

@@ -1418,7 +1888,11 @@

gimp_drawable_is_gray ()

-
gboolean            gimp_drawable_is_gray               (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_gray               (gint32 drawable_ID);

Returns whether the drawable is a grayscale type.

@@ -1447,7 +1921,11 @@

gimp_drawable_is_indexed ()

-
gboolean            gimp_drawable_is_indexed            (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_indexed            (gint32 drawable_ID);

Returns whether the drawable is an indexed type.

@@ -1476,7 +1954,11 @@

gimp_drawable_bpp ()

-
gint                gimp_drawable_bpp                   (gint32 drawable_ID);
+
gint                gimp_drawable_bpp                   (gint32 drawable_ID);

Returns the bytes per pixel.

@@ -1505,7 +1987,11 @@

gimp_drawable_width ()

-
gint                gimp_drawable_width                 (gint32 drawable_ID);
+
gint                gimp_drawable_width                 (gint32 drawable_ID);

Returns the width of the drawable.

@@ -1533,7 +2019,11 @@

gimp_drawable_height ()

-
gint                gimp_drawable_height                (gint32 drawable_ID);
+
gint                gimp_drawable_height                (gint32 drawable_ID);

Returns the height of the drawable.

@@ -1561,9 +2051,17 @@

gimp_drawable_offsets ()

-
gboolean            gimp_drawable_offsets               (gint32 drawable_ID,
-                                                         gint *offset_x,
-                                                         gint *offset_y);
+
gboolean            gimp_drawable_offsets               (gint32 drawable_ID,
+                                                         gint *offset_x,
+                                                         gint *offset_y);

Returns the offsets for the drawable.

@@ -1603,7 +2101,11 @@

gimp_drawable_is_channel ()

-
gboolean            gimp_drawable_is_channel            (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_channel            (gint32 drawable_ID);

Returns whether the drawable is a channel.

@@ -1631,7 +2133,11 @@

gimp_drawable_is_layer ()

-
gboolean            gimp_drawable_is_layer              (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_layer              (gint32 drawable_ID);

Returns whether the drawable is a layer.

@@ -1659,7 +2165,11 @@

gimp_drawable_is_layer_mask ()

-
gboolean            gimp_drawable_is_layer_mask         (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_layer_mask         (gint32 drawable_ID);

Returns whether the drawable is a layer mask.

@@ -1688,7 +2198,11 @@

gimp_drawable_is_text_layer ()

-
gboolean            gimp_drawable_is_text_layer         (gint32 drawable_ID);
+
gboolean            gimp_drawable_is_text_layer         (gint32 drawable_ID);

Returns whether the drawable is a text layer.

@@ -1720,11 +2234,21 @@

gimp_drawable_offset ()

-
gboolean            gimp_drawable_offset                (gint32 drawable_ID,
-                                                         gboolean wrap_around,
+
gboolean            gimp_drawable_offset                (gint32 drawable_ID,
+                                                         gboolean wrap_around,
                                                          GimpOffsetType fill_type,
-                                                         gint offset_x,
-                                                         gint offset_y);
+ gint offset_x, + gint offset_y);

Offset the drawable by the specified amounts in the X and Y directions @@ -1778,11 +2302,17 @@


gimp_drawable_foreground_extract ()

-
gboolean            gimp_drawable_foreground_extract    (gint32 drawable_ID,
+
gboolean            gimp_drawable_foreground_extract    (gint32 drawable_ID,
                                                          GimpForegroundExtractMode mode,
-                                                         gint32 mask_ID);
+ gint32 mask_ID);

Extract the foreground of a drawable using a given trimap.

@@ -1826,8 +2356,12 @@

gimp_drawable_parasite_find ()

GimpParasite*       gimp_drawable_parasite_find         (gint32 drawable_ID,
-                                                         const gchar *name);
+>GimpParasite* gimp_drawable_parasite_find (gint32 drawable_ID, + const gchar *name);

Look up a parasite in a drawable

@@ -1861,9 +2395,17 @@

gimp_drawable_parasite_list ()

-
gboolean            gimp_drawable_parasite_list         (gint32 drawable_ID,
-                                                         gint *num_parasites,
-                                                         gchar ***parasites);
+
gboolean            gimp_drawable_parasite_list         (gint32 drawable_ID,
+                                                         gint *num_parasites,
+                                                         gchar ***parasites);

List all parasites.

@@ -1901,7 +2443,11 @@

gimp_drawable_parasite_attach ()

-
gboolean            gimp_drawable_parasite_attach       (gint32 drawable_ID,
+
gboolean            gimp_drawable_parasite_attach       (gint32 drawable_ID,
                                                          const GimpParasite *parasite);
@@ -1938,8 +2484,14 @@

gimp_drawable_parasite_detach ()

-
gboolean            gimp_drawable_parasite_detach       (gint32 drawable_ID,
-                                                         const gchar *name);
+
gboolean            gimp_drawable_parasite_detach       (gint32 drawable_ID,
+                                                         const gchar *name);

Removes a parasite from a drawable.

@@ -1973,11 +2525,23 @@

gimp_drawable_attach_new_parasite ()

-
gboolean            gimp_drawable_attach_new_parasite   (gint32 drawable_ID,
-                                                         const gchar *name,
-                                                         gint flags,
-                                                         gint size,
-                                                         gconstpointer data);
+
gboolean            gimp_drawable_attach_new_parasite   (gint32 drawable_ID,
+                                                         const gchar *name,
+                                                         gint flags,
+                                                         gint size,
+                                                         gconstpointer data);

Convenience function that creates a parasite and attaches it to GIMP.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,212 +48,484 @@

Synopsis

-gint32              gimp_drawable_transform_flip_simple (gint32 drawable_ID,
+gint32              gimp_drawable_transform_flip_simple (gint32 drawable_ID,
                                                          GimpOrientationType flip_type,
-                                                         gboolean auto_center,
-                                                         gdouble axis,
-                                                         gboolean clip_result);
-gint32              gimp_drawable_transform_flip        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
+                                                         gboolean auto_center,
+                                                         gdouble axis,
+                                                         gboolean clip_result);
+gint32              gimp_drawable_transform_flip        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
-                                                         gboolean clip_result);
-gint32              gimp_drawable_transform_flip_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gboolean interpolate,
-                                                         gboolean clip_result);
-gint32              gimp_drawable_transform_perspective (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2,
-                                                         gdouble x3,
-                                                         gdouble y3,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
+                                                         gboolean clip_result);
+gint32              gimp_drawable_transform_flip_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gboolean interpolate,
+                                                         gboolean clip_result);
+gint32              gimp_drawable_transform_perspective (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2,
+                                                         gdouble x3,
+                                                         gdouble y3,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_perspective_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2,
-                                                         gdouble x3,
-                                                         gdouble y3,
-                                                         gboolean interpolate,
+gint32              gimp_drawable_transform_perspective_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2,
+                                                         gdouble x3,
+                                                         gdouble y3,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_rotate_simple
-                                                        (gint32 drawable_ID,
+gint32              gimp_drawable_transform_rotate_simple
+                                                        (gint32 drawable_ID,
                                                          GimpRotationType rotate_type,
-                                                         gboolean auto_center,
-                                                         gint center_x,
-                                                         gint center_y,
-                                                         gboolean clip_result);
-gint32              gimp_drawable_transform_rotate      (gint32 drawable_ID,
-                                                         gdouble angle,
-                                                         gboolean auto_center,
-                                                         gint center_x,
-                                                         gint center_y,
+                                                         gboolean auto_center,
+                                                         gint center_x,
+                                                         gint center_y,
+                                                         gboolean clip_result);
+gint32              gimp_drawable_transform_rotate      (gint32 drawable_ID,
+                                                         gdouble angle,
+                                                         gboolean auto_center,
+                                                         gint center_x,
+                                                         gint center_y,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_rotate_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble angle,
-                                                         gboolean auto_center,
-                                                         gint center_x,
-                                                         gint center_y,
-                                                         gboolean interpolate,
+gint32              gimp_drawable_transform_rotate_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble angle,
+                                                         gboolean auto_center,
+                                                         gint center_x,
+                                                         gint center_y,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_scale       (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
+gint32              gimp_drawable_transform_scale       (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_scale_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gboolean interpolate,
+gint32              gimp_drawable_transform_scale_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_shear       (gint32 drawable_ID,
+gint32              gimp_drawable_transform_shear       (gint32 drawable_ID,
                                                          GimpOrientationType shear_type,
-                                                         gdouble magnitude,
+                                                         gdouble magnitude,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_shear_default
-                                                        (gint32 drawable_ID,
+gint32              gimp_drawable_transform_shear_default
+                                                        (gint32 drawable_ID,
                                                          GimpOrientationType shear_type,
-                                                         gdouble magnitude,
-                                                         gboolean interpolate,
+                                                         gdouble magnitude,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_2d          (gint32 drawable_ID,
-                                                         gdouble source_x,
-                                                         gdouble source_y,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y,
-                                                         gdouble angle,
-                                                         gdouble dest_x,
-                                                         gdouble dest_y,
+gint32              gimp_drawable_transform_2d          (gint32 drawable_ID,
+                                                         gdouble source_x,
+                                                         gdouble source_y,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y,
+                                                         gdouble angle,
+                                                         gdouble dest_x,
+                                                         gdouble dest_y,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_2d_default  (gint32 drawable_ID,
-                                                         gdouble source_x,
-                                                         gdouble source_y,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y,
-                                                         gdouble angle,
-                                                         gdouble dest_x,
-                                                         gdouble dest_y,
-                                                         gboolean interpolate,
+gint32              gimp_drawable_transform_2d_default  (gint32 drawable_ID,
+                                                         gdouble source_x,
+                                                         gdouble source_y,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y,
+                                                         gdouble angle,
+                                                         gdouble dest_x,
+                                                         gdouble dest_y,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_matrix      (gint32 drawable_ID,
-                                                         gdouble coeff_0_0,
-                                                         gdouble coeff_0_1,
-                                                         gdouble coeff_0_2,
-                                                         gdouble coeff_1_0,
-                                                         gdouble coeff_1_1,
-                                                         gdouble coeff_1_2,
-                                                         gdouble coeff_2_0,
-                                                         gdouble coeff_2_1,
-                                                         gdouble coeff_2_2,
+gint32              gimp_drawable_transform_matrix      (gint32 drawable_ID,
+                                                         gdouble coeff_0_0,
+                                                         gdouble coeff_0_1,
+                                                         gdouble coeff_0_2,
+                                                         gdouble coeff_1_0,
+                                                         gdouble coeff_1_1,
+                                                         gdouble coeff_1_2,
+                                                         gdouble coeff_2_0,
+                                                         gdouble coeff_2_1,
+                                                         gdouble coeff_2_2,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
-gint32              gimp_drawable_transform_matrix_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble coeff_0_0,
-                                                         gdouble coeff_0_1,
-                                                         gdouble coeff_0_2,
-                                                         gdouble coeff_1_0,
-                                                         gdouble coeff_1_1,
-                                                         gdouble coeff_1_2,
-                                                         gdouble coeff_2_0,
-                                                         gdouble coeff_2_1,
-                                                         gdouble coeff_2_2,
-                                                         gboolean interpolate,
+gint32              gimp_drawable_transform_matrix_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble coeff_0_0,
+                                                         gdouble coeff_0_1,
+                                                         gdouble coeff_0_2,
+                                                         gdouble coeff_1_0,
+                                                         gdouble coeff_1_1,
+                                                         gdouble coeff_1_2,
+                                                         gdouble coeff_2_0,
+                                                         gdouble coeff_2_1,
+                                                         gdouble coeff_2_2,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
@@ -269,11 +541,21 @@
 

Details

gimp_drawable_transform_flip_simple ()

-
gint32              gimp_drawable_transform_flip_simple (gint32 drawable_ID,
+
gint32              gimp_drawable_transform_flip_simple (gint32 drawable_ID,
                                                          GimpOrientationType flip_type,
-                                                         gboolean auto_center,
-                                                         gdouble axis,
-                                                         gboolean clip_result);
+ gboolean auto_center, + gdouble axis, + gboolean clip_result);

Flip the specified drawable either vertically or horizontally.

@@ -332,20 +614,38 @@

gimp_drawable_transform_flip ()

-
gint32              gimp_drawable_transform_flip        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
+
gint32              gimp_drawable_transform_flip        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
-                                                         gboolean clip_result);
+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Flip the specified drawable around a given line.

@@ -430,14 +730,30 @@

gimp_drawable_transform_flip_default ()

-
gint32              gimp_drawable_transform_flip_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gboolean interpolate,
-                                                         gboolean clip_result);
+
gint32              gimp_drawable_transform_flip_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gboolean interpolate,
+                                                         gboolean clip_result);

Flip the specified drawable around a given line.

@@ -500,23 +816,47 @@

gimp_drawable_transform_perspective ()

-
gint32              gimp_drawable_transform_perspective (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2,
-                                                         gdouble x3,
-                                                         gdouble y3,
+
gint32              gimp_drawable_transform_perspective (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2,
+                                                         gdouble x3,
+                                                         gdouble y3,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
@@ -630,17 +970,39 @@

gimp_drawable_transform_perspective_default ()

-
gint32              gimp_drawable_transform_perspective_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2,
-                                                         gdouble x3,
-                                                         gdouble y3,
-                                                         gboolean interpolate,
+
gint32              gimp_drawable_transform_perspective_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2,
+                                                         gdouble x3,
+                                                         gdouble y3,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
@@ -727,13 +1089,25 @@

gimp_drawable_transform_rotate_simple ()

-
gint32              gimp_drawable_transform_rotate_simple
-                                                        (gint32 drawable_ID,
+
gint32              gimp_drawable_transform_rotate_simple
+                                                        (gint32 drawable_ID,
                                                          GimpRotationType rotate_type,
-                                                         gboolean auto_center,
-                                                         gint center_x,
-                                                         gint center_y,
-                                                         gboolean clip_result);
+ gboolean auto_center, + gint center_x, + gint center_y, + gboolean clip_result);

Rotate the specified drawable about given coordinates through the specified angle. @@ -796,19 +1170,35 @@


gimp_drawable_transform_rotate ()

-
gint32              gimp_drawable_transform_rotate      (gint32 drawable_ID,
-                                                         gdouble angle,
-                                                         gboolean auto_center,
-                                                         gint center_x,
-                                                         gint center_y,
+
gint32              gimp_drawable_transform_rotate      (gint32 drawable_ID,
+                                                         gdouble angle,
+                                                         gboolean auto_center,
+                                                         gint center_x,
+                                                         gint center_y,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
@@ -894,13 +1284,27 @@

gimp_drawable_transform_rotate_default ()

-
gint32              gimp_drawable_transform_rotate_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble angle,
-                                                         gboolean auto_center,
-                                                         gint center_x,
-                                                         gint center_y,
-                                                         gboolean interpolate,
+
gint32              gimp_drawable_transform_rotate_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble angle,
+                                                         gboolean auto_center,
+                                                         gint center_x,
+                                                         gint center_y,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
@@ -967,19 +1371,35 @@

gimp_drawable_transform_scale ()

-
gint32              gimp_drawable_transform_scale       (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
+
gint32              gimp_drawable_transform_scale       (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
@@ -1064,13 +1484,27 @@

gimp_drawable_transform_scale_default ()

-
gint32              gimp_drawable_transform_scale_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gboolean interpolate,
+
gint32              gimp_drawable_transform_scale_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
@@ -1136,17 +1570,27 @@

gimp_drawable_transform_shear ()

-
gint32              gimp_drawable_transform_shear       (gint32 drawable_ID,
+
gint32              gimp_drawable_transform_shear       (gint32 drawable_ID,
                                                          GimpOrientationType shear_type,
-                                                         gdouble magnitude,
+                                                         gdouble magnitude,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
@@ -1225,11 +1669,19 @@

gimp_drawable_transform_shear_default ()

-
gint32              gimp_drawable_transform_shear_default
-                                                        (gint32 drawable_ID,
+
gint32              gimp_drawable_transform_shear_default
+                                                        (gint32 drawable_ID,
                                                          GimpOrientationType shear_type,
-                                                         gdouble magnitude,
-                                                         gboolean interpolate,
+                                                         gdouble magnitude,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
@@ -1286,22 +1738,44 @@

gimp_drawable_transform_2d ()

-
gint32              gimp_drawable_transform_2d          (gint32 drawable_ID,
-                                                         gdouble source_x,
-                                                         gdouble source_y,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y,
-                                                         gdouble angle,
-                                                         gdouble dest_x,
-                                                         gdouble dest_y,
+
gint32              gimp_drawable_transform_2d          (gint32 drawable_ID,
+                                                         gdouble source_x,
+                                                         gdouble source_y,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y,
+                                                         gdouble angle,
+                                                         gdouble dest_x,
+                                                         gdouble dest_y,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
@@ -1404,15 +1878,35 @@

gimp_drawable_transform_2d_default ()

-
gint32              gimp_drawable_transform_2d_default  (gint32 drawable_ID,
-                                                         gdouble source_x,
-                                                         gdouble source_y,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y,
-                                                         gdouble angle,
-                                                         gdouble dest_x,
-                                                         gdouble dest_y,
-                                                         gboolean interpolate,
+
gint32              gimp_drawable_transform_2d_default  (gint32 drawable_ID,
+                                                         gdouble source_x,
+                                                         gdouble source_y,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y,
+                                                         gdouble angle,
+                                                         gdouble dest_x,
+                                                         gdouble dest_y,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
@@ -1493,24 +1987,50 @@

gimp_drawable_transform_matrix ()

-
gint32              gimp_drawable_transform_matrix      (gint32 drawable_ID,
-                                                         gdouble coeff_0_0,
-                                                         gdouble coeff_0_1,
-                                                         gdouble coeff_0_2,
-                                                         gdouble coeff_1_0,
-                                                         gdouble coeff_1_1,
-                                                         gdouble coeff_1_2,
-                                                         gdouble coeff_2_0,
-                                                         gdouble coeff_2_1,
-                                                         gdouble coeff_2_2,
+
gint32              gimp_drawable_transform_matrix      (gint32 drawable_ID,
+                                                         gdouble coeff_0_0,
+                                                         gdouble coeff_0_1,
+                                                         gdouble coeff_0_2,
+                                                         gdouble coeff_1_0,
+                                                         gdouble coeff_1_1,
+                                                         gdouble coeff_1_2,
+                                                         gdouble coeff_2_0,
+                                                         gdouble coeff_2_1,
+                                                         gdouble coeff_2_2,
                                                          GimpTransformDirection transform_direction,
                                                          GimpInterpolationType interpolation,
-                                                         gboolean supersample,
-                                                         gint recursion_level,
+                                                         gboolean supersample,
+                                                         gint recursion_level,
                                                          GimpTransformResize clip_result);
@@ -1621,18 +2141,42 @@

gimp_drawable_transform_matrix_default ()

-
gint32              gimp_drawable_transform_matrix_default
-                                                        (gint32 drawable_ID,
-                                                         gdouble coeff_0_0,
-                                                         gdouble coeff_0_1,
-                                                         gdouble coeff_0_2,
-                                                         gdouble coeff_1_0,
-                                                         gdouble coeff_1_1,
-                                                         gdouble coeff_1_2,
-                                                         gdouble coeff_2_0,
-                                                         gdouble coeff_2_1,
-                                                         gdouble coeff_2_2,
-                                                         gboolean interpolate,
+
gint32              gimp_drawable_transform_matrix_default
+                                                        (gint32 drawable_ID,
+                                                         gdouble coeff_0_0,
+                                                         gdouble coeff_0_1,
+                                                         gdouble coeff_0_2,
+                                                         gdouble coeff_1_0,
+                                                         gdouble coeff_1_1,
+                                                         gdouble coeff_1_2,
+                                                         gdouble coeff_2_0,
+                                                         gdouble coeff_2_1,
+                                                         gdouble coeff_2_2,
+                                                         gboolean interpolate,
                                                          GimpTransformResize clip_result);
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpedit.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpedit.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpedit.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpedit.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,36 +48,112 @@

Synopsis

-gboolean            gimp_edit_cut                       (gint32 drawable_ID);
-gboolean            gimp_edit_copy                      (gint32 drawable_ID);
-gboolean            gimp_edit_copy_visible              (gint32 image_ID);
-gint32              gimp_edit_paste                     (gint32 drawable_ID,
-                                                         gboolean paste_into);
-gint32              gimp_edit_paste_as_new              (void);
-gchar*              gimp_edit_named_cut                 (gint32 drawable_ID,
-                                                         const gchar *buffer_name);
-gchar*              gimp_edit_named_copy                (gint32 drawable_ID,
-                                                         const gchar *buffer_name);
-gchar*              gimp_edit_named_copy_visible        (gint32 image_ID,
-                                                         const gchar *buffer_name);
-gint32              gimp_edit_named_paste               (gint32 drawable_ID,
-                                                         const gchar *buffer_name,
-                                                         gboolean paste_into);
-gint32              gimp_edit_named_paste_as_new        (const gchar *buffer_name);
-gboolean            gimp_edit_clear                     (gint32 drawable_ID);
-gboolean            gimp_edit_fill                      (gint32 drawable_ID,
+gboolean            gimp_edit_cut                       (gint32 drawable_ID);
+gboolean            gimp_edit_copy                      (gint32 drawable_ID);
+gboolean            gimp_edit_copy_visible              (gint32 image_ID);
+gint32              gimp_edit_paste                     (gint32 drawable_ID,
+                                                         gboolean paste_into);
+gint32              gimp_edit_paste_as_new              (void);
+gchar*              gimp_edit_named_cut                 (gint32 drawable_ID,
+                                                         const gchar *buffer_name);
+gchar*              gimp_edit_named_copy                (gint32 drawable_ID,
+                                                         const gchar *buffer_name);
+gchar*              gimp_edit_named_copy_visible        (gint32 image_ID,
+                                                         const gchar *buffer_name);
+gint32              gimp_edit_named_paste               (gint32 drawable_ID,
+                                                         const gchar *buffer_name,
+                                                         gboolean paste_into);
+gint32              gimp_edit_named_paste_as_new        (const gchar *buffer_name);
+gboolean            gimp_edit_clear                     (gint32 drawable_ID);
+gboolean            gimp_edit_fill                      (gint32 drawable_ID,
                                                          GimpFillType fill_type);
-gboolean            gimp_edit_bucket_fill               (gint32 drawable_ID,
+gboolean            gimp_edit_bucket_fill               (gint32 drawable_ID,
                                                          GimpBucketFillMode fill_mode,
                                                          GimpLayerModeEffects paint_mode,
-                                                         gdouble opacity,
-                                                         gdouble threshold,
-                                                         gboolean sample_merged,
-                                                         gdouble x,
-                                                         gdouble y);
-gboolean            gimp_edit_blend                     (gint32 drawable_ID,
+                                                         gdouble opacity,
+                                                         gdouble threshold,
+                                                         gboolean sample_merged,
+                                                         gdouble x,
+                                                         gdouble y);
+gboolean            gimp_edit_blend                     (gint32 drawable_ID,
                                                          GimpBlendMode blend_mode,
@@ -85,23 +161,55 @@
                                                          GimpGradientType gradient_type,
-                                                         gdouble opacity,
-                                                         gdouble offset,
+                                                         gdouble opacity,
+                                                         gdouble offset,
                                                          GimpRepeatMode repeat,
-                                                         gboolean reverse,
-                                                         gboolean supersample,
-                                                         gint max_depth,
-                                                         gdouble threshold,
-                                                         gboolean dither,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2);
-gboolean            gimp_edit_stroke                    (gint32 drawable_ID);
-gboolean            gimp_edit_stroke_vectors            (gint32 drawable_ID,
-                                                         gint32 vectors_ID);
+                                                         gboolean reverse,
+                                                         gboolean supersample,
+                                                         gint max_depth,
+                                                         gdouble threshold,
+                                                         gboolean dither,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2);
+gboolean            gimp_edit_stroke                    (gint32 drawable_ID);
+gboolean            gimp_edit_stroke_vectors            (gint32 drawable_ID,
+                                                         gint32 vectors_ID);
 
@@ -115,7 +223,11 @@

Details

gimp_edit_cut ()

-
gboolean            gimp_edit_cut                       (gint32 drawable_ID);
+
gboolean            gimp_edit_cut                       (gint32 drawable_ID);

Cut from the specified drawable.

@@ -150,7 +262,11 @@

gimp_edit_copy ()

-
gboolean            gimp_edit_copy                      (gint32 drawable_ID);
+
gboolean            gimp_edit_copy                      (gint32 drawable_ID);

Copy from the specified drawable.

@@ -185,7 +301,11 @@

gimp_edit_copy_visible ()

-
gboolean            gimp_edit_copy_visible              (gint32 image_ID);
+
gboolean            gimp_edit_copy_visible              (gint32 image_ID);

Copy from the projection.

@@ -221,8 +341,14 @@

gimp_edit_paste ()

-
gint32              gimp_edit_paste                     (gint32 drawable_ID,
-                                                         gboolean paste_into);
+
gint32              gimp_edit_paste                     (gint32 drawable_ID,
+                                                         gboolean paste_into);

Paste buffer to the specified drawable.

@@ -269,7 +395,9 @@

gimp_edit_paste_as_new ()

-
gint32              gimp_edit_paste_as_new              (void);
+
gint32              gimp_edit_paste_as_new              (void);

Paste buffer to a new image.

@@ -296,8 +424,14 @@

gimp_edit_named_cut ()

-
gchar*              gimp_edit_named_cut                 (gint32 drawable_ID,
-                                                         const gchar *buffer_name);
+
gchar*              gimp_edit_named_cut                 (gint32 drawable_ID,
+                                                         const gchar *buffer_name);

Cut into a named buffer.

@@ -336,8 +470,14 @@

gimp_edit_named_copy ()

-
gchar*              gimp_edit_named_copy                (gint32 drawable_ID,
-                                                         const gchar *buffer_name);
+
gchar*              gimp_edit_named_copy                (gint32 drawable_ID,
+                                                         const gchar *buffer_name);

Copy into a named buffer.

@@ -376,8 +516,14 @@

gimp_edit_named_copy_visible ()

-
gchar*              gimp_edit_named_copy_visible        (gint32 image_ID,
-                                                         const gchar *buffer_name);
+
gchar*              gimp_edit_named_copy_visible        (gint32 image_ID,
+                                                         const gchar *buffer_name);

Copy from the projection into a named buffer.

@@ -416,9 +562,17 @@

gimp_edit_named_paste ()

-
gint32              gimp_edit_named_paste               (gint32 drawable_ID,
-                                                         const gchar *buffer_name,
-                                                         gboolean paste_into);
+
gint32              gimp_edit_named_paste               (gint32 drawable_ID,
+                                                         const gchar *buffer_name,
+                                                         gboolean paste_into);

Paste named buffer to the specified drawable.

@@ -460,7 +614,11 @@

gimp_edit_named_paste_as_new ()

-
gint32              gimp_edit_named_paste_as_new        (const gchar *buffer_name);
+
gint32              gimp_edit_named_paste_as_new        (const gchar *buffer_name);

Paste named buffer to a new image.

@@ -492,7 +650,11 @@

gimp_edit_clear ()

-
gboolean            gimp_edit_clear                     (gint32 drawable_ID);
+
gboolean            gimp_edit_clear                     (gint32 drawable_ID);

Clear selected area of drawable.

@@ -524,7 +686,11 @@

gimp_edit_fill ()

-
gboolean            gimp_edit_fill                      (gint32 drawable_ID,
+
gboolean            gimp_edit_fill                      (gint32 drawable_ID,
                                                          GimpFillType fill_type);

Fill selected area of drawable. @@ -564,16 +730,30 @@


gimp_edit_bucket_fill ()

-
gboolean            gimp_edit_bucket_fill               (gint32 drawable_ID,
+
gboolean            gimp_edit_bucket_fill               (gint32 drawable_ID,
                                                          GimpBucketFillMode fill_mode,
                                                          GimpLayerModeEffects paint_mode,
-                                                         gdouble opacity,
-                                                         gdouble threshold,
-                                                         gboolean sample_merged,
-                                                         gdouble x,
-                                                         gdouble y);
+ gdouble opacity, + gdouble threshold, + gboolean sample_merged, + gdouble x, + gdouble y);

Fill the area specified either by the current selection if there is one, or by a seed fill starting at the specified coordinates. @@ -648,7 +828,11 @@


gimp_edit_blend ()

-
gboolean            gimp_edit_blend                     (gint32 drawable_ID,
+
gboolean            gimp_edit_blend                     (gint32 drawable_ID,
                                                          GimpBlendMode blend_mode,
@@ -656,20 +840,42 @@
                                                          GimpGradientType gradient_type,
-                                                         gdouble opacity,
-                                                         gdouble offset,
+                                                         gdouble opacity,
+                                                         gdouble offset,
                                                          GimpRepeatMode repeat,
-                                                         gboolean reverse,
-                                                         gboolean supersample,
-                                                         gint max_depth,
-                                                         gdouble threshold,
-                                                         gboolean dither,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2);
+ gboolean reverse, + gboolean supersample, + gint max_depth, + gdouble threshold, + gboolean dither, + gdouble x1, + gdouble y1, + gdouble x2, + gdouble y2);

Blend between the starting and ending coordinates with the specified blend mode and gradient type. @@ -776,7 +982,11 @@


gimp_edit_stroke ()

-
gboolean            gimp_edit_stroke                    (gint32 drawable_ID);
+
gboolean            gimp_edit_stroke                    (gint32 drawable_ID);

Stroke the current selection

@@ -807,8 +1017,14 @@

gimp_edit_stroke_vectors ()

-
gboolean            gimp_edit_stroke_vectors            (gint32 drawable_ID,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_edit_stroke_vectors            (gint32 drawable_ID,
+                                                         gint32 vectors_ID);

Stroke the specified vectors object

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpenums.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpenums.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpenums.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpenums.html 2008-10-08 23:32:59.000000000 +0100 @@ -67,7 +67,11 @@ enum GimpOrientationType; enum GimpRotationType; enum GimpSelectCriterion; -const gchar** gimp_enums_get_type_names (gint *n_type_names); +const gchar** gimp_enums_get_type_names (gint *n_type_names);
@@ -384,7 +388,11 @@

gimp_enums_get_type_names ()

-
const gchar**       gimp_enums_get_type_names           (gint *n_type_names);
+
const gchar**       gimp_enums_get_type_names           (gint *n_type_names);

This function gives access to the list of enums registered by libgimp. The returned array is static and must not be modified.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpexport.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpexport.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpexport.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpexport.html 2008-10-08 23:32:59.000000000 +0100 @@ -50,9 +50,15 @@
 enum                GimpExportCapabilities;
 enum                GimpExportReturn;
-GimpExportReturn    gimp_export_image                   (gint32 *image_ID,
-                                                         gint32 *drawable_ID,
-                                                         const gchar *format_name,
+GimpExportReturn    gimp_export_image                   (gint32 *image_ID,
+                                                         gint32 *drawable_ID,
+                                                         const gchar *format_name,
                                                          GimpExportCapabilities capabilities);
 
@@ -111,9 +117,15 @@

gimp_export_image ()

-
GimpExportReturn    gimp_export_image                   (gint32 *image_ID,
-                                                         gint32 *drawable_ID,
-                                                         const gchar *format_name,
+
GimpExportReturn    gimp_export_image                   (gint32 *image_ID,
+                                                         gint32 *drawable_ID,
+                                                         const gchar *format_name,
                                                          GimpExportCapabilities capabilities);

Takes an image and a drawable to be saved together with a diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfileops.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfileops.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfileops.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfileops.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,46 +48,124 @@

Synopsis

-gchar*              gimp_temp_name                      (const gchar *extension);
-gint32              gimp_file_load                      (gchar*              gimp_temp_name                      (const gchar *extension);
+gint32              gimp_file_load                      (GimpRunMode run_mode,
-                                                         const gchar *filename,
-                                                         const gchar *raw_filename);
-gint32              gimp_file_load_layer                (gchar *filename,
+                                                         const gchar *raw_filename);
+gint32              gimp_file_load_layer                (GimpRunMode run_mode,
-                                                         gint32 image_ID,
-                                                         const gchar *filename);
-gint*               gimp_file_load_layers               (gint32 image_ID,
+                                                         const gchar *filename);
+gint*               gimp_file_load_layers               (GimpRunMode run_mode,
-                                                         gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gint *num_layers);
-gboolean            gimp_file_save                      (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gint *num_layers);
+gboolean            gimp_file_save                      (GimpRunMode run_mode,
-                                                         gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         const gchar *filename,
-                                                         const gchar *raw_filename);
-gboolean            gimp_file_save_thumbnail            (gint32 image_ID,
-                                                         const gchar *filename);
-gboolean            gimp_register_magic_load_handler    (const gchar *procedure_name,
-                                                         const gchar *extensions,
-                                                         const gchar *prefixes,
-                                                         const gchar *magics);
-gboolean            gimp_register_load_handler          (const gchar *procedure_name,
-                                                         const gchar *extensions,
-                                                         const gchar *prefixes);
-gboolean            gimp_register_save_handler          (const gchar *procedure_name,
-                                                         const gchar *extensions,
-                                                         const gchar *prefixes);
-gboolean            gimp_register_file_handler_mime     (const gchar *procedure_name,
-                                                         const gchar *mime_type);
-gboolean            gimp_register_thumbnail_loader      (const gchar *load_proc,
-                                                         const gchar *thumb_proc);
+                                                         gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         const gchar *filename,
+                                                         const gchar *raw_filename);
+gboolean            gimp_file_save_thumbnail            (gint32 image_ID,
+                                                         const gchar *filename);
+gboolean            gimp_register_magic_load_handler    (const gchar *procedure_name,
+                                                         const gchar *extensions,
+                                                         const gchar *prefixes,
+                                                         const gchar *magics);
+gboolean            gimp_register_load_handler          (const gchar *procedure_name,
+                                                         const gchar *extensions,
+                                                         const gchar *prefixes);
+gboolean            gimp_register_save_handler          (const gchar *procedure_name,
+                                                         const gchar *extensions,
+                                                         const gchar *prefixes);
+gboolean            gimp_register_file_handler_mime     (const gchar *procedure_name,
+                                                         const gchar *mime_type);
+gboolean            gimp_register_thumbnail_loader      (const gchar *load_proc,
+                                                         const gchar *thumb_proc);
 
@@ -101,7 +179,11 @@

Details

gimp_temp_name ()

-
gchar*              gimp_temp_name                      (const gchar *extension);
+
gchar*              gimp_temp_name                      (const gchar *extension);

Generates a unique filename.

@@ -130,11 +212,17 @@

gimp_file_load ()

-
gint32              gimp_file_load                      (gint32              gimp_file_load                      (GimpRunMode run_mode,
-                                                         const gchar *filename,
-                                                         const gchar *raw_filename);
+ const gchar *filename, + const gchar *raw_filename);

Loads an image file by invoking the right load handler.

@@ -178,11 +266,17 @@

gimp_file_load_layer ()

-
gint32              gimp_file_load_layer                (gint32              gimp_file_load_layer                (GimpRunMode run_mode,
-                                                         gint32 image_ID,
-                                                         const gchar *filename);
+ gint32 image_ID, + const gchar *filename);

Loads an image file as a layer for an existing image.

@@ -225,12 +319,20 @@

gimp_file_load_layers ()

-
gint*               gimp_file_load_layers               (gint*               gimp_file_load_layers               (GimpRunMode run_mode,
-                                                         gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gint *num_layers);
+ gint32 image_ID, + const gchar *filename, + gint *num_layers);

Loads an image file as layers for an existing image.

@@ -278,13 +380,23 @@

gimp_file_save ()

-
gboolean            gimp_file_save                      (gboolean            gimp_file_save                      (GimpRunMode run_mode,
-                                                         gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         const gchar *filename,
-                                                         const gchar *raw_filename);
+ gint32 image_ID, + gint32 drawable_ID, + const gchar *filename, + const gchar *raw_filename);

Saves a file by extension.

@@ -337,8 +449,14 @@

gimp_file_save_thumbnail ()

-
gboolean            gimp_file_save_thumbnail            (gint32 image_ID,
-                                                         const gchar *filename);
+
gboolean            gimp_file_save_thumbnail            (gint32 image_ID,
+                                                         const gchar *filename);

Saves a thumbnail for the given image

@@ -376,10 +494,20 @@

gimp_register_magic_load_handler ()

-
gboolean            gimp_register_magic_load_handler    (const gchar *procedure_name,
-                                                         const gchar *extensions,
-                                                         const gchar *prefixes,
-                                                         const gchar *magics);
+
gboolean            gimp_register_magic_load_handler    (const gchar *procedure_name,
+                                                         const gchar *extensions,
+                                                         const gchar *prefixes,
+                                                         const gchar *magics);

Registers a file load handler procedure.

@@ -423,9 +551,17 @@

gimp_register_load_handler ()

-
gboolean            gimp_register_load_handler          (const gchar *procedure_name,
-                                                         const gchar *extensions,
-                                                         const gchar *prefixes);
+
gboolean            gimp_register_load_handler          (const gchar *procedure_name,
+                                                         const gchar *extensions,
+                                                         const gchar *prefixes);

Registers a file load handler procedure.

@@ -464,9 +600,17 @@

gimp_register_save_handler ()

-
gboolean            gimp_register_save_handler          (const gchar *procedure_name,
-                                                         const gchar *extensions,
-                                                         const gchar *prefixes);
+
gboolean            gimp_register_save_handler          (const gchar *procedure_name,
+                                                         const gchar *extensions,
+                                                         const gchar *prefixes);

Registers a file save handler procedure.

@@ -505,8 +649,14 @@

gimp_register_file_handler_mime ()

-
gboolean            gimp_register_file_handler_mime     (const gchar *procedure_name,
-                                                         const gchar *mime_type);
+
gboolean            gimp_register_file_handler_mime     (const gchar *procedure_name,
+                                                         const gchar *mime_type);

Associates a MIME type with a file handler procedure.

@@ -544,8 +694,14 @@

gimp_register_thumbnail_loader ()

-
gboolean            gimp_register_thumbnail_loader      (const gchar *load_proc,
-                                                         const gchar *thumb_proc);
+
gboolean            gimp_register_thumbnail_loader      (const gchar *load_proc,
+                                                         const gchar *thumb_proc);

Associates a thumbnail loader with a file load procedure.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,15 +48,45 @@

Synopsis

-gboolean            gimp_floating_sel_remove            (gint32 floating_sel_ID);
-gboolean            gimp_floating_sel_anchor            (gint32 floating_sel_ID);
-gboolean            gimp_floating_sel_to_layer          (gint32 floating_sel_ID);
-gboolean            gimp_floating_sel_attach            (gint32 layer_ID,
-                                                         gint32 drawable_ID);
-gboolean            gimp_floating_sel_rigor             (gint32 floating_sel_ID,
-                                                         gboolean undo);
-gboolean            gimp_floating_sel_relax             (gint32 floating_sel_ID,
-                                                         gboolean undo);
+gboolean            gimp_floating_sel_remove            (gint32 floating_sel_ID);
+gboolean            gimp_floating_sel_anchor            (gint32 floating_sel_ID);
+gboolean            gimp_floating_sel_to_layer          (gint32 floating_sel_ID);
+gboolean            gimp_floating_sel_attach            (gint32 layer_ID,
+                                                         gint32 drawable_ID);
+gboolean            gimp_floating_sel_rigor             (gint32 floating_sel_ID,
+                                                         gboolean undo);
+gboolean            gimp_floating_sel_relax             (gint32 floating_sel_ID,
+                                                         gboolean undo);
 
@@ -70,7 +100,11 @@

Details

gimp_floating_sel_remove ()

-
gboolean            gimp_floating_sel_remove            (gint32 floating_sel_ID);
+
gboolean            gimp_floating_sel_remove            (gint32 floating_sel_ID);

Remove the specified floating selection from its associated drawable. @@ -100,7 +134,11 @@


gimp_floating_sel_anchor ()

-
gboolean            gimp_floating_sel_anchor            (gint32 floating_sel_ID);
+
gboolean            gimp_floating_sel_anchor            (gint32 floating_sel_ID);

Anchor the specified floating selection to its associated drawable.

@@ -131,7 +169,11 @@

gimp_floating_sel_to_layer ()

-
gboolean            gimp_floating_sel_to_layer          (gint32 floating_sel_ID);
+
gboolean            gimp_floating_sel_to_layer          (gint32 floating_sel_ID);

Transforms the specified floating selection into a layer.

@@ -166,8 +208,14 @@

gimp_floating_sel_attach ()

-
gboolean            gimp_floating_sel_attach            (gint32 layer_ID,
-                                                         gint32 drawable_ID);
+
gboolean            gimp_floating_sel_attach            (gint32 layer_ID,
+                                                         gint32 drawable_ID);

Attach the specified layer as floating to the specified drawable.

@@ -201,8 +249,14 @@

gimp_floating_sel_rigor ()

-
gboolean            gimp_floating_sel_rigor             (gint32 floating_sel_ID,
-                                                         gboolean undo);
+
gboolean            gimp_floating_sel_rigor             (gint32 floating_sel_ID,
+                                                         gboolean undo);

Rigor the floating selection.

@@ -235,8 +289,14 @@

gimp_floating_sel_relax ()

-
gboolean            gimp_floating_sel_relax             (gint32 floating_sel_ID,
-                                                         gboolean undo);
+
gboolean            gimp_floating_sel_relax             (gint32 floating_sel_ID,
+                                                         gboolean undo);

Relax the floating selection.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfontmenu.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfontmenu.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,13 +48,27 @@

Synopsis

-GtkWidget*          gimp_font_select_widget_new         (const gchar *title,
-                                                         const gchar *font_name,
+GtkWidget*          gimp_font_select_widget_new         (const gchar *title,
+                                                         const gchar *font_name,
                                                          GimpRunFontCallback callback,
-                                                         gpointer data);
-void                gimp_font_select_widget_close       (GtkWidget *widget);
-void                gimp_font_select_widget_set         (GtkWidget *widget,
-                                                         const gchar *font_name);
+                                                         gpointer data);
+void                gimp_font_select_widget_close       (GtkWidget *widget);
+void                gimp_font_select_widget_set         (GtkWidget *widget,
+                                                         const gchar *font_name);
 
@@ -67,16 +81,26 @@

Details

gimp_font_select_widget_new ()

-
GtkWidget*          gimp_font_select_widget_new         (const gchar *title,
-                                                         const gchar *font_name,
+
GtkWidget*          gimp_font_select_widget_new         (const gchar *title,
+                                                         const gchar *font_name,
                                                          GimpRunFontCallback callback,
-                                                         gpointer data);
+ gpointer data);

Warning

gimp_font_select_widget_new is deprecated and should not be used in newly-written code.

-Creates a new GtkWidget that completely controls the selection of +Creates a new GtkWidget that completely controls the selection of a font. This widget is suitable for placement in a table in a plug-in dialog.

@@ -87,7 +111,9 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title. @@ -107,7 +133,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -116,7 +144,9 @@

gimp_font_select_widget_close ()

-
void                gimp_font_select_widget_close       (GtkWidget *widget);
+
void                gimp_font_select_widget_close       (GtkWidget *widget);

Warning

gimp_font_select_widget_close is deprecated and should not be used in newly-written code.

@@ -138,8 +168,12 @@

gimp_font_select_widget_set ()

-
void                gimp_font_select_widget_set         (GtkWidget *widget,
-                                                         const gchar *font_name);
+
void                gimp_font_select_widget_set         (GtkWidget *widget,
+                                                         const gchar *font_name);

Warning

gimp_font_select_widget_set is deprecated and should not be used in newly-written code.

@@ -161,7 +195,9 @@

font_name :

- Font name to set; NULL means no change. + Font name to set; NULL means no change. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfontselect.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfontselect.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,20 +48,54 @@

Synopsis

-void                (*GimpRunFontCallback)              (const gchar *font_name,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
-const gchar*        gimp_font_select_new                (const gchar *title,
-                                                         const gchar *font_name,
+void                (*GimpRunFontCallback)              (const gchar *font_name,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);
+const gchar*        gimp_font_select_new                (const gchar *title,
+                                                         const gchar *font_name,
                                                          GimpRunFontCallback callback,
-                                                         gpointer data);
-void                gimp_font_select_destroy            (const gchar *font_callback);
-gboolean            gimp_fonts_popup                    (const gchar *font_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_font);
-gboolean            gimp_fonts_close_popup              (const gchar *font_callback);
-gboolean            gimp_fonts_set_popup                (const gchar *font_callback,
-                                                         const gchar *font_name);
+                                                         gpointer data);
+void                gimp_font_select_destroy            (const gchar *font_callback);
+gboolean            gimp_fonts_popup                    (const gchar *font_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_font);
+gboolean            gimp_fonts_close_popup              (const gchar *font_callback);
+gboolean            gimp_fonts_set_popup                (const gchar *font_callback,
+                                                         const gchar *font_name);
 
@@ -74,9 +108,15 @@

Details

GimpRunFontCallback ()

-
void                (*GimpRunFontCallback)              (const gchar *font_name,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
+
void                (*GimpRunFontCallback)              (const gchar *font_name,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);

@@ -106,10 +146,18 @@

gimp_font_select_new ()

-
const gchar*        gimp_font_select_new                (const gchar *title,
-                                                         const gchar *font_name,
+
const gchar*        gimp_font_select_new                (const gchar *title,
+                                                         const gchar *font_name,
                                                          GimpRunFontCallback callback,
-                                                         gpointer data);
+ gpointer data);

@@ -149,7 +197,9 @@

gimp_font_select_destroy ()

-
void                gimp_font_select_destroy            (const gchar *font_callback);
+
void                gimp_font_select_destroy            (const gchar *font_callback);

@@ -167,9 +217,17 @@

gimp_fonts_popup ()

-
gboolean            gimp_fonts_popup                    (const gchar *font_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_font);
+
gboolean            gimp_fonts_popup                    (const gchar *font_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_font);

Invokes the Gimp font selection.

@@ -207,7 +265,11 @@

gimp_fonts_close_popup ()

-
gboolean            gimp_fonts_close_popup              (const gchar *font_callback);
+
gboolean            gimp_fonts_close_popup              (const gchar *font_callback);

Close the font selection dialog.

@@ -235,8 +297,14 @@

gimp_fonts_set_popup ()

-
gboolean            gimp_fonts_set_popup                (const gchar *font_callback,
-                                                         const gchar *font_name);
+
gboolean            gimp_fonts_set_popup                (const gchar *font_callback,
+                                                         const gchar *font_name);

Sets the current font in a font selection dialog.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfonts.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfonts.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpfonts.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpfonts.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,9 +48,17 @@

Synopsis

-gboolean            gimp_fonts_refresh                  (void);
-gchar**             gimp_fonts_get_list                 (const gchar *filter,
-                                                         gint *num_fonts);
+gboolean            gimp_fonts_refresh                  (void);
+gchar**             gimp_fonts_get_list                 (const gchar *filter,
+                                                         gint *num_fonts);
 
@@ -63,7 +71,9 @@

Details

gimp_fonts_refresh ()

-
gboolean            gimp_fonts_refresh                  (void);
+
gboolean            gimp_fonts_refresh                  (void);

Refresh current fonts. This function always succeeds.

@@ -85,8 +95,14 @@

gimp_fonts_get_list ()

-
gchar**             gimp_fonts_get_list                 (const gchar *filter,
-                                                         gint *num_fonts);
+
gchar**             gimp_fonts_get_list                 (const gchar *filter,
+                                                         gint *num_fonts);

Retrieve the list of loaded fonts.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgimprc.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgimprc.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,20 +48,42 @@

Synopsis

-gchar*              gimp_gimprc_query                   (const gchar *token);
-gboolean            gimp_gimprc_set                     (const gchar *token,
-                                                         const gchar *value);
+gchar*              gimp_gimprc_query                   (const gchar *token);
+gboolean            gimp_gimprc_set                     (const gchar *token,
+                                                         const gchar *value);
 GimpColorConfig*    gimp_get_color_configuration        (void);
-gchar*              gimp_get_default_comment            (void);
+gchar*              gimp_get_default_comment            (void);
 GimpUnit            gimp_get_default_unit               (void);
-gchar*              gimp_get_module_load_inhibit        (void);
-gboolean            gimp_get_monitor_resolution         (gdouble *xres,
-                                                         gdouble *yres);
-gchar*              gimp_get_theme_dir                  (void);
+gchar*              gimp_get_module_load_inhibit        (void);
+gboolean            gimp_get_monitor_resolution         (gdouble *xres,
+                                                         gdouble *yres);
+gchar*              gimp_get_theme_dir                  (void);
 
@@ -75,7 +97,11 @@

Details

gimp_gimprc_query ()

-
gchar*              gimp_gimprc_query                   (const gchar *token);
+
gchar*              gimp_gimprc_query                   (const gchar *token);

Queries the gimprc file parser for information on a specified token.

@@ -111,8 +137,14 @@

gimp_gimprc_set ()

-
gboolean            gimp_gimprc_set                     (const gchar *token,
-                                                         const gchar *value);
+
gboolean            gimp_gimprc_set                     (const gchar *token,
+                                                         const gchar *value);

Sets a gimprc token to a value and saves it in the gimprc.

@@ -175,7 +207,9 @@

gimp_get_default_comment ()

-
gchar*              gimp_get_default_comment            (void);
+
gchar*              gimp_get_default_comment            (void);

Get the default image comment as specified in the Preferences.

@@ -222,7 +256,9 @@

gimp_get_module_load_inhibit ()

-
gchar*              gimp_get_module_load_inhibit        (void);
+
gchar*              gimp_get_module_load_inhibit        (void);

Get the list of modules which should not be loaded.

@@ -243,8 +279,14 @@

gimp_get_monitor_resolution ()

-
gboolean            gimp_get_monitor_resolution         (gdouble *xres,
-                                                         gdouble *yres);
+
gboolean            gimp_get_monitor_resolution         (gdouble *xres,
+                                                         gdouble *yres);

Get the monitor resolution as specified in the Preferences.

@@ -280,7 +322,9 @@

gimp_get_theme_dir ()

-
gchar*              gimp_get_theme_dir                  (void);
+
gchar*              gimp_get_theme_dir                  (void);

Get the directory of the current GUI theme.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradient.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradient.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradient.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradient.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,131 +48,377 @@

Synopsis

-gchar*              gimp_gradient_new                   (const gchar *name);
-gchar*              gimp_gradient_duplicate             (const gchar *name);
-gchar*              gimp_gradient_rename                (const gchar *name,
-                                                         const gchar *new_name);
-gboolean            gimp_gradient_delete                (const gchar *name);
-gboolean            gimp_gradient_is_editable           (const gchar *name);
-gboolean            gimp_gradient_get_uniform_samples   (const gchar *name,
-                                                         gint num_samples,
-                                                         gboolean reverse,
-                                                         gint *num_color_samples,
-                                                         gdouble **color_samples);
-gboolean            gimp_gradient_get_custom_samples    (const gchar *name,
-                                                         gint num_samples,
-                                                         const gdouble *positions,
-                                                         gboolean reverse,
-                                                         gint *num_color_samples,
-                                                         gdouble **color_samples);
-gint                gimp_gradient_get_number_of_segments
-                                                        (const gchar *name);
-gboolean            gimp_gradient_segment_get_left_color
-                                                        (const gchar *name,
-                                                         gint segment,
+gchar*              gimp_gradient_new                   (const gchar *name);
+gchar*              gimp_gradient_duplicate             (const gchar *name);
+gchar*              gimp_gradient_rename                (const gchar *name,
+                                                         const gchar *new_name);
+gboolean            gimp_gradient_delete                (const gchar *name);
+gboolean            gimp_gradient_is_editable           (const gchar *name);
+gboolean            gimp_gradient_get_uniform_samples   (const gchar *name,
+                                                         gint num_samples,
+                                                         gboolean reverse,
+                                                         gint *num_color_samples,
+                                                         gdouble **color_samples);
+gboolean            gimp_gradient_get_custom_samples    (const gchar *name,
+                                                         gint num_samples,
+                                                         const gdouble *positions,
+                                                         gboolean reverse,
+                                                         gint *num_color_samples,
+                                                         gdouble **color_samples);
+gint                gimp_gradient_get_number_of_segments
+                                                        (const gchar *name);
+gboolean            gimp_gradient_segment_get_left_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpRGB *color,
-                                                         gdouble *opacity);
-gboolean            gimp_gradient_segment_set_left_color
-                                                        (const gchar *name,
-                                                         gint segment,
+                                                         gdouble *opacity);
+gboolean            gimp_gradient_segment_set_left_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          const GimpRGB *color,
-                                                         gdouble opacity);
-gboolean            gimp_gradient_segment_get_right_color
-                                                        (const gchar *name,
-                                                         gint segment,
+                                                         gdouble opacity);
+gboolean            gimp_gradient_segment_get_right_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpRGB *color,
-                                                         gdouble *opacity);
-gboolean            gimp_gradient_segment_set_right_color
-                                                        (const gchar *name,
-                                                         gint segment,
+                                                         gdouble *opacity);
+gboolean            gimp_gradient_segment_set_right_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          const GimpRGB *color,
-                                                         gdouble opacity);
-gboolean            gimp_gradient_segment_get_left_pos  (const gchar *name,
-                                                         gint segment,
-                                                         gdouble *pos);
-gboolean            gimp_gradient_segment_set_left_pos  (const gchar *name,
-                                                         gint segment,
-                                                         gdouble pos,
-                                                         gdouble *final_pos);
-gboolean            gimp_gradient_segment_get_middle_pos
-                                                        (const gchar *name,
-                                                         gint segment,
-                                                         gdouble *pos);
-gboolean            gimp_gradient_segment_set_middle_pos
-                                                        (const gchar *name,
-                                                         gint segment,
-                                                         gdouble pos,
-                                                         gdouble *final_pos);
-gboolean            gimp_gradient_segment_get_right_pos (const gchar *name,
-                                                         gint segment,
-                                                         gdouble *pos);
-gboolean            gimp_gradient_segment_set_right_pos (const gchar *name,
-                                                         gint segment,
-                                                         gdouble pos,
-                                                         gdouble *final_pos);
-gboolean            gimp_gradient_segment_get_blending_function
-                                                        (const gchar *name,
-                                                         gint segment,
+                                                         gdouble opacity);
+gboolean            gimp_gradient_segment_get_left_pos  (const gchar *name,
+                                                         gint segment,
+                                                         gdouble *pos);
+gboolean            gimp_gradient_segment_set_left_pos  (const gchar *name,
+                                                         gint segment,
+                                                         gdouble pos,
+                                                         gdouble *final_pos);
+gboolean            gimp_gradient_segment_get_middle_pos
+                                                        (const gchar *name,
+                                                         gint segment,
+                                                         gdouble *pos);
+gboolean            gimp_gradient_segment_set_middle_pos
+                                                        (const gchar *name,
+                                                         gint segment,
+                                                         gdouble pos,
+                                                         gdouble *final_pos);
+gboolean            gimp_gradient_segment_get_right_pos (const gchar *name,
+                                                         gint segment,
+                                                         gdouble *pos);
+gboolean            gimp_gradient_segment_set_right_pos (const gchar *name,
+                                                         gint segment,
+                                                         gdouble pos,
+                                                         gdouble *final_pos);
+gboolean            gimp_gradient_segment_get_blending_function
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpGradientSegmentType *blend_func);
-gboolean            gimp_gradient_segment_get_coloring_type
-                                                        (const gchar *name,
-                                                         gint segment,
+gboolean            gimp_gradient_segment_get_coloring_type
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpGradientSegmentColor *coloring_type);
-gboolean            gimp_gradient_segment_range_set_blending_function
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
+gboolean            gimp_gradient_segment_range_set_blending_function
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
                                                          GimpGradientSegmentType blending_function);
-gboolean            gimp_gradient_segment_range_set_coloring_type
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
+gboolean            gimp_gradient_segment_range_set_coloring_type
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
                                                          GimpGradientSegmentColor coloring_type);
-gboolean            gimp_gradient_segment_range_flip    (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
-gboolean            gimp_gradient_segment_range_replicate
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
-                                                         gint replicate_times);
-gboolean            gimp_gradient_segment_range_split_midpoint
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
-gboolean            gimp_gradient_segment_range_split_uniform
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
-                                                         gint split_parts);
-gboolean            gimp_gradient_segment_range_delete  (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
-gboolean            gimp_gradient_segment_range_redistribute_handles
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
-gboolean            gimp_gradient_segment_range_blend_colors
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
-gboolean            gimp_gradient_segment_range_blend_opacity
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
-gdouble             gimp_gradient_segment_range_move    (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
-                                                         gdouble delta,
-                                                         gboolean control_compress);
+gboolean            gimp_gradient_segment_range_flip    (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);
+gboolean            gimp_gradient_segment_range_replicate
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
+                                                         gint replicate_times);
+gboolean            gimp_gradient_segment_range_split_midpoint
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);
+gboolean            gimp_gradient_segment_range_split_uniform
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
+                                                         gint split_parts);
+gboolean            gimp_gradient_segment_range_delete  (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);
+gboolean            gimp_gradient_segment_range_redistribute_handles
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);
+gboolean            gimp_gradient_segment_range_blend_colors
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);
+gboolean            gimp_gradient_segment_range_blend_opacity
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);
+gdouble             gimp_gradient_segment_range_move    (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
+                                                         gdouble delta,
+                                                         gboolean control_compress);
 
@@ -185,7 +431,11 @@

Details

gimp_gradient_new ()

-
gchar*              gimp_gradient_new                   (const gchar *name);
+
gchar*              gimp_gradient_new                   (const gchar *name);

Creates a new gradient

@@ -216,7 +466,11 @@

gimp_gradient_duplicate ()

-
gchar*              gimp_gradient_duplicate             (const gchar *name);
+
gchar*              gimp_gradient_duplicate             (const gchar *name);

Duplicates a gradient

@@ -247,8 +501,14 @@

gimp_gradient_rename ()

-
gchar*              gimp_gradient_rename                (const gchar *name,
-                                                         const gchar *new_name);
+
gchar*              gimp_gradient_rename                (const gchar *name,
+                                                         const gchar *new_name);

Rename a gradient

@@ -284,7 +544,11 @@

gimp_gradient_delete ()

-
gboolean            gimp_gradient_delete                (const gchar *name);
+
gboolean            gimp_gradient_delete                (const gchar *name);

Deletes a gradient

@@ -315,7 +579,11 @@

gimp_gradient_is_editable ()

-
gboolean            gimp_gradient_is_editable           (const gchar *name);
+
gboolean            gimp_gradient_is_editable           (const gchar *name);

Tests if gradient can be edited

@@ -346,11 +614,23 @@

gimp_gradient_get_uniform_samples ()

-
gboolean            gimp_gradient_get_uniform_samples   (const gchar *name,
-                                                         gint num_samples,
-                                                         gboolean reverse,
-                                                         gint *num_color_samples,
-                                                         gdouble **color_samples);
+
gboolean            gimp_gradient_get_uniform_samples   (const gchar *name,
+                                                         gint num_samples,
+                                                         gboolean reverse,
+                                                         gint *num_color_samples,
+                                                         gdouble **color_samples);

Sample the specified in uniform parts.

@@ -407,12 +687,26 @@

gimp_gradient_get_custom_samples ()

-
gboolean            gimp_gradient_get_custom_samples    (const gchar *name,
-                                                         gint num_samples,
-                                                         const gdouble *positions,
-                                                         gboolean reverse,
-                                                         gint *num_color_samples,
-                                                         gdouble **color_samples);
+
gboolean            gimp_gradient_get_custom_samples    (const gchar *name,
+                                                         gint num_samples,
+                                                         const gdouble *positions,
+                                                         gboolean reverse,
+                                                         gint *num_color_samples,
+                                                         gdouble **color_samples);

Sample the spacified gradient in custom positions.

@@ -473,8 +767,12 @@

gimp_gradient_get_number_of_segments ()

-
gint                gimp_gradient_get_number_of_segments
-                                                        (const gchar *name);
+
gint                gimp_gradient_get_number_of_segments
+                                                        (const gchar *name);

Returns the number of segments of the specified gradient

@@ -506,13 +804,21 @@

gimp_gradient_segment_get_left_color ()

-
gboolean            gimp_gradient_segment_get_left_color
-                                                        (const gchar *name,
-                                                         gint segment,
+
gboolean            gimp_gradient_segment_get_left_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpRGB *color,
-                                                         gdouble *opacity);
+ gdouble *opacity);

Retrieves the left endpoint color of the specified segment

@@ -559,13 +865,21 @@

gimp_gradient_segment_set_left_color ()

-
gboolean            gimp_gradient_segment_set_left_color
-                                                        (const gchar *name,
-                                                         gint segment,
+
gboolean            gimp_gradient_segment_set_left_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          const GimpRGB *color,
-                                                         gdouble opacity);
+ gdouble opacity);

Sets the left endpoint color of the specified segment

@@ -612,13 +926,21 @@

gimp_gradient_segment_get_right_color ()

-
gboolean            gimp_gradient_segment_get_right_color
-                                                        (const gchar *name,
-                                                         gint segment,
+
gboolean            gimp_gradient_segment_get_right_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpRGB *color,
-                                                         gdouble *opacity);
+ gdouble *opacity);

Retrieves the right endpoint color of the specified segment

@@ -665,13 +987,21 @@

gimp_gradient_segment_set_right_color ()

-
gboolean            gimp_gradient_segment_set_right_color
-                                                        (const gchar *name,
-                                                         gint segment,
+
gboolean            gimp_gradient_segment_set_right_color
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          const GimpRGB *color,
-                                                         gdouble opacity);
+ gdouble opacity);

Sets the right endpoint color of the specified segment

@@ -718,9 +1048,17 @@

gimp_gradient_segment_get_left_pos ()

-
gboolean            gimp_gradient_segment_get_left_pos  (const gchar *name,
-                                                         gint segment,
-                                                         gdouble *pos);
+
gboolean            gimp_gradient_segment_get_left_pos  (const gchar *name,
+                                                         gint segment,
+                                                         gdouble *pos);

Retrieves the left endpoint position of the specified segment

@@ -762,10 +1100,20 @@

gimp_gradient_segment_set_left_pos ()

-
gboolean            gimp_gradient_segment_set_left_pos  (const gchar *name,
-                                                         gint segment,
-                                                         gdouble pos,
-                                                         gdouble *final_pos);
+
gboolean            gimp_gradient_segment_set_left_pos  (const gchar *name,
+                                                         gint segment,
+                                                         gdouble pos,
+                                                         gdouble *final_pos);

Sets the left endpoint position of the specified segment

@@ -815,10 +1163,18 @@

gimp_gradient_segment_get_middle_pos ()

-
gboolean            gimp_gradient_segment_get_middle_pos
-                                                        (const gchar *name,
-                                                         gint segment,
-                                                         gdouble *pos);
+
gboolean            gimp_gradient_segment_get_middle_pos
+                                                        (const gchar *name,
+                                                         gint segment,
+                                                         gdouble *pos);

Retrieves the middle point position of the specified segment

@@ -860,11 +1216,21 @@

gimp_gradient_segment_set_middle_pos ()

-
gboolean            gimp_gradient_segment_set_middle_pos
-                                                        (const gchar *name,
-                                                         gint segment,
-                                                         gdouble pos,
-                                                         gdouble *final_pos);
+
gboolean            gimp_gradient_segment_set_middle_pos
+                                                        (const gchar *name,
+                                                         gint segment,
+                                                         gdouble pos,
+                                                         gdouble *final_pos);

Sets the middle point position of the specified segment

@@ -913,9 +1279,17 @@

gimp_gradient_segment_get_right_pos ()

-
gboolean            gimp_gradient_segment_get_right_pos (const gchar *name,
-                                                         gint segment,
-                                                         gdouble *pos);
+
gboolean            gimp_gradient_segment_get_right_pos (const gchar *name,
+                                                         gint segment,
+                                                         gdouble *pos);

Retrieves the right endpoint position of the specified segment

@@ -957,10 +1331,20 @@

gimp_gradient_segment_set_right_pos ()

-
gboolean            gimp_gradient_segment_set_right_pos (const gchar *name,
-                                                         gint segment,
-                                                         gdouble pos,
-                                                         gdouble *final_pos);
+
gboolean            gimp_gradient_segment_set_right_pos (const gchar *name,
+                                                         gint segment,
+                                                         gdouble pos,
+                                                         gdouble *final_pos);

Sets the right endpoint position of the specified segment

@@ -1010,9 +1394,15 @@

gimp_gradient_segment_get_blending_function ()

-
gboolean            gimp_gradient_segment_get_blending_function
-                                                        (const gchar *name,
-                                                         gint segment,
+
gboolean            gimp_gradient_segment_get_blending_function
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpGradientSegmentType *blend_func);

Retrieves the gradient segment's blending function @@ -1055,9 +1445,15 @@


gimp_gradient_segment_get_coloring_type ()

-
gboolean            gimp_gradient_segment_get_coloring_type
-                                                        (const gchar *name,
-                                                         gint segment,
+
gboolean            gimp_gradient_segment_get_coloring_type
+                                                        (const gchar *name,
+                                                         gint segment,
                                                          GimpGradientSegmentColor *coloring_type);

Retrieves the gradient segment's coloring type @@ -1100,10 +1496,18 @@


gimp_gradient_segment_range_set_blending_function ()

-
gboolean            gimp_gradient_segment_range_set_blending_function
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
+
gboolean            gimp_gradient_segment_range_set_blending_function
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
                                                          GimpGradientSegmentType blending_function);

Change the blending function of a segments range @@ -1151,10 +1555,18 @@


gimp_gradient_segment_range_set_coloring_type ()

-
gboolean            gimp_gradient_segment_range_set_coloring_type
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
+
gboolean            gimp_gradient_segment_range_set_coloring_type
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
                                                          GimpGradientSegmentColor coloring_type);

Change the coloring type of a segments range @@ -1202,9 +1614,17 @@


gimp_gradient_segment_range_flip ()

-
gboolean            gimp_gradient_segment_range_flip    (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
+
gboolean            gimp_gradient_segment_range_flip    (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);

Flip the segment range

@@ -1245,11 +1665,21 @@

gimp_gradient_segment_range_replicate ()

-
gboolean            gimp_gradient_segment_range_replicate
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
-                                                         gint replicate_times);
+
gboolean            gimp_gradient_segment_range_replicate
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
+                                                         gint replicate_times);

Replicate the segment range

@@ -1297,10 +1727,18 @@

gimp_gradient_segment_range_split_midpoint ()

-
gboolean            gimp_gradient_segment_range_split_midpoint
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
+
gboolean            gimp_gradient_segment_range_split_midpoint
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);

Splits each segment in the segment range at midpoint

@@ -1342,11 +1780,21 @@

gimp_gradient_segment_range_split_uniform ()

-
gboolean            gimp_gradient_segment_range_split_uniform
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
-                                                         gint split_parts);
+
gboolean            gimp_gradient_segment_range_split_uniform
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
+                                                         gint split_parts);

Splits each segment in the segment range uniformly

@@ -1393,9 +1841,17 @@

gimp_gradient_segment_range_delete ()

-
gboolean            gimp_gradient_segment_range_delete  (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
+
gboolean            gimp_gradient_segment_range_delete  (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);

Delete the segment range

@@ -1436,10 +1892,18 @@

gimp_gradient_segment_range_redistribute_handles ()

-
gboolean            gimp_gradient_segment_range_redistribute_handles
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
+
gboolean            gimp_gradient_segment_range_redistribute_handles
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);

Uniformly redistribute the segment range's handles

@@ -1481,10 +1945,18 @@

gimp_gradient_segment_range_blend_colors ()

-
gboolean            gimp_gradient_segment_range_blend_colors
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
+
gboolean            gimp_gradient_segment_range_blend_colors
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);

Blend the colors of the segment range.

@@ -1527,10 +1999,18 @@

gimp_gradient_segment_range_blend_opacity ()

-
gboolean            gimp_gradient_segment_range_blend_opacity
-                                                        (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment);
+
gboolean            gimp_gradient_segment_range_blend_opacity
+                                                        (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment);

Blend the opacity of the segment range.

@@ -1573,11 +2053,23 @@

gimp_gradient_segment_range_move ()

-
gdouble             gimp_gradient_segment_range_move    (const gchar *name,
-                                                         gint start_segment,
-                                                         gint end_segment,
-                                                         gdouble delta,
-                                                         gboolean control_compress);
+
gdouble             gimp_gradient_segment_range_move    (const gchar *name,
+                                                         gint start_segment,
+                                                         gint end_segment,
+                                                         gdouble delta,
+                                                         gboolean control_compress);

Move the position of an entire segment range by a delta.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,13 +48,27 @@

Synopsis

-GtkWidget*          gimp_gradient_select_widget_new     (const gchar *title,
-                                                         const gchar *gradient_name,
+GtkWidget*          gimp_gradient_select_widget_new     (const gchar *title,
+                                                         const gchar *gradient_name,
                                                          GimpRunGradientCallback callback,
-                                                         gpointer data);
-void                gimp_gradient_select_widget_close   (GtkWidget *widget);
-void                gimp_gradient_select_widget_set     (GtkWidget *widget,
-                                                         const gchar *gradient_name);
+                                                         gpointer data);
+void                gimp_gradient_select_widget_close   (GtkWidget *widget);
+void                gimp_gradient_select_widget_set     (GtkWidget *widget,
+                                                         const gchar *gradient_name);
 
@@ -67,16 +81,26 @@

Details

gimp_gradient_select_widget_new ()

-
GtkWidget*          gimp_gradient_select_widget_new     (const gchar *title,
-                                                         const gchar *gradient_name,
+
GtkWidget*          gimp_gradient_select_widget_new     (const gchar *title,
+                                                         const gchar *gradient_name,
                                                          GimpRunGradientCallback callback,
-                                                         gpointer data);
+ gpointer data);

Warning

gimp_gradient_select_widget_new is deprecated and should not be used in newly-written code.

-Creates a new GtkWidget that completely controls the selection of +Creates a new GtkWidget that completely controls the selection of a gradient. This widget is suitable for placement in a table in a plug-in dialog.

@@ -87,7 +111,9 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title. @@ -107,7 +133,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -119,7 +147,9 @@

gimp_gradient_select_widget_close ()

-
void                gimp_gradient_select_widget_close   (GtkWidget *widget);
+
void                gimp_gradient_select_widget_close   (GtkWidget *widget);

Warning

gimp_gradient_select_widget_close is deprecated and should not be used in newly-written code.

@@ -141,8 +171,12 @@

gimp_gradient_select_widget_set ()

-
void                gimp_gradient_select_widget_set     (GtkWidget *widget,
-                                                         const gchar *gradient_name);
+
void                gimp_gradient_select_widget_set     (GtkWidget *widget,
+                                                         const gchar *gradient_name);

Warning

gimp_gradient_select_widget_set is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradientselect.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradientselect.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,24 +48,66 @@

Synopsis

-void                (*GimpRunGradientCallback)          (const gchar *gradient_name,
-                                                         gint width,
-                                                         const gdouble *grad_data,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
-const gchar*        gimp_gradient_select_new            (const gchar *title,
-                                                         const gchar *gradient_name,
-                                                         gint sample_size,
+void                (*GimpRunGradientCallback)          (const gchar *gradient_name,
+                                                         gint width,
+                                                         const gdouble *grad_data,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);
+const gchar*        gimp_gradient_select_new            (const gchar *title,
+                                                         const gchar *gradient_name,
+                                                         gint sample_size,
                                                          GimpRunGradientCallback callback,
-                                                         gpointer data);
-void                gimp_gradient_select_destroy        (const gchar *gradient_callback);
-gboolean            gimp_gradients_popup                (const gchar *gradient_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_gradient,
-                                                         gint sample_size);
-gboolean            gimp_gradients_close_popup          (const gchar *gradient_callback);
-gboolean            gimp_gradients_set_popup            (const gchar *gradient_callback,
-                                                         const gchar *gradient_name);
+                                                         gpointer data);
+void                gimp_gradient_select_destroy        (const gchar *gradient_callback);
+gboolean            gimp_gradients_popup                (const gchar *gradient_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_gradient,
+                                                         gint sample_size);
+gboolean            gimp_gradients_close_popup          (const gchar *gradient_callback);
+gboolean            gimp_gradients_set_popup            (const gchar *gradient_callback,
+                                                         const gchar *gradient_name);
 
@@ -78,11 +120,21 @@

Details

GimpRunGradientCallback ()

-
void                (*GimpRunGradientCallback)          (const gchar *gradient_name,
-                                                         gint width,
-                                                         const gdouble *grad_data,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
+
void                (*GimpRunGradientCallback)          (const gchar *gradient_name,
+                                                         gint width,
+                                                         const gdouble *grad_data,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);

@@ -122,11 +174,21 @@

gimp_gradient_select_new ()

-
const gchar*        gimp_gradient_select_new            (const gchar *title,
-                                                         const gchar *gradient_name,
-                                                         gint sample_size,
+
const gchar*        gimp_gradient_select_new            (const gchar *title,
+                                                         const gchar *gradient_name,
+                                                         gint sample_size,
                                                          GimpRunGradientCallback callback,
-                                                         gpointer data);
+ gpointer data);

@@ -171,7 +233,9 @@

gimp_gradient_select_destroy ()

-
void                gimp_gradient_select_destroy        (const gchar *gradient_callback);
+
void                gimp_gradient_select_destroy        (const gchar *gradient_callback);

@@ -189,10 +253,20 @@

gimp_gradients_popup ()

-
gboolean            gimp_gradients_popup                (const gchar *gradient_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_gradient,
-                                                         gint sample_size);
+
gboolean            gimp_gradients_popup                (const gchar *gradient_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_gradient,
+                                                         gint sample_size);

Invokes the Gimp gradients selection.

@@ -235,7 +309,11 @@

gimp_gradients_close_popup ()

-
gboolean            gimp_gradients_close_popup          (const gchar *gradient_callback);
+
gboolean            gimp_gradients_close_popup          (const gchar *gradient_callback);

Close the gradient selection dialog.

@@ -263,8 +341,14 @@

gimp_gradients_set_popup ()

-
gboolean            gimp_gradients_set_popup            (const gchar *gradient_callback,
-                                                         const gchar *gradient_name);
+
gboolean            gimp_gradients_set_popup            (const gchar *gradient_callback,
+                                                         const gchar *gradient_name);

Sets the current gradient in a gradient selection dialog.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradients.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradients.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgradients.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgradients.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,21 +48,61 @@

Synopsis

-gboolean            gimp_gradients_refresh              (void);
-gchar**             gimp_gradients_get_list             (const gchar *filter,
-                                                         gint *num_gradients);
-gchar*              gimp_gradients_get_gradient         (void);
-gboolean            gimp_gradients_set_gradient         (const gchar *name);
-gdouble*            gimp_gradients_sample_uniform       (gint num_samples,
-                                                         gboolean reverse);
-gdouble*            gimp_gradients_sample_custom        (gint num_samples,
-                                                         const gdouble *positions,
-                                                         gboolean reverse);
-gchar*              gimp_gradients_get_gradient_data    (const gchar *name,
-                                                         gint sample_size,
-                                                         gboolean reverse,
-                                                         gint *width,
-                                                         gdouble **grad_data);
+gboolean            gimp_gradients_refresh              (void);
+gchar**             gimp_gradients_get_list             (const gchar *filter,
+                                                         gint *num_gradients);
+gchar*              gimp_gradients_get_gradient         (void);
+gboolean            gimp_gradients_set_gradient         (const gchar *name);
+gdouble*            gimp_gradients_sample_uniform       (gint num_samples,
+                                                         gboolean reverse);
+gdouble*            gimp_gradients_sample_custom        (gint num_samples,
+                                                         const gdouble *positions,
+                                                         gboolean reverse);
+gchar*              gimp_gradients_get_gradient_data    (const gchar *name,
+                                                         gint sample_size,
+                                                         gboolean reverse,
+                                                         gint *width,
+                                                         gdouble **grad_data);
 
@@ -76,7 +116,9 @@

Details

gimp_gradients_refresh ()

-
gboolean            gimp_gradients_refresh              (void);
+
gboolean            gimp_gradients_refresh              (void);

Refresh current gradients. This function always succeeds.

@@ -98,8 +140,14 @@

gimp_gradients_get_list ()

-
gchar**             gimp_gradients_get_list             (const gchar *filter,
-                                                         gint *num_gradients);
+
gchar**             gimp_gradients_get_list             (const gchar *filter,
+                                                         gint *num_gradients);

Retrieve the list of loaded gradients.

@@ -134,7 +182,9 @@

gimp_gradients_get_gradient ()

-
gchar*              gimp_gradients_get_gradient         (void);
+
gchar*              gimp_gradients_get_gradient         (void);

Warning

gimp_gradients_get_gradient is deprecated and should not be used in newly-written code.

@@ -156,7 +206,11 @@

gimp_gradients_set_gradient ()

-
gboolean            gimp_gradients_set_gradient         (const gchar *name);
+
gboolean            gimp_gradients_set_gradient         (const gchar *name);

Warning

gimp_gradients_set_gradient is deprecated and should not be used in newly-written code.

@@ -185,8 +239,14 @@

gimp_gradients_sample_uniform ()

-
gdouble*            gimp_gradients_sample_uniform       (gint num_samples,
-                                                         gboolean reverse);
+
gdouble*            gimp_gradients_sample_uniform       (gint num_samples,
+                                                         gboolean reverse);

Warning

gimp_gradients_sample_uniform is deprecated and should not be used in newly-written code.

@@ -221,9 +281,17 @@

gimp_gradients_sample_custom ()

-
gdouble*            gimp_gradients_sample_custom        (gint num_samples,
-                                                         const gdouble *positions,
-                                                         gboolean reverse);
+
gdouble*            gimp_gradients_sample_custom        (gint num_samples,
+                                                         const gdouble *positions,
+                                                         gboolean reverse);

Warning

gimp_gradients_sample_custom is deprecated and should not be used in newly-written code.

@@ -263,11 +331,23 @@

gimp_gradients_get_gradient_data ()

-
gchar*              gimp_gradients_get_gradient_data    (const gchar *name,
-                                                         gint sample_size,
-                                                         gboolean reverse,
-                                                         gint *width,
-                                                         gdouble **grad_data);
+
gchar*              gimp_gradients_get_gradient_data    (const gchar *name,
+                                                         gint sample_size,
+                                                         gboolean reverse,
+                                                         gint *width,
+                                                         gdouble **grad_data);

Warning

gimp_gradients_get_gradient_data is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgrid.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgrid.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpgrid.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpgrid.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,42 +48,96 @@

Synopsis

-gboolean            gimp_image_grid_get_spacing         (gint32 image_ID,
-                                                         gdouble *xspacing,
-                                                         gdouble *yspacing);
-gboolean            gimp_image_grid_set_spacing         (gint32 image_ID,
-                                                         gdouble xspacing,
-                                                         gdouble yspacing);
-gboolean            gimp_image_grid_get_offset          (gint32 image_ID,
-                                                         gdouble *xoffset,
-                                                         gdouble *yoffset);
-gboolean            gimp_image_grid_set_offset          (gint32 image_ID,
-                                                         gdouble xoffset,
-                                                         gdouble yoffset);
-gboolean            gimp_image_grid_get_foreground_color
-                                                        (gint32 image_ID,
+gboolean            gimp_image_grid_get_spacing         (gint32 image_ID,
+                                                         gdouble *xspacing,
+                                                         gdouble *yspacing);
+gboolean            gimp_image_grid_set_spacing         (gint32 image_ID,
+                                                         gdouble xspacing,
+                                                         gdouble yspacing);
+gboolean            gimp_image_grid_get_offset          (gint32 image_ID,
+                                                         gdouble *xoffset,
+                                                         gdouble *yoffset);
+gboolean            gimp_image_grid_set_offset          (gint32 image_ID,
+                                                         gdouble xoffset,
+                                                         gdouble yoffset);
+gboolean            gimp_image_grid_get_foreground_color
+                                                        (gint32 image_ID,
                                                          GimpRGB *fgcolor);
-gboolean            gimp_image_grid_set_foreground_color
-                                                        (gint32 image_ID,
+gboolean            gimp_image_grid_set_foreground_color
+                                                        (gint32 image_ID,
                                                          const GimpRGB *fgcolor);
-gboolean            gimp_image_grid_get_background_color
-                                                        (gint32 image_ID,
+gboolean            gimp_image_grid_get_background_color
+                                                        (gint32 image_ID,
                                                          GimpRGB *bgcolor);
-gboolean            gimp_image_grid_set_background_color
-                                                        (gint32 image_ID,
+gboolean            gimp_image_grid_set_background_color
+                                                        (gint32 image_ID,
                                                          const GimpRGB *bgcolor);
 GimpGridStyle       gimp_image_grid_get_style           (gint32 image_ID);
-gboolean            gimp_image_grid_set_style           (gint32 image_ID,
+>GimpGridStyle       gimp_image_grid_get_style           (gint32 image_ID);
+gboolean            gimp_image_grid_set_style           (gint32 image_ID,
                                                          GimpGridStyle style);
@@ -99,9 +153,17 @@
 

Details

gimp_image_grid_get_spacing ()

-
gboolean            gimp_image_grid_get_spacing         (gint32 image_ID,
-                                                         gdouble *xspacing,
-                                                         gdouble *yspacing);
+
gboolean            gimp_image_grid_get_spacing         (gint32 image_ID,
+                                                         gdouble *xspacing,
+                                                         gdouble *yspacing);

Gets the spacing of an image's grid.

@@ -143,9 +205,17 @@

gimp_image_grid_set_spacing ()

-
gboolean            gimp_image_grid_set_spacing         (gint32 image_ID,
-                                                         gdouble xspacing,
-                                                         gdouble yspacing);
+
gboolean            gimp_image_grid_set_spacing         (gint32 image_ID,
+                                                         gdouble xspacing,
+                                                         gdouble yspacing);

Sets the spacing of an image's grid.

@@ -187,9 +257,17 @@

gimp_image_grid_get_offset ()

-
gboolean            gimp_image_grid_get_offset          (gint32 image_ID,
-                                                         gdouble *xoffset,
-                                                         gdouble *yoffset);
+
gboolean            gimp_image_grid_get_offset          (gint32 image_ID,
+                                                         gdouble *xoffset,
+                                                         gdouble *yoffset);

Gets the offset of an image's grid.

@@ -231,9 +309,17 @@

gimp_image_grid_set_offset ()

-
gboolean            gimp_image_grid_set_offset          (gint32 image_ID,
-                                                         gdouble xoffset,
-                                                         gdouble yoffset);
+
gboolean            gimp_image_grid_set_offset          (gint32 image_ID,
+                                                         gdouble xoffset,
+                                                         gdouble yoffset);

Sets the offset of an image's grid.

@@ -275,8 +361,12 @@

gimp_image_grid_get_foreground_color ()

-
gboolean            gimp_image_grid_get_foreground_color
-                                                        (gint32 image_ID,
+
gboolean            gimp_image_grid_get_foreground_color
+                                                        (gint32 image_ID,
                                                          GimpRGB *fgcolor);
@@ -315,8 +405,12 @@

gimp_image_grid_set_foreground_color ()

-
gboolean            gimp_image_grid_set_foreground_color
-                                                        (gint32 image_ID,
+
gboolean            gimp_image_grid_set_foreground_color
+                                                        (gint32 image_ID,
                                                          const GimpRGB *fgcolor);
@@ -355,8 +449,12 @@

gimp_image_grid_get_background_color ()

-
gboolean            gimp_image_grid_get_background_color
-                                                        (gint32 image_ID,
+
gboolean            gimp_image_grid_get_background_color
+                                                        (gint32 image_ID,
                                                          GimpRGB *bgcolor);
@@ -395,8 +493,12 @@

gimp_image_grid_set_background_color ()

-
gboolean            gimp_image_grid_set_background_color
-                                                        (gint32 image_ID,
+
gboolean            gimp_image_grid_set_background_color
+                                                        (gint32 image_ID,
                                                          const GimpRGB *bgcolor);
@@ -437,7 +539,9 @@

gimp_image_grid_get_style ()

GimpGridStyle       gimp_image_grid_get_style           (gint32 image_ID);
+>GimpGridStyle gimp_image_grid_get_style (gint32 image_ID);

Gets the style of an image's grid.

@@ -468,7 +572,11 @@

gimp_image_grid_set_style ()

-
gboolean            gimp_image_grid_set_style           (gint32 image_ID,
+
gboolean            gimp_image_grid_set_style           (gint32 image_ID,
                                                          GimpGridStyle style);
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpguides.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpguides.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpguides.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpguides.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,18 +48,52 @@

Synopsis

-gint32              gimp_image_add_hguide               (gint32 image_ID,
-                                                         gint yposition);
-gint32              gimp_image_add_vguide               (gint32 image_ID,
-                                                         gint xposition);
-gboolean            gimp_image_delete_guide             (gint32 image_ID,
-                                                         gint32 guide_ID);
-gint32              gimp_image_find_next_guide          (gint32 image_ID,
-                                                         gint32 guide_ID);
-GimpOrientationType gimp_image_get_guide_orientation    (gint32 image_ID,
-                                                         gint32 guide_ID);
-gint                gimp_image_get_guide_position       (gint32 image_ID,
-                                                         gint32 guide_ID);
+gint32              gimp_image_add_hguide               (gint32 image_ID,
+                                                         gint yposition);
+gint32              gimp_image_add_vguide               (gint32 image_ID,
+                                                         gint xposition);
+gboolean            gimp_image_delete_guide             (gint32 image_ID,
+                                                         gint32 guide_ID);
+gint32              gimp_image_find_next_guide          (gint32 image_ID,
+                                                         gint32 guide_ID);
+GimpOrientationType gimp_image_get_guide_orientation    (gint32 image_ID,
+                                                         gint32 guide_ID);
+gint                gimp_image_get_guide_position       (gint32 image_ID,
+                                                         gint32 guide_ID);
 
@@ -73,8 +107,14 @@

Details

gimp_image_add_hguide ()

-
gint32              gimp_image_add_hguide               (gint32 image_ID,
-                                                         gint yposition);
+
gint32              gimp_image_add_hguide               (gint32 image_ID,
+                                                         gint yposition);

Add a horizontal guide to an image.

@@ -109,8 +149,14 @@

gimp_image_add_vguide ()

-
gint32              gimp_image_add_vguide               (gint32 image_ID,
-                                                         gint xposition);
+
gint32              gimp_image_add_vguide               (gint32 image_ID,
+                                                         gint xposition);

Add a vertical guide to an image.

@@ -145,8 +191,14 @@

gimp_image_delete_guide ()

-
gboolean            gimp_image_delete_guide             (gint32 image_ID,
-                                                         gint32 guide_ID);
+
gboolean            gimp_image_delete_guide             (gint32 image_ID,
+                                                         gint32 guide_ID);

Deletes a guide from an image.

@@ -180,8 +232,14 @@

gimp_image_find_next_guide ()

-
gint32              gimp_image_find_next_guide          (gint32 image_ID,
-                                                         gint32 guide_ID);
+
gint32              gimp_image_find_next_guide          (gint32 image_ID,
+                                                         gint32 guide_ID);

Find next guide on an image.

@@ -218,8 +276,12 @@

gimp_image_get_guide_orientation ()

-
GimpOrientationType gimp_image_get_guide_orientation    (gint32 image_ID,
-                                                         gint32 guide_ID);
+
GimpOrientationType gimp_image_get_guide_orientation    (gint32 image_ID,
+                                                         gint32 guide_ID);

Get orientation of a guide on an image.

@@ -253,8 +315,14 @@

gimp_image_get_guide_position ()

-
gint                gimp_image_get_guide_position       (gint32 image_ID,
-                                                         gint32 guide_ID);
+
gint                gimp_image_get_guide_position       (gint32 image_ID,
+                                                         gint32 guide_ID);

Get position of a guide on an image.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimphelp.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimphelp.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimphelp.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimphelp.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,8 +48,14 @@

Synopsis

-gboolean            gimp_help                           (const gchar *help_domain,
-                                                         const gchar *help_id);
+gboolean            gimp_help                           (const gchar *help_domain,
+                                                         const gchar *help_id);
 
@@ -63,8 +69,14 @@

Details

gimp_help ()

-
gboolean            gimp_help                           (const gchar *help_domain,
-                                                         const gchar *help_id);
+
gboolean            gimp_help                           (const gchar *help_domain,
+                                                         const gchar *help_id);

Load a help page.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimp.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimp.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimp.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimp.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,18 +49,28 @@

Synopsis

-gchar*              gimp_version                        (void);
-gint                gimp_getpid                         (void);
+gchar*              gimp_version                        (void);
+gint                gimp_getpid                         (void);
 #define             gimp_get_data
 #define             gimp_get_data_size
 #define             gimp_set_data
 void                (*GimpInitProc)                     (void);
 void                (*GimpQuitProc)                     (void);
 void                (*GimpQueryProc)                    (void);
-void                (*GimpRunProc)                      (const gchar *name,
-                                                         gint n_params,
+void                (*GimpRunProc)                      (const gchar *name,
+                                                         gint n_params,
                                                          const GimpParam *param,
-                                                         gint *n_return_vals,
+                                                         gint *n_return_vals,
                                                          GimpParam **return_vals);
                     GimpPlugInInfo;
                     GimpParamDef;
@@ -68,91 +78,211 @@
 union               GimpParamData;
                     GimpParam;
 #define             MAIN                                ()
-gint                gimp_main                           (const GimpPlugInInfo *info,
-                                                         gint argc,
-                                                         gchar *argv[]);
+gint                gimp_main                           (const GimpPlugInInfo *info,
+                                                         gint argc,
+                                                         gchar *argv[]);
 void                gimp_quit                           (void);
-void                gimp_install_procedure              (const gchar *name,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
-                                                         const gchar *menu_label,
-                                                         const gchar *image_types,
+void                gimp_install_procedure              (const gchar *name,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
+                                                         const gchar *menu_label,
+                                                         const gchar *image_types,
                                                          GimpPDBProcType type,
-                                                         gint n_params,
-                                                         gint n_return_vals,
+                                                         gint n_params,
+                                                         gint n_return_vals,
                                                          const GimpParamDef *params,
                                                          const GimpParamDef *return_vals);
-void                gimp_install_temp_proc              (const gchar *name,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
-                                                         const gchar *menu_label,
-                                                         const gchar *image_types,
+void                gimp_install_temp_proc              (const gchar *name,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
+                                                         const gchar *menu_label,
+                                                         const gchar *image_types,
                                                          GimpPDBProcType type,
-                                                         gint n_params,
-                                                         gint n_return_vals,
+                                                         gint n_params,
+                                                         gint n_return_vals,
                                                          const GimpParamDef *params,
                                                          const GimpParamDef *return_vals,
                                                          GimpRunProc run_proc);
-void                gimp_uninstall_temp_proc            (const gchar *name);
-GimpParam*          gimp_run_procedure                  (const gchar *name,
-                                                         gint *n_return_vals,
+void                gimp_uninstall_temp_proc            (const gchar *name);
+GimpParam*          gimp_run_procedure                  (const gchar *name,
+                                                         gint *n_return_vals,
                                                          ...);
-GimpParam*          gimp_run_procedure2                 (const gchar *name,
-                                                         gint *n_return_vals,
-                                                         gint n_params,
+GimpParam*          gimp_run_procedure2                 (const gchar *name,
+                                                         gint *n_return_vals,
+                                                         gint n_params,
                                                          const GimpParam *params);
 void                gimp_destroy_params                 (GimpParam *params,
-                                                         gint n_params);
+                                                         gint n_params);
 void                gimp_destroy_paramdefs              (GimpParamDef *paramdefs,
-                                                         gint n_params);
-const gchar*        gimp_get_pdb_error                  (void);
-guint               gimp_tile_width                     (void);
-guint               gimp_tile_height                    (void);
-gint                gimp_shm_ID                         (void);
-guchar*             gimp_shm_addr                       (void);
-gdouble             gimp_gamma                          (void);
-gboolean            gimp_install_cmap                   (void);
-gint                gimp_min_colors                     (void);
-gboolean            gimp_show_tool_tips                 (void);
-gboolean            gimp_show_help_button               (void);
+                                                         gint n_params);
+const gchar*        gimp_get_pdb_error                  (void);
+guint               gimp_tile_width                     (void);
+guint               gimp_tile_height                    (void);
+gint                gimp_shm_ID                         (void);
+guchar*             gimp_shm_addr                       (void);
+gdouble             gimp_gamma                          (void);
+gboolean            gimp_install_cmap                   (void);
+gint                gimp_min_colors                     (void);
+gboolean            gimp_show_tool_tips                 (void);
+gboolean            gimp_show_help_button               (void);
 GimpCheckSize       gimp_check_size                     (void);
 GimpCheckType       gimp_check_type                     (void);
-gint32              gimp_default_display                (void);
-const gchar*        gimp_wm_class                       (void);
-const gchar*        gimp_display_name                   (void);
-gint                gimp_monitor_number                 (void);
-guint32             gimp_user_time                      (void);
-const gchar*        gimp_get_progname                   (void);
+gint32              gimp_default_display                (void);
+const gchar*        gimp_wm_class                       (void);
+const gchar*        gimp_display_name                   (void);
+gint                gimp_monitor_number                 (void);
+guint32             gimp_user_time                      (void);
+const gchar*        gimp_get_progname                   (void);
 void                gimp_extension_enable               (void);
 void                gimp_extension_ack                  (void);
-void                gimp_extension_process              (guint timeout);
+void                gimp_extension_process              (guint timeout);
 GimpParasite*       gimp_parasite_find                  (const gchar *name);
-gboolean            gimp_parasite_list                  (gint *num_parasites,
-                                                         gchar ***parasites);
-gboolean            gimp_parasite_attach                (const GimpParasite*       gimp_parasite_find                  (const gchar *name);
+gboolean            gimp_parasite_list                  (gint *num_parasites,
+                                                         gchar ***parasites);
+gboolean            gimp_parasite_attach                (const GimpParasite *parasite);
-gboolean            gimp_parasite_detach                (const gchar *name);
-gboolean            gimp_attach_new_parasite            (const gchar *name,
-                                                         gint flags,
-                                                         gint size,
-                                                         gconstpointer data);
+gboolean            gimp_parasite_detach                (const gchar *name);
+gboolean            gimp_attach_new_parasite            (const gchar *name,
+                                                         gint flags,
+                                                         gint size,
+                                                         gconstpointer data);
 
@@ -167,7 +297,9 @@

Details

gimp_version ()

-
gchar*              gimp_version                        (void);
+
gchar*              gimp_version                        (void);

Returns the host GIMP version.

@@ -189,7 +321,9 @@

gimp_getpid ()

-
gint                gimp_getpid                         (void);
+
gint                gimp_getpid                         (void);

Returns the PID of the host GIMP process.

@@ -274,10 +408,16 @@

GimpRunProc ()

-
void                (*GimpRunProc)                      (const gchar *name,
-                                                         gint n_params,
+
void                (*GimpRunProc)                      (const gchar *name,
+                                                         gint n_params,
                                                          const GimpParam *param,
-                                                         gint *n_return_vals,
+                                                         gint *n_return_vals,
                                                          GimpParam **return_vals);

@@ -436,9 +576,15 @@


gimp_main ()

-
gint                gimp_main                           (const GimpPlugInInfo *info,
-                                                         gint argc,
-                                                         gchar *argv[]);
+
gint                gimp_main                           (const GimpPlugInInfo *info,
+                                                         gint argc,
+                                                         gchar *argv[]);

The main procedure that must be called with the PLUG_IN_INFO structure and the 'argc' and 'argv' that are passed to "main".

@@ -485,19 +631,39 @@

gimp_install_procedure ()

-
void                gimp_install_procedure              (const gchar *name,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
-                                                         const gchar *menu_label,
-                                                         const gchar *image_types,
+
void                gimp_install_procedure              (const gchar *name,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
+                                                         const gchar *menu_label,
+                                                         const gchar *image_types,
                                                          GimpPDBProcType type,
-                                                         gint n_params,
-                                                         gint n_return_vals,
+                                                         gint n_params,
+                                                         gint n_return_vals,
                                                          const GimpParamDef *params,
                                                          const GimpParamDef *return_vals);

@@ -560,7 +726,9 @@

Additionally, a GIMP_EXTENSION procedure with no parameters -(n_params == 0 and params == NULL) is an "automatic" extension +(n_params == 0 and params == NULL) is an "automatic" extension that will be automatically started on each GIMP startup.

@@ -602,7 +770,9 @@

menu_label :

the label to use for the procedure's menu entry, - or NULL if the procedure has no menu entry. + or NULL if the procedure has no menu entry. @@ -641,19 +811,39 @@

gimp_install_temp_proc ()

-
void                gimp_install_temp_proc              (const gchar *name,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
-                                                         const gchar *menu_label,
-                                                         const gchar *image_types,
+
void                gimp_install_temp_proc              (const gchar *name,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
+                                                         const gchar *menu_label,
+                                                         const gchar *image_types,
                                                          GimpPDBProcType type,
-                                                         gint n_params,
-                                                         gint n_return_vals,
+                                                         gint n_params,
+                                                         gint n_return_vals,
                                                          const GimpParamDef *params,
                                                          const GimpParamDef *return_vals,
                                                          GimpRunProc run_proc);
@@ -721,7 +911,9 @@

menu_label :

- the procedure's menu label, or NULL if the procedure has + the procedure's menu label, or NULL if the procedure has no menu entry. @@ -766,7 +958,9 @@

gimp_uninstall_temp_proc ()

-
void                gimp_uninstall_temp_proc            (const gchar *name);
+
void                gimp_uninstall_temp_proc            (const gchar *name);

Uninstalls a temporary procedure which has previously been installed using gimp_install_temp_proc().

@@ -785,8 +979,12 @@

gimp_run_procedure ()

-
GimpParam*          gimp_run_procedure                  (const gchar *name,
-                                                         gint *n_return_vals,
+
GimpParam*          gimp_run_procedure                  (const gchar *name,
+                                                         gint *n_return_vals,
                                                          ...);

This function calls a GIMP procedure and returns its return values. @@ -831,9 +1029,15 @@


gimp_run_procedure2 ()

-
GimpParam*          gimp_run_procedure2                 (const gchar *name,
-                                                         gint *n_return_vals,
-                                                         gint n_params,
+
GimpParam*          gimp_run_procedure2                 (const gchar *name,
+                                                         gint *n_return_vals,
+                                                         gint n_params,
                                                          const GimpParam *params);

This function calls a GIMP procedure and returns its return values. @@ -882,7 +1086,9 @@

gimp_destroy_params ()

void                gimp_destroy_params                 (GimpParam *params,
-                                                         gint n_params);
+ gint n_params);

Destroys a GimpParam array as returned by gimp_run_procedure() or gimp_run_procedure2().

@@ -909,7 +1115,9 @@

gimp_destroy_paramdefs ()

void                gimp_destroy_paramdefs              (GimpParamDef *paramdefs,
-                                                         gint n_params);
+ gint n_params);

Destroys a GimpParamDef array as returned by gimp_procedural_db_proc_info().

@@ -935,7 +1143,9 @@

gimp_get_pdb_error ()

-
const gchar*        gimp_get_pdb_error                  (void);
+
const gchar*        gimp_get_pdb_error                  (void);

Retrieves the error message from the last procedure call.

@@ -967,7 +1177,9 @@

gimp_tile_width ()

-
guint               gimp_tile_width                     (void);
+
guint               gimp_tile_width                     (void);

Returns the tile width GIMP is using.

@@ -988,7 +1200,9 @@

gimp_tile_height ()

-
guint               gimp_tile_height                    (void);
+
guint               gimp_tile_height                    (void);

Returns the tile height GIMP is using.

@@ -1009,7 +1223,9 @@

gimp_shm_ID ()

-
gint                gimp_shm_ID                         (void);
+
gint                gimp_shm_ID                         (void);

Returns the shared memory ID used for passing tile data between the GIMP core and the plug-in. @@ -1031,7 +1247,9 @@


gimp_shm_addr ()

-
guchar*             gimp_shm_addr                       (void);
+
guchar*             gimp_shm_addr                       (void);

Returns the address of the shared memory segment used for passing tile data between the GIMP core and the plug-in. @@ -1053,7 +1271,9 @@


gimp_gamma ()

-
gdouble             gimp_gamma                          (void);
+
gdouble             gimp_gamma                          (void);

Returns the global gamma value GIMP and all its plug-ins should use. @@ -1080,7 +1300,9 @@


gimp_install_cmap ()

-
gboolean            gimp_install_cmap                   (void);
+
gboolean            gimp_install_cmap                   (void);

Returns whether or not the plug-in should allocate an own colormap when running on an 8 bit display. See also: gimp_min_colors(). @@ -1102,7 +1324,9 @@


gimp_min_colors ()

-
gint                gimp_min_colors                     (void);
+
gint                gimp_min_colors                     (void);

Returns the minimum number of colors to use when allocating an own colormap on 8 bit displays. @@ -1127,7 +1351,9 @@


gimp_show_tool_tips ()

-
gboolean            gimp_show_tool_tips                 (void);
+
gboolean            gimp_show_tool_tips                 (void);

Returns whether or not the plug-in should show tool-tips.

@@ -1148,7 +1374,9 @@

gimp_show_help_button ()

-
gboolean            gimp_show_help_button               (void);
+
gboolean            gimp_show_help_button               (void);

Returns whether or not GimpDialog should automatically add a help button if help_func and help_id are given. @@ -1225,7 +1453,9 @@


gimp_default_display ()

-
gint32              gimp_default_display                (void);
+
gint32              gimp_default_display                (void);

Returns the default display ID. This corresponds to the display the running procedure's menu entry was invoked from. @@ -1247,7 +1477,9 @@


gimp_wm_class ()

-
const gchar*        gimp_wm_class                       (void);
+
const gchar*        gimp_wm_class                       (void);

Returns the window manager class to be used for plug-in windows.

@@ -1268,7 +1500,9 @@

gimp_display_name ()

-
const gchar*        gimp_display_name                   (void);
+
const gchar*        gimp_display_name                   (void);

Returns the display to be used for plug-in windows.

@@ -1289,7 +1523,9 @@

gimp_monitor_number ()

-
gint                gimp_monitor_number                 (void);
+
gint                gimp_monitor_number                 (void);

Returns the monitor number to be used for plug-in windows.

@@ -1310,7 +1546,9 @@

gimp_user_time ()

-
guint32             gimp_user_time                      (void);
+
guint32             gimp_user_time                      (void);

Returns the timestamp of the user interaction that should be set on the plug-in window. This is handled transparently, plug-in authors @@ -1336,7 +1574,9 @@


gimp_get_progname ()

-
const gchar*        gimp_get_progname                   (void);
+
const gchar*        gimp_get_progname                   (void);

Returns the plug-in's executable name.

@@ -1373,7 +1613,9 @@

If the plug-in cannot use gimp_extension_process(), i.e. if it has -a GUI and is hanging around in a GMainLoop, it must call +a GUI and is hanging around in a GMainLoop, it must call gimp_extension_enable().

@@ -1412,7 +1654,9 @@


gimp_extension_process ()

-
void                gimp_extension_process              (guint timeout);
+
void                gimp_extension_process              (guint timeout);

Processes one message sent by GIMP and returns.

@@ -1444,7 +1688,9 @@

gimp_parasite_find ()

GimpParasite*       gimp_parasite_find                  (const gchar *name);
+>GimpParasite* gimp_parasite_find (const gchar *name);

Look up a global parasite.

@@ -1472,8 +1718,14 @@

gimp_parasite_list ()

-
gboolean            gimp_parasite_list                  (gint *num_parasites,
-                                                         gchar ***parasites);
+
gboolean            gimp_parasite_list                  (gint *num_parasites,
+                                                         gchar ***parasites);

List all parasites.

@@ -1506,7 +1758,9 @@

gimp_parasite_attach ()

-
gboolean            gimp_parasite_attach                (const gboolean            gimp_parasite_attach                (const GimpParasite *parasite);

@@ -1536,7 +1790,11 @@


gimp_parasite_detach ()

-
gboolean            gimp_parasite_detach                (const gchar *name);
+
gboolean            gimp_parasite_detach                (const gchar *name);

Removes a global parasite.

@@ -1565,10 +1823,20 @@

gimp_attach_new_parasite ()

-
gboolean            gimp_attach_new_parasite            (const gchar *name,
-                                                         gint flags,
-                                                         gint size,
-                                                         gconstpointer data);
+
gboolean            gimp_attach_new_parasite            (const gchar *name,
+                                                         gint flags,
+                                                         gint size,
+                                                         gconstpointer data);

Convenience function that creates a parasite and attaches it to GIMP.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpimage.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpimage.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpimage.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpimage.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,203 +48,681 @@

Synopsis

-gint*               gimp_image_list                     (gint *num_images);
-gint32              gimp_image_new                      (gint width,
-                                                         gint height,
+gint*               gimp_image_list                     (gint *num_images);
+gint32              gimp_image_new                      (gint width,
+                                                         gint height,
                                                          GimpImageBaseType type);
-gint32              gimp_image_duplicate                (gint32 image_ID);
-gboolean            gimp_image_delete                   (gint32 image_ID);
-gboolean            gimp_image_is_valid                 (gint32 image_ID);
+gint32              gimp_image_duplicate                (gint32 image_ID);
+gboolean            gimp_image_delete                   (gint32 image_ID);
+gboolean            gimp_image_is_valid                 (gint32 image_ID);
 GimpImageBaseType   gimp_image_base_type                (gint32 image_ID);
-gint                gimp_image_width                    (gint32 image_ID);
-gint                gimp_image_height                   (gint32 image_ID);
-gboolean            gimp_image_free_shadow              (gint32 image_ID);
-gboolean            gimp_image_flip                     (gint32 image_ID,
+>GimpImageBaseType   gimp_image_base_type                (gint32 image_ID);
+gint                gimp_image_width                    (gint32 image_ID);
+gint                gimp_image_height                   (gint32 image_ID);
+gboolean            gimp_image_free_shadow              (gint32 image_ID);
+gboolean            gimp_image_flip                     (gint32 image_ID,
                                                          GimpOrientationType flip_type);
-gboolean            gimp_image_rotate                   (gint32 image_ID,
+gboolean            gimp_image_rotate                   (gint32 image_ID,
                                                          GimpRotationType rotate_type);
-gboolean            gimp_image_resize                   (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gint offx,
-                                                         gint offy);
-gboolean            gimp_image_resize_to_layers         (gint32 image_ID);
-gboolean            gimp_image_scale                    (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height);
-gboolean            gimp_image_scale_full               (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height,
+gboolean            gimp_image_resize                   (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gint offx,
+                                                         gint offy);
+gboolean            gimp_image_resize_to_layers         (gint32 image_ID);
+gboolean            gimp_image_scale                    (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height);
+gboolean            gimp_image_scale_full               (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height,
                                                          GimpInterpolationType interpolation);
-gboolean            gimp_image_crop                     (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gint offx,
-                                                         gint offy);
-gint*               gimp_image_get_layers               (gint32 image_ID,
-                                                         gint *num_layers);
-gint*               gimp_image_get_channels             (gint32 image_ID,
-                                                         gint *num_channels);
-gint32              gimp_image_get_active_drawable      (gint32 image_ID);
-gint32              gimp_image_get_floating_sel         (gint32 image_ID);
-gint32              gimp_image_floating_sel_attached_to (gint32 image_ID);
-gboolean            gimp_image_pick_color               (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gboolean sample_merged,
-                                                         gboolean sample_average,
-                                                         gdouble average_radius,
+gboolean            gimp_image_crop                     (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gint offx,
+                                                         gint offy);
+gint*               gimp_image_get_layers               (gint32 image_ID,
+                                                         gint *num_layers);
+gint*               gimp_image_get_channels             (gint32 image_ID,
+                                                         gint *num_channels);
+gint32              gimp_image_get_active_drawable      (gint32 image_ID);
+gint32              gimp_image_get_floating_sel         (gint32 image_ID);
+gint32              gimp_image_floating_sel_attached_to (gint32 image_ID);
+gboolean            gimp_image_pick_color               (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gboolean sample_merged,
+                                                         gboolean sample_average,
+                                                         gdouble average_radius,
                                                          GimpRGB *color);
-gint32              gimp_image_pick_correlate_layer     (gint32 image_ID,
-                                                         gint x,
-                                                         gint y);
-gboolean            gimp_image_add_layer                (gint32 image_ID,
-                                                         gint32 layer_ID,
-                                                         gint position);
-gboolean            gimp_image_remove_layer             (gint32 image_ID,
-                                                         gint32 layer_ID);
-gboolean            gimp_image_raise_layer              (gint32 image_ID,
-                                                         gint32 layer_ID);
-gboolean            gimp_image_lower_layer              (gint32 image_ID,
-                                                         gint32 layer_ID);
-gboolean            gimp_image_raise_layer_to_top       (gint32 image_ID,
-                                                         gint32 layer_ID);
-gboolean            gimp_image_lower_layer_to_bottom    (gint32 image_ID,
-                                                         gint32 layer_ID);
-gint                gimp_image_get_layer_position       (gint32 image_ID,
-                                                         gint32 layer_ID);
-gboolean            gimp_image_add_channel              (gint32 image_ID,
-                                                         gint32 channel_ID,
-                                                         gint position);
-gboolean            gimp_image_remove_channel           (gint32 image_ID,
-                                                         gint32 channel_ID);
-gboolean            gimp_image_raise_channel            (gint32 image_ID,
-                                                         gint32 channel_ID);
-gboolean            gimp_image_lower_channel            (gint32 image_ID,
-                                                         gint32 channel_ID);
-gint                gimp_image_get_channel_position     (gint32 image_ID,
-                                                         gint32 channel_ID);
-gint32              gimp_image_flatten                  (gint32 image_ID);
-gint32              gimp_image_merge_visible_layers     (gint32 image_ID,
+gint32              gimp_image_pick_correlate_layer     (gint32 image_ID,
+                                                         gint x,
+                                                         gint y);
+gboolean            gimp_image_add_layer                (gint32 image_ID,
+                                                         gint32 layer_ID,
+                                                         gint position);
+gboolean            gimp_image_remove_layer             (gint32 image_ID,
+                                                         gint32 layer_ID);
+gboolean            gimp_image_raise_layer              (gint32 image_ID,
+                                                         gint32 layer_ID);
+gboolean            gimp_image_lower_layer              (gint32 image_ID,
+                                                         gint32 layer_ID);
+gboolean            gimp_image_raise_layer_to_top       (gint32 image_ID,
+                                                         gint32 layer_ID);
+gboolean            gimp_image_lower_layer_to_bottom    (gint32 image_ID,
+                                                         gint32 layer_ID);
+gint                gimp_image_get_layer_position       (gint32 image_ID,
+                                                         gint32 layer_ID);
+gboolean            gimp_image_add_channel              (gint32 image_ID,
+                                                         gint32 channel_ID,
+                                                         gint position);
+gboolean            gimp_image_remove_channel           (gint32 image_ID,
+                                                         gint32 channel_ID);
+gboolean            gimp_image_raise_channel            (gint32 image_ID,
+                                                         gint32 channel_ID);
+gboolean            gimp_image_lower_channel            (gint32 image_ID,
+                                                         gint32 channel_ID);
+gint                gimp_image_get_channel_position     (gint32 image_ID,
+                                                         gint32 channel_ID);
+gint32              gimp_image_flatten                  (gint32 image_ID);
+gint32              gimp_image_merge_visible_layers     (gint32 image_ID,
                                                          GimpMergeType merge_type);
-gint32              gimp_image_merge_down               (gint32 image_ID,
-                                                         gint32 merge_layer_ID,
+gint32              gimp_image_merge_down               (gint32 image_ID,
+                                                         gint32 merge_layer_ID,
                                                          GimpMergeType merge_type);
-gboolean            gimp_image_clean_all                (gint32 image_ID);
-gboolean            gimp_image_is_dirty                 (gint32 image_ID);
-gint32              gimp_image_get_active_layer         (gint32 image_ID);
-gboolean            gimp_image_set_active_layer         (gint32 image_ID,
-                                                         gint32 active_layer_ID);
-gint32              gimp_image_get_active_channel       (gint32 image_ID);
-gboolean            gimp_image_set_active_channel       (gint32 image_ID,
-                                                         gint32 active_channel_ID);
-gboolean            gimp_image_unset_active_channel     (gint32 image_ID);
-gint32              gimp_image_get_selection            (gint32 image_ID);
-gboolean            gimp_image_get_component_active     (gint32 image_ID,
+gboolean            gimp_image_clean_all                (gint32 image_ID);
+gboolean            gimp_image_is_dirty                 (gint32 image_ID);
+gint32              gimp_image_get_active_layer         (gint32 image_ID);
+gboolean            gimp_image_set_active_layer         (gint32 image_ID,
+                                                         gint32 active_layer_ID);
+gint32              gimp_image_get_active_channel       (gint32 image_ID);
+gboolean            gimp_image_set_active_channel       (gint32 image_ID,
+                                                         gint32 active_channel_ID);
+gboolean            gimp_image_unset_active_channel     (gint32 image_ID);
+gint32              gimp_image_get_selection            (gint32 image_ID);
+gboolean            gimp_image_get_component_active     (gint32 image_ID,
                                                          GimpChannelType component);
-gboolean            gimp_image_set_component_active     (gint32 image_ID,
+gboolean            gimp_image_set_component_active     (gint32 image_ID,
                                                          GimpChannelType component,
-                                                         gboolean active);
-gboolean            gimp_image_get_component_visible    (gint32 image_ID,
+                                                         gboolean active);
+gboolean            gimp_image_get_component_visible    (gint32 image_ID,
                                                          GimpChannelType component);
-gboolean            gimp_image_set_component_visible    (gint32 image_ID,
+gboolean            gimp_image_set_component_visible    (gint32 image_ID,
                                                          GimpChannelType component,
-                                                         gboolean visible);
-gchar*              gimp_image_get_filename             (gint32 image_ID);
-gboolean            gimp_image_set_filename             (gint32 image_ID,
-                                                         const gchar *filename);
-gchar*              gimp_image_get_name                 (gint32 image_ID);
-gboolean            gimp_image_get_resolution           (gint32 image_ID,
-                                                         gdouble *xresolution,
-                                                         gdouble *yresolution);
-gboolean            gimp_image_set_resolution           (gint32 image_ID,
-                                                         gdouble xresolution,
-                                                         gdouble yresolution);
+                                                         gboolean visible);
+gchar*              gimp_image_get_filename             (gint32 image_ID);
+gboolean            gimp_image_set_filename             (gint32 image_ID,
+                                                         const gchar *filename);
+gchar*              gimp_image_get_name                 (gint32 image_ID);
+gboolean            gimp_image_get_resolution           (gint32 image_ID,
+                                                         gdouble *xresolution,
+                                                         gdouble *yresolution);
+gboolean            gimp_image_set_resolution           (gint32 image_ID,
+                                                         gdouble xresolution,
+                                                         gdouble yresolution);
 GimpUnit            gimp_image_get_unit                 (gint32 image_ID);
-gboolean            gimp_image_set_unit                 (gint32 image_ID,
+>GimpUnit            gimp_image_get_unit                 (gint32 image_ID);
+gboolean            gimp_image_set_unit                 (gint32 image_ID,
                                                          GimpUnit unit);
-gboolean            gimp_image_set_tattoo_state         (gint32 image_ID,
-                                                         gint tattoo_state);
-gint                gimp_image_get_tattoo_state         (gint32 image_ID);
-gint32              gimp_image_get_layer_by_tattoo      (gint32 image_ID,
-                                                         gint tattoo);
-gint32              gimp_image_get_channel_by_tattoo    (gint32 image_ID,
-                                                         gint tattoo);
-guchar*             gimp_image_get_cmap                 (gint32 image_ID,
-                                                         gint *num_colors);
-gboolean            gimp_image_set_cmap                 (gint32 image_ID,
-                                                         const guchar *cmap,
-                                                         gint num_colors);
-guchar*             gimp_image_get_colormap             (gint32 image_ID,
-                                                         gint *num_colors);
-gboolean            gimp_image_set_colormap             (gint32 image_ID,
-                                                         const guchar *colormap,
-                                                         gint num_colors);
-gint*               gimp_image_get_vectors              (gint32 image_ID,
-                                                         gint *num_vectors);
-gint32              gimp_image_get_vectors_by_tattoo    (gint32 image_ID,
-                                                         gint tattoo);
-guchar*             gimp_image_get_thumbnail_data       (gint32 image_ID,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
+gboolean            gimp_image_set_tattoo_state         (gint32 image_ID,
+                                                         gint tattoo_state);
+gint                gimp_image_get_tattoo_state         (gint32 image_ID);
+gint32              gimp_image_get_layer_by_tattoo      (gint32 image_ID,
+                                                         gint tattoo);
+gint32              gimp_image_get_channel_by_tattoo    (gint32 image_ID,
+                                                         gint tattoo);
+guchar*             gimp_image_get_cmap                 (gint32 image_ID,
+                                                         gint *num_colors);
+gboolean            gimp_image_set_cmap                 (gint32 image_ID,
+                                                         const guchar *cmap,
+                                                         gint num_colors);
+guchar*             gimp_image_get_colormap             (gint32 image_ID,
+                                                         gint *num_colors);
+gboolean            gimp_image_set_colormap             (gint32 image_ID,
+                                                         const guchar *colormap,
+                                                         gint num_colors);
+gint*               gimp_image_get_vectors              (gint32 image_ID,
+                                                         gint *num_vectors);
+gint32              gimp_image_get_vectors_by_tattoo    (gint32 image_ID,
+                                                         gint tattoo);
+guchar*             gimp_image_get_thumbnail_data       (gint32 image_ID,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);
 GimpParasite*       gimp_image_parasite_find            (gint32 image_ID,
-                                                         const gchar *name);
-gboolean            gimp_image_parasite_list            (gint32 image_ID,
-                                                         gint *num_parasites,
-                                                         gchar ***parasites);
-gboolean            gimp_image_parasite_attach          (gint32 image_ID,
+>GimpParasite*       gimp_image_parasite_find            (gint32 image_ID,
+                                                         const gchar *name);
+gboolean            gimp_image_parasite_list            (gint32 image_ID,
+                                                         gint *num_parasites,
+                                                         gchar ***parasites);
+gboolean            gimp_image_parasite_attach          (gint32 image_ID,
                                                          const GimpParasite *parasite);
-gboolean            gimp_image_parasite_detach          (gint32 image_ID,
-                                                         const gchar *name);
-gboolean            gimp_image_attach_new_parasite      (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint flags,
-                                                         gint size,
-                                                         gconstpointer data);
-gboolean            gimp_image_add_vectors              (gint32 image_ID,
-                                                         gint32 vectors_ID,
-                                                         gint position);
-gboolean            gimp_image_remove_vectors           (gint32 image_ID,
-                                                         gint32 vectors_ID);
-gint32              gimp_image_get_active_vectors       (gint32 image_ID);
-gboolean            gimp_image_set_active_vectors       (gint32 image_ID,
-                                                         gint32 active_vectors_ID);
-gboolean            gimp_image_lower_vectors            (gint32 image_ID,
-                                                         gint32 vectors_ID);
-gboolean            gimp_image_raise_vectors            (gint32 image_ID,
-                                                         gint32 vectors_ID);
-gboolean            gimp_image_lower_vectors_to_bottom  (gint32 image_ID,
-                                                         gint32 vectors_ID);
-gboolean            gimp_image_raise_vectors_to_top     (gint32 image_ID,
-                                                         gint32 vectors_ID);
-gint                gimp_image_get_vectors_position     (gint32 image_ID,
-                                                         gint32 vectors_ID);
+gboolean            gimp_image_parasite_detach          (gint32 image_ID,
+                                                         const gchar *name);
+gboolean            gimp_image_attach_new_parasite      (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint flags,
+                                                         gint size,
+                                                         gconstpointer data);
+gboolean            gimp_image_add_vectors              (gint32 image_ID,
+                                                         gint32 vectors_ID,
+                                                         gint position);
+gboolean            gimp_image_remove_vectors           (gint32 image_ID,
+                                                         gint32 vectors_ID);
+gint32              gimp_image_get_active_vectors       (gint32 image_ID);
+gboolean            gimp_image_set_active_vectors       (gint32 image_ID,
+                                                         gint32 active_vectors_ID);
+gboolean            gimp_image_lower_vectors            (gint32 image_ID,
+                                                         gint32 vectors_ID);
+gboolean            gimp_image_raise_vectors            (gint32 image_ID,
+                                                         gint32 vectors_ID);
+gboolean            gimp_image_lower_vectors_to_bottom  (gint32 image_ID,
+                                                         gint32 vectors_ID);
+gboolean            gimp_image_raise_vectors_to_top     (gint32 image_ID,
+                                                         gint32 vectors_ID);
+gint                gimp_image_get_vectors_position     (gint32 image_ID,
+                                                         gint32 vectors_ID);
 
@@ -259,7 +737,11 @@

Details

gimp_image_list ()

-
gint*               gimp_image_list                     (gint *num_images);
+
gint*               gimp_image_list                     (gint *num_images);

Returns the list of images currently open.

@@ -287,8 +769,14 @@

gimp_image_new ()

-
gint32              gimp_image_new                      (gint width,
-                                                         gint height,
+
gint32              gimp_image_new                      (gint width,
+                                                         gint height,
                                                          GimpImageBaseType type);
@@ -334,7 +822,11 @@

gimp_image_duplicate ()

-
gint32              gimp_image_duplicate                (gint32 image_ID);
+
gint32              gimp_image_duplicate                (gint32 image_ID);

Duplicate the specified image

@@ -363,7 +855,11 @@

gimp_image_delete ()

-
gboolean            gimp_image_delete                   (gint32 image_ID);
+
gboolean            gimp_image_delete                   (gint32 image_ID);

Delete the specified image.

@@ -396,7 +892,11 @@

gimp_image_is_valid ()

-
gboolean            gimp_image_is_valid                 (gint32 image_ID);
+
gboolean            gimp_image_is_valid                 (gint32 image_ID);

Returns TRUE if the image is valid.

@@ -430,7 +930,9 @@

gimp_image_base_type ()

GimpImageBaseType   gimp_image_base_type                (gint32 image_ID);
+>GimpImageBaseType gimp_image_base_type (gint32 image_ID);

Get the base type of the image.

@@ -459,7 +961,11 @@

gimp_image_width ()

-
gint                gimp_image_width                    (gint32 image_ID);
+
gint                gimp_image_width                    (gint32 image_ID);

Return the width of the image

@@ -488,7 +994,11 @@

gimp_image_height ()

-
gint                gimp_image_height                   (gint32 image_ID);
+
gint                gimp_image_height                   (gint32 image_ID);

Return the height of the image

@@ -517,7 +1027,11 @@

gimp_image_free_shadow ()

-
gboolean            gimp_image_free_shadow              (gint32 image_ID);
+
gboolean            gimp_image_free_shadow              (gint32 image_ID);

Warning

gimp_image_free_shadow is deprecated and should not be used in newly-written code.

@@ -547,7 +1061,11 @@

gimp_image_flip ()

-
gboolean            gimp_image_flip                     (gint32 image_ID,
+
gboolean            gimp_image_flip                     (gint32 image_ID,
                                                          GimpOrientationType flip_type);

Flips the image horizontally or vertically. @@ -581,7 +1099,11 @@


gimp_image_rotate ()

-
gboolean            gimp_image_rotate                   (gint32 image_ID,
+
gboolean            gimp_image_rotate                   (gint32 image_ID,
                                                          GimpRotationType rotate_type);

Rotates the image by the specified degrees. @@ -615,11 +1137,23 @@


gimp_image_resize ()

-
gboolean            gimp_image_resize                   (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gint offx,
-                                                         gint offy);
+
gboolean            gimp_image_resize                   (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gint offx,
+                                                         gint offy);

Resize the image to the specified extents.

@@ -673,7 +1207,11 @@

gimp_image_resize_to_layers ()

-
gboolean            gimp_image_resize_to_layers         (gint32 image_ID);
+
gboolean            gimp_image_resize_to_layers         (gint32 image_ID);

Resize the image to fit all layers.

@@ -707,9 +1245,17 @@

gimp_image_scale ()

-
gboolean            gimp_image_scale                    (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height);
+
gboolean            gimp_image_scale                    (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height);

Scale the image using the default interpolation method.

@@ -751,9 +1297,17 @@

gimp_image_scale_full ()

-
gboolean            gimp_image_scale_full               (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height,
+
gboolean            gimp_image_scale_full               (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height,
                                                          GimpInterpolationType interpolation);
@@ -806,11 +1360,23 @@

gimp_image_crop ()

-
gboolean            gimp_image_crop                     (gint32 image_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gint offx,
-                                                         gint offy);
+
gboolean            gimp_image_crop                     (gint32 image_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gint offx,
+                                                         gint offy);

Crop the image to the specified extents.

@@ -863,8 +1429,14 @@

gimp_image_get_layers ()

-
gint*               gimp_image_get_layers               (gint32 image_ID,
-                                                         gint *num_layers);
+
gint*               gimp_image_get_layers               (gint32 image_ID,
+                                                         gint *num_layers);

Returns the list of layers contained in the specified image.

@@ -898,8 +1470,14 @@

gimp_image_get_channels ()

-
gint*               gimp_image_get_channels             (gint32 image_ID,
-                                                         gint *num_channels);
+
gint*               gimp_image_get_channels             (gint32 image_ID,
+                                                         gint *num_channels);

Returns the list of channels contained in the specified image.

@@ -934,7 +1512,11 @@

gimp_image_get_active_drawable ()

-
gint32              gimp_image_get_active_drawable      (gint32 image_ID);
+
gint32              gimp_image_get_active_drawable      (gint32 image_ID);

Get the image's active drawable

@@ -967,7 +1549,11 @@

gimp_image_get_floating_sel ()

-
gint32              gimp_image_get_floating_sel         (gint32 image_ID);
+
gint32              gimp_image_get_floating_sel         (gint32 image_ID);

Return the floating selection of the image.

@@ -996,7 +1582,11 @@

gimp_image_floating_sel_attached_to ()

-
gint32              gimp_image_floating_sel_attached_to (gint32 image_ID);
+
gint32              gimp_image_floating_sel_attached_to (gint32 image_ID);

Return the drawable the floating selection is attached to.

@@ -1026,13 +1616,29 @@

gimp_image_pick_color ()

-
gboolean            gimp_image_pick_color               (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gboolean sample_merged,
-                                                         gboolean sample_average,
-                                                         gdouble average_radius,
+
gboolean            gimp_image_pick_color               (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gboolean sample_merged,
+                                                         gboolean sample_average,
+                                                         gdouble average_radius,
                                                          GimpRGB *color);
@@ -1108,9 +1714,17 @@

gimp_image_pick_correlate_layer ()

-
gint32              gimp_image_pick_correlate_layer     (gint32 image_ID,
-                                                         gint x,
-                                                         gint y);
+
gint32              gimp_image_pick_correlate_layer     (gint32 image_ID,
+                                                         gint x,
+                                                         gint y);

Find the layer visible at the specified coordinates.

@@ -1152,9 +1766,17 @@

gimp_image_add_layer ()

-
gboolean            gimp_image_add_layer                (gint32 image_ID,
-                                                         gint32 layer_ID,
-                                                         gint position);
+
gboolean            gimp_image_add_layer                (gint32 image_ID,
+                                                         gint32 layer_ID,
+                                                         gint position);

Add the specified layer to the image.

@@ -1195,8 +1817,14 @@

gimp_image_remove_layer ()

-
gboolean            gimp_image_remove_layer             (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gboolean            gimp_image_remove_layer             (gint32 image_ID,
+                                                         gint32 layer_ID);

Remove the specified layer from the image.

@@ -1233,8 +1861,14 @@

gimp_image_raise_layer ()

-
gboolean            gimp_image_raise_layer              (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gboolean            gimp_image_raise_layer              (gint32 image_ID,
+                                                         gint32 layer_ID);

Raise the specified layer in the image's layer stack

@@ -1269,8 +1903,14 @@

gimp_image_lower_layer ()

-
gboolean            gimp_image_lower_layer              (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gboolean            gimp_image_lower_layer              (gint32 image_ID,
+                                                         gint32 layer_ID);

Lower the specified layer in the image's layer stack

@@ -1305,8 +1945,14 @@

gimp_image_raise_layer_to_top ()

-
gboolean            gimp_image_raise_layer_to_top       (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gboolean            gimp_image_raise_layer_to_top       (gint32 image_ID,
+                                                         gint32 layer_ID);

Raise the specified layer in the image's layer stack to top of stack

@@ -1341,8 +1987,14 @@

gimp_image_lower_layer_to_bottom ()

-
gboolean            gimp_image_lower_layer_to_bottom    (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gboolean            gimp_image_lower_layer_to_bottom    (gint32 image_ID,
+                                                         gint32 layer_ID);

Lower the specified layer in the image's layer stack to bottom of stack @@ -1378,8 +2030,14 @@


gimp_image_get_layer_position ()

-
gint                gimp_image_get_layer_position       (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gint                gimp_image_get_layer_position       (gint32 image_ID,
+                                                         gint32 layer_ID);

Returns the position of the layer in the layer stack.

@@ -1417,9 +2075,17 @@

gimp_image_add_channel ()

-
gboolean            gimp_image_add_channel              (gint32 image_ID,
-                                                         gint32 channel_ID,
-                                                         gint position);
+
gboolean            gimp_image_add_channel              (gint32 image_ID,
+                                                         gint32 channel_ID,
+                                                         gint position);

Add the specified channel to the image.

@@ -1459,8 +2125,14 @@

gimp_image_remove_channel ()

-
gboolean            gimp_image_remove_channel           (gint32 image_ID,
-                                                         gint32 channel_ID);
+
gboolean            gimp_image_remove_channel           (gint32 image_ID,
+                                                         gint32 channel_ID);

Remove the specified channel from the image.

@@ -1494,8 +2166,14 @@

gimp_image_raise_channel ()

-
gboolean            gimp_image_raise_channel            (gint32 image_ID,
-                                                         gint32 channel_ID);
+
gboolean            gimp_image_raise_channel            (gint32 image_ID,
+                                                         gint32 channel_ID);

Raise the specified channel in the image's channel stack

@@ -1530,8 +2208,14 @@

gimp_image_lower_channel ()

-
gboolean            gimp_image_lower_channel            (gint32 image_ID,
-                                                         gint32 channel_ID);
+
gboolean            gimp_image_lower_channel            (gint32 image_ID,
+                                                         gint32 channel_ID);

Lower the specified channel in the image's channel stack

@@ -1566,8 +2250,14 @@

gimp_image_get_channel_position ()

-
gint                gimp_image_get_channel_position     (gint32 image_ID,
-                                                         gint32 channel_ID);
+
gint                gimp_image_get_channel_position     (gint32 image_ID,
+                                                         gint32 channel_ID);

Returns the position of the channel in the channel stack.

@@ -1605,7 +2295,11 @@

gimp_image_flatten ()

-
gint32              gimp_image_flatten                  (gint32 image_ID);
+
gint32              gimp_image_flatten                  (gint32 image_ID);

Flatten all visible layers into a single layer. Discard all invisible layers. @@ -1636,7 +2330,11 @@


gimp_image_merge_visible_layers ()

-
gint32              gimp_image_merge_visible_layers     (gint32 image_ID,
+
gint32              gimp_image_merge_visible_layers     (gint32 image_ID,
                                                          GimpMergeType merge_type);

Merge the visible image layers into one. @@ -1675,8 +2373,14 @@


gimp_image_merge_down ()

-
gint32              gimp_image_merge_down               (gint32 image_ID,
-                                                         gint32 merge_layer_ID,
+
gint32              gimp_image_merge_down               (gint32 image_ID,
+                                                         gint32 merge_layer_ID,
                                                          GimpMergeType merge_type);

Merge the layer passed and the first visible layer below. @@ -1721,7 +2425,11 @@


gimp_image_clean_all ()

-
gboolean            gimp_image_clean_all                (gint32 image_ID);
+
gboolean            gimp_image_clean_all                (gint32 image_ID);

Set the image dirty count to 0.

@@ -1754,7 +2462,11 @@

gimp_image_is_dirty ()

-
gboolean            gimp_image_is_dirty                 (gint32 image_ID);
+
gboolean            gimp_image_is_dirty                 (gint32 image_ID);

Checks if the image has unsaved changes.

@@ -1785,7 +2497,11 @@

gimp_image_get_active_layer ()

-
gint32              gimp_image_get_active_layer         (gint32 image_ID);
+
gint32              gimp_image_get_active_layer         (gint32 image_ID);

Returns the specified image's active layer.

@@ -1815,8 +2531,14 @@

gimp_image_set_active_layer ()

-
gboolean            gimp_image_set_active_layer         (gint32 image_ID,
-                                                         gint32 active_layer_ID);
+
gboolean            gimp_image_set_active_layer         (gint32 image_ID,
+                                                         gint32 active_layer_ID);

Sets the specified image's active layer.

@@ -1852,7 +2574,11 @@

gimp_image_get_active_channel ()

-
gint32              gimp_image_get_active_channel       (gint32 image_ID);
+
gint32              gimp_image_get_active_channel       (gint32 image_ID);

Returns the specified image's active channel.

@@ -1881,8 +2607,14 @@

gimp_image_set_active_channel ()

-
gboolean            gimp_image_set_active_channel       (gint32 image_ID,
-                                                         gint32 active_channel_ID);
+
gboolean            gimp_image_set_active_channel       (gint32 image_ID,
+                                                         gint32 active_channel_ID);

Sets the specified image's active channel.

@@ -1918,7 +2650,11 @@

gimp_image_unset_active_channel ()

-
gboolean            gimp_image_unset_active_channel     (gint32 image_ID);
+
gboolean            gimp_image_unset_active_channel     (gint32 image_ID);

Unsets the active channel in the specified image.

@@ -1949,7 +2685,11 @@

gimp_image_get_selection ()

-
gint32              gimp_image_get_selection            (gint32 image_ID);
+
gint32              gimp_image_get_selection            (gint32 image_ID);

Returns the specified image's selection.

@@ -1978,7 +2718,11 @@

gimp_image_get_component_active ()

-
gboolean            gimp_image_get_component_active     (gint32 image_ID,
+
gboolean            gimp_image_get_component_active     (gint32 image_ID,
                                                          GimpChannelType component);
@@ -2017,11 +2761,17 @@

gimp_image_set_component_active ()

-
gboolean            gimp_image_set_component_active     (gint32 image_ID,
+
gboolean            gimp_image_set_component_active     (gint32 image_ID,
                                                          GimpChannelType component,
-                                                         gboolean active);
+ gboolean active);

Sets if the specified image's image component is active.

@@ -2062,7 +2812,11 @@

gimp_image_get_component_visible ()

-
gboolean            gimp_image_get_component_visible    (gint32 image_ID,
+
gboolean            gimp_image_get_component_visible    (gint32 image_ID,
                                                          GimpChannelType component);
@@ -2102,11 +2856,17 @@

gimp_image_set_component_visible ()

-
gboolean            gimp_image_set_component_visible    (gint32 image_ID,
+
gboolean            gimp_image_set_component_visible    (gint32 image_ID,
                                                          GimpChannelType component,
-                                                         gboolean visible);
+ gboolean visible);

Sets if the specified image's image component is visible.

@@ -2147,14 +2907,20 @@

gimp_image_get_filename ()

-
gchar*              gimp_image_get_filename             (gint32 image_ID);
+
gchar*              gimp_image_get_filename             (gint32 image_ID);

Returns the specified image's filename.

This procedure returns the specified image's filename in the filesystem encoding. The image has a filename only if it was loaded -or has since been saved. Otherwise, this function returns NULL.

+or has since been saved. Otherwise, this function returns NULL.

@@ -2177,8 +2943,14 @@

gimp_image_set_filename ()

-
gboolean            gimp_image_set_filename             (gint32 image_ID,
-                                                         const gchar *filename);
+
gboolean            gimp_image_set_filename             (gint32 image_ID,
+                                                         const gchar *filename);

Sets the specified image's filename.

@@ -2212,7 +2984,11 @@

gimp_image_get_name ()

-
gchar*              gimp_image_get_name                 (gint32 image_ID);
+
gchar*              gimp_image_get_name                 (gint32 image_ID);

Returns the specified image's name.

@@ -2240,9 +3016,17 @@

gimp_image_get_resolution ()

-
gboolean            gimp_image_get_resolution           (gint32 image_ID,
-                                                         gdouble *xresolution,
-                                                         gdouble *yresolution);
+
gboolean            gimp_image_get_resolution           (gint32 image_ID,
+                                                         gdouble *xresolution,
+                                                         gdouble *yresolution);

Returns the specified image's resolution.

@@ -2281,9 +3065,17 @@

gimp_image_set_resolution ()

-
gboolean            gimp_image_set_resolution           (gint32 image_ID,
-                                                         gdouble xresolution,
-                                                         gdouble yresolution);
+
gboolean            gimp_image_set_resolution           (gint32 image_ID,
+                                                         gdouble xresolution,
+                                                         gdouble yresolution);

Sets the specified image's resolution.

@@ -2325,7 +3117,9 @@

gimp_image_get_unit ()

GimpUnit            gimp_image_get_unit                 (gint32 image_ID);
+>GimpUnit gimp_image_get_unit (gint32 image_ID);

Returns the specified image's unit.

@@ -2356,7 +3150,11 @@

gimp_image_set_unit ()

-
gboolean            gimp_image_set_unit                 (gint32 image_ID,
+
gboolean            gimp_image_set_unit                 (gint32 image_ID,
                                                          GimpUnit unit);
@@ -2396,8 +3194,14 @@

gimp_image_set_tattoo_state ()

-
gboolean            gimp_image_set_tattoo_state         (gint32 image_ID,
-                                                         gint tattoo_state);
+
gboolean            gimp_image_set_tattoo_state         (gint32 image_ID,
+                                                         gint tattoo_state);

Set the tattoo state associated with the image.

@@ -2441,7 +3245,11 @@

gimp_image_get_tattoo_state ()

-
gint                gimp_image_get_tattoo_state         (gint32 image_ID);
+
gint                gimp_image_get_tattoo_state         (gint32 image_ID);

Returns the tattoo state associated with the image.

@@ -2471,8 +3279,14 @@

gimp_image_get_layer_by_tattoo ()

-
gint32              gimp_image_get_layer_by_tattoo      (gint32 image_ID,
-                                                         gint tattoo);
+
gint32              gimp_image_get_layer_by_tattoo      (gint32 image_ID,
+                                                         gint tattoo);

Find a layer with a given tattoo in an image.

@@ -2506,8 +3320,14 @@

gimp_image_get_channel_by_tattoo ()

-
gint32              gimp_image_get_channel_by_tattoo    (gint32 image_ID,
-                                                         gint tattoo);
+
gint32              gimp_image_get_channel_by_tattoo    (gint32 image_ID,
+                                                         gint tattoo);

Find a channel with a given tattoo in an image.

@@ -2541,8 +3361,14 @@

gimp_image_get_cmap ()

-
guchar*             gimp_image_get_cmap                 (gint32 image_ID,
-                                                         gint *num_colors);
+
guchar*             gimp_image_get_cmap                 (gint32 image_ID,
+                                                         gint *num_colors);

Warning

gimp_image_get_cmap is deprecated and should not be used in newly-written code.

@@ -2576,9 +3402,17 @@

gimp_image_set_cmap ()

-
gboolean            gimp_image_set_cmap                 (gint32 image_ID,
-                                                         const guchar *cmap,
-                                                         gint num_colors);
+
gboolean            gimp_image_set_cmap                 (gint32 image_ID,
+                                                         const guchar *cmap,
+                                                         gint num_colors);

Warning

gimp_image_set_cmap is deprecated and should not be used in newly-written code.

@@ -2617,8 +3451,14 @@

gimp_image_get_colormap ()

-
guchar*             gimp_image_get_colormap             (gint32 image_ID,
-                                                         gint *num_colors);
+
guchar*             gimp_image_get_colormap             (gint32 image_ID,
+                                                         gint *num_colors);

Returns the image's colormap

@@ -2653,9 +3493,17 @@

gimp_image_set_colormap ()

-
gboolean            gimp_image_set_colormap             (gint32 image_ID,
-                                                         const guchar *colormap,
-                                                         gint num_colors);
+
gboolean            gimp_image_set_colormap             (gint32 image_ID,
+                                                         const guchar *colormap,
+                                                         gint num_colors);

Sets the entries in the image's colormap.

@@ -2696,8 +3544,14 @@

gimp_image_get_vectors ()

-
gint*               gimp_image_get_vectors              (gint32 image_ID,
-                                                         gint *num_vectors);
+
gint*               gimp_image_get_vectors              (gint32 image_ID,
+                                                         gint *num_vectors);

Returns the list of vectors contained in the specified image.

@@ -2734,8 +3588,14 @@

gimp_image_get_vectors_by_tattoo ()

-
gint32              gimp_image_get_vectors_by_tattoo    (gint32 image_ID,
-                                                         gint tattoo);
+
gint32              gimp_image_get_vectors_by_tattoo    (gint32 image_ID,
+                                                         gint tattoo);

Find a vectors with a given tattoo in an image.

@@ -2772,10 +3632,20 @@

gimp_image_get_thumbnail_data ()

-
guchar*             gimp_image_get_thumbnail_data       (gint32 image_ID,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
+
guchar*             gimp_image_get_thumbnail_data       (gint32 image_ID,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);

@@ -2817,8 +3687,12 @@

gimp_image_parasite_find ()

GimpParasite*       gimp_image_parasite_find            (gint32 image_ID,
-                                                         const gchar *name);
+>GimpParasite* gimp_image_parasite_find (gint32 image_ID, + const gchar *name);

Look up a parasite in an image

@@ -2852,9 +3726,17 @@

gimp_image_parasite_list ()

-
gboolean            gimp_image_parasite_list            (gint32 image_ID,
-                                                         gint *num_parasites,
-                                                         gchar ***parasites);
+
gboolean            gimp_image_parasite_list            (gint32 image_ID,
+                                                         gint *num_parasites,
+                                                         gchar ***parasites);

List all parasites.

@@ -2892,7 +3774,11 @@

gimp_image_parasite_attach ()

-
gboolean            gimp_image_parasite_attach          (gint32 image_ID,
+
gboolean            gimp_image_parasite_attach          (gint32 image_ID,
                                                          const GimpParasite *parasite);
@@ -2929,8 +3815,14 @@

gimp_image_parasite_detach ()

-
gboolean            gimp_image_parasite_detach          (gint32 image_ID,
-                                                         const gchar *name);
+
gboolean            gimp_image_parasite_detach          (gint32 image_ID,
+                                                         const gchar *name);

Removes a parasite from an image.

@@ -2964,11 +3856,23 @@

gimp_image_attach_new_parasite ()

-
gboolean            gimp_image_attach_new_parasite      (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint flags,
-                                                         gint size,
-                                                         gconstpointer data);
+
gboolean            gimp_image_attach_new_parasite      (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint flags,
+                                                         gint size,
+                                                         gconstpointer data);

Convenience function that creates a parasite and attaches it to GIMP.

@@ -3025,9 +3929,17 @@

gimp_image_add_vectors ()

-
gboolean            gimp_image_add_vectors              (gint32 image_ID,
-                                                         gint32 vectors_ID,
-                                                         gint position);
+
gboolean            gimp_image_add_vectors              (gint32 image_ID,
+                                                         gint32 vectors_ID,
+                                                         gint position);

Add the specified vectors object to the image.

@@ -3067,8 +3979,14 @@

gimp_image_remove_vectors ()

-
gboolean            gimp_image_remove_vectors           (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_image_remove_vectors           (gint32 image_ID,
+                                                         gint32 vectors_ID);

Remove the specified path from the image.

@@ -3105,7 +4023,11 @@

gimp_image_get_active_vectors ()

-
gint32              gimp_image_get_active_vectors       (gint32 image_ID);
+
gint32              gimp_image_get_active_vectors       (gint32 image_ID);

Returns the specified image's active vectors.

@@ -3133,8 +4055,14 @@

gimp_image_set_active_vectors ()

-
gboolean            gimp_image_set_active_vectors       (gint32 image_ID,
-                                                         gint32 active_vectors_ID);
+
gboolean            gimp_image_set_active_vectors       (gint32 image_ID,
+                                                         gint32 active_vectors_ID);

Sets the specified image's active vectors.

@@ -3167,8 +4095,14 @@

gimp_image_lower_vectors ()

-
gboolean            gimp_image_lower_vectors            (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_image_lower_vectors            (gint32 image_ID,
+                                                         gint32 vectors_ID);

Lower the specified vectors in the image's vectors stack

@@ -3206,8 +4140,14 @@

gimp_image_raise_vectors ()

-
gboolean            gimp_image_raise_vectors            (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_image_raise_vectors            (gint32 image_ID,
+                                                         gint32 vectors_ID);

Raise the specified vectors in the image's vectors stack

@@ -3245,8 +4185,14 @@

gimp_image_lower_vectors_to_bottom ()

-
gboolean            gimp_image_lower_vectors_to_bottom  (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_image_lower_vectors_to_bottom  (gint32 image_ID,
+                                                         gint32 vectors_ID);

Lower the specified vectors in the image's vectors stack to bottom of stack @@ -3285,8 +4231,14 @@


gimp_image_raise_vectors_to_top ()

-
gboolean            gimp_image_raise_vectors_to_top     (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_image_raise_vectors_to_top     (gint32 image_ID,
+                                                         gint32 vectors_ID);

Raise the specified vectors in the image's vectors stack to top of stack @@ -3325,8 +4277,14 @@


gimp_image_get_vectors_position ()

-
gint                gimp_image_get_vectors_position     (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gint                gimp_image_get_vectors_position     (gint32 image_ID,
+                                                         gint32 vectors_ID);

Returns the position of the vectors object in the vectors objects stack. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-GimpItemComboBox.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-GimpItemComboBox.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-GimpItemComboBox.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-GimpItemComboBox.html 2008-10-08 23:32:59.000000000 +0100 @@ -52,74 +52,154 @@

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
                                              +----GimpDrawableComboBox
 
-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
                                              +----GimpChannelComboBox
 
-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
                                              +----GimpLayerComboBox
 
-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
@@ -130,16 +210,40 @@
 

Implemented Interfaces

GimpDrawableComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

GimpChannelComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

GimpLayerComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

GimpVectorsComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkCellLayout and GtkCellEditable.

Description

@@ -151,9 +255,17 @@

Details

GimpItemConstraintFunc ()

-
gboolean            (*GimpItemConstraintFunc)           (gint32 image_id,
-                                                         gint32 item_id,
-                                                         gpointer data);
+
gboolean            (*GimpItemConstraintFunc)           (gint32 image_id,
+                                                         gint32 item_id,
+                                                         gpointer data);

@@ -205,14 +317,20 @@

gimp_drawable_combo_box_new ()

-
GtkWidget*          gimp_drawable_combo_box_new         (GimpDrawableConstraintFunc constraint,
-                                                         gpointer data);
+
GtkWidget*          gimp_drawable_combo_box_new         (GimpDrawableConstraintFunc constraint,
+                                                         gpointer data);

Creates a new GimpIntComboBox filled with all currently opened drawables. If a constraint function is specified, it is called for -each drawable and only if the function returns TRUE, the drawable +each drawable and only if the function returns TRUE, the drawable is added to the combobox.

@@ -234,7 +352,9 @@

constraint :

- a GimpDrawableConstraintFunc or NULL + a GimpDrawableConstraintFunc or NULL @@ -266,8 +386,12 @@

gimp_channel_combo_box_new ()

-
GtkWidget*          gimp_channel_combo_box_new          (GimpDrawableConstraintFunc constraint,
-                                                         gpointer data);
+
GtkWidget*          gimp_channel_combo_box_new          (GimpDrawableConstraintFunc constraint,
+                                                         gpointer data);

Creates a new

constraint :

- a GimpDrawableConstraintFunc or NULL + a GimpDrawableConstraintFunc or NULL @@ -313,8 +439,12 @@

gimp_layer_combo_box_new ()

-
GtkWidget*          gimp_layer_combo_box_new            (GimpDrawableConstraintFunc constraint,
-                                                         gpointer data);
+
GtkWidget*          gimp_layer_combo_box_new            (GimpDrawableConstraintFunc constraint,
+                                                         gpointer data);

Creates a new

constraint :

- a GimpDrawableConstraintFunc or NULL + a GimpDrawableConstraintFunc or NULL @@ -369,14 +501,20 @@

gimp_vectors_combo_box_new ()

-
GtkWidget*          gimp_vectors_combo_box_new          (GimpVectorsConstraintFunc constraint,
-                                                         gpointer data);
+
GtkWidget*          gimp_vectors_combo_box_new          (GimpVectorsConstraintFunc constraint,
+                                                         gpointer data);

Creates a new GimpIntComboBox filled with all currently opened vectors objects. If a constraint function is specified, it is called for -each vectors object and only if the function returns TRUE, the vectors +each vectors object and only if the function returns TRUE, the vectors object is added to the combobox.

@@ -398,7 +536,9 @@

constraint :

- a GimpVectorsConstraintFunc or NULL + a GimpVectorsConstraintFunc or NULL diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimplayer.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimplayer.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimplayer.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimplayer.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,78 +48,260 @@

Synopsis

-gint32              gimp_layer_new                      (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint width,
-                                                         gint height,
+gint32              gimp_layer_new                      (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         gdouble opacity,
+                                                         gdouble opacity,
                                                          GimpLayerModeEffects mode);
-gint32              gimp_layer_new_from_drawable        (gint32 drawable_ID,
-                                                         gint32 dest_image_ID);
-gint32              gimp_layer_new_from_visible         (gint32 image_ID,
-                                                         gint32 dest_image_ID,
-                                                         const gchar *name);
-gint32              gimp_layer_copy                     (gint32 layer_ID);
-gboolean            gimp_layer_scale                    (gint32 layer_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gboolean local_origin);
-gboolean            gimp_layer_scale_full               (gint32 layer_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gboolean local_origin,
+gint32              gimp_layer_new_from_drawable        (gint32 drawable_ID,
+                                                         gint32 dest_image_ID);
+gint32              gimp_layer_new_from_visible         (gint32 image_ID,
+                                                         gint32 dest_image_ID,
+                                                         const gchar *name);
+gint32              gimp_layer_copy                     (gint32 layer_ID);
+gboolean            gimp_layer_scale                    (gint32 layer_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gboolean local_origin);
+gboolean            gimp_layer_scale_full               (gint32 layer_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gboolean local_origin,
                                                          GimpInterpolationType interpolation);
-gboolean            gimp_layer_resize                   (gint32 layer_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gint offx,
-                                                         gint offy);
-gboolean            gimp_layer_resize_to_image_size     (gint32 layer_ID);
-gboolean            gimp_layer_translate                (gint32 layer_ID,
-                                                         gint offx,
-                                                         gint offy);
-gboolean            gimp_layer_add_alpha                (gint32 layer_ID);
-gboolean            gimp_layer_flatten                  (gint32 layer_ID);
-gboolean            gimp_layer_set_offsets              (gint32 layer_ID,
-                                                         gint offx,
-                                                         gint offy);
-gint32              gimp_layer_create_mask              (gint32 layer_ID,
+gboolean            gimp_layer_resize                   (gint32 layer_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gint offx,
+                                                         gint offy);
+gboolean            gimp_layer_resize_to_image_size     (gint32 layer_ID);
+gboolean            gimp_layer_translate                (gint32 layer_ID,
+                                                         gint offx,
+                                                         gint offy);
+gboolean            gimp_layer_add_alpha                (gint32 layer_ID);
+gboolean            gimp_layer_flatten                  (gint32 layer_ID);
+gboolean            gimp_layer_set_offsets              (gint32 layer_ID,
+                                                         gint offx,
+                                                         gint offy);
+gint32              gimp_layer_create_mask              (gint32 layer_ID,
                                                          GimpAddMaskType mask_type);
-gint32              gimp_layer_from_mask                (gint32 mask_ID);
-gint32              gimp_layer_get_mask                 (gint32 layer_ID);
-gboolean            gimp_layer_add_mask                 (gint32 layer_ID,
-                                                         gint32 mask_ID);
-gboolean            gimp_layer_remove_mask              (gint32 layer_ID,
+gint32              gimp_layer_from_mask                (gint32 mask_ID);
+gint32              gimp_layer_get_mask                 (gint32 layer_ID);
+gboolean            gimp_layer_add_mask                 (gint32 layer_ID,
+                                                         gint32 mask_ID);
+gboolean            gimp_layer_remove_mask              (gint32 layer_ID,
                                                          GimpMaskApplyMode mode);
-gboolean            gimp_layer_get_lock_alpha           (gint32 layer_ID);
-gboolean            gimp_layer_set_lock_alpha           (gint32 layer_ID,
-                                                         gboolean lock_alpha);
-gboolean            gimp_layer_get_preserve_trans       (gint32 layer_ID);
-gboolean            gimp_layer_set_preserve_trans       (gint32 layer_ID,
-                                                         gboolean preserve_trans);
-gboolean            gimp_layer_get_apply_mask           (gint32 layer_ID);
-gboolean            gimp_layer_set_apply_mask           (gint32 layer_ID,
-                                                         gboolean apply_mask);
-gboolean            gimp_layer_get_show_mask            (gint32 layer_ID);
-gboolean            gimp_layer_set_show_mask            (gint32 layer_ID,
-                                                         gboolean show_mask);
-gboolean            gimp_layer_get_edit_mask            (gint32 layer_ID);
-gboolean            gimp_layer_set_edit_mask            (gint32 layer_ID,
-                                                         gboolean edit_mask);
-gdouble             gimp_layer_get_opacity              (gint32 layer_ID);
-gboolean            gimp_layer_set_opacity              (gint32 layer_ID,
-                                                         gdouble opacity);
-GimpLayerModeEffects gimp_layer_get_mode                (gint32 layer_ID);
-gboolean            gimp_layer_set_mode                 (gint32 layer_ID,
+gboolean            gimp_layer_get_lock_alpha           (gint32 layer_ID);
+gboolean            gimp_layer_set_lock_alpha           (gint32 layer_ID,
+                                                         gboolean lock_alpha);
+gboolean            gimp_layer_get_preserve_trans       (gint32 layer_ID);
+gboolean            gimp_layer_set_preserve_trans       (gint32 layer_ID,
+                                                         gboolean preserve_trans);
+gboolean            gimp_layer_get_apply_mask           (gint32 layer_ID);
+gboolean            gimp_layer_set_apply_mask           (gint32 layer_ID,
+                                                         gboolean apply_mask);
+gboolean            gimp_layer_get_show_mask            (gint32 layer_ID);
+gboolean            gimp_layer_set_show_mask            (gint32 layer_ID,
+                                                         gboolean show_mask);
+gboolean            gimp_layer_get_edit_mask            (gint32 layer_ID);
+gboolean            gimp_layer_set_edit_mask            (gint32 layer_ID,
+                                                         gboolean edit_mask);
+gdouble             gimp_layer_get_opacity              (gint32 layer_ID);
+gboolean            gimp_layer_set_opacity              (gint32 layer_ID,
+                                                         gdouble opacity);
+GimpLayerModeEffects gimp_layer_get_mode                (gint32 layer_ID);
+gboolean            gimp_layer_set_mode                 (gint32 layer_ID,
                                                          GimpLayerModeEffects mode);
-gboolean            gimp_layer_is_floating_sel          (gint32 layer_ID);
+gboolean            gimp_layer_is_floating_sel          (gint32 layer_ID);
 
@@ -133,14 +315,26 @@

Details

gimp_layer_new ()

-
gint32              gimp_layer_new                      (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint width,
-                                                         gint height,
+
gint32              gimp_layer_new                      (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         gdouble opacity,
+                                                         gdouble opacity,
                                                          GimpLayerModeEffects mode);

Create a new layer. @@ -204,8 +398,14 @@


gimp_layer_new_from_drawable ()

-
gint32              gimp_layer_new_from_drawable        (gint32 drawable_ID,
-                                                         gint32 dest_image_ID);
+
gint32              gimp_layer_new_from_drawable        (gint32 drawable_ID,
+                                                         gint32 dest_image_ID);

Create a new layer by copying an existing drawable.

@@ -242,9 +442,17 @@

gimp_layer_new_from_visible ()

-
gint32              gimp_layer_new_from_visible         (gint32 image_ID,
-                                                         gint32 dest_image_ID,
-                                                         const gchar *name);
+
gint32              gimp_layer_new_from_visible         (gint32 image_ID,
+                                                         gint32 dest_image_ID,
+                                                         const gchar *name);

Create a new layer from what is visible in an image.

@@ -289,7 +497,11 @@

gimp_layer_copy ()

-
gint32              gimp_layer_copy                     (gint32 layer_ID);
+
gint32              gimp_layer_copy                     (gint32 layer_ID);

Copy a layer.

@@ -319,10 +531,20 @@

gimp_layer_scale ()

-
gboolean            gimp_layer_scale                    (gint32 layer_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gboolean local_origin);
+
gboolean            gimp_layer_scale                    (gint32 layer_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gboolean local_origin);

Scale the layer using the default interpolation method.

@@ -369,10 +591,20 @@

gimp_layer_scale_full ()

-
gboolean            gimp_layer_scale_full               (gint32 layer_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gboolean local_origin,
+
gboolean            gimp_layer_scale_full               (gint32 layer_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gboolean local_origin,
                                                          GimpInterpolationType interpolation);
@@ -431,11 +663,23 @@

gimp_layer_resize ()

-
gboolean            gimp_layer_resize                   (gint32 layer_ID,
-                                                         gint new_width,
-                                                         gint new_height,
-                                                         gint offx,
-                                                         gint offy);
+
gboolean            gimp_layer_resize                   (gint32 layer_ID,
+                                                         gint new_width,
+                                                         gint new_height,
+                                                         gint offx,
+                                                         gint offy);

Resize the layer to the specified extents.

@@ -486,7 +730,11 @@

gimp_layer_resize_to_image_size ()

-
gboolean            gimp_layer_resize_to_image_size     (gint32 layer_ID);
+
gboolean            gimp_layer_resize_to_image_size     (gint32 layer_ID);

Resize a layer to the image size.

@@ -515,9 +763,17 @@

gimp_layer_translate ()

-
gboolean            gimp_layer_translate                (gint32 layer_ID,
-                                                         gint offx,
-                                                         gint offy);
+
gboolean            gimp_layer_translate                (gint32 layer_ID,
+                                                         gint offx,
+                                                         gint offy);

Translate the layer by the specified offsets.

@@ -560,7 +816,11 @@

gimp_layer_add_alpha ()

-
gboolean            gimp_layer_add_alpha                (gint32 layer_ID);
+
gboolean            gimp_layer_add_alpha                (gint32 layer_ID);

Add an alpha channel to the layer if it doesn't already have one.

@@ -592,7 +852,11 @@

gimp_layer_flatten ()

-
gboolean            gimp_layer_flatten                  (gint32 layer_ID);
+
gboolean            gimp_layer_flatten                  (gint32 layer_ID);

Remove the alpha channel from the layer if it has one.

@@ -626,9 +890,17 @@

gimp_layer_set_offsets ()

-
gboolean            gimp_layer_set_offsets              (gint32 layer_ID,
-                                                         gint offx,
-                                                         gint offy);
+
gboolean            gimp_layer_set_offsets              (gint32 layer_ID,
+                                                         gint offx,
+                                                         gint offy);

Set the layer offsets.

@@ -668,7 +940,11 @@

gimp_layer_create_mask ()

-
gint32              gimp_layer_create_mask              (gint32 layer_ID,
+
gint32              gimp_layer_create_mask              (gint32 layer_ID,
                                                          GimpAddMaskType mask_type);
@@ -713,7 +989,11 @@

gimp_layer_from_mask ()

-
gint32              gimp_layer_from_mask                (gint32 mask_ID);
+
gint32              gimp_layer_from_mask                (gint32 mask_ID);

Get the specified mask's layer.

@@ -745,7 +1025,11 @@

gimp_layer_get_mask ()

-
gint32              gimp_layer_get_mask                 (gint32 layer_ID);
+
gint32              gimp_layer_get_mask                 (gint32 layer_ID);

Get the specified layer's mask if it exists.

@@ -774,8 +1058,14 @@

gimp_layer_add_mask ()

-
gboolean            gimp_layer_add_mask                 (gint32 layer_ID,
-                                                         gint32 mask_ID);
+
gboolean            gimp_layer_add_mask                 (gint32 layer_ID,
+                                                         gint32 mask_ID);

Add a layer mask to the specified layer.

@@ -814,7 +1104,11 @@

gimp_layer_remove_mask ()

-
gboolean            gimp_layer_remove_mask              (gint32 layer_ID,
+
gboolean            gimp_layer_remove_mask              (gint32 layer_ID,
                                                          GimpMaskApplyMode mode);

Remove the specified layer mask from the layer. @@ -849,7 +1143,11 @@


gimp_layer_get_lock_alpha ()

-
gboolean            gimp_layer_get_lock_alpha           (gint32 layer_ID);
+
gboolean            gimp_layer_get_lock_alpha           (gint32 layer_ID);

Get the lock alpha channel setting of the specified layer.

@@ -878,8 +1176,14 @@

gimp_layer_set_lock_alpha ()

-
gboolean            gimp_layer_set_lock_alpha           (gint32 layer_ID,
-                                                         gboolean lock_alpha);
+
gboolean            gimp_layer_set_lock_alpha           (gint32 layer_ID,
+                                                         gboolean lock_alpha);

Set the lock alpha channel setting of the specified layer.

@@ -913,7 +1217,11 @@

gimp_layer_get_preserve_trans ()

-
gboolean            gimp_layer_get_preserve_trans       (gint32 layer_ID);
+
gboolean            gimp_layer_get_preserve_trans       (gint32 layer_ID);

Warning

gimp_layer_get_preserve_trans is deprecated and should not be used in newly-written code.

@@ -942,8 +1250,14 @@

gimp_layer_set_preserve_trans ()

-
gboolean            gimp_layer_set_preserve_trans       (gint32 layer_ID,
-                                                         gboolean preserve_trans);
+
gboolean            gimp_layer_set_preserve_trans       (gint32 layer_ID,
+                                                         gboolean preserve_trans);

Warning

gimp_layer_set_preserve_trans is deprecated and should not be used in newly-written code.

@@ -977,7 +1291,11 @@

gimp_layer_get_apply_mask ()

-
gboolean            gimp_layer_get_apply_mask           (gint32 layer_ID);
+
gboolean            gimp_layer_get_apply_mask           (gint32 layer_ID);

Get the apply mask setting of the specified layer.

@@ -1007,8 +1325,14 @@

gimp_layer_set_apply_mask ()

-
gboolean            gimp_layer_set_apply_mask           (gint32 layer_ID,
-                                                         gboolean apply_mask);
+
gboolean            gimp_layer_set_apply_mask           (gint32 layer_ID,
+                                                         gboolean apply_mask);

Set the apply mask setting of the specified layer.

@@ -1044,7 +1368,11 @@

gimp_layer_get_show_mask ()

-
gboolean            gimp_layer_get_show_mask            (gint32 layer_ID);
+
gboolean            gimp_layer_get_show_mask            (gint32 layer_ID);

Get the show mask setting of the specified layer.

@@ -1075,8 +1403,14 @@

gimp_layer_set_show_mask ()

-
gboolean            gimp_layer_set_show_mask            (gint32 layer_ID,
-                                                         gboolean show_mask);
+
gboolean            gimp_layer_set_show_mask            (gint32 layer_ID,
+                                                         gboolean show_mask);

Set the show mask setting of the specified layer.

@@ -1112,7 +1446,11 @@

gimp_layer_get_edit_mask ()

-
gboolean            gimp_layer_get_edit_mask            (gint32 layer_ID);
+
gboolean            gimp_layer_get_edit_mask            (gint32 layer_ID);

Get the edit mask setting of the specified layer.

@@ -1142,8 +1480,14 @@

gimp_layer_set_edit_mask ()

-
gboolean            gimp_layer_set_edit_mask            (gint32 layer_ID,
-                                                         gboolean edit_mask);
+
gboolean            gimp_layer_set_edit_mask            (gint32 layer_ID,
+                                                         gboolean edit_mask);

Set the edit mask setting of the specified layer.

@@ -1179,7 +1523,11 @@

gimp_layer_get_opacity ()

-
gdouble             gimp_layer_get_opacity              (gint32 layer_ID);
+
gdouble             gimp_layer_get_opacity              (gint32 layer_ID);

Get the opacity of the specified layer.

@@ -1207,8 +1555,14 @@

gimp_layer_set_opacity ()

-
gboolean            gimp_layer_set_opacity              (gint32 layer_ID,
-                                                         gdouble opacity);
+
gboolean            gimp_layer_set_opacity              (gint32 layer_ID,
+                                                         gdouble opacity);

Set the opacity of the specified layer.

@@ -1241,7 +1595,9 @@

gimp_layer_get_mode ()

-
GimpLayerModeEffects gimp_layer_get_mode                (gint32 layer_ID);
+
GimpLayerModeEffects gimp_layer_get_mode                (gint32 layer_ID);

Get the combination mode of the specified layer.

@@ -1269,7 +1625,11 @@

gimp_layer_set_mode ()

-
gboolean            gimp_layer_set_mode                 (gint32 layer_ID,
+
gboolean            gimp_layer_set_mode                 (gint32 layer_ID,
                                                          GimpLayerModeEffects mode);

Set the combination mode of the specified layer. @@ -1303,7 +1663,11 @@


gimp_layer_is_floating_sel ()

-
gboolean            gimp_layer_is_floating_sel          (gint32 layer_ID);
+
gboolean            gimp_layer_is_floating_sel          (gint32 layer_ID);

Is the specified layer a floating selection?

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpmenu.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpmenu.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpmenu.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpmenu.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,27 +48,63 @@

Synopsis

-gboolean            (*GimpConstraintFunc)               (gint32 image_id,
-                                                         gint32 drawable_id,
-                                                         gpointer data);
-void                (*GimpMenuCallback)                 (gint32 any_id,
-                                                         gpointer data);
-GtkWidget*          gimp_image_menu_new                 (GimpConstraintFunc constraint,
+gboolean            (*GimpConstraintFunc)               (gint32 image_id,
+                                                         gint32 drawable_id,
+                                                         gpointer data);
+void                (*GimpMenuCallback)                 (gint32 any_id,
+                                                         gpointer data);
+GtkWidget*          gimp_image_menu_new                 (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_image);
-GtkWidget*          gimp_layer_menu_new                 (GimpConstraintFunc constraint,
+                                                         gpointer data,
+                                                         gint32 active_image);
+GtkWidget*          gimp_layer_menu_new                 (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_layer);
-GtkWidget*          gimp_channel_menu_new               (GimpConstraintFunc constraint,
+                                                         gpointer data,
+                                                         gint32 active_layer);
+GtkWidget*          gimp_channel_menu_new               (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_channel);
-GtkWidget*          gimp_drawable_menu_new              (GimpConstraintFunc constraint,
+                                                         gpointer data,
+                                                         gint32 active_channel);
+GtkWidget*          gimp_drawable_menu_new              (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_drawable);
+                                                         gpointer data,
+                                                         gint32 active_drawable);
 
@@ -81,9 +117,17 @@

Details

GimpConstraintFunc ()

-
gboolean            (*GimpConstraintFunc)               (gint32 image_id,
-                                                         gint32 drawable_id,
-                                                         gpointer data);
+
gboolean            (*GimpConstraintFunc)               (gint32 image_id,
+                                                         gint32 drawable_id,
+                                                         gpointer data);

Warning

GimpConstraintFunc is deprecated and should not be used in newly-written code.

@@ -122,8 +166,12 @@

GimpMenuCallback ()

-
void                (*GimpMenuCallback)                 (gint32 any_id,
-                                                         gpointer data);
+
void                (*GimpMenuCallback)                 (gint32 any_id,
+                                                         gpointer data);

Warning

GimpMenuCallback is deprecated and should not be used in newly-written code.

@@ -152,10 +200,16 @@

gimp_image_menu_new ()

-
GtkWidget*          gimp_image_menu_new                 (GimpConstraintFunc constraint,
+
GtkWidget*          gimp_image_menu_new                 (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_image);
+ gpointer data, + gint32 active_image);

Warning

gimp_image_menu_new is deprecated and should not be used in newly-written code.

@@ -199,10 +253,16 @@

gimp_layer_menu_new ()

-
GtkWidget*          gimp_layer_menu_new                 (GimpConstraintFunc constraint,
+
GtkWidget*          gimp_layer_menu_new                 (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_layer);
+ gpointer data, + gint32 active_layer);

Warning

gimp_layer_menu_new is deprecated and should not be used in newly-written code.

@@ -246,10 +306,16 @@

gimp_channel_menu_new ()

-
GtkWidget*          gimp_channel_menu_new               (GimpConstraintFunc constraint,
+
GtkWidget*          gimp_channel_menu_new               (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_channel);
+ gpointer data, + gint32 active_channel);

Warning

gimp_channel_menu_new is deprecated and should not be used in newly-written code.

@@ -293,10 +359,16 @@

gimp_drawable_menu_new ()

-
GtkWidget*          gimp_drawable_menu_new              (GimpConstraintFunc constraint,
+
GtkWidget*          gimp_drawable_menu_new              (GimpConstraintFunc constraint,
                                                          GimpMenuCallback callback,
-                                                         gpointer data,
-                                                         gint32 active_drawable);
+ gpointer data, + gint32 active_drawable);

Warning

gimp_drawable_menu_new is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpmessage.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpmessage.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpmessage.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpmessage.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,11 +48,17 @@

Synopsis

-gboolean            gimp_message                        (const gchar *message);
+gboolean            gimp_message                        (const gchar *message);
 GimpMessageHandlerType gimp_message_get_handler         (void);
-gboolean            gimp_message_set_handler            (gboolean            gimp_message_set_handler            (GimpMessageHandlerType handler);
 
@@ -68,7 +74,11 @@

Details

gimp_message ()

-
gboolean            gimp_message                        (const gchar *message);
+
gboolean            gimp_message                        (const gchar *message);

Displays a dialog box with a message.

@@ -122,7 +132,9 @@

gimp_message_set_handler ()

-
gboolean            gimp_message_set_handler            (gboolean            gimp_message_set_handler            (GimpMessageHandlerType handler);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppalette.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppalette.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppalette.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppalette.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,59 +48,155 @@

Synopsis

-gchar*              gimp_palette_new                    (const gchar *name);
-gchar*              gimp_palette_duplicate              (const gchar *name);
-gchar*              gimp_palette_rename                 (const gchar *name,
-                                                         const gchar *new_name);
-gboolean            gimp_palette_delete                 (const gchar *name);
-gboolean            gimp_palette_get_info               (const gchar *name,
-                                                         gint *num_colors);
-GimpRGB*            gimp_palette_get_colors             (const gchar *name,
-                                                         gint *num_colors);
-gint                gimp_palette_get_columns            (const gchar *name);
-gboolean            gimp_palette_set_columns            (const gchar *name,
-                                                         gint columns);
-gboolean            gimp_palette_add_entry              (const gchar *name,
-                                                         const gchar *entry_name,
+gchar*              gimp_palette_new                    (const gchar *name);
+gchar*              gimp_palette_duplicate              (const gchar *name);
+gchar*              gimp_palette_rename                 (const gchar *name,
+                                                         const gchar *new_name);
+gboolean            gimp_palette_delete                 (const gchar *name);
+gboolean            gimp_palette_get_info               (const gchar *name,
+                                                         gint *num_colors);
+GimpRGB*            gimp_palette_get_colors             (const gchar *name,
+                                                         gint *num_colors);
+gint                gimp_palette_get_columns            (const gchar *name);
+gboolean            gimp_palette_set_columns            (const gchar *name,
+                                                         gint columns);
+gboolean            gimp_palette_add_entry              (const gchar *name,
+                                                         const gchar *entry_name,
                                                          const GimpRGB *color,
-                                                         gint *entry_num);
-gboolean            gimp_palette_delete_entry           (const gchar *name,
-                                                         gint entry_num);
-gboolean            gimp_palette_entry_get_color        (const gchar *name,
-                                                         gint entry_num,
+                                                         gint *entry_num);
+gboolean            gimp_palette_delete_entry           (const gchar *name,
+                                                         gint entry_num);
+gboolean            gimp_palette_entry_get_color        (const gchar *name,
+                                                         gint entry_num,
                                                          GimpRGB *color);
-gboolean            gimp_palette_entry_set_color        (const gchar *name,
-                                                         gint entry_num,
+gboolean            gimp_palette_entry_set_color        (const gchar *name,
+                                                         gint entry_num,
                                                          const GimpRGB *color);
-gboolean            gimp_palette_entry_get_name         (const gchar *name,
-                                                         gint entry_num,
-                                                         gchar **entry_name);
-gboolean            gimp_palette_entry_set_name         (const gchar *name,
-                                                         gint entry_num,
-                                                         const gchar *entry_name);
-gboolean            gimp_palette_get_foreground         (gboolean            gimp_palette_entry_get_name         (const gchar *name,
+                                                         gint entry_num,
+                                                         gchar **entry_name);
+gboolean            gimp_palette_entry_set_name         (const gchar *name,
+                                                         gint entry_num,
+                                                         const gchar *entry_name);
+gboolean            gimp_palette_get_foreground         (GimpRGB *foreground);
-gboolean            gimp_palette_get_background         (gboolean            gimp_palette_get_background         (GimpRGB *background);
-gboolean            gimp_palette_set_foreground         (const gboolean            gimp_palette_set_foreground         (const GimpRGB *foreground);
-gboolean            gimp_palette_set_background         (const gboolean            gimp_palette_set_background         (const GimpRGB *background);
-gboolean            gimp_palette_set_default_colors     (void);
-gboolean            gimp_palette_swap_colors            (void);
-gboolean            gimp_palette_is_editable            (const gchar *name);
+gboolean            gimp_palette_set_default_colors     (void);
+gboolean            gimp_palette_swap_colors            (void);
+gboolean            gimp_palette_is_editable            (const gchar *name);
 
@@ -113,7 +209,11 @@

Details

gimp_palette_new ()

-
gchar*              gimp_palette_new                    (const gchar *name);
+
gchar*              gimp_palette_new                    (const gchar *name);

Creates a new palette

@@ -144,7 +244,11 @@

gimp_palette_duplicate ()

-
gchar*              gimp_palette_duplicate              (const gchar *name);
+
gchar*              gimp_palette_duplicate              (const gchar *name);

Duplicates a palette

@@ -175,8 +279,14 @@

gimp_palette_rename ()

-
gchar*              gimp_palette_rename                 (const gchar *name,
-                                                         const gchar *new_name);
+
gchar*              gimp_palette_rename                 (const gchar *name,
+                                                         const gchar *new_name);

Rename a palette

@@ -212,7 +322,11 @@

gimp_palette_delete ()

-
gboolean            gimp_palette_delete                 (const gchar *name);
+
gboolean            gimp_palette_delete                 (const gchar *name);

Deletes a palette

@@ -243,8 +357,14 @@

gimp_palette_get_info ()

-
gboolean            gimp_palette_get_info               (const gchar *name,
-                                                         gint *num_colors);
+
gboolean            gimp_palette_get_info               (const gchar *name,
+                                                         gint *num_colors);

Retrieve information about the specified palette.

@@ -283,8 +403,12 @@

gimp_palette_get_colors ()

GimpRGB*            gimp_palette_get_colors             (const gchar *name,
-                                                         gint *num_colors);
+>GimpRGB* gimp_palette_get_colors (const gchar *name, + gint *num_colors);

Gets all colors from the specified palette.

@@ -320,7 +444,11 @@

gimp_palette_get_columns ()

-
gint                gimp_palette_get_columns            (const gchar *name);
+
gint                gimp_palette_get_columns            (const gchar *name);

Retrieves the number of columns to use to display this palette

@@ -352,8 +480,14 @@

gimp_palette_set_columns ()

-
gboolean            gimp_palette_set_columns            (const gchar *name,
-                                                         gint columns);
+
gboolean            gimp_palette_set_columns            (const gchar *name,
+                                                         gint columns);

Sets the number of columns to use when displaying the palette

@@ -391,12 +525,20 @@

gimp_palette_add_entry ()

-
gboolean            gimp_palette_add_entry              (const gchar *name,
-                                                         const gchar *entry_name,
+
gboolean            gimp_palette_add_entry              (const gchar *name,
+                                                         const gchar *entry_name,
                                                          const GimpRGB *color,
-                                                         gint *entry_num);
+ gint *entry_num);

Adds a palette entry to the specified palette.

@@ -443,8 +585,14 @@

gimp_palette_delete_entry ()

-
gboolean            gimp_palette_delete_entry           (const gchar *name,
-                                                         gint entry_num);
+
gboolean            gimp_palette_delete_entry           (const gchar *name,
+                                                         gint entry_num);

Deletes a palette entry from the specified palette.

@@ -481,8 +629,14 @@

gimp_palette_entry_get_color ()

-
gboolean            gimp_palette_entry_get_color        (const gchar *name,
-                                                         gint entry_num,
+
gboolean            gimp_palette_entry_get_color        (const gchar *name,
+                                                         gint entry_num,
                                                          GimpRGB *color);
@@ -528,8 +682,14 @@

gimp_palette_entry_set_color ()

-
gboolean            gimp_palette_entry_set_color        (const gchar *name,
-                                                         gint entry_num,
+
gboolean            gimp_palette_entry_set_color        (const gchar *name,
+                                                         gint entry_num,
                                                          const GimpRGB *color);
@@ -575,9 +735,17 @@

gimp_palette_entry_get_name ()

-
gboolean            gimp_palette_entry_get_name         (const gchar *name,
-                                                         gint entry_num,
-                                                         gchar **entry_name);
+
gboolean            gimp_palette_entry_get_name         (const gchar *name,
+                                                         gint entry_num,
+                                                         gchar **entry_name);

Gets the specified palette entry from the specified palette.

@@ -620,9 +788,17 @@

gimp_palette_entry_set_name ()

-
gboolean            gimp_palette_entry_set_name         (const gchar *name,
-                                                         gint entry_num,
-                                                         const gchar *entry_name);
+
gboolean            gimp_palette_entry_set_name         (const gchar *name,
+                                                         gint entry_num,
+                                                         const gchar *entry_name);

Sets the specified palette entry in the specified palette.

@@ -665,7 +841,9 @@

gimp_palette_get_foreground ()

-
gboolean            gimp_palette_get_foreground         (gboolean            gimp_palette_get_foreground         (GimpRGB *foreground);
@@ -701,7 +879,9 @@

gimp_palette_get_background ()

-
gboolean            gimp_palette_get_background         (gboolean            gimp_palette_get_background         (GimpRGB *background);
@@ -737,7 +917,9 @@

gimp_palette_set_foreground ()

-
gboolean            gimp_palette_set_foreground         (const gboolean            gimp_palette_set_foreground         (const GimpRGB *foreground);
@@ -773,7 +955,9 @@

gimp_palette_set_background ()

-
gboolean            gimp_palette_set_background         (const gboolean            gimp_palette_set_background         (const GimpRGB *background);
@@ -810,7 +994,9 @@

gimp_palette_set_default_colors ()

-
gboolean            gimp_palette_set_default_colors     (void);
+
gboolean            gimp_palette_set_default_colors     (void);

Warning

gimp_palette_set_default_colors is deprecated and should not be used in newly-written code.

@@ -837,7 +1023,9 @@

gimp_palette_swap_colors ()

-
gboolean            gimp_palette_swap_colors            (void);
+
gboolean            gimp_palette_swap_colors            (void);

Warning

gimp_palette_swap_colors is deprecated and should not be used in newly-written code.

@@ -864,7 +1052,11 @@

gimp_palette_is_editable ()

-
gboolean            gimp_palette_is_editable            (const gchar *name);
+
gboolean            gimp_palette_is_editable            (const gchar *name);

Tests if palette can be edited

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppalettemenu.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppalettemenu.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,13 +48,27 @@

Synopsis

-GtkWidget*          gimp_palette_select_widget_new      (const gchar *title,
-                                                         const gchar *palette_name,
+GtkWidget*          gimp_palette_select_widget_new      (const gchar *title,
+                                                         const gchar *palette_name,
                                                          GimpRunPaletteCallback callback,
-                                                         gpointer data);
-void                gimp_palette_select_widget_close    (GtkWidget *widget);
-void                gimp_palette_select_widget_set      (GtkWidget *widget,
-                                                         const gchar *palette_name);
+                                                         gpointer data);
+void                gimp_palette_select_widget_close    (GtkWidget *widget);
+void                gimp_palette_select_widget_set      (GtkWidget *widget,
+                                                         const gchar *palette_name);
 
@@ -67,16 +81,26 @@

Details

gimp_palette_select_widget_new ()

-
GtkWidget*          gimp_palette_select_widget_new      (const gchar *title,
-                                                         const gchar *palette_name,
+
GtkWidget*          gimp_palette_select_widget_new      (const gchar *title,
+                                                         const gchar *palette_name,
                                                          GimpRunPaletteCallback callback,
-                                                         gpointer data);
+ gpointer data);

Warning

gimp_palette_select_widget_new is deprecated and should not be used in newly-written code.

-Creates a new GtkWidget that completely controls the selection of +Creates a new GtkWidget that completely controls the selection of a palette. This widget is suitable for placement in a table in a plug-in dialog.

@@ -87,7 +111,9 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title. @@ -107,7 +133,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -119,7 +147,9 @@

gimp_palette_select_widget_close ()

-
void                gimp_palette_select_widget_close    (GtkWidget *widget);
+
void                gimp_palette_select_widget_close    (GtkWidget *widget);

Warning

gimp_palette_select_widget_close is deprecated and should not be used in newly-written code.

@@ -143,8 +173,12 @@

gimp_palette_select_widget_set ()

-
void                gimp_palette_select_widget_set      (GtkWidget *widget,
-                                                         const gchar *palette_name);
+
void                gimp_palette_select_widget_set      (GtkWidget *widget,
+                                                         const gchar *palette_name);

Warning

gimp_palette_select_widget_set is deprecated and should not be used in newly-written code.

@@ -166,7 +200,9 @@

palette_name :

- Palette name to set; NULL means no change. + Palette name to set; NULL means no change. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppaletteselect.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppaletteselect.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,20 +48,54 @@

Synopsis

-void                (*GimpRunPaletteCallback)           (const gchar *palette_name,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
-const gchar*        gimp_palette_select_new             (const gchar *title,
-                                                         const gchar *palette_name,
+void                (*GimpRunPaletteCallback)           (const gchar *palette_name,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);
+const gchar*        gimp_palette_select_new             (const gchar *title,
+                                                         const gchar *palette_name,
                                                          GimpRunPaletteCallback callback,
-                                                         gpointer data);
-void                gimp_palette_select_destroy         (const gchar *palette_callback);
-gboolean            gimp_palettes_popup                 (const gchar *palette_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_palette);
-gboolean            gimp_palettes_close_popup           (const gchar *palette_callback);
-gboolean            gimp_palettes_set_popup             (const gchar *palette_callback,
-                                                         const gchar *palette_name);
+                                                         gpointer data);
+void                gimp_palette_select_destroy         (const gchar *palette_callback);
+gboolean            gimp_palettes_popup                 (const gchar *palette_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_palette);
+gboolean            gimp_palettes_close_popup           (const gchar *palette_callback);
+gboolean            gimp_palettes_set_popup             (const gchar *palette_callback,
+                                                         const gchar *palette_name);
 
@@ -74,9 +108,15 @@

Details

GimpRunPaletteCallback ()

-
void                (*GimpRunPaletteCallback)           (const gchar *palette_name,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
+
void                (*GimpRunPaletteCallback)           (const gchar *palette_name,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);

@@ -106,10 +146,18 @@

gimp_palette_select_new ()

-
const gchar*        gimp_palette_select_new             (const gchar *title,
-                                                         const gchar *palette_name,
+
const gchar*        gimp_palette_select_new             (const gchar *title,
+                                                         const gchar *palette_name,
                                                          GimpRunPaletteCallback callback,
-                                                         gpointer data);
+ gpointer data);

@@ -149,7 +197,9 @@

gimp_palette_select_destroy ()

-
void                gimp_palette_select_destroy         (const gchar *palette_callback);
+
void                gimp_palette_select_destroy         (const gchar *palette_callback);

@@ -167,9 +217,17 @@

gimp_palettes_popup ()

-
gboolean            gimp_palettes_popup                 (const gchar *palette_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_palette);
+
gboolean            gimp_palettes_popup                 (const gchar *palette_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_palette);

Invokes the Gimp palette selection.

@@ -207,7 +265,11 @@

gimp_palettes_close_popup ()

-
gboolean            gimp_palettes_close_popup           (const gchar *palette_callback);
+
gboolean            gimp_palettes_close_popup           (const gchar *palette_callback);

Close the palette selection dialog.

@@ -235,8 +297,14 @@

gimp_palettes_set_popup ()

-
gboolean            gimp_palettes_set_popup             (const gchar *palette_callback,
-                                                         const gchar *palette_name);
+
gboolean            gimp_palettes_set_popup             (const gchar *palette_callback,
+                                                         const gchar *palette_name);

Sets the current palette in a palette selection dialog.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppalettes.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppalettes.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppalettes.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppalettes.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,14 +48,38 @@

Synopsis

-gboolean            gimp_palettes_refresh               (void);
-gchar**             gimp_palettes_get_list              (const gchar *filter,
-                                                         gint *num_palettes);
-gchar*              gimp_palettes_get_palette           (gint *num_colors);
-gboolean            gimp_palettes_set_palette           (const gchar *name);
-gchar*              gimp_palettes_get_palette_entry     (const gchar *name,
-                                                         gint entry_num,
-                                                         gint *num_colors,
+gboolean            gimp_palettes_refresh               (void);
+gchar**             gimp_palettes_get_list              (const gchar *filter,
+                                                         gint *num_palettes);
+gchar*              gimp_palettes_get_palette           (gint *num_colors);
+gboolean            gimp_palettes_set_palette           (const gchar *name);
+gchar*              gimp_palettes_get_palette_entry     (const gchar *name,
+                                                         gint entry_num,
+                                                         gint *num_colors,
                                                          GimpRGB *color);
@@ -71,7 +95,9 @@
 

Details

gimp_palettes_refresh ()

-
gboolean            gimp_palettes_refresh               (void);
+
gboolean            gimp_palettes_refresh               (void);

Refreshes current palettes. This function always succeeds.

@@ -93,8 +119,14 @@

gimp_palettes_get_list ()

-
gchar**             gimp_palettes_get_list              (const gchar *filter,
-                                                         gint *num_palettes);
+
gchar**             gimp_palettes_get_list              (const gchar *filter,
+                                                         gint *num_palettes);

Retrieves a list of all of the available palettes

@@ -129,7 +161,11 @@

gimp_palettes_get_palette ()

-
gchar*              gimp_palettes_get_palette           (gint *num_colors);
+
gchar*              gimp_palettes_get_palette           (gint *num_colors);

Warning

gimp_palettes_get_palette is deprecated and should not be used in newly-written code.

@@ -159,7 +195,11 @@

gimp_palettes_set_palette ()

-
gboolean            gimp_palettes_set_palette           (const gchar *name);
+
gboolean            gimp_palettes_set_palette           (const gchar *name);

Warning

gimp_palettes_set_palette is deprecated and should not be used in newly-written code.

@@ -188,9 +228,17 @@

gimp_palettes_get_palette_entry ()

-
gchar*              gimp_palettes_get_palette_entry     (const gchar *name,
-                                                         gint entry_num,
-                                                         gint *num_colors,
+
gchar*              gimp_palettes_get_palette_entry     (const gchar *name,
+                                                         gint entry_num,
+                                                         gint *num_colors,
                                                          GimpRGB *color);
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppaths.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppaths.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppaths.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppaths.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,53 +48,171 @@

Synopsis

-gchar**             gimp_path_list                      (gint32 image_ID,
-                                                         gint *num_paths);
-gint                gimp_path_get_points                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint *path_closed,
-                                                         gint *num_path_point_details,
-                                                         gdouble **points_pairs);
-gchar*              gimp_path_get_current               (gint32 image_ID);
-gboolean            gimp_path_set_current               (gint32 image_ID,
-                                                         const gchar *name);
-gboolean            gimp_path_set_points                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint ptype,
-                                                         gint num_path_points,
-                                                         const gdouble *points_pairs);
-gboolean            gimp_path_stroke_current            (gint32 image_ID);
-gint                gimp_path_get_point_at_dist         (gint32 image_ID,
-                                                         gdouble distance,
-                                                         gint *y_point,
-                                                         gdouble *slope);
-gint                gimp_path_get_tattoo                (gint32 image_ID,
-                                                         const gchar *name);
-gchar*              gimp_get_path_by_tattoo             (gint32 image_ID,
-                                                         gint tattoo);
-gboolean            gimp_path_delete                    (gint32 image_ID,
-                                                         const gchar *name);
-gboolean            gimp_path_get_locked                (gint32 image_ID,
-                                                         const gchar *name);
-gboolean            gimp_path_set_locked                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gboolean locked);
-gboolean            gimp_path_set_tattoo                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint tattovalue);
-gboolean            gimp_path_to_selection              (gint32 image_ID,
-                                                         const gchar *name,
+gchar**             gimp_path_list                      (gint32 image_ID,
+                                                         gint *num_paths);
+gint                gimp_path_get_points                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint *path_closed,
+                                                         gint *num_path_point_details,
+                                                         gdouble **points_pairs);
+gchar*              gimp_path_get_current               (gint32 image_ID);
+gboolean            gimp_path_set_current               (gint32 image_ID,
+                                                         const gchar *name);
+gboolean            gimp_path_set_points                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint ptype,
+                                                         gint num_path_points,
+                                                         const gdouble *points_pairs);
+gboolean            gimp_path_stroke_current            (gint32 image_ID);
+gint                gimp_path_get_point_at_dist         (gint32 image_ID,
+                                                         gdouble distance,
+                                                         gint *y_point,
+                                                         gdouble *slope);
+gint                gimp_path_get_tattoo                (gint32 image_ID,
+                                                         const gchar *name);
+gchar*              gimp_get_path_by_tattoo             (gint32 image_ID,
+                                                         gint tattoo);
+gboolean            gimp_path_delete                    (gint32 image_ID,
+                                                         const gchar *name);
+gboolean            gimp_path_get_locked                (gint32 image_ID,
+                                                         const gchar *name);
+gboolean            gimp_path_set_locked                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gboolean locked);
+gboolean            gimp_path_set_tattoo                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint tattovalue);
+gboolean            gimp_path_to_selection              (gint32 image_ID,
+                                                         const gchar *name,
                                                          GimpChannelOps op,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y);
-gboolean            gimp_path_import                    (gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gboolean merge,
-                                                         gboolean scale);
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y);
+gboolean            gimp_path_import                    (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gboolean merge,
+                                                         gboolean scale);
 
@@ -107,8 +225,14 @@

Details

gimp_path_list ()

-
gchar**             gimp_path_list                      (gint32 image_ID,
-                                                         gint *num_paths);
+
gchar**             gimp_path_list                      (gint32 image_ID,
+                                                         gint *num_paths);

Warning

gimp_path_list is deprecated and should not be used in newly-written code.

@@ -142,11 +266,23 @@

gimp_path_get_points ()

-
gint                gimp_path_get_points                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint *path_closed,
-                                                         gint *num_path_point_details,
-                                                         gdouble **points_pairs);
+
gint                gimp_path_get_points                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint *path_closed,
+                                                         gint *num_path_point_details,
+                                                         gdouble **points_pairs);

Warning

gimp_path_get_points is deprecated and should not be used in newly-written code.

@@ -196,7 +332,11 @@

gimp_path_get_current ()

-
gchar*              gimp_path_get_current               (gint32 image_ID);
+
gchar*              gimp_path_get_current               (gint32 image_ID);

Warning

gimp_path_get_current is deprecated and should not be used in newly-written code.

@@ -226,8 +366,14 @@

gimp_path_set_current ()

-
gboolean            gimp_path_set_current               (gint32 image_ID,
-                                                         const gchar *name);
+
gboolean            gimp_path_set_current               (gint32 image_ID,
+                                                         const gchar *name);

Warning

gimp_path_set_current is deprecated and should not be used in newly-written code.

@@ -262,11 +408,23 @@

gimp_path_set_points ()

-
gboolean            gimp_path_set_points                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint ptype,
-                                                         gint num_path_points,
-                                                         const gdouble *points_pairs);
+
gboolean            gimp_path_set_points                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint ptype,
+                                                         gint num_path_points,
+                                                         const gdouble *points_pairs);

Warning

gimp_path_set_points is deprecated and should not be used in newly-written code.

@@ -316,7 +474,11 @@

gimp_path_stroke_current ()

-
gboolean            gimp_path_stroke_current            (gint32 image_ID);
+
gboolean            gimp_path_stroke_current            (gint32 image_ID);

Warning

gimp_path_stroke_current is deprecated and should not be used in newly-written code.

@@ -346,10 +508,20 @@

gimp_path_get_point_at_dist ()

-
gint                gimp_path_get_point_at_dist         (gint32 image_ID,
-                                                         gdouble distance,
-                                                         gint *y_point,
-                                                         gdouble *slope);
+
gint                gimp_path_get_point_at_dist         (gint32 image_ID,
+                                                         gdouble distance,
+                                                         gint *y_point,
+                                                         gdouble *slope);

Warning

gimp_path_get_point_at_dist is deprecated and should not be used in newly-written code.

@@ -394,8 +566,14 @@

gimp_path_get_tattoo ()

-
gint                gimp_path_get_tattoo                (gint32 image_ID,
-                                                         const gchar *name);
+
gint                gimp_path_get_tattoo                (gint32 image_ID,
+                                                         const gchar *name);

Warning

gimp_path_get_tattoo is deprecated and should not be used in newly-written code.

@@ -429,8 +607,14 @@

gimp_get_path_by_tattoo ()

-
gchar*              gimp_get_path_by_tattoo             (gint32 image_ID,
-                                                         gint tattoo);
+
gchar*              gimp_get_path_by_tattoo             (gint32 image_ID,
+                                                         gint tattoo);

Warning

gimp_get_path_by_tattoo is deprecated and should not be used in newly-written code.

@@ -465,8 +649,14 @@

gimp_path_delete ()

-
gboolean            gimp_path_delete                    (gint32 image_ID,
-                                                         const gchar *name);
+
gboolean            gimp_path_delete                    (gint32 image_ID,
+                                                         const gchar *name);

Warning

gimp_path_delete is deprecated and should not be used in newly-written code.

@@ -501,8 +691,14 @@

gimp_path_get_locked ()

-
gboolean            gimp_path_get_locked                (gint32 image_ID,
-                                                         const gchar *name);
+
gboolean            gimp_path_get_locked                (gint32 image_ID,
+                                                         const gchar *name);

Warning

gimp_path_get_locked is deprecated and should not be used in newly-written code.

@@ -536,9 +732,17 @@

gimp_path_set_locked ()

-
gboolean            gimp_path_set_locked                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gboolean locked);
+
gboolean            gimp_path_set_locked                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gboolean locked);

Warning

gimp_path_set_locked is deprecated and should not be used in newly-written code.

@@ -577,9 +781,17 @@

gimp_path_set_tattoo ()

-
gboolean            gimp_path_set_tattoo                (gint32 image_ID,
-                                                         const gchar *name,
-                                                         gint tattovalue);
+
gboolean            gimp_path_set_tattoo                (gint32 image_ID,
+                                                         const gchar *name,
+                                                         gint tattovalue);

Warning

gimp_path_set_tattoo is deprecated and should not be used in newly-written code.

@@ -618,15 +830,29 @@

gimp_path_to_selection ()

-
gboolean            gimp_path_to_selection              (gint32 image_ID,
-                                                         const gchar *name,
+
gboolean            gimp_path_to_selection              (gint32 image_ID,
+                                                         const gchar *name,
                                                          GimpChannelOps op,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius_x, + gdouble feather_radius_y);

Warning

gimp_path_to_selection is deprecated and should not be used in newly-written code.

@@ -686,10 +912,20 @@

gimp_path_import ()

-
gboolean            gimp_path_import                    (gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gboolean merge,
-                                                         gboolean scale);
+
gboolean            gimp_path_import                    (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gboolean merge,
+                                                         gboolean scale);

Warning

gimp_path_import is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppattern.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppattern.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppattern.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppattern.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,16 +48,40 @@

Synopsis

-gboolean            gimp_pattern_get_info               (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
-gboolean            gimp_pattern_get_pixels             (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp,
-                                                         gint *num_color_bytes,
-                                                         guint8 **color_bytes);
+gboolean            gimp_pattern_get_info               (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);
+gboolean            gimp_pattern_get_pixels             (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp,
+                                                         gint *num_color_bytes,
+                                                         guint8 **color_bytes);
 
@@ -70,10 +94,20 @@

Details

gimp_pattern_get_info ()

-
gboolean            gimp_pattern_get_info               (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp);
+
gboolean            gimp_pattern_get_info               (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp);

Retrieve information about the specified pattern.

@@ -120,12 +154,26 @@

gimp_pattern_get_pixels ()

-
gboolean            gimp_pattern_get_pixels             (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *bpp,
-                                                         gint *num_color_bytes,
-                                                         guint8 **color_bytes);
+
gboolean            gimp_pattern_get_pixels             (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *bpp,
+                                                         gint *num_color_bytes,
+                                                         guint8 **color_bytes);

Retrieve information about the specified pattern (including pixels).

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppatternmenu.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppatternmenu.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,13 +48,27 @@

Synopsis

-GtkWidget*          gimp_pattern_select_widget_new      (const gchar *title,
-                                                         const gchar *pattern_name,
+GtkWidget*          gimp_pattern_select_widget_new      (const gchar *title,
+                                                         const gchar *pattern_name,
                                                          GimpRunPatternCallback callback,
-                                                         gpointer data);
-void                gimp_pattern_select_widget_close    (GtkWidget *widget);
-void                gimp_pattern_select_widget_set      (GtkWidget *widget,
-                                                         const gchar *pattern_name);
+                                                         gpointer data);
+void                gimp_pattern_select_widget_close    (GtkWidget *widget);
+void                gimp_pattern_select_widget_set      (GtkWidget *widget,
+                                                         const gchar *pattern_name);
 
@@ -67,16 +81,26 @@

Details

gimp_pattern_select_widget_new ()

-
GtkWidget*          gimp_pattern_select_widget_new      (const gchar *title,
-                                                         const gchar *pattern_name,
+
GtkWidget*          gimp_pattern_select_widget_new      (const gchar *title,
+                                                         const gchar *pattern_name,
                                                          GimpRunPatternCallback callback,
-                                                         gpointer data);
+ gpointer data);

Warning

gimp_pattern_select_widget_new is deprecated and should not be used in newly-written code.

-Creates a new GtkWidget that completely controls the selection of +Creates a new GtkWidget that completely controls the selection of a pattern. This widget is suitable for placement in a table in a plug-in dialog.

@@ -87,12 +111,16 @@

title :

- Title of the dialog to use or NULL to use the default title. + Title of the dialog to use or NULL to use the default title.

pattern_name :

- Initial pattern name or NULL to use current selection. + Initial pattern name or NULL to use current selection. @@ -107,7 +135,9 @@

Returns :

- A GtkWidget that you can use in your UI. + A GtkWidget that you can use in your UI. @@ -116,7 +146,9 @@

gimp_pattern_select_widget_close ()

-
void                gimp_pattern_select_widget_close    (GtkWidget *widget);
+
void                gimp_pattern_select_widget_close    (GtkWidget *widget);

Warning

gimp_pattern_select_widget_close is deprecated and should not be used in newly-written code.

@@ -138,8 +170,12 @@

gimp_pattern_select_widget_set ()

-
void                gimp_pattern_select_widget_set      (GtkWidget *widget,
-                                                         const gchar *pattern_name);
+
void                gimp_pattern_select_widget_set      (GtkWidget *widget,
+                                                         const gchar *pattern_name);

Warning

gimp_pattern_select_widget_set is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppatternselect.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppatternselect.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,24 +48,66 @@

Synopsis

-void                (*GimpRunPatternCallback)           (const gchar *pattern_name,
-                                                         gint width,
-                                                         gint height,
-                                                         gint bpp,
-                                                         const guchar *mask_data,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
-const gchar*        gimp_pattern_select_new             (const gchar *title,
-                                                         const gchar *pattern_name,
+void                (*GimpRunPatternCallback)           (const gchar *pattern_name,
+                                                         gint width,
+                                                         gint height,
+                                                         gint bpp,
+                                                         const guchar *mask_data,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);
+const gchar*        gimp_pattern_select_new             (const gchar *title,
+                                                         const gchar *pattern_name,
                                                          GimpRunPatternCallback callback,
-                                                         gpointer data);
-void                gimp_pattern_select_destroy         (const gchar *pattern_callback);
-gboolean            gimp_patterns_popup                 (const gchar *pattern_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_pattern);
-gboolean            gimp_patterns_close_popup           (const gchar *pattern_callback);
-gboolean            gimp_patterns_set_popup             (const gchar *pattern_callback,
-                                                         const gchar *pattern_name);
+                                                         gpointer data);
+void                gimp_pattern_select_destroy         (const gchar *pattern_callback);
+gboolean            gimp_patterns_popup                 (const gchar *pattern_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_pattern);
+gboolean            gimp_patterns_close_popup           (const gchar *pattern_callback);
+gboolean            gimp_patterns_set_popup             (const gchar *pattern_callback,
+                                                         const gchar *pattern_name);
 
@@ -78,13 +120,27 @@

Details

GimpRunPatternCallback ()

-
void                (*GimpRunPatternCallback)           (const gchar *pattern_name,
-                                                         gint width,
-                                                         gint height,
-                                                         gint bpp,
-                                                         const guchar *mask_data,
-                                                         gboolean dialog_closing,
-                                                         gpointer user_data);
+
void                (*GimpRunPatternCallback)           (const gchar *pattern_name,
+                                                         gint width,
+                                                         gint height,
+                                                         gint bpp,
+                                                         const guchar *mask_data,
+                                                         gboolean dialog_closing,
+                                                         gpointer user_data);

@@ -134,10 +190,18 @@

gimp_pattern_select_new ()

-
const gchar*        gimp_pattern_select_new             (const gchar *title,
-                                                         const gchar *pattern_name,
+
const gchar*        gimp_pattern_select_new             (const gchar *title,
+                                                         const gchar *pattern_name,
                                                          GimpRunPatternCallback callback,
-                                                         gpointer data);
+ gpointer data);

@@ -177,7 +241,9 @@

gimp_pattern_select_destroy ()

-
void                gimp_pattern_select_destroy         (const gchar *pattern_callback);
+
void                gimp_pattern_select_destroy         (const gchar *pattern_callback);

@@ -195,9 +261,17 @@

gimp_patterns_popup ()

-
gboolean            gimp_patterns_popup                 (const gchar *pattern_callback,
-                                                         const gchar *popup_title,
-                                                         const gchar *initial_pattern);
+
gboolean            gimp_patterns_popup                 (const gchar *pattern_callback,
+                                                         const gchar *popup_title,
+                                                         const gchar *initial_pattern);

Invokes the Gimp pattern selection.

@@ -235,7 +309,11 @@

gimp_patterns_close_popup ()

-
gboolean            gimp_patterns_close_popup           (const gchar *pattern_callback);
+
gboolean            gimp_patterns_close_popup           (const gchar *pattern_callback);

Close the pattern selection dialog.

@@ -263,8 +341,14 @@

gimp_patterns_set_popup ()

-
gboolean            gimp_patterns_set_popup             (const gchar *pattern_callback,
-                                                         const gchar *pattern_name);
+
gboolean            gimp_patterns_set_popup             (const gchar *pattern_callback,
+                                                         const gchar *pattern_name);

Sets the current pattern in a pattern selection dialog.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppatterns.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppatterns.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppatterns.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppatterns.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,18 +48,50 @@

Synopsis

-gboolean            gimp_patterns_refresh               (void);
-gchar**             gimp_patterns_get_list              (const gchar *filter,
-                                                         gint *num_patterns);
-gchar*              gimp_patterns_get_pattern           (gint *width,
-                                                         gint *height);
-gboolean            gimp_patterns_set_pattern           (const gchar *name);
-gchar*              gimp_patterns_get_pattern_data      (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *mask_bpp,
-                                                         gint *length,
-                                                         guint8 **mask_data);
+gboolean            gimp_patterns_refresh               (void);
+gchar**             gimp_patterns_get_list              (const gchar *filter,
+                                                         gint *num_patterns);
+gchar*              gimp_patterns_get_pattern           (gint *width,
+                                                         gint *height);
+gboolean            gimp_patterns_set_pattern           (const gchar *name);
+gchar*              gimp_patterns_get_pattern_data      (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *mask_bpp,
+                                                         gint *length,
+                                                         guint8 **mask_data);
 
@@ -73,7 +105,9 @@

Details

gimp_patterns_refresh ()

-
gboolean            gimp_patterns_refresh               (void);
+
gboolean            gimp_patterns_refresh               (void);

Refresh current patterns. This function always succeeds.

@@ -95,8 +129,14 @@

gimp_patterns_get_list ()

-
gchar**             gimp_patterns_get_list              (const gchar *filter,
-                                                         gint *num_patterns);
+
gchar**             gimp_patterns_get_list              (const gchar *filter,
+                                                         gint *num_patterns);

Retrieve a complete listing of the available patterns.

@@ -131,8 +171,14 @@

gimp_patterns_get_pattern ()

-
gchar*              gimp_patterns_get_pattern           (gint *width,
-                                                         gint *height);
+
gchar*              gimp_patterns_get_pattern           (gint *width,
+                                                         gint *height);

Warning

gimp_patterns_get_pattern is deprecated and should not be used in newly-written code.

@@ -167,7 +213,11 @@

gimp_patterns_set_pattern ()

-
gboolean            gimp_patterns_set_pattern           (const gchar *name);
+
gboolean            gimp_patterns_set_pattern           (const gchar *name);

Warning

gimp_patterns_set_pattern is deprecated and should not be used in newly-written code.

@@ -196,12 +246,26 @@

gimp_patterns_get_pattern_data ()

-
gchar*              gimp_patterns_get_pattern_data      (const gchar *name,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *mask_bpp,
-                                                         gint *length,
-                                                         guint8 **mask_data);
+
gchar*              gimp_patterns_get_pattern_data      (const gchar *name,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *mask_bpp,
+                                                         gint *length,
+                                                         guint8 **mask_data);

Warning

gimp_patterns_get_pattern_data is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppixbuf.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppixbuf.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,29 +49,75 @@

Synopsis

 enum                GimpPixbufTransparency;
-GdkPixbuf*          gimp_image_get_thumbnail            (gint32 image_ID,
-                                                         gint width,
-                                                         gint height,
+GdkPixbuf*          gimp_image_get_thumbnail            (gint32 image_ID,
+                                                         gint width,
+                                                         gint height,
                                                          GimpPixbufTransparency alpha);
-GdkPixbuf*          gimp_drawable_get_thumbnail         (gint32 drawable_ID,
-                                                         gint width,
-                                                         gint height,
+GdkPixbuf*          gimp_drawable_get_thumbnail         (gint32 drawable_ID,
+                                                         gint width,
+                                                         gint height,
                                                          GimpPixbufTransparency alpha);
-GdkPixbuf*          gimp_drawable_get_sub_thumbnail     (gint32 drawable_ID,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint src_width,
-                                                         gint src_height,
-                                                         gint dest_width,
-                                                         gint dest_height,
+GdkPixbuf*          gimp_drawable_get_sub_thumbnail     (gint32 drawable_ID,
+                                                         gint src_x,
+                                                         gint src_y,
+                                                         gint src_width,
+                                                         gint src_height,
+                                                         gint dest_width,
+                                                         gint dest_height,
                                                          GimpPixbufTransparency alpha);
-gint32              gimp_layer_new_from_pixbuf          (gint32 image_ID,
-                                                         const gchar *name,
-                                                         GdkPixbuf *pixbuf,
-                                                         gdouble opacity,
+gint32              gimp_layer_new_from_pixbuf          (gint32 image_ID,
+                                                         const gchar *name,
+                                                         GdkPixbuf *pixbuf,
+                                                         gdouble opacity,
                                                          GimpLayerModeEffects mode,
-                                                         gdouble progress_start,
-                                                         gdouble progress_end);
+                                                         gdouble progress_start,
+                                                         gdouble progress_end);
 
@@ -98,9 +144,17 @@

gimp_image_get_thumbnail ()

-
GdkPixbuf*          gimp_image_get_thumbnail            (gint32 image_ID,
-                                                         gint width,
-                                                         gint height,
+
GdkPixbuf*          gimp_image_get_thumbnail            (gint32 image_ID,
+                                                         gint width,
+                                                         gint height,
                                                          GimpPixbufTransparency alpha);

Retrieves a thumbnail pixbuf for the image identified by image_ID. @@ -133,7 +187,9 @@

Returns :

- a new GdkPixbuf + a new GdkPixbuf @@ -145,9 +201,17 @@

gimp_drawable_get_thumbnail ()

-
GdkPixbuf*          gimp_drawable_get_thumbnail         (gint32 drawable_ID,
-                                                         gint width,
-                                                         gint height,
+
GdkPixbuf*          gimp_drawable_get_thumbnail         (gint32 drawable_ID,
+                                                         gint width,
+                                                         gint height,
                                                          GimpPixbufTransparency alpha);

Retrieves a thumbnail pixbuf for the drawable identified by @@ -181,7 +245,9 @@

Returns :

- a new GdkPixbuf + a new GdkPixbuf @@ -193,13 +259,29 @@

gimp_drawable_get_sub_thumbnail ()

-
GdkPixbuf*          gimp_drawable_get_sub_thumbnail     (gint32 drawable_ID,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint src_width,
-                                                         gint src_height,
-                                                         gint dest_width,
-                                                         gint dest_height,
+
GdkPixbuf*          gimp_drawable_get_sub_thumbnail     (gint32 drawable_ID,
+                                                         gint src_x,
+                                                         gint src_y,
+                                                         gint src_width,
+                                                         gint src_height,
+                                                         gint dest_width,
+                                                         gint dest_height,
                                                          GimpPixbufTransparency alpha);

Retrieves a thumbnail pixbuf for the drawable identified by @@ -253,7 +335,9 @@

Returns :

- a new GdkPixbuf + a new GdkPixbuf @@ -265,18 +349,36 @@

gimp_layer_new_from_pixbuf ()

-
gint32              gimp_layer_new_from_pixbuf          (gint32 image_ID,
-                                                         const gchar *name,
-                                                         GdkPixbuf *pixbuf,
-                                                         gdouble opacity,
+
gint32              gimp_layer_new_from_pixbuf          (gint32 image_ID,
+                                                         const gchar *name,
+                                                         GdkPixbuf *pixbuf,
+                                                         gdouble opacity,
                                                          GimpLayerModeEffects mode,
-                                                         gdouble progress_start,
-                                                         gdouble progress_end);
-

-Create a new layer from a GdkPixbuf. + gdouble progress_start, + gdouble progress_end);

+

+Create a new layer from a GdkPixbuf.

-This procedure creates a new layer from the given GdkPixbuf. The +This procedure creates a new layer from the given GdkPixbuf. The image has to be an RGB image and just like with gimp_layer_new() you will still need to add the layer to it.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2008-10-08 23:32:59.000000000 +0100 @@ -51,7 +51,9 @@ enum GimpPixelFetcherEdgeMode; GimpPixelFetcher; GimpPixelFetcher* gimp_pixel_fetcher_new (GimpDrawable *drawable, - gboolean shadow); + gboolean shadow); void gimp_pixel_fetcher_set_edge_mode (GimpPixelFetcher *pf, GimpPixelFetcherEdgeMode mode); void gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf, @@ -59,13 +61,25 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB *color); void gimp_pixel_fetcher_get_pixel (GimpPixelFetcher *pf, - gint x, - gint y, - guchar *pixel); + gint x, + gint y, + guchar *pixel); void gimp_pixel_fetcher_put_pixel (GimpPixelFetcher *pf, - gint x, - gint y, - const guchar *pixel); + gint x, + gint y, + const guchar *pixel); void gimp_pixel_fetcher_destroy (GimpPixelFetcher *pf);
@@ -108,7 +122,9 @@

gimp_pixel_fetcher_new ()

GimpPixelFetcher*   gimp_pixel_fetcher_new              (GimpDrawable *drawable,
-                                                         gboolean shadow);
+ gboolean shadow);

Initialize a pixel region from the drawable.

@@ -124,7 +140,9 @@

shadow :

- a gboolean indicating whether the region is attached to + a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles. @@ -194,9 +212,15 @@

gimp_pixel_fetcher_get_pixel ()

void                gimp_pixel_fetcher_get_pixel        (GimpPixelFetcher *pf,
-                                                         gint x,
-                                                         gint y,
-                                                         guchar *pixel);
+ gint x, + gint y, + guchar *pixel);

Get a pixel from the pixel region.

@@ -232,9 +256,15 @@

gimp_pixel_fetcher_put_pixel ()

void                gimp_pixel_fetcher_put_pixel        (GimpPixelFetcher *pf,
-                                                         gint x,
-                                                         gint y,
-                                                         const guchar *pixel);
+ gint x, + gint y, + const guchar *pixel);

Set a pixel in the pixel region.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppixelrgn.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppixelrgn.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2008-10-08 23:32:59.000000000 +0100 @@ -51,62 +51,158 @@ GimpPixelRgn; void gimp_pixel_rgn_init (GimpPixelRgn *pr, GimpDrawable *drawable, - gint x, - gint y, - gint width, - gint height, - gint dirty, - gint shadow); + gint x, + gint y, + gint width, + gint height, + gint dirty, + gint shadow); void gimp_pixel_rgn_resize (GimpPixelRgn *pr, - gint x, - gint y, - gint width, - gint height); + gint x, + gint y, + gint width, + gint height); void gimp_pixel_rgn_get_pixel (GimpPixelRgn *pr, - guchar *buf, - gint x, - gint y); + guchar *buf, + gint x, + gint y); void gimp_pixel_rgn_get_row (GimpPixelRgn *pr, - guchar *buf, - gint x, - gint y, - gint width); + guchar *buf, + gint x, + gint y, + gint width); void gimp_pixel_rgn_get_col (GimpPixelRgn *pr, - guchar *buf, - gint x, - gint y, - gint height); + guchar *buf, + gint x, + gint y, + gint height); void gimp_pixel_rgn_get_rect (GimpPixelRgn *pr, - guchar *buf, - gint x, - gint y, - gint width, - gint height); + guchar *buf, + gint x, + gint y, + gint width, + gint height); void gimp_pixel_rgn_set_pixel (GimpPixelRgn *pr, - const guchar *buf, - gint x, - gint y); + const guchar *buf, + gint x, + gint y); void gimp_pixel_rgn_set_row (GimpPixelRgn *pr, - const guchar *buf, - gint x, - gint y, - gint width); + const guchar *buf, + gint x, + gint y, + gint width); void gimp_pixel_rgn_set_col (GimpPixelRgn *pr, - const guchar *buf, - gint x, - gint y, - gint height); + const guchar *buf, + gint x, + gint y, + gint height); void gimp_pixel_rgn_set_rect (GimpPixelRgn *pr, - const guchar *buf, - gint x, - gint y, - gint width, - gint height); -gpointer gimp_pixel_rgns_register (gint nrgns, + const guchar *buf, + gint x, + gint y, + gint width, + gint height); +gpointer gimp_pixel_rgns_register (gint nrgns, ...); -gpointer gimp_pixel_rgns_register2 (gint nrgns, +gpointer gimp_pixel_rgns_register2 (gint nrgns, GimpPixelRgn **prs); -gpointer gimp_pixel_rgns_process (gpointer pri_ptr); +gpointer gimp_pixel_rgns_process (gpointer pri_ptr);

@@ -142,12 +238,24 @@

gimp_pixel_rgn_init ()

void                gimp_pixel_rgn_init                 (GimpPixelRgn *pr,
                                                          GimpDrawable *drawable,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
-                                                         gint dirty,
-                                                         gint shadow);
+ gint x, + gint y, + gint width, + gint height, + gint dirty, + gint shadow);

Initialize the pixel region pointed by pr with the specified parameters.

@@ -227,13 +335,17 @@

dirty :

- a gboolean indicating whether the drawable should be marked + a gboolean indicating whether the drawable should be marked as "dirty".

shadow :

- a gboolean indicating whether the region is attached to the + a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles. @@ -244,10 +356,18 @@

gimp_pixel_rgn_resize ()

void                gimp_pixel_rgn_resize               (GimpPixelRgn *pr,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height);
+ gint x, + gint y, + gint width, + gint height);

Change the position and size of a previously initialized pixel region.

@@ -290,15 +410,29 @@

gimp_pixel_rgn_get_pixel ()

void                gimp_pixel_rgn_get_pixel            (GimpPixelRgn *pr,
-                                                         guchar *buf,
-                                                         gint x,
-                                                         gint y);
+ guchar *buf, + gint x, + gint y);

Fill the buffer pointed by buf with the value of the pixel at (x, y) in the region pr. buf should be large enough to hold the pixel value -(1 guchar for an indexed or grayscale drawable, 2 guchar for -indexed with alpha or grayscale with alpha drawable, 3 guchar for -rgb drawable and 4 guchar for rgb with alpha drawable.

+(1 guchar for an indexed or grayscale drawable, 2 guchar for +indexed with alpha or grayscale with alpha drawable, 3 guchar for +rgb drawable and 4 guchar for rgb with alpha drawable.

@@ -312,7 +446,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -332,10 +468,18 @@

gimp_pixel_rgn_get_row ()

void                gimp_pixel_rgn_get_row              (GimpPixelRgn *pr,
-                                                         guchar *buf,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width);
+ guchar *buf, + gint x, + gint y, + gint width);

Get several pixels of a region in a row. This function fills the buffer buf with the values of the pixels from (x, y) to (x+width-1, y). @@ -353,7 +497,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -378,10 +524,18 @@

gimp_pixel_rgn_get_col ()

void                gimp_pixel_rgn_get_col              (GimpPixelRgn *pr,
-                                                         guchar *buf,
-                                                         gint x,
-                                                         gint y,
-                                                         gint height);
+ guchar *buf, + gint x, + gint y, + gint height);

Get several pixels of a region's column. This function fills the buffer buf with the values of the pixels from (x, y) to (x, y+height-1). @@ -399,7 +553,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -424,11 +580,21 @@

gimp_pixel_rgn_get_rect ()

void                gimp_pixel_rgn_get_rect             (GimpPixelRgn *pr,
-                                                         guchar *buf,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height);
+ guchar *buf, + gint x, + gint y, + gint width, + gint height);

Get all the pixel values from the rectangle defined by x, y, width and height. This function fills the buffer buf with the values of the pixels @@ -447,7 +613,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -477,9 +645,15 @@

gimp_pixel_rgn_set_pixel ()

void                gimp_pixel_rgn_set_pixel            (GimpPixelRgn *pr,
-                                                         const guchar *buf,
-                                                         gint x,
-                                                         gint y);
+ const guchar *buf, + gint x, + gint y);

Set the pixel at (x, y) to the values from buf.

@@ -495,7 +669,9 @@

buf :

- a pointer to an array of guchar. + a pointer to an array of guchar. @@ -515,10 +691,18 @@

gimp_pixel_rgn_set_row ()

void                gimp_pixel_rgn_set_row              (GimpPixelRgn *pr,
-                                                         const guchar *buf,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width);
+ const guchar *buf, + gint x, + gint y, + gint width);

Set several pixels of a region in a row. This function draws the pixels from (x, y) to (x+width-1, y) using the values of the buffer buf. @@ -536,7 +720,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -561,10 +747,18 @@

gimp_pixel_rgn_set_col ()

void                gimp_pixel_rgn_set_col              (GimpPixelRgn *pr,
-                                                         const guchar *buf,
-                                                         gint x,
-                                                         gint y,
-                                                         gint height);
+ const guchar *buf, + gint x, + gint y, + gint height);

Set several pixels of a region's column. This function draws the pixels from (x, y) to (x, y+height-1) using the values from the buffer buf. @@ -582,7 +776,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -607,11 +803,21 @@

gimp_pixel_rgn_set_rect ()

void                gimp_pixel_rgn_set_rect             (GimpPixelRgn *pr,
-                                                         const guchar *buf,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height);
+ const guchar *buf, + gint x, + gint y, + gint width, + gint height);

Set all the pixel of the rectangle defined by x, y, width and height. This function draws the rectangle from (x, y) to @@ -630,7 +836,9 @@

buf :

- a pointer to an array of guchar + a pointer to an array of guchar @@ -659,7 +867,11 @@

gimp_pixel_rgns_register ()

-
gpointer            gimp_pixel_rgns_register            (gint nrgns,
+
gpointer            gimp_pixel_rgns_register            (gint nrgns,
                                                          ...);

This is the varargs version of gimp_pixel_rgns_register2.

@@ -681,7 +893,9 @@

Returns :

- a gpointer to a regions iterator. + a gpointer to a regions iterator. @@ -690,7 +904,11 @@

gimp_pixel_rgns_register2 ()

-
gpointer            gimp_pixel_rgns_register2           (gint nrgns,
+
gpointer            gimp_pixel_rgns_register2           (gint nrgns,
                                                          GimpPixelRgn **prs);

It takes a number of initialized regions of the same size and provides a @@ -723,7 +941,9 @@

Returns :

- a gpointer to a regions iterator. + a gpointer to a regions iterator. @@ -732,7 +952,11 @@

gimp_pixel_rgns_process ()

-
gpointer            gimp_pixel_rgns_process             (gpointer pri_ptr);
+
gpointer            gimp_pixel_rgns_process             (gpointer pri_ptr);

This function update the regions registered previously with one of the gimp_pixel_rgns_register* functions to their next tile.

@@ -750,7 +974,11 @@

Returns :

- a gpointer to a new regions iterator or NULL if there isn't + a gpointer to a new regions iterator or NULL if there isn't any tiles left. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpplugin.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpplugin.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpplugin.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpplugin.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,20 +48,52 @@

Synopsis

-gboolean            gimp_plugin_domain_register         (const gchar *domain_name,
-                                                         const gchar *domain_path);
-gboolean            gimp_plugin_help_register           (const gchar *domain_name,
-                                                         const gchar *domain_uri);
-gboolean            gimp_plugin_icon_register           (const gchar *procedure_name,
+gboolean            gimp_plugin_domain_register         (const gchar *domain_name,
+                                                         const gchar *domain_path);
+gboolean            gimp_plugin_help_register           (const gchar *domain_name,
+                                                         const gchar *domain_uri);
+gboolean            gimp_plugin_icon_register           (const gchar *procedure_name,
                                                          GimpIconType icon_type,
-                                                         const guint8 *icon_data);
-gboolean            gimp_plugin_menu_register           (const gchar *procedure_name,
-                                                         const gchar *menu_path);
-gboolean            gimp_plugin_menu_branch_register    (const gchar *menu_path,
-                                                         const gchar *menu_name);
-gboolean            gimp_plugin_set_pdb_error_handler   (guint8 *icon_data);
+gboolean            gimp_plugin_menu_register           (const gchar *procedure_name,
+                                                         const gchar *menu_path);
+gboolean            gimp_plugin_menu_branch_register    (const gchar *menu_path,
+                                                         const gchar *menu_name);
+gboolean            gimp_plugin_set_pdb_error_handler   (GimpPDBErrorHandler handler);
 

Details

gimp_plugin_domain_register ()

-
gboolean            gimp_plugin_domain_register         (const gchar *domain_name,
-                                                         const gchar *domain_path);
+
gboolean            gimp_plugin_domain_register         (const gchar *domain_name,
+                                                         const gchar *domain_path);

Registers a textdomain for localisation.

@@ -121,8 +159,14 @@

gimp_plugin_help_register ()

-
gboolean            gimp_plugin_help_register           (const gchar *domain_name,
-                                                         const gchar *domain_uri);
+
gboolean            gimp_plugin_help_register           (const gchar *domain_name,
+                                                         const gchar *domain_uri);

Register a help path for a plug-in.

@@ -157,11 +201,17 @@

gimp_plugin_icon_register ()

-
gboolean            gimp_plugin_icon_register           (const gchar *procedure_name,
+
gboolean            gimp_plugin_icon_register           (const gchar *procedure_name,
                                                          GimpIconType icon_type,
-                                                         const guint8 *icon_data);
+ const guint8 *icon_data);

@@ -196,8 +246,14 @@

gimp_plugin_menu_register ()

-
gboolean            gimp_plugin_menu_register           (const gchar *procedure_name,
-                                                         const gchar *menu_path);
+
gboolean            gimp_plugin_menu_register           (const gchar *procedure_name,
+                                                         const gchar *menu_path);

Register an additional menu path for a plug-in procedure.

@@ -234,8 +290,14 @@

gimp_plugin_menu_branch_register ()

-
gboolean            gimp_plugin_menu_branch_register    (const gchar *menu_path,
-                                                         const gchar *menu_name);
+
gboolean            gimp_plugin_menu_branch_register    (const gchar *menu_path,
+                                                         const gchar *menu_name);

Register a sub-menu.

@@ -274,7 +336,9 @@

gimp_plugin_set_pdb_error_handler ()

-
gboolean            gimp_plugin_set_pdb_error_handler   (gboolean            gimp_plugin_set_pdb_error_handler   (GimpPDBErrorHandler handler);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,51 +48,137 @@

Synopsis

-gchar*              gimp_procedural_db_temp_name        (void);
-gboolean            gimp_procedural_db_get_data         (const gchar *identifier,
-                                                         gpointer data);
-gboolean            gimp_procedural_db_set_data         (const gchar *identifier,
-                                                         gconstpointer data,
-                                                         guint32 bytes);
-gboolean            gimp_procedural_db_dump             (const gchar *filename);
-gboolean            gimp_procedural_db_query            (const gchar *name,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
-                                                         const gchar *proc_type,
-                                                         gint *num_matches,
-                                                         gchar ***procedure_names);
-gboolean            gimp_procedural_db_proc_exists      (const gchar *procedure_name);
-gboolean            gimp_procedural_db_proc_info        (const gchar *procedure,
-                                                         gchar **blurb,
-                                                         gchar **help,
-                                                         gchar **author,
-                                                         gchar **copyright,
-                                                         gchar **date,
+gchar*              gimp_procedural_db_temp_name        (void);
+gboolean            gimp_procedural_db_get_data         (const gchar *identifier,
+                                                         gpointer data);
+gboolean            gimp_procedural_db_set_data         (const gchar *identifier,
+                                                         gconstpointer data,
+                                                         guint32 bytes);
+gboolean            gimp_procedural_db_dump             (const gchar *filename);
+gboolean            gimp_procedural_db_query            (const gchar *name,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
+                                                         const gchar *proc_type,
+                                                         gint *num_matches,
+                                                         gchar ***procedure_names);
+gboolean            gimp_procedural_db_proc_exists      (const gchar *procedure_name);
+gboolean            gimp_procedural_db_proc_info        (const gchar *procedure,
+                                                         gchar **blurb,
+                                                         gchar **help,
+                                                         gchar **author,
+                                                         gchar **copyright,
+                                                         gchar **date,
                                                          GimpPDBProcType *proc_type,
-                                                         gint *num_args,
-                                                         gint *num_values,
+                                                         gint *num_args,
+                                                         gint *num_values,
                                                          GimpParamDef **args,
                                                          GimpParamDef **return_vals);
-gboolean            gimp_procedural_db_proc_arg         (const gchar *procedure_name,
-                                                         gint arg_num,
+gboolean            gimp_procedural_db_proc_arg         (const gchar *procedure_name,
+                                                         gint arg_num,
                                                          GimpPDBArgType *arg_type,
-                                                         gchar **arg_name,
-                                                         gchar **arg_desc);
-gboolean            gimp_procedural_db_proc_val         (const gchar *procedure_name,
-                                                         gint val_num,
+                                                         gchar **arg_name,
+                                                         gchar **arg_desc);
+gboolean            gimp_procedural_db_proc_val         (const gchar *procedure_name,
+                                                         gint val_num,
                                                          GimpPDBArgType *val_type,
-                                                         gchar **val_name,
-                                                         gchar **val_desc);
-gint                gimp_procedural_db_get_data_size    (const gchar *identifier);
+                                                         gchar **val_name,
+                                                         gchar **val_desc);
+gint                gimp_procedural_db_get_data_size    (const gchar *identifier);
 
@@ -106,7 +192,9 @@

Details

gimp_procedural_db_temp_name ()

-
gchar*              gimp_procedural_db_temp_name        (void);
+
gchar*              gimp_procedural_db_temp_name        (void);

Generates a unique temporary PDB name.

@@ -128,8 +216,14 @@

gimp_procedural_db_get_data ()

-
gboolean            gimp_procedural_db_get_data         (const gchar *identifier,
-                                                         gpointer data);
+
gboolean            gimp_procedural_db_get_data         (const gchar *identifier,
+                                                         gpointer data);

Returns data associated with the specified identifier.

@@ -165,9 +259,17 @@

gimp_procedural_db_set_data ()

-
gboolean            gimp_procedural_db_set_data         (const gchar *identifier,
-                                                         gconstpointer data,
-                                                         guint32 bytes);
+
gboolean            gimp_procedural_db_set_data         (const gchar *identifier,
+                                                         gconstpointer data,
+                                                         guint32 bytes);

Associates the specified identifier with the supplied data.

@@ -207,7 +309,11 @@

gimp_procedural_db_dump ()

-
gboolean            gimp_procedural_db_dump             (const gchar *filename);
+
gboolean            gimp_procedural_db_dump             (const gchar *filename);

Dumps the current contents of the procedural database

@@ -237,15 +343,35 @@

gimp_procedural_db_query ()

-
gboolean            gimp_procedural_db_query            (const gchar *name,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
-                                                         const gchar *proc_type,
-                                                         gint *num_matches,
-                                                         gchar ***procedure_names);
+
gboolean            gimp_procedural_db_query            (const gchar *name,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
+                                                         const gchar *proc_type,
+                                                         gint *num_matches,
+                                                         gchar ***procedure_names);

Queries the procedural database for its contents using regular expression matching. @@ -325,7 +451,11 @@


gimp_procedural_db_proc_exists ()

-
gboolean            gimp_procedural_db_proc_exists      (const gchar *procedure_name);
+
gboolean            gimp_procedural_db_proc_exists      (const gchar *procedure_name);

Checks if the specified procedure exists in the procedural database

@@ -357,17 +487,35 @@

gimp_procedural_db_proc_info ()

-
gboolean            gimp_procedural_db_proc_info        (const gchar *procedure,
-                                                         gchar **blurb,
-                                                         gchar **help,
-                                                         gchar **author,
-                                                         gchar **copyright,
-                                                         gchar **date,
+
gboolean            gimp_procedural_db_proc_info        (const gchar *procedure,
+                                                         gchar **blurb,
+                                                         gchar **help,
+                                                         gchar **author,
+                                                         gchar **copyright,
+                                                         gchar **date,
                                                          GimpPDBProcType *proc_type,
-                                                         gint *num_args,
-                                                         gint *num_values,
+                                                         gint *num_args,
+                                                         gint *num_values,
                                                          GimpParamDef **args,
                                                          GimpParamDef **return_vals);

@@ -452,13 +600,23 @@


gimp_procedural_db_proc_arg ()

-
gboolean            gimp_procedural_db_proc_arg         (const gchar *procedure_name,
-                                                         gint arg_num,
+
gboolean            gimp_procedural_db_proc_arg         (const gchar *procedure_name,
+                                                         gint arg_num,
                                                          GimpPDBArgType *arg_type,
-                                                         gchar **arg_name,
-                                                         gchar **arg_desc);
+ gchar **arg_name, + gchar **arg_desc);

Queries the procedural database for information on the specified procedure's argument. @@ -508,13 +666,23 @@


gimp_procedural_db_proc_val ()

-
gboolean            gimp_procedural_db_proc_val         (const gchar *procedure_name,
-                                                         gint val_num,
+
gboolean            gimp_procedural_db_proc_val         (const gchar *procedure_name,
+                                                         gint val_num,
                                                          GimpPDBArgType *val_type,
-                                                         gchar **val_name,
-                                                         gchar **val_desc);
+ gchar **val_name, + gchar **val_desc);

Queries the procedural database for information on the specified procedure's return value. @@ -565,7 +733,11 @@


gimp_procedural_db_get_data_size ()

-
gint                gimp_procedural_db_get_data_size    (const gchar *identifier);
+
gint                gimp_procedural_db_get_data_size    (const gchar *identifier);

Returns size of data associated with the specified identifier.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpprocview.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpprocview.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpprocview.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpprocview.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,18 +48,38 @@

Synopsis

-GtkWidget*          gimp_proc_view_new                  (const gchar *name,
-                                                         const gchar *menu_path,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
+GtkWidget*          gimp_proc_view_new                  (const gchar *name,
+                                                         const gchar *menu_path,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
                                                          GimpPDBProcType type,
-                                                         gint n_params,
-                                                         gint n_return_vals,
+                                                         gint n_params,
+                                                         gint n_return_vals,
                                                          const GimpParamDef *params,
                                                          const GimpParamDef *return_vals);
 
@@ -74,18 +94,38 @@

Details

gimp_proc_view_new ()

-
GtkWidget*          gimp_proc_view_new                  (const gchar *name,
-                                                         const gchar *menu_path,
-                                                         const gchar *blurb,
-                                                         const gchar *help,
-                                                         const gchar *author,
-                                                         const gchar *copyright,
-                                                         const gchar *date,
+
GtkWidget*          gimp_proc_view_new                  (const gchar *name,
+                                                         const gchar *menu_path,
+                                                         const gchar *blurb,
+                                                         const gchar *help,
+                                                         const gchar *author,
+                                                         const gchar *copyright,
+                                                         const gchar *date,
                                                          GimpPDBProcType type,
-                                                         gint n_params,
-                                                         gint n_return_vals,
+                                                         gint n_params,
+                                                         gint n_return_vals,
                                                          const GimpParamDef *params,
                                                          const GimpParamDef *return_vals);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpprogress.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpprogress.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpprogress.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpprogress.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,33 +49,91 @@

Synopsis

                     GimpProgressVtable;
-gboolean            gimp_progress_init                  (const gchar *message);
-gboolean            gimp_progress_init_printf           (const gchar *format,
+gboolean            gimp_progress_init                  (const gchar *message);
+gboolean            gimp_progress_init_printf           (const gchar *format,
                                                          ...);
-gboolean            gimp_progress_update                (gdouble percentage);
-gboolean            gimp_progress_pulse                 (void);
-gboolean            gimp_progress_set_text              (const gchar *message);
-gboolean            gimp_progress_set_text_printf       (const gchar *format,
+gboolean            gimp_progress_update                (gdouble percentage);
+gboolean            gimp_progress_pulse                 (void);
+gboolean            gimp_progress_set_text              (const gchar *message);
+gboolean            gimp_progress_set_text_printf       (const gchar *format,
                                                          ...);
-gboolean            gimp_progress_end                   (void);
-gint                gimp_progress_get_window_handle     (void);
-void                (*GimpProgressStartCallback)        (const gchar *message,
-                                                         gboolean cancelable,
-                                                         gpointer user_data);
-void                (*GimpProgressEndCallback)          (gpointer user_data);
-void                (*GimpProgressTextCallback)         (const gchar *message,
-                                                         gpointer user_data);
-void                (*GimpProgressValueCallback)        (gdouble percentage,
-                                                         gpointer user_data);
-const gchar*        gimp_progress_install_vtable        (const GimpProgressVtable *vtable,
-                                                         gpointer user_data);
-const gchar*        gimp_progress_install               (GimpProgressStartCallback start_callback,
+gboolean            gimp_progress_end                   (void);
+gint                gimp_progress_get_window_handle     (void);
+void                (*GimpProgressStartCallback)        (const gchar *message,
+                                                         gboolean cancelable,
+                                                         gpointer user_data);
+void                (*GimpProgressEndCallback)          (gpointer user_data);
+void                (*GimpProgressTextCallback)         (const gchar *message,
+                                                         gpointer user_data);
+void                (*GimpProgressValueCallback)        (gdouble percentage,
+                                                         gpointer user_data);
+const gchar*        gimp_progress_install_vtable        (const GimpProgressVtable *vtable,
+                                                         gpointer user_data);
+const gchar*        gimp_progress_install               (GimpProgressStartCallback start_callback,
                                                          GimpProgressEndCallback end_callback,
                                                          GimpProgressTextCallback text_callback,
                                                          GimpProgressValueCallback value_callback,
-                                                         gpointer user_data);
-gpointer            gimp_progress_uninstall             (const gchar *progress_callback);
-gboolean            gimp_progress_cancel                (const gchar *progress_callback);
+                                                         gpointer user_data);
+gpointer            gimp_progress_uninstall             (const gchar *progress_callback);
+gboolean            gimp_progress_cancel                (const gchar *progress_callback);
 
@@ -119,7 +177,11 @@

gimp_progress_init ()

-
gboolean            gimp_progress_init                  (const gchar *message);
+
gboolean            gimp_progress_init                  (const gchar *message);

Initializes the progress bar for the current plug-in.

@@ -148,7 +210,11 @@

gimp_progress_init_printf ()

-
gboolean            gimp_progress_init_printf           (const gchar *format,
+
gboolean            gimp_progress_init_printf           (const gchar *format,
                                                          ...);

Initializes the progress bar for the current plug-in. @@ -174,7 +240,9 @@

Returns :

- TRUE on success. + TRUE on success. @@ -186,7 +254,11 @@

gimp_progress_update ()

-
gboolean            gimp_progress_update                (gdouble percentage);
+
gboolean            gimp_progress_update                (gdouble percentage);

Updates the progress bar for the current plug-in.

@@ -211,7 +283,9 @@


gimp_progress_pulse ()

-
gboolean            gimp_progress_pulse                 (void);
+
gboolean            gimp_progress_pulse                 (void);

Pulses the progress bar for the current plug-in.

@@ -239,7 +313,11 @@

gimp_progress_set_text ()

-
gboolean            gimp_progress_set_text              (const gchar *message);
+
gboolean            gimp_progress_set_text              (const gchar *message);

Changes the text in the progress bar for the current plug-in.

@@ -272,7 +350,11 @@

gimp_progress_set_text_printf ()

-
gboolean            gimp_progress_set_text_printf       (const gchar *format,
+
gboolean            gimp_progress_set_text_printf       (const gchar *format,
                                                          ...);

Changes the text in the progress bar for the current plug-in. @@ -299,7 +381,9 @@

Returns :

- TRUE on success. + TRUE on success. @@ -311,7 +395,9 @@

gimp_progress_end ()

-
gboolean            gimp_progress_end                   (void);
+
gboolean            gimp_progress_end                   (void);

Ends the progress bar for the current plug-in.

@@ -337,7 +423,9 @@

gimp_progress_get_window_handle ()

-
gint                gimp_progress_get_window_handle     (void);
+
gint                gimp_progress_get_window_handle     (void);

Returns the native window ID of the toplevel window this plug-in's progress is displayed in. @@ -363,9 +451,15 @@


GimpProgressStartCallback ()

-
void                (*GimpProgressStartCallback)        (const gchar *message,
-                                                         gboolean cancelable,
-                                                         gpointer user_data);
+
void                (*GimpProgressStartCallback)        (const gchar *message,
+                                                         gboolean cancelable,
+                                                         gpointer user_data);

Warning

GimpProgressStartCallback is deprecated and should not be used in newly-written code.

@@ -399,7 +493,9 @@

GimpProgressEndCallback ()

-
void                (*GimpProgressEndCallback)          (gpointer user_data);
+
void                (*GimpProgressEndCallback)          (gpointer user_data);

Warning

GimpProgressEndCallback is deprecated and should not be used in newly-written code.

@@ -421,8 +517,12 @@

GimpProgressTextCallback ()

-
void                (*GimpProgressTextCallback)         (const gchar *message,
-                                                         gpointer user_data);
+
void                (*GimpProgressTextCallback)         (const gchar *message,
+                                                         gpointer user_data);

Warning

GimpProgressTextCallback is deprecated and should not be used in newly-written code.

@@ -451,8 +551,12 @@

GimpProgressValueCallback ()

-
void                (*GimpProgressValueCallback)        (gdouble percentage,
-                                                         gpointer user_data);
+
void                (*GimpProgressValueCallback)        (gdouble percentage,
+                                                         gpointer user_data);

Warning

GimpProgressValueCallback is deprecated and should not be used in newly-written code.

@@ -481,8 +585,12 @@

gimp_progress_install_vtable ()

-
const gchar*        gimp_progress_install_vtable        (const GimpProgressVtable *vtable,
-                                                         gpointer user_data);
+
const gchar*        gimp_progress_install_vtable        (const GimpProgressVtable *vtable,
+                                                         gpointer user_data);

@@ -515,11 +623,15 @@


gimp_progress_install ()

-
const gchar*        gimp_progress_install               (GimpProgressStartCallback start_callback,
+
const gchar*        gimp_progress_install               (GimpProgressStartCallback start_callback,
                                                          GimpProgressEndCallback end_callback,
                                                          GimpProgressTextCallback text_callback,
                                                          GimpProgressValueCallback value_callback,
-                                                         gpointer user_data);
+ gpointer user_data);

Warning

gimp_progress_install is deprecated and should not be used in newly-written code.

@@ -576,7 +688,11 @@

gimp_progress_uninstall ()

-
gpointer            gimp_progress_uninstall             (const gchar *progress_callback);
+
gpointer            gimp_progress_uninstall             (const gchar *progress_callback);

Uninstalls a temporary progress procedure that was installed using gimp_progress_install().

@@ -605,7 +721,11 @@

gimp_progress_cancel ()

-
gboolean            gimp_progress_cancel                (const gchar *progress_callback);
+
gboolean            gimp_progress_cancel                (const gchar *progress_callback);

Cancels a running progress.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpregioniterator.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpregioniterator.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,29 +49,75 @@

Synopsis

                     GimpRgnIterator;
-void                (*GimpRgnFunc1)                     (const guchar *src,
-                                                         gint bpp,
-                                                         gpointer data);
-void                (*GimpRgnFunc2)                     (const guchar *src,
-                                                         guchar *dest,
-                                                         gint bpp,
-                                                         gpointer data);
-void                (*GimpRgnFuncSrc)                   (gint x,
-                                                         gint y,
-                                                         const guchar *src,
-                                                         gint bpp,
-                                                         gpointer data);
-void                (*GimpRgnFuncDest)                  (gint x,
-                                                         gint y,
-                                                         guchar *dest,
-                                                         gint bpp,
-                                                         gpointer data);
-void                (*GimpRgnFuncSrcDest)               (gint x,
-                                                         gint y,
-                                                         const guchar *src,
-                                                         guchar *dest,
-                                                         gint bpp,
-                                                         gpointer data);
+void                (*GimpRgnFunc1)                     (const guchar *src,
+                                                         gint bpp,
+                                                         gpointer data);
+void                (*GimpRgnFunc2)                     (const guchar *src,
+                                                         guchar *dest,
+                                                         gint bpp,
+                                                         gpointer data);
+void                (*GimpRgnFuncSrc)                   (gint x,
+                                                         gint y,
+                                                         const guchar *src,
+                                                         gint bpp,
+                                                         gpointer data);
+void                (*GimpRgnFuncDest)                  (gint x,
+                                                         gint y,
+                                                         guchar *dest,
+                                                         gint bpp,
+                                                         gpointer data);
+void                (*GimpRgnFuncSrcDest)               (gint x,
+                                                         gint y,
+                                                         const guchar *src,
+                                                         guchar *dest,
+                                                         gint bpp,
+                                                         gpointer data);
 GimpRgnIterator*    gimp_rgn_iterator_new               (GimpDrawable *drawable,
                                                          gimp_rgn_iterator_free              (GimpRgnIterator *iter);
 void                gimp_rgn_iterator_src               (GimpRgnIterator *iter,
                                                          GimpRgnFuncSrc func,
-                                                         gpointer data);
+                                                         gpointer data);
 void                gimp_rgn_iterator_dest              (GimpRgnIterator *iter,
                                                          GimpRgnFuncDest func,
-                                                         gpointer data);
+                                                         gpointer data);
 void                gimp_rgn_iterator_src_dest          (GimpRgnIterator *iter,
                                                          GimpRgnFuncSrcDest func,
-                                                         gpointer data);
+                                                         gpointer data);
 void                gimp_rgn_iterate1                   (GimpDrawable *drawable,
                                                          GimpRunMode unused,
                                                          GimpRgnFunc1 func,
-                                                         gpointer data);
+                                                         gpointer data);
 void                gimp_rgn_iterate2                   (GimpDrawable *drawable,
                                                          GimpRunMode unused,
                                                          GimpRgnFunc2 func,
-                                                         gpointer data);
+                                                         gpointer data);
 
@@ -120,9 +176,15 @@

GimpRgnFunc1 ()

-
void                (*GimpRgnFunc1)                     (const guchar *src,
-                                                         gint bpp,
-                                                         gpointer data);
+
void                (*GimpRgnFunc1)                     (const guchar *src,
+                                                         gint bpp,
+                                                         gpointer data);

@@ -152,10 +214,18 @@

GimpRgnFunc2 ()

-
void                (*GimpRgnFunc2)                     (const guchar *src,
-                                                         guchar *dest,
-                                                         gint bpp,
-                                                         gpointer data);
+
void                (*GimpRgnFunc2)                     (const guchar *src,
+                                                         guchar *dest,
+                                                         gint bpp,
+                                                         gpointer data);

@@ -190,11 +260,21 @@

GimpRgnFuncSrc ()

-
void                (*GimpRgnFuncSrc)                   (gint x,
-                                                         gint y,
-                                                         const guchar *src,
-                                                         gint bpp,
-                                                         gpointer data);
+
void                (*GimpRgnFuncSrc)                   (gint x,
+                                                         gint y,
+                                                         const guchar *src,
+                                                         gint bpp,
+                                                         gpointer data);

@@ -234,11 +314,21 @@

GimpRgnFuncDest ()

-
void                (*GimpRgnFuncDest)                  (gint x,
-                                                         gint y,
-                                                         guchar *dest,
-                                                         gint bpp,
-                                                         gpointer data);
+
void                (*GimpRgnFuncDest)                  (gint x,
+                                                         gint y,
+                                                         guchar *dest,
+                                                         gint bpp,
+                                                         gpointer data);

@@ -278,12 +368,24 @@

GimpRgnFuncSrcDest ()

-
void                (*GimpRgnFuncSrcDest)               (gint x,
-                                                         gint y,
-                                                         const guchar *src,
-                                                         guchar *dest,
-                                                         gint bpp,
-                                                         gpointer data);
+
void                (*GimpRgnFuncSrcDest)               (gint x,
+                                                         gint y,
+                                                         const guchar *src,
+                                                         guchar *dest,
+                                                         gint bpp,
+                                                         gpointer data);

@@ -385,7 +487,9 @@

gimp_rgn_iterator_src ()

void                gimp_rgn_iterator_src               (GimpRgnIterator *iter,
                                                          GimpRgnFuncSrc func,
-                                                         gpointer data);
+ gpointer data);

@@ -417,7 +521,9 @@

gimp_rgn_iterator_dest ()

void                gimp_rgn_iterator_dest              (GimpRgnIterator *iter,
                                                          GimpRgnFuncDest func,
-                                                         gpointer data);
+ gpointer data);

@@ -449,7 +555,9 @@

gimp_rgn_iterator_src_dest ()

void                gimp_rgn_iterator_src_dest          (GimpRgnIterator *iter,
                                                          GimpRgnFuncSrcDest func,
-                                                         gpointer data);
+ gpointer data);

@@ -484,7 +592,9 @@ href="../libgimpbase/libgimpbase-gimpbaseenums.html#GimpRunMode" >GimpRunMode unused, GimpRgnFunc1 func, - gpointer data);
+ gpointer data);

@@ -524,7 +634,9 @@ href="../libgimpbase/libgimpbase-gimpbaseenums.html#GimpRunMode" >GimpRunMode unused, GimpRgnFunc2 func, - gpointer data);
+ gpointer data);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpselection.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpselection.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpselection.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpselection.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,40 +48,144 @@

Synopsis

-gboolean            gimp_selection_bounds               (gint32 image_ID,
-                                                         gboolean *non_empty,
-                                                         gint *x1,
-                                                         gint *y1,
-                                                         gint *x2,
-                                                         gint *y2);
-gboolean            gimp_selection_all                  (gint32 image_ID);
-gboolean            gimp_selection_none                 (gint32 image_ID);
-gboolean            gimp_selection_clear                (gint32 image_ID);
-gboolean            gimp_selection_is_empty             (gint32 image_ID);
-gint32              gimp_selection_float                (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gint offx,
-                                                         gint offy);
-gboolean            gimp_selection_load                 (gint32 channel_ID);
-gint32              gimp_selection_save                 (gint32 image_ID);
-gint                gimp_selection_value                (gint32 image_ID,
-                                                         gint x,
-                                                         gint y);
-gboolean            gimp_selection_grow                 (gint32 image_ID,
-                                                         gint steps);
-gboolean            gimp_selection_shrink               (gint32 image_ID,
-                                                         gint steps);
-gboolean            gimp_selection_invert               (gint32 image_ID);
-gboolean            gimp_selection_feather              (gint32 image_ID,
-                                                         gdouble radius);
-gboolean            gimp_selection_sharpen              (gint32 image_ID);
-gboolean            gimp_selection_border               (gint32 image_ID,
-                                                         gint radius);
-gboolean            gimp_selection_translate            (gint32 image_ID,
-                                                         gint offx,
-                                                         gint offy);
-gboolean            gimp_selection_layer_alpha          (gint32 layer_ID);
-gboolean            gimp_selection_combine              (gint32 channel_ID,
+gboolean            gimp_selection_bounds               (gint32 image_ID,
+                                                         gboolean *non_empty,
+                                                         gint *x1,
+                                                         gint *y1,
+                                                         gint *x2,
+                                                         gint *y2);
+gboolean            gimp_selection_all                  (gint32 image_ID);
+gboolean            gimp_selection_none                 (gint32 image_ID);
+gboolean            gimp_selection_clear                (gint32 image_ID);
+gboolean            gimp_selection_is_empty             (gint32 image_ID);
+gint32              gimp_selection_float                (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gint offx,
+                                                         gint offy);
+gboolean            gimp_selection_load                 (gint32 channel_ID);
+gint32              gimp_selection_save                 (gint32 image_ID);
+gint                gimp_selection_value                (gint32 image_ID,
+                                                         gint x,
+                                                         gint y);
+gboolean            gimp_selection_grow                 (gint32 image_ID,
+                                                         gint steps);
+gboolean            gimp_selection_shrink               (gint32 image_ID,
+                                                         gint steps);
+gboolean            gimp_selection_invert               (gint32 image_ID);
+gboolean            gimp_selection_feather              (gint32 image_ID,
+                                                         gdouble radius);
+gboolean            gimp_selection_sharpen              (gint32 image_ID);
+gboolean            gimp_selection_border               (gint32 image_ID,
+                                                         gint radius);
+gboolean            gimp_selection_translate            (gint32 image_ID,
+                                                         gint offx,
+                                                         gint offy);
+gboolean            gimp_selection_layer_alpha          (gint32 layer_ID);
+gboolean            gimp_selection_combine              (gint32 channel_ID,
                                                          GimpChannelOps operation);
@@ -98,12 +202,26 @@
 

Details

gimp_selection_bounds ()

-
gboolean            gimp_selection_bounds               (gint32 image_ID,
-                                                         gboolean *non_empty,
-                                                         gint *x1,
-                                                         gint *y1,
-                                                         gint *x2,
-                                                         gint *y2);
+
gboolean            gimp_selection_bounds               (gint32 image_ID,
+                                                         gboolean *non_empty,
+                                                         gint *x1,
+                                                         gint *y1,
+                                                         gint *x2,
+                                                         gint *y2);

Find the bounding box of the current selection.

@@ -163,7 +281,11 @@

gimp_selection_all ()

-
gboolean            gimp_selection_all                  (gint32 image_ID);
+
gboolean            gimp_selection_all                  (gint32 image_ID);

Select all of the image.

@@ -192,7 +314,11 @@

gimp_selection_none ()

-
gboolean            gimp_selection_none                 (gint32 image_ID);
+
gboolean            gimp_selection_none                 (gint32 image_ID);

Deselect the entire image.

@@ -221,7 +347,11 @@

gimp_selection_clear ()

-
gboolean            gimp_selection_clear                (gint32 image_ID);
+
gboolean            gimp_selection_clear                (gint32 image_ID);

Warning

gimp_selection_clear is deprecated and should not be used in newly-written code.

@@ -250,7 +380,11 @@

gimp_selection_is_empty ()

-
gboolean            gimp_selection_is_empty             (gint32 image_ID);
+
gboolean            gimp_selection_is_empty             (gint32 image_ID);

Determine whether the selection is empty.

@@ -279,10 +413,20 @@

gimp_selection_float ()

-
gint32              gimp_selection_float                (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gint offx,
-                                                         gint offy);
+
gint32              gimp_selection_float                (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gint offx,
+                                                         gint offy);

Float the selection from the specified drawable with initial offsets as specified. @@ -330,7 +474,11 @@


gimp_selection_load ()

-
gboolean            gimp_selection_load                 (gint32 channel_ID);
+
gboolean            gimp_selection_load                 (gint32 channel_ID);

Transfer the specified channel to the selection mask.

@@ -358,7 +506,11 @@

gimp_selection_save ()

-
gint32              gimp_selection_save                 (gint32 image_ID);
+
gint32              gimp_selection_save                 (gint32 image_ID);

Copy the selection mask to a new channel.

@@ -388,9 +540,17 @@

gimp_selection_value ()

-
gint                gimp_selection_value                (gint32 image_ID,
-                                                         gint x,
-                                                         gint y);
+
gint                gimp_selection_value                (gint32 image_ID,
+                                                         gint x,
+                                                         gint y);

Find the value of the selection at the specified coordinates.

@@ -429,8 +589,14 @@

gimp_selection_grow ()

-
gboolean            gimp_selection_grow                 (gint32 image_ID,
-                                                         gint steps);
+
gboolean            gimp_selection_grow                 (gint32 image_ID,
+                                                         gint steps);

Grow the image's selection

@@ -464,8 +630,14 @@

gimp_selection_shrink ()

-
gboolean            gimp_selection_shrink               (gint32 image_ID,
-                                                         gint steps);
+
gboolean            gimp_selection_shrink               (gint32 image_ID,
+                                                         gint steps);

Shrink the image's selection

@@ -500,7 +672,11 @@

gimp_selection_invert ()

-
gboolean            gimp_selection_invert               (gint32 image_ID);
+
gboolean            gimp_selection_invert               (gint32 image_ID);

Invert the selection mask.

@@ -529,8 +705,14 @@

gimp_selection_feather ()

-
gboolean            gimp_selection_feather              (gint32 image_ID,
-                                                         gdouble radius);
+
gboolean            gimp_selection_feather              (gint32 image_ID,
+                                                         gdouble radius);

Feather the image's selection

@@ -564,7 +746,11 @@

gimp_selection_sharpen ()

-
gboolean            gimp_selection_sharpen              (gint32 image_ID);
+
gboolean            gimp_selection_sharpen              (gint32 image_ID);

Sharpen the selection mask.

@@ -595,8 +781,14 @@

gimp_selection_border ()

-
gboolean            gimp_selection_border               (gint32 image_ID,
-                                                         gint radius);
+
gboolean            gimp_selection_border               (gint32 image_ID,
+                                                         gint radius);

Border the image's selection

@@ -631,9 +823,17 @@

gimp_selection_translate ()

-
gboolean            gimp_selection_translate            (gint32 image_ID,
-                                                         gint offx,
-                                                         gint offy);
+
gboolean            gimp_selection_translate            (gint32 image_ID,
+                                                         gint offx,
+                                                         gint offy);

Translate the selection by the specified offsets.

@@ -675,7 +875,11 @@

gimp_selection_layer_alpha ()

-
gboolean            gimp_selection_layer_alpha          (gint32 layer_ID);
+
gboolean            gimp_selection_layer_alpha          (gint32 layer_ID);

Transfer the specified layer's alpha channel to the selection mask.

@@ -708,7 +912,11 @@

gimp_selection_combine ()

-
gboolean            gimp_selection_combine              (gint32 channel_ID,
+
gboolean            gimp_selection_combine              (gint32 channel_ID,
                                                          GimpChannelOps operation);
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptextlayer.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptextlayer.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptextlayer.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptextlayer.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,73 +48,207 @@

Synopsis

-gint32              gimp_text_layer_new                 (gint32 image_ID,
-                                                         const gchar *text,
-                                                         const gchar *fontname,
-                                                         gdouble size,
+gint32              gimp_text_layer_new                 (gint32 image_ID,
+                                                         const gchar *text,
+                                                         const gchar *fontname,
+                                                         gdouble size,
                                                          GimpUnit unit);
-gchar*              gimp_text_layer_get_text            (gint32 layer_ID);
-gboolean            gimp_text_layer_set_text            (gint32 layer_ID,
-                                                         const gchar *text);
-gchar*              gimp_text_layer_get_font            (gint32 layer_ID);
-gboolean            gimp_text_layer_set_font            (gint32 layer_ID,
-                                                         const gchar *font);
-gdouble             gimp_text_layer_get_font_size       (gint32 layer_ID,
+gchar*              gimp_text_layer_get_text            (gint32 layer_ID);
+gboolean            gimp_text_layer_set_text            (gint32 layer_ID,
+                                                         const gchar *text);
+gchar*              gimp_text_layer_get_font            (gint32 layer_ID);
+gboolean            gimp_text_layer_set_font            (gint32 layer_ID,
+                                                         const gchar *font);
+gdouble             gimp_text_layer_get_font_size       (gint32 layer_ID,
                                                          GimpUnit *unit);
-gboolean            gimp_text_layer_set_font_size       (gint32 layer_ID,
-                                                         gdouble font_size,
+gboolean            gimp_text_layer_set_font_size       (gint32 layer_ID,
+                                                         gdouble font_size,
                                                          GimpUnit unit);
-gboolean            gimp_text_layer_get_hinting         (gint32 layer_ID,
-                                                         gboolean *autohint);
-gboolean            gimp_text_layer_set_hinting         (gint32 layer_ID,
-                                                         gboolean hinting,
-                                                         gboolean autohint);
-gboolean            gimp_text_layer_get_antialias       (gint32 layer_ID);
-gboolean            gimp_text_layer_set_antialias       (gint32 layer_ID,
-                                                         gboolean antialias);
-gboolean            gimp_text_layer_get_kerning         (gint32 layer_ID);
-gboolean            gimp_text_layer_set_kerning         (gint32 layer_ID,
-                                                         gboolean kerning);
-gchar*              gimp_text_layer_get_language        (gint32 layer_ID);
-gboolean            gimp_text_layer_set_language        (gint32 layer_ID,
-                                                         const gchar *language);
+gboolean            gimp_text_layer_get_hinting         (gint32 layer_ID,
+                                                         gboolean *autohint);
+gboolean            gimp_text_layer_set_hinting         (gint32 layer_ID,
+                                                         gboolean hinting,
+                                                         gboolean autohint);
+gboolean            gimp_text_layer_get_antialias       (gint32 layer_ID);
+gboolean            gimp_text_layer_set_antialias       (gint32 layer_ID,
+                                                         gboolean antialias);
+gboolean            gimp_text_layer_get_kerning         (gint32 layer_ID);
+gboolean            gimp_text_layer_set_kerning         (gint32 layer_ID,
+                                                         gboolean kerning);
+gchar*              gimp_text_layer_get_language        (gint32 layer_ID);
+gboolean            gimp_text_layer_set_language        (gint32 layer_ID,
+                                                         const gchar *language);
 GimpTextDirection   gimp_text_layer_get_base_direction  (gint32 layer_ID);
-gboolean            gimp_text_layer_set_base_direction  (gint32 layer_ID,
+>GimpTextDirection   gimp_text_layer_get_base_direction  (gint32 layer_ID);
+gboolean            gimp_text_layer_set_base_direction  (gint32 layer_ID,
                                                          GimpTextDirection direction);
 GimpTextJustification gimp_text_layer_get_justification (gint32 layer_ID);
-gboolean            gimp_text_layer_set_justification   (gint32 layer_ID,
+>GimpTextJustification gimp_text_layer_get_justification (gint32 layer_ID);
+gboolean            gimp_text_layer_set_justification   (gint32 layer_ID,
                                                          GimpTextJustification justify);
-gboolean            gimp_text_layer_get_color           (gint32 layer_ID,
+gboolean            gimp_text_layer_get_color           (gint32 layer_ID,
                                                          GimpRGB *color);
-gboolean            gimp_text_layer_set_color           (gint32 layer_ID,
+gboolean            gimp_text_layer_set_color           (gint32 layer_ID,
                                                          const GimpRGB *color);
-gdouble             gimp_text_layer_get_indent          (gint32 layer_ID);
-gboolean            gimp_text_layer_set_indent          (gint32 layer_ID,
-                                                         gdouble indent);
-gdouble             gimp_text_layer_get_line_spacing    (gint32 layer_ID);
-gboolean            gimp_text_layer_set_line_spacing    (gint32 layer_ID,
-                                                         gdouble line_spacing);
-gdouble             gimp_text_layer_get_letter_spacing  (gint32 layer_ID);
-gboolean            gimp_text_layer_set_letter_spacing  (gint32 layer_ID,
-                                                         gdouble letter_spacing);
+gdouble             gimp_text_layer_get_indent          (gint32 layer_ID);
+gboolean            gimp_text_layer_set_indent          (gint32 layer_ID,
+                                                         gdouble indent);
+gdouble             gimp_text_layer_get_line_spacing    (gint32 layer_ID);
+gboolean            gimp_text_layer_set_line_spacing    (gint32 layer_ID,
+                                                         gdouble line_spacing);
+gdouble             gimp_text_layer_get_letter_spacing  (gint32 layer_ID);
+gboolean            gimp_text_layer_set_letter_spacing  (gint32 layer_ID,
+                                                         gdouble letter_spacing);
 
@@ -127,10 +261,20 @@

Details

gimp_text_layer_new ()

-
gint32              gimp_text_layer_new                 (gint32 image_ID,
-                                                         const gchar *text,
-                                                         const gchar *fontname,
-                                                         gdouble size,
+
gint32              gimp_text_layer_new                 (gint32 image_ID,
+                                                         const gchar *text,
+                                                         const gchar *fontname,
+                                                         gdouble size,
                                                          GimpUnit unit);
@@ -189,7 +333,11 @@

gimp_text_layer_get_text ()

-
gchar*              gimp_text_layer_get_text            (gint32 layer_ID);
+
gchar*              gimp_text_layer_get_text            (gint32 layer_ID);

Get the text from a text layer as string.

@@ -220,8 +368,14 @@

gimp_text_layer_set_text ()

-
gboolean            gimp_text_layer_set_text            (gint32 layer_ID,
-                                                         const gchar *text);
+
gboolean            gimp_text_layer_set_text            (gint32 layer_ID,
+                                                         const gchar *text);

Set the text of a text layer.

@@ -257,7 +411,11 @@

gimp_text_layer_get_font ()

-
gchar*              gimp_text_layer_get_font            (gint32 layer_ID);
+
gchar*              gimp_text_layer_get_font            (gint32 layer_ID);

Get the font from a text layer as string.

@@ -288,8 +446,14 @@

gimp_text_layer_set_font ()

-
gboolean            gimp_text_layer_set_font            (gint32 layer_ID,
-                                                         const gchar *font);
+
gboolean            gimp_text_layer_set_font            (gint32 layer_ID,
+                                                         const gchar *font);

Set the font of a text layer.

@@ -325,7 +489,11 @@

gimp_text_layer_get_font_size ()

-
gdouble             gimp_text_layer_get_font_size       (gint32 layer_ID,
+
gdouble             gimp_text_layer_get_font_size       (gint32 layer_ID,
                                                          GimpUnit *unit);
@@ -366,8 +534,14 @@

gimp_text_layer_set_font_size ()

-
gboolean            gimp_text_layer_set_font_size       (gint32 layer_ID,
-                                                         gdouble font_size,
+
gboolean            gimp_text_layer_set_font_size       (gint32 layer_ID,
+                                                         gdouble font_size,
                                                          GimpUnit unit);
@@ -412,8 +586,14 @@

gimp_text_layer_get_hinting ()

-
gboolean            gimp_text_layer_get_hinting         (gint32 layer_ID,
-                                                         gboolean *autohint);
+
gboolean            gimp_text_layer_get_hinting         (gint32 layer_ID,
+                                                         gboolean *autohint);

Get information about hinting in the specified text layer.

@@ -450,9 +630,17 @@

gimp_text_layer_set_hinting ()

-
gboolean            gimp_text_layer_set_hinting         (gint32 layer_ID,
-                                                         gboolean hinting,
-                                                         gboolean autohint);
+
gboolean            gimp_text_layer_set_hinting         (gint32 layer_ID,
+                                                         gboolean hinting,
+                                                         gboolean autohint);

Enable/disable the use of hinting in a text layer.

@@ -495,7 +683,11 @@

gimp_text_layer_get_antialias ()

-
gboolean            gimp_text_layer_get_antialias       (gint32 layer_ID);
+
gboolean            gimp_text_layer_get_antialias       (gint32 layer_ID);

Check if antialiasing is used in the text layer.

@@ -527,8 +719,14 @@

gimp_text_layer_set_antialias ()

-
gboolean            gimp_text_layer_set_antialias       (gint32 layer_ID,
-                                                         gboolean antialias);
+
gboolean            gimp_text_layer_set_antialias       (gint32 layer_ID,
+                                                         gboolean antialias);

Enable/disable anti-aliasing in a text layer.

@@ -565,7 +763,11 @@

gimp_text_layer_get_kerning ()

-
gboolean            gimp_text_layer_get_kerning         (gint32 layer_ID);
+
gboolean            gimp_text_layer_get_kerning         (gint32 layer_ID);

Check if kerning is used in the text layer.

@@ -597,8 +799,14 @@

gimp_text_layer_set_kerning ()

-
gboolean            gimp_text_layer_set_kerning         (gint32 layer_ID,
-                                                         gboolean kerning);
+
gboolean            gimp_text_layer_set_kerning         (gint32 layer_ID,
+                                                         gboolean kerning);

Enable/disable kerning in a text layer.

@@ -634,7 +842,11 @@

gimp_text_layer_get_language ()

-
gchar*              gimp_text_layer_get_language        (gint32 layer_ID);
+
gchar*              gimp_text_layer_get_language        (gint32 layer_ID);

Get the language used in the text layer.

@@ -666,8 +878,14 @@

gimp_text_layer_set_language ()

-
gboolean            gimp_text_layer_set_language        (gint32 layer_ID,
-                                                         const gchar *language);
+
gboolean            gimp_text_layer_set_language        (gint32 layer_ID,
+                                                         const gchar *language);

Set the language of the text layer.

@@ -706,7 +924,9 @@

gimp_text_layer_get_base_direction ()

GimpTextDirection   gimp_text_layer_get_base_direction  (gint32 layer_ID);
+>GimpTextDirection gimp_text_layer_get_base_direction (gint32 layer_ID);

Get the base direction used for rendering the text layer.

@@ -738,7 +958,11 @@

gimp_text_layer_set_base_direction ()

-
gboolean            gimp_text_layer_set_base_direction  (gint32 layer_ID,
+
gboolean            gimp_text_layer_set_base_direction  (gint32 layer_ID,
                                                          GimpTextDirection direction);
@@ -780,7 +1004,9 @@

gimp_text_layer_get_justification ()

GimpTextJustification gimp_text_layer_get_justification (gint32 layer_ID);
+>GimpTextJustification gimp_text_layer_get_justification (gint32 layer_ID);

Get the text justification information of the text layer.

@@ -812,7 +1038,11 @@

gimp_text_layer_set_justification ()

-
gboolean            gimp_text_layer_set_justification   (gint32 layer_ID,
+
gboolean            gimp_text_layer_set_justification   (gint32 layer_ID,
                                                          GimpTextJustification justify);
@@ -852,7 +1082,11 @@

gimp_text_layer_get_color ()

-
gboolean            gimp_text_layer_get_color           (gint32 layer_ID,
+
gboolean            gimp_text_layer_get_color           (gint32 layer_ID,
                                                          GimpRGB *color);
@@ -891,7 +1125,11 @@

gimp_text_layer_set_color ()

-
gboolean            gimp_text_layer_set_color           (gint32 layer_ID,
+
gboolean            gimp_text_layer_set_color           (gint32 layer_ID,
                                                          const GimpRGB *color);
@@ -930,7 +1168,11 @@

gimp_text_layer_get_indent ()

-
gdouble             gimp_text_layer_get_indent          (gint32 layer_ID);
+
gdouble             gimp_text_layer_get_indent          (gint32 layer_ID);

Get the line indentation of text layer.

@@ -962,8 +1204,14 @@

gimp_text_layer_set_indent ()

-
gboolean            gimp_text_layer_set_indent          (gint32 layer_ID,
-                                                         gdouble indent);
+
gboolean            gimp_text_layer_set_indent          (gint32 layer_ID,
+                                                         gdouble indent);

Set the indentation of the first line in a text layer.

@@ -1000,7 +1248,11 @@

gimp_text_layer_get_line_spacing ()

-
gdouble             gimp_text_layer_get_line_spacing    (gint32 layer_ID);
+
gdouble             gimp_text_layer_get_line_spacing    (gint32 layer_ID);

Get the spacing between lines of text.

@@ -1032,8 +1284,14 @@

gimp_text_layer_set_line_spacing ()

-
gboolean            gimp_text_layer_set_line_spacing    (gint32 layer_ID,
-                                                         gdouble line_spacing);
+
gboolean            gimp_text_layer_set_line_spacing    (gint32 layer_ID,
+                                                         gdouble line_spacing);

Adjust the line spacing in a text layer.

@@ -1070,7 +1328,11 @@

gimp_text_layer_get_letter_spacing ()

-
gdouble             gimp_text_layer_get_letter_spacing  (gint32 layer_ID);
+
gdouble             gimp_text_layer_get_letter_spacing  (gint32 layer_ID);

Get the letter spacing used in a text layer.

@@ -1102,8 +1364,14 @@

gimp_text_layer_set_letter_spacing ()

-
gboolean            gimp_text_layer_set_letter_spacing  (gint32 layer_ID,
-                                                         gdouble letter_spacing);
+
gboolean            gimp_text_layer_set_letter_spacing  (gint32 layer_ID,
+                                                         gdouble letter_spacing);

Adjust the letter spacing in a text layer.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptexttool.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptexttool.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptexttool.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptexttool.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,64 +48,164 @@

Synopsis

-gint32              gimp_text_fontname                  (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         const gchar *text,
-                                                         gint border,
-                                                         gboolean antialias,
-                                                         gdouble size,
+gint32              gimp_text_fontname                  (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         const gchar *text,
+                                                         gint border,
+                                                         gboolean antialias,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *fontname);
-gboolean            gimp_text_get_extents_fontname      (const gchar *text,
-                                                         gdouble size,
+                                                         const gchar *fontname);
+gboolean            gimp_text_get_extents_fontname      (const gchar *text,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *fontname,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *ascent,
-                                                         gint *descent);
-gint32              gimp_text                           (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         const gchar *text,
-                                                         gint border,
-                                                         gboolean antialias,
-                                                         gdouble size,
+                                                         const gchar *fontname,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *ascent,
+                                                         gint *descent);
+gint32              gimp_text                           (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         const gchar *text,
+                                                         gint border,
+                                                         gboolean antialias,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *foundry,
-                                                         const gchar *family,
-                                                         const gchar *weight,
-                                                         const gchar *slant,
-                                                         const gchar *set_width,
-                                                         const gchar *spacing,
-                                                         const gchar *registry,
-                                                         const gchar *encoding);
-gboolean            gimp_text_get_extents               (const gchar *text,
-                                                         gdouble size,
+                                                         const gchar *foundry,
+                                                         const gchar *family,
+                                                         const gchar *weight,
+                                                         const gchar *slant,
+                                                         const gchar *set_width,
+                                                         const gchar *spacing,
+                                                         const gchar *registry,
+                                                         const gchar *encoding);
+gboolean            gimp_text_get_extents               (const gchar *text,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *foundry,
-                                                         const gchar *family,
-                                                         const gchar *weight,
-                                                         const gchar *slant,
-                                                         const gchar *set_width,
-                                                         const gchar *spacing,
-                                                         const gchar *registry,
-                                                         const gchar *encoding,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *ascent,
-                                                         gint *descent);
+                                                         const gchar *foundry,
+                                                         const gchar *family,
+                                                         const gchar *weight,
+                                                         const gchar *slant,
+                                                         const gchar *set_width,
+                                                         const gchar *spacing,
+                                                         const gchar *registry,
+                                                         const gchar *encoding,
+                                                         gint *width,
+                                                         gint *height,
+                                                         gint *ascent,
+                                                         gint *descent);
 
@@ -119,18 +219,38 @@

Details

gimp_text_fontname ()

-
gint32              gimp_text_fontname                  (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         const gchar *text,
-                                                         gint border,
-                                                         gboolean antialias,
-                                                         gdouble size,
+
gint32              gimp_text_fontname                  (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         const gchar *text,
+                                                         gint border,
+                                                         gboolean antialias,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *fontname);
+ const gchar *fontname);

Add text at the specified location as a floating selection or a new layer. @@ -216,16 +336,32 @@


gimp_text_get_extents_fontname ()

-
gboolean            gimp_text_get_extents_fontname      (const gchar *text,
-                                                         gdouble size,
+
gboolean            gimp_text_get_extents_fontname      (const gchar *text,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *fontname,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *ascent,
-                                                         gint *descent);
+ const gchar *fontname, + gint *width, + gint *height, + gint *ascent, + gint *descent);

Get extents of the bounding box for the specified text.

@@ -294,25 +430,59 @@

gimp_text ()

-
gint32              gimp_text                           (gint32 image_ID,
-                                                         gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         const gchar *text,
-                                                         gint border,
-                                                         gboolean antialias,
-                                                         gdouble size,
+
gint32              gimp_text                           (gint32 image_ID,
+                                                         gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         const gchar *text,
+                                                         gint border,
+                                                         gboolean antialias,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *foundry,
-                                                         const gchar *family,
-                                                         const gchar *weight,
-                                                         const gchar *slant,
-                                                         const gchar *set_width,
-                                                         const gchar *spacing,
-                                                         const gchar *registry,
-                                                         const gchar *encoding);
+ const gchar *foundry, + const gchar *family, + const gchar *weight, + const gchar *slant, + const gchar *set_width, + const gchar *spacing, + const gchar *registry, + const gchar *encoding);

Warning

gimp_text is deprecated and should not be used in newly-written code.

@@ -421,23 +591,53 @@

gimp_text_get_extents ()

-
gboolean            gimp_text_get_extents               (const gchar *text,
-                                                         gdouble size,
+
gboolean            gimp_text_get_extents               (const gchar *text,
+                                                         gdouble size,
                                                          GimpSizeType size_type,
-                                                         const gchar *foundry,
-                                                         const gchar *family,
-                                                         const gchar *weight,
-                                                         const gchar *slant,
-                                                         const gchar *set_width,
-                                                         const gchar *spacing,
-                                                         const gchar *registry,
-                                                         const gchar *encoding,
-                                                         gint *width,
-                                                         gint *height,
-                                                         gint *ascent,
-                                                         gint *descent);
+ const gchar *foundry, + const gchar *family, + const gchar *weight, + const gchar *slant, + const gchar *set_width, + const gchar *spacing, + const gchar *registry, + const gchar *encoding, + gint *width, + gint *height, + gint *ascent, + gint *descent);

Warning

gimp_text_get_extents is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptile.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptile.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptile.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptile.html 2008-10-08 23:32:59.000000000 +0100 @@ -52,10 +52,16 @@ void gimp_tile_ref (GimpTile *tile); void gimp_tile_ref_zero (GimpTile *tile); void gimp_tile_unref (GimpTile *tile, - gboolean dirty); + gboolean dirty); void gimp_tile_flush (GimpTile *tile); -void gimp_tile_cache_size (gulong kilobytes); -void gimp_tile_cache_ntiles (gulong ntiles); +void gimp_tile_cache_size (gulong kilobytes); +void gimp_tile_cache_ntiles (gulong ntiles);
@@ -125,7 +131,9 @@

gimp_tile_unref ()

void                gimp_tile_unref                     (GimpTile *tile,
-                                                         gboolean dirty);
+ gboolean dirty);

@@ -168,7 +176,9 @@

gimp_tile_cache_size ()

-
void                gimp_tile_cache_size                (gulong kilobytes);
+
void                gimp_tile_cache_size                (gulong kilobytes);

Sets the size of the tile cache on the plug-in side. The tile cache is used to reduce the number of tiles exchanged between the GIMP core @@ -188,7 +198,9 @@


gimp_tile_cache_ntiles ()

-
void                gimp_tile_cache_ntiles              (gulong ntiles);
+
void                gimp_tile_cache_ntiles              (gulong ntiles);

Sets the size of the tile cache on the plug-in side. This function is similar to gimp_tile_cache_size() but allows to specify the diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptools.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptools.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimptools.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimptools.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,228 +48,624 @@

Synopsis

-gboolean            gimp_airbrush                       (gint32 drawable_ID,
-                                                         gdouble pressure,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_airbrush_default               (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_by_color_select                (gint32 drawable_ID,
+gboolean            gimp_airbrush                       (gint32 drawable_ID,
+                                                         gdouble pressure,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_airbrush_default               (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_by_color_select                (gint32 drawable_ID,
                                                          const GimpRGB *color,
-                                                         gint threshold,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius,
-                                                         gboolean sample_merged);
-gboolean            gimp_by_color_select_full           (gint32 drawable_ID,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius,
+                                                         gboolean sample_merged);
+gboolean            gimp_by_color_select_full           (gint32 drawable_ID,
                                                          const GimpRGB *color,
-                                                         gint threshold,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y,
-                                                         gboolean sample_merged,
-                                                         gboolean select_transparent,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y,
+                                                         gboolean sample_merged,
+                                                         gboolean select_transparent,
                                                          GimpSelectCriterion select_criterion);
-gboolean            gimp_clone                          (gint32 drawable_ID,
-                                                         gint32 src_drawable_ID,
+gboolean            gimp_clone                          (gint32 drawable_ID,
+                                                         gint32 src_drawable_ID,
                                                          GimpCloneType clone_type,
-                                                         gdouble src_x,
-                                                         gdouble src_y,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_clone_default                  (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_convolve                       (gint32 drawable_ID,
-                                                         gdouble pressure,
+                                                         gdouble src_x,
+                                                         gdouble src_y,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_clone_default                  (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_convolve                       (gint32 drawable_ID,
+                                                         gdouble pressure,
                                                          GimpConvolveType convolve_type,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_convolve_default               (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_dodgeburn                      (gint32 drawable_ID,
-                                                         gdouble exposure,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_convolve_default               (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_dodgeburn                      (gint32 drawable_ID,
+                                                         gdouble exposure,
                                                          GimpDodgeBurnType dodgeburn_type,
                                                          GimpTransferMode dodgeburn_mode,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_dodgeburn_default              (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_edit_bucket_fill_full          (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_dodgeburn_default              (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_edit_bucket_fill_full          (gint32 drawable_ID,
                                                          GimpBucketFillMode fill_mode,
                                                          GimpLayerModeEffects paint_mode,
-                                                         gdouble opacity,
-                                                         gdouble threshold,
-                                                         gboolean sample_merged,
-                                                         gboolean fill_transparent,
+                                                         gdouble opacity,
+                                                         gdouble threshold,
+                                                         gboolean sample_merged,
+                                                         gboolean fill_transparent,
                                                          GimpSelectCriterion select_criterion,
-                                                         gdouble x,
-                                                         gdouble y);
-gboolean            gimp_ellipse_select                 (gint32 image_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble width,
-                                                         gdouble height,
+                                                         gdouble x,
+                                                         gdouble y);
+gboolean            gimp_ellipse_select                 (gint32 image_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gdouble width,
+                                                         gdouble height,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius);
-gboolean            gimp_eraser                         (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius);
+gboolean            gimp_eraser                         (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes,
                                                          GimpBrushApplicationMode hardness,
                                                          GimpPaintApplicationMode method);
-gboolean            gimp_eraser_default                 (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gint32              gimp_flip                           (gint32 drawable_ID,
+gboolean            gimp_eraser_default                 (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gint32              gimp_flip                           (gint32 drawable_ID,
                                                          GimpOrientationType flip_type);
-gboolean            gimp_free_select                    (gint32 image_ID,
-                                                         gint num_segs,
-                                                         const gdouble *segs,
+gboolean            gimp_free_select                    (gint32 image_ID,
+                                                         gint num_segs,
+                                                         const gdouble *segs,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius);
-gboolean            gimp_fuzzy_select                   (gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gint threshold,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius);
+gboolean            gimp_fuzzy_select                   (gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius,
-                                                         gboolean sample_merged);
-gboolean            gimp_fuzzy_select_full              (gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gint threshold,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius,
+                                                         gboolean sample_merged);
+gboolean            gimp_fuzzy_select_full              (gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y,
-                                                         gboolean sample_merged,
-                                                         gboolean select_transparent,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y,
+                                                         gboolean sample_merged,
+                                                         gboolean select_transparent,
                                                          GimpSelectCriterion select_criterion);
-gboolean            gimp_heal                           (gint32 drawable_ID,
-                                                         gint32 src_drawable_ID,
-                                                         gdouble src_x,
-                                                         gdouble src_y,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_heal_default                   (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_paintbrush                     (gint32 drawable_ID,
-                                                         gdouble fade_out,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes,
+gboolean            gimp_heal                           (gint32 drawable_ID,
+                                                         gint32 src_drawable_ID,
+                                                         gdouble src_x,
+                                                         gdouble src_y,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_heal_default                   (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_paintbrush                     (gint32 drawable_ID,
+                                                         gdouble fade_out,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes,
                                                          GimpPaintApplicationMode method,
-                                                         gdouble gradient_length);
-gboolean            gimp_paintbrush_default             (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_pencil                         (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gint32              gimp_perspective                    (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2,
-                                                         gdouble x3,
-                                                         gdouble y3);
-gboolean            gimp_rect_select                    (gint32 image_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble width,
-                                                         gdouble height,
+                                                         gdouble gradient_length);
+gboolean            gimp_paintbrush_default             (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_pencil                         (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gint32              gimp_perspective                    (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2,
+                                                         gdouble x3,
+                                                         gdouble y3);
+gboolean            gimp_rect_select                    (gint32 image_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gdouble width,
+                                                         gdouble height,
                                                          GimpChannelOps operation,
-                                                         gboolean feather,
-                                                         gdouble feather_radius);
-gboolean            gimp_round_rect_select              (gint32 image_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble width,
-                                                         gdouble height,
-                                                         gdouble corner_radius_x,
-                                                         gdouble corner_radius_y,
+                                                         gboolean feather,
+                                                         gdouble feather_radius);
+gboolean            gimp_round_rect_select              (gint32 image_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gdouble width,
+                                                         gdouble height,
+                                                         gdouble corner_radius_x,
+                                                         gdouble corner_radius_y,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y);
-gint32              gimp_rotate                         (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble angle);
-gint32              gimp_scale                          (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1);
-gint32              gimp_shear                          (gint32 drawable_ID,
-                                                         gboolean interpolation,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y);
+gint32              gimp_rotate                         (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble angle);
+gint32              gimp_scale                          (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1);
+gint32              gimp_shear                          (gint32 drawable_ID,
+                                                         gboolean interpolation,
                                                          GimpOrientationType shear_type,
-                                                         gdouble magnitude);
-gboolean            gimp_smudge                         (gint32 drawable_ID,
-                                                         gdouble pressure,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gboolean            gimp_smudge_default                 (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
-gint32              gimp_transform_2d                   (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble source_x,
-                                                         gdouble source_y,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y,
-                                                         gdouble angle,
-                                                         gdouble dest_x,
-                                                         gdouble dest_y);
+                                                         gdouble magnitude);
+gboolean            gimp_smudge                         (gint32 drawable_ID,
+                                                         gdouble pressure,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gboolean            gimp_smudge_default                 (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);
+gint32              gimp_transform_2d                   (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble source_x,
+                                                         gdouble source_y,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y,
+                                                         gdouble angle,
+                                                         gdouble dest_x,
+                                                         gdouble dest_y);
 
@@ -283,10 +679,20 @@

Details

gimp_airbrush ()

-
gboolean            gimp_airbrush                       (gint32 drawable_ID,
-                                                         gdouble pressure,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_airbrush                       (gint32 drawable_ID,
+                                                         gdouble pressure,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Paint in the current brush with varying pressure. Paint application is time-dependent. @@ -333,9 +739,17 @@


gimp_airbrush_default ()

-
gboolean            gimp_airbrush_default               (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_airbrush_default               (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Paint in the current brush with varying pressure. Paint application is time-dependent. @@ -377,18 +791,32 @@


gimp_by_color_select ()

-
gboolean            gimp_by_color_select                (gint32 drawable_ID,
+
gboolean            gimp_by_color_select                (gint32 drawable_ID,
                                                          const GimpRGB *color,
-                                                         gint threshold,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius,
-                                                         gboolean sample_merged);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius, + gboolean sample_merged);

Create a selection by selecting all pixels (in the specified drawable) with the same (or similar) color to that specified. @@ -464,20 +892,38 @@


gimp_by_color_select_full ()

-
gboolean            gimp_by_color_select_full           (gint32 drawable_ID,
+
gboolean            gimp_by_color_select_full           (gint32 drawable_ID,
                                                          const GimpRGB *color,
-                                                         gint threshold,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y,
-                                                         gboolean sample_merged,
-                                                         gboolean select_transparent,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y,
+                                                         gboolean sample_merged,
+                                                         gboolean select_transparent,
                                                          GimpSelectCriterion select_criterion);

Create a selection by selecting all pixels (in the specified @@ -573,15 +1019,29 @@


gimp_clone ()

-
gboolean            gimp_clone                          (gint32 drawable_ID,
-                                                         gint32 src_drawable_ID,
+
gboolean            gimp_clone                          (gint32 drawable_ID,
+                                                         gint32 src_drawable_ID,
                                                          GimpCloneType clone_type,
-                                                         gdouble src_x,
-                                                         gdouble src_y,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+ gdouble src_x, + gdouble src_y, + gint num_strokes, + const gdouble *strokes);

Clone from the source to the dest drawable using the current brush

@@ -650,9 +1110,17 @@

gimp_clone_default ()

-
gboolean            gimp_clone_default                  (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_clone_default                  (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Clone from the source to the dest drawable using the current brush

@@ -695,11 +1163,21 @@

gimp_convolve ()

-
gboolean            gimp_convolve                       (gint32 drawable_ID,
-                                                         gdouble pressure,
+
gboolean            gimp_convolve                       (gint32 drawable_ID,
+                                                         gdouble pressure,
                                                          GimpConvolveType convolve_type,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+ gint num_strokes, + const gdouble *strokes);

Convolve (Blur, Sharpen) using the current brush.

@@ -750,9 +1228,17 @@

gimp_convolve_default ()

-
gboolean            gimp_convolve_default               (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_convolve_default               (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Convolve (Blur, Sharpen) using the current brush.

@@ -794,16 +1280,26 @@

gimp_dodgeburn ()

-
gboolean            gimp_dodgeburn                      (gint32 drawable_ID,
-                                                         gdouble exposure,
+
gboolean            gimp_dodgeburn                      (gint32 drawable_ID,
+                                                         gdouble exposure,
                                                          GimpDodgeBurnType dodgeburn_type,
                                                          GimpTransferMode dodgeburn_mode,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+ gint num_strokes, + const gdouble *strokes);

Dodgeburn image with varying exposure.

@@ -856,9 +1352,17 @@

gimp_dodgeburn_default ()

-
gboolean            gimp_dodgeburn_default              (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_dodgeburn_default              (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Dodgeburn image with varying exposure. This is the same as the gimp_dodgeburn() function except that the exposure, type and mode @@ -899,18 +1403,34 @@


gimp_edit_bucket_fill_full ()

-
gboolean            gimp_edit_bucket_fill_full          (gint32 drawable_ID,
+
gboolean            gimp_edit_bucket_fill_full          (gint32 drawable_ID,
                                                          GimpBucketFillMode fill_mode,
                                                          GimpLayerModeEffects paint_mode,
-                                                         gdouble opacity,
-                                                         gdouble threshold,
-                                                         gboolean sample_merged,
-                                                         gboolean fill_transparent,
+                                                         gdouble opacity,
+                                                         gdouble threshold,
+                                                         gboolean sample_merged,
+                                                         gboolean fill_transparent,
                                                          GimpSelectCriterion select_criterion,
-                                                         gdouble x,
-                                                         gdouble y);
+ gdouble x, + gdouble y);

Fill the area specified either by the current selection if there is one, or by a seed fill starting at the specified coordinates. @@ -998,17 +1518,35 @@


gimp_ellipse_select ()

-
gboolean            gimp_ellipse_select                 (gint32 image_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble width,
-                                                         gdouble height,
+
gboolean            gimp_ellipse_select                 (gint32 image_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gdouble width,
+                                                         gdouble height,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius);

Create an elliptical selection over the specified image.

@@ -1084,9 +1622,17 @@

gimp_eraser ()

-
gboolean            gimp_eraser                         (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes,
+
gboolean            gimp_eraser                         (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes,
                                                          GimpBrushApplicationMode hardness,
                                                          
 

gimp_eraser_default ()

-
gboolean            gimp_eraser_default                 (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_eraser_default                 (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Erase using the current brush.

@@ -1186,7 +1740,11 @@

gimp_flip ()

-
gint32              gimp_flip                           (gint32 drawable_ID,
+
gint32              gimp_flip                           (gint32 drawable_ID,
                                                          GimpOrientationType flip_type);

Warning

@@ -1222,15 +1780,29 @@

gimp_free_select ()

-
gboolean            gimp_free_select                    (gint32 image_ID,
-                                                         gint num_segs,
-                                                         const gdouble *segs,
+
gboolean            gimp_free_select                    (gint32 image_ID,
+                                                         gint num_segs,
+                                                         const gdouble *segs,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius);

Create a polygonal selection over the specified image.

@@ -1298,17 +1870,35 @@

gimp_fuzzy_select ()

-
gboolean            gimp_fuzzy_select                   (gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gint threshold,
+
gboolean            gimp_fuzzy_select                   (gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius,
-                                                         gboolean sample_merged);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius, + gboolean sample_merged);

Create a fuzzy selection starting at the specified coordinates on the specified drawable. @@ -1394,19 +1984,41 @@


gimp_fuzzy_select_full ()

-
gboolean            gimp_fuzzy_select_full              (gint32 drawable_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gint threshold,
+
gboolean            gimp_fuzzy_select_full              (gint32 drawable_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gint threshold,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y,
-                                                         gboolean sample_merged,
-                                                         gboolean select_transparent,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y,
+                                                         gboolean sample_merged,
+                                                         gboolean select_transparent,
                                                          GimpSelectCriterion select_criterion);

Create a fuzzy selection starting at the specified coordinates on @@ -1511,12 +2123,26 @@


gimp_heal ()

-
gboolean            gimp_heal                           (gint32 drawable_ID,
-                                                         gint32 src_drawable_ID,
-                                                         gdouble src_x,
-                                                         gdouble src_y,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_heal                           (gint32 drawable_ID,
+                                                         gint32 src_drawable_ID,
+                                                         gdouble src_x,
+                                                         gdouble src_y,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Heal from the source to the dest drawable using the current brush

@@ -1577,9 +2203,17 @@

gimp_heal_default ()

-
gboolean            gimp_heal_default                   (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_heal_default                   (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Heal from the source to the dest drawable using the current brush

@@ -1625,14 +2259,26 @@

gimp_paintbrush ()

-
gboolean            gimp_paintbrush                     (gint32 drawable_ID,
-                                                         gdouble fade_out,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes,
+
gboolean            gimp_paintbrush                     (gint32 drawable_ID,
+                                                         gdouble fade_out,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes,
                                                          GimpPaintApplicationMode method,
-                                                         gdouble gradient_length);
+ gdouble gradient_length);

Paint in the current brush with optional fade out parameter and pull colors from a gradient. @@ -1694,9 +2340,17 @@


gimp_paintbrush_default ()

-
gboolean            gimp_paintbrush_default             (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_paintbrush_default             (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Paint in the current brush. The fade out parameter and pull colors from a gradient parameter are set from the paintbrush options @@ -1747,9 +2401,17 @@


gimp_pencil ()

-
gboolean            gimp_pencil                         (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_pencil                         (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Paint in the current brush without sub-pixel sampling.

@@ -1792,16 +2454,38 @@

gimp_perspective ()

-
gint32              gimp_perspective                    (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2,
-                                                         gdouble x3,
-                                                         gdouble y3);
+
gint32              gimp_perspective                    (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2,
+                                                         gdouble x3,
+                                                         gdouble y3);

Warning

gimp_perspective is deprecated and should not be used in newly-written code.

@@ -1876,16 +2560,32 @@

gimp_rect_select ()

-
gboolean            gimp_rect_select                    (gint32 image_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble width,
-                                                         gdouble height,
+
gboolean            gimp_rect_select                    (gint32 image_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gdouble width,
+                                                         gdouble height,
                                                          GimpChannelOps operation,
-                                                         gboolean feather,
-                                                         gdouble feather_radius);
+ gboolean feather, + gdouble feather_radius);

Create a rectangular selection over the specified image;

@@ -1953,20 +2653,44 @@

gimp_round_rect_select ()

-
gboolean            gimp_round_rect_select              (gint32 image_ID,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble width,
-                                                         gdouble height,
-                                                         gdouble corner_radius_x,
-                                                         gdouble corner_radius_y,
+
gboolean            gimp_round_rect_select              (gint32 image_ID,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         gdouble width,
+                                                         gdouble height,
+                                                         gdouble corner_radius_x,
+                                                         gdouble corner_radius_y,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius_x, + gdouble feather_radius_y);

Create a rectangular selection with round corners over the specified image; @@ -2058,9 +2782,17 @@


gimp_rotate ()

-
gint32              gimp_rotate                         (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble angle);
+
gint32              gimp_rotate                         (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble angle);

Warning

gimp_rotate is deprecated and should not be used in newly-written code.

@@ -2100,12 +2832,26 @@

gimp_scale ()

-
gint32              gimp_scale                          (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1);
+
gint32              gimp_scale                          (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1);

Warning

gimp_scale is deprecated and should not be used in newly-written code.

@@ -2160,10 +2906,18 @@

gimp_shear ()

-
gint32              gimp_shear                          (gint32 drawable_ID,
-                                                         gboolean interpolation,
+
gint32              gimp_shear                          (gint32 drawable_ID,
+                                                         gboolean interpolation,
                                                          GimpOrientationType shear_type,
-                                                         gdouble magnitude);
+ gdouble magnitude);

Warning

gimp_shear is deprecated and should not be used in newly-written code.

@@ -2208,10 +2962,20 @@

gimp_smudge ()

-
gboolean            gimp_smudge                         (gint32 drawable_ID,
-                                                         gdouble pressure,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_smudge                         (gint32 drawable_ID,
+                                                         gdouble pressure,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Smudge image with varying pressure.

@@ -2256,9 +3020,17 @@

gimp_smudge_default ()

-
gboolean            gimp_smudge_default                 (gint32 drawable_ID,
-                                                         gint num_strokes,
-                                                         const gdouble *strokes);
+
gboolean            gimp_smudge_default                 (gint32 drawable_ID,
+                                                         gint num_strokes,
+                                                         const gdouble *strokes);

Smudge image with varying pressure.

@@ -2299,15 +3071,35 @@

gimp_transform_2d ()

-
gint32              gimp_transform_2d                   (gint32 drawable_ID,
-                                                         gboolean interpolation,
-                                                         gdouble source_x,
-                                                         gdouble source_y,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y,
-                                                         gdouble angle,
-                                                         gdouble dest_x,
-                                                         gdouble dest_y);
+
gint32              gimp_transform_2d                   (gint32 drawable_ID,
+                                                         gboolean interpolation,
+                                                         gdouble source_x,
+                                                         gdouble source_y,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y,
+                                                         gdouble angle,
+                                                         gdouble dest_x,
+                                                         gdouble dest_y);

Warning

gimp_transform_2d is deprecated and should not be used in newly-written code.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpui.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpui.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpui.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpui.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,14 +49,30 @@

Synopsis

-void                gimp_ui_init                        (const gchar *prog_name,
-                                                         gboolean preview);
-GdkWindow*          gimp_ui_get_display_window          (guint32 gdisp_ID);
-GdkWindow*          gimp_ui_get_progress_window         (void);
-void                gimp_window_set_transient           (GtkWindow *window);
+void                gimp_ui_init                        (const gchar *prog_name,
+                                                         gboolean preview);
+GdkWindow*          gimp_ui_get_display_window          (guint32 gdisp_ID);
+GdkWindow*          gimp_ui_get_progress_window         (void);
+void                gimp_window_set_transient           (GtkWindow *window);
 void                gimp_window_set_transient_for_display
-                                                        (GtkWindow *window,
-                                                         guint32 gdisp_ID);
+                                                        (GtkWindow *window,
+                                                         guint32 gdisp_ID);
 
@@ -71,10 +87,16 @@

Details

gimp_ui_init ()

-
void                gimp_ui_init                        (const gchar *prog_name,
-                                                         gboolean preview);
-

-This function initializes GTK+ with gtk_init() and initializes GDK's +

void                gimp_ui_init                        (const gchar *prog_name,
+                                                         gboolean preview);
+

+This function initializes GTK+ with gtk_init() and initializes GDK's image rendering subsystem (GdkRGB) to follow the GIMP main program's colormap allocation/installation policy.

@@ -93,7 +115,9 @@

prog_name :

The name of the plug-in which will be passed as argv[0] to - gtk_init(). It's a convention to use the name of the + gtk_init(). It's a convention to use the name of the executable and _not_ the PDB procedure name. @@ -109,11 +133,19 @@

gimp_ui_get_display_window ()

-
GdkWindow*          gimp_ui_get_display_window          (guint32 gdisp_ID);
-

-Returns the GdkWindow of a display window. The purpose is to allow +

GdkWindow*          gimp_ui_get_display_window          (guint32 gdisp_ID);
+

+Returns the GdkWindow of a display window. The purpose is to allow to make plug-in dialogs transient to the image display as explained -with gdk_window_set_transient_for(). +with gdk_window_set_transient_for().

You shouldn't have to call this function directly. Use @@ -131,8 +163,14 @@

Returns :

- A reference to a GdkWindow or NULL. You should - unref the window using g_object_unref() as soon as + A reference to a GdkWindow or NULL. You should + unref the window using g_object_unref() as soon as you don't need it any longer. @@ -145,11 +183,17 @@

gimp_ui_get_progress_window ()

-
GdkWindow*          gimp_ui_get_progress_window         (void);
-

-Returns the GdkWindow of the window this plug-in's progress bar is +

GdkWindow*          gimp_ui_get_progress_window         (void);
+

+Returns the GdkWindow of the window this plug-in's progress bar is shown in. Use it to make plug-in dialogs transient to this window -as explained with gdk_window_set_transient_for(). +as explained with gdk_window_set_transient_for().

You shouldn't have to call this function directly. Use @@ -161,8 +205,14 @@

Returns :

- A reference to a GdkWindow or NULL. You should - unref the window using g_object_unref() as soon as + A reference to a GdkWindow or NULL. You should + unref the window using g_object_unref() as soon as you don't need it any longer. @@ -174,7 +224,9 @@

gimp_window_set_transient ()

-
void                gimp_window_set_transient           (GtkWindow *window);
+
void                gimp_window_set_transient           (GtkWindow *window);

Indicates to the window manager that window is a transient dialog associated with the GIMP window that the plug-in has been @@ -186,7 +238,9 @@

window :

- the GtkWindow that should become transient + the GtkWindow that should become transient
@@ -197,12 +251,18 @@

gimp_window_set_transient_for_display ()

void                gimp_window_set_transient_for_display
-                                                        (GtkWindow *window,
-                                                         guint32 gdisp_ID);
+ (GtkWindow *window, + guint32 gdisp_ID);

Indicates to the window manager that window is a transient dialog associated with the GIMP image window that is identified by it's -display ID. See gdk_window_set_transient_for() for more information. +display ID. See gdk_window_set_transient_for() for more information.

Most of the time you will want to use the convenience function @@ -215,7 +275,9 @@

window :

- the GtkWindow that should become transient + the GtkWindow that should become transient @@ -232,10 +294,28 @@

See Also

-gtk_init(), gdk_set_use_xshm(), gdk_rgb_set_min_colors(), -gdk_rgb_set_install(), gdk_rgb_get_visual(), gdk_rgb_get_cmap(), -gtk_widget_set_default_visual(), gtk_widget_set_default_colormap(), -gtk_preview_set_gamma(). +gtk_init(), gdk_set_use_xshm(), gdk_rgb_set_min_colors(), +gdk_rgb_set_install(), gdk_rgb_get_visual(), gdk_rgb_get_cmap(), +gtk_widget_set_default_visual(), gtk_widget_set_default_colormap(), +gtk_preview_set_gamma().

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpundo.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpundo.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpundo.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpundo.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,13 +48,41 @@

Synopsis

-gboolean            gimp_image_undo_group_start         (gint32 image_ID);
-gboolean            gimp_image_undo_group_end           (gint32 image_ID);
-gboolean            gimp_image_undo_is_enabled          (gint32 image_ID);
-gboolean            gimp_image_undo_disable             (gint32 image_ID);
-gboolean            gimp_image_undo_enable              (gint32 image_ID);
-gboolean            gimp_image_undo_freeze              (gint32 image_ID);
-gboolean            gimp_image_undo_thaw                (gint32 image_ID);
+gboolean            gimp_image_undo_group_start         (gint32 image_ID);
+gboolean            gimp_image_undo_group_end           (gint32 image_ID);
+gboolean            gimp_image_undo_is_enabled          (gint32 image_ID);
+gboolean            gimp_image_undo_disable             (gint32 image_ID);
+gboolean            gimp_image_undo_enable              (gint32 image_ID);
+gboolean            gimp_image_undo_freeze              (gint32 image_ID);
+gboolean            gimp_image_undo_thaw                (gint32 image_ID);
 
@@ -68,7 +96,11 @@

Details

gimp_image_undo_group_start ()

-
gboolean            gimp_image_undo_group_start         (gint32 image_ID);
+
gboolean            gimp_image_undo_group_start         (gint32 image_ID);

Starts a group undo.

@@ -99,7 +131,11 @@

gimp_image_undo_group_end ()

-
gboolean            gimp_image_undo_group_end           (gint32 image_ID);
+
gboolean            gimp_image_undo_group_end           (gint32 image_ID);

Finish a group undo.

@@ -128,7 +164,11 @@

gimp_image_undo_is_enabled ()

-
gboolean            gimp_image_undo_is_enabled          (gint32 image_ID);
+
gboolean            gimp_image_undo_is_enabled          (gint32 image_ID);

Check if the image's undo stack is enabled.

@@ -159,7 +199,11 @@

gimp_image_undo_disable ()

-
gboolean            gimp_image_undo_disable             (gint32 image_ID);
+
gboolean            gimp_image_undo_disable             (gint32 image_ID);

Disable the image's undo stack.

@@ -191,7 +235,11 @@

gimp_image_undo_enable ()

-
gboolean            gimp_image_undo_enable              (gint32 image_ID);
+
gboolean            gimp_image_undo_enable              (gint32 image_ID);

Enable the image's undo stack.

@@ -222,7 +270,11 @@

gimp_image_undo_freeze ()

-
gboolean            gimp_image_undo_freeze              (gint32 image_ID);
+
gboolean            gimp_image_undo_freeze              (gint32 image_ID);

Freeze the image's undo stack.

@@ -260,7 +312,11 @@

gimp_image_undo_thaw ()

-
gboolean            gimp_image_undo_thaw                (gint32 image_ID);
+
gboolean            gimp_image_undo_thaw                (gint32 image_ID);

Thaw the image's undo stack.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpvectors.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpvectors.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimp-gimpvectors.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimp-gimpvectors.html 2008-10-08 23:32:59.000000000 +0100 @@ -48,153 +48,489 @@

Synopsis

-gint32              gimp_vectors_new                    (gint32 image_ID,
-                                                         const gchar *name);
-gint32              gimp_vectors_new_from_text_layer    (gint32 image_ID,
-                                                         gint32 layer_ID);
-gint32              gimp_vectors_copy                   (gint32 vectors_ID);
-gboolean            gimp_vectors_is_valid               (gint32 vectors_ID);
-gint*               gimp_vectors_get_strokes            (gint32 vectors_ID,
-                                                         gint *num_strokes);
-gint32              gimp_vectors_get_image              (gint32 vectors_ID);
-gboolean            gimp_vectors_get_linked             (gint32 vectors_ID);
-gchar*              gimp_vectors_get_name               (gint32 vectors_ID);
-gint                gimp_vectors_get_tattoo             (gint32 vectors_ID);
-gboolean            gimp_vectors_get_visible            (gint32 vectors_ID);
-gboolean            gimp_vectors_set_linked             (gint32 vectors_ID,
-                                                         gboolean linked);
-gboolean            gimp_vectors_set_name               (gint32 vectors_ID,
-                                                         const gchar *name);
-gboolean            gimp_vectors_set_tattoo             (gint32 vectors_ID,
-                                                         gint tattoo);
-gboolean            gimp_vectors_set_visible            (gint32 vectors_ID,
-                                                         gboolean visible);
-gboolean            gimp_vectors_remove_stroke          (gint32 vectors_ID,
-                                                         gint stroke_id);
-gboolean            gimp_vectors_to_selection           (gint32 vectors_ID,
+gint32              gimp_vectors_new                    (gint32 image_ID,
+                                                         const gchar *name);
+gint32              gimp_vectors_new_from_text_layer    (gint32 image_ID,
+                                                         gint32 layer_ID);
+gint32              gimp_vectors_copy                   (gint32 vectors_ID);
+gboolean            gimp_vectors_is_valid               (gint32 vectors_ID);
+gint*               gimp_vectors_get_strokes            (gint32 vectors_ID,
+                                                         gint *num_strokes);
+gint32              gimp_vectors_get_image              (gint32 vectors_ID);
+gboolean            gimp_vectors_get_linked             (gint32 vectors_ID);
+gchar*              gimp_vectors_get_name               (gint32 vectors_ID);
+gint                gimp_vectors_get_tattoo             (gint32 vectors_ID);
+gboolean            gimp_vectors_get_visible            (gint32 vectors_ID);
+gboolean            gimp_vectors_set_linked             (gint32 vectors_ID,
+                                                         gboolean linked);
+gboolean            gimp_vectors_set_name               (gint32 vectors_ID,
+                                                         const gchar *name);
+gboolean            gimp_vectors_set_tattoo             (gint32 vectors_ID,
+                                                         gint tattoo);
+gboolean            gimp_vectors_set_visible            (gint32 vectors_ID,
+                                                         gboolean visible);
+gboolean            gimp_vectors_remove_stroke          (gint32 vectors_ID,
+                                                         gint stroke_id);
+gboolean            gimp_vectors_to_selection           (gint32 vectors_ID,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y);
-gboolean            gimp_vectors_export_to_file         (gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gint32 vectors_ID);
-gchar*              gimp_vectors_export_to_string       (gint32 image_ID,
-                                                         gint32 vectors_ID);
-gboolean            gimp_vectors_import_from_file       (gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gboolean merge,
-                                                         gboolean scale,
-                                                         gint *num_vectors,
-                                                         gint32 **vectors_ids);
-gboolean            gimp_vectors_import_from_string     (gint32 image_ID,
-                                                         const gchar *string,
-                                                         gint length,
-                                                         gboolean merge,
-                                                         gboolean scale,
-                                                         gint *num_vectors,
-                                                         gint32 **vectors_ids);
-gboolean            gimp_vectors_parasite_attach        (gint32 vectors_ID,
+                                                         gboolean antialias,
+                                                         gboolean feather,
+                                                         gdouble feather_radius_x,
+                                                         gdouble feather_radius_y);
+gboolean            gimp_vectors_export_to_file         (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gint32 vectors_ID);
+gchar*              gimp_vectors_export_to_string       (gint32 image_ID,
+                                                         gint32 vectors_ID);
+gboolean            gimp_vectors_import_from_file       (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gboolean merge,
+                                                         gboolean scale,
+                                                         gint *num_vectors,
+                                                         gint32 **vectors_ids);
+gboolean            gimp_vectors_import_from_string     (gint32 image_ID,
+                                                         const gchar *string,
+                                                         gint length,
+                                                         gboolean merge,
+                                                         gboolean scale,
+                                                         gint *num_vectors,
+                                                         gint32 **vectors_ids);
+gboolean            gimp_vectors_parasite_attach        (gint32 vectors_ID,
                                                          const GimpParasite *parasite);
-gboolean            gimp_vectors_parasite_detach        (gint32 vectors_ID,
-                                                         const gchar *name);
+gboolean            gimp_vectors_parasite_detach        (gint32 vectors_ID,
+                                                         const gchar *name);
 GimpParasite*       gimp_vectors_parasite_find          (gint32 vectors_ID,
-                                                         const gchar *name);
-gboolean            gimp_vectors_parasite_list          (gint32 vectors_ID,
-                                                         gint *num_parasites,
-                                                         gchar ***parasites);
-gint                gimp_vectors_stroke_new_from_points (gint32 vectors_ID,
+>GimpParasite*       gimp_vectors_parasite_find          (gint32 vectors_ID,
+                                                         const gchar *name);
+gboolean            gimp_vectors_parasite_list          (gint32 vectors_ID,
+                                                         gint *num_parasites,
+                                                         gchar ***parasites);
+gint                gimp_vectors_stroke_new_from_points (gint32 vectors_ID,
                                                          GimpVectorsStrokeType type,
-                                                         gint num_points,
-                                                         const gdouble *controlpoints,
-                                                         gboolean closed);
-gboolean            gimp_vectors_stroke_close           (gint32 vectors_ID,
-                                                         gint stroke_id);
-gdouble             gimp_vectors_stroke_get_length      (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble precision);
+                                                         gint num_points,
+                                                         const gdouble *controlpoints,
+                                                         gboolean closed);
+gboolean            gimp_vectors_stroke_close           (gint32 vectors_ID,
+                                                         gint stroke_id);
+gdouble             gimp_vectors_stroke_get_length      (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble precision);
 GimpVectorsStrokeType gimp_vectors_stroke_get_points    (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gint *num_points,
-                                                         gdouble **controlpoints,
-                                                         gboolean *closed);
-gboolean            gimp_vectors_stroke_get_point_at_dist
-                                                        (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble dist,
-                                                         gdouble precision,
-                                                         gdouble *x_point,
-                                                         gdouble *y_point,
-                                                         gdouble *slope,
-                                                         gboolean *valid);
-gdouble*            gimp_vectors_stroke_interpolate     (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble precision,
-                                                         gint *num_coords,
-                                                         gboolean *closed);
-gboolean            gimp_vectors_stroke_scale           (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y);
-gboolean            gimp_vectors_stroke_translate       (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gint off_x,
-                                                         gint off_y);
-gboolean            gimp_vectors_stroke_flip            (gint32 vectors_ID,
-                                                         gint stroke_id,
+>GimpVectorsStrokeType gimp_vectors_stroke_get_points    (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gint *num_points,
+                                                         gdouble **controlpoints,
+                                                         gboolean *closed);
+gboolean            gimp_vectors_stroke_get_point_at_dist
+                                                        (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble dist,
+                                                         gdouble precision,
+                                                         gdouble *x_point,
+                                                         gdouble *y_point,
+                                                         gdouble *slope,
+                                                         gboolean *valid);
+gdouble*            gimp_vectors_stroke_interpolate     (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble precision,
+                                                         gint *num_coords,
+                                                         gboolean *closed);
+gboolean            gimp_vectors_stroke_scale           (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y);
+gboolean            gimp_vectors_stroke_translate       (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gint off_x,
+                                                         gint off_y);
+gboolean            gimp_vectors_stroke_flip            (gint32 vectors_ID,
+                                                         gint stroke_id,
                                                          GimpOrientationType flip_type,
-                                                         gdouble axis);
-gboolean            gimp_vectors_stroke_flip_free       (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2);
-gboolean            gimp_vectors_stroke_rotate          (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble center_x,
-                                                         gdouble center_y,
-                                                         gdouble angle);
-gboolean            gimp_vectors_bezier_stroke_conicto  (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1);
-gboolean            gimp_vectors_bezier_stroke_cubicto  (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2);
-gboolean            gimp_vectors_bezier_stroke_lineto   (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x0,
-                                                         gdouble y0);
-gint                gimp_vectors_bezier_stroke_new_ellipse
-                                                        (gint32 vectors_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble radius_x,
-                                                         gdouble radius_y,
-                                                         gdouble angle);
-gint                gimp_vectors_bezier_stroke_new_moveto
-                                                        (gint32 vectors_ID,
-                                                         gdouble x0,
-                                                         gdouble y0);
+                                                         gdouble axis);
+gboolean            gimp_vectors_stroke_flip_free       (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2);
+gboolean            gimp_vectors_stroke_rotate          (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble center_x,
+                                                         gdouble center_y,
+                                                         gdouble angle);
+gboolean            gimp_vectors_bezier_stroke_conicto  (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1);
+gboolean            gimp_vectors_bezier_stroke_cubicto  (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2);
+gboolean            gimp_vectors_bezier_stroke_lineto   (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x0,
+                                                         gdouble y0);
+gint                gimp_vectors_bezier_stroke_new_ellipse
+                                                        (gint32 vectors_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble radius_x,
+                                                         gdouble radius_y,
+                                                         gdouble angle);
+gint                gimp_vectors_bezier_stroke_new_moveto
+                                                        (gint32 vectors_ID,
+                                                         gdouble x0,
+                                                         gdouble y0);
 
@@ -207,8 +543,14 @@

Details

gimp_vectors_new ()

-
gint32              gimp_vectors_new                    (gint32 image_ID,
-                                                         const gchar *name);
+
gint32              gimp_vectors_new                    (gint32 image_ID,
+                                                         const gchar *name);

Creates a new empty vectors object.

@@ -245,8 +587,14 @@

gimp_vectors_new_from_text_layer ()

-
gint32              gimp_vectors_new_from_text_layer    (gint32 image_ID,
-                                                         gint32 layer_ID);
+
gint32              gimp_vectors_new_from_text_layer    (gint32 image_ID,
+                                                         gint32 layer_ID);

Creates a new vectors object from a text layer.

@@ -283,7 +631,11 @@

gimp_vectors_copy ()

-
gint32              gimp_vectors_copy                   (gint32 vectors_ID);
+
gint32              gimp_vectors_copy                   (gint32 vectors_ID);

Copy a vectors object.

@@ -315,7 +667,11 @@

gimp_vectors_is_valid ()

-
gboolean            gimp_vectors_is_valid               (gint32 vectors_ID);
+
gboolean            gimp_vectors_is_valid               (gint32 vectors_ID);

Returns TRUE if the vectors object is valid.

@@ -347,8 +703,14 @@

gimp_vectors_get_strokes ()

-
gint*               gimp_vectors_get_strokes            (gint32 vectors_ID,
-                                                         gint *num_strokes);
+
gint*               gimp_vectors_get_strokes            (gint32 vectors_ID,
+                                                         gint *num_strokes);

List the strokes associated with the passed path.

@@ -385,7 +747,11 @@

gimp_vectors_get_image ()

-
gint32              gimp_vectors_get_image              (gint32 vectors_ID);
+
gint32              gimp_vectors_get_image              (gint32 vectors_ID);

Returns the vectors objects image.

@@ -416,7 +782,11 @@

gimp_vectors_get_linked ()

-
gboolean            gimp_vectors_get_linked             (gint32 vectors_ID);
+
gboolean            gimp_vectors_get_linked             (gint32 vectors_ID);

Gets the linked state of the vectors object.

@@ -447,7 +817,11 @@

gimp_vectors_get_name ()

-
gchar*              gimp_vectors_get_name               (gint32 vectors_ID);
+
gchar*              gimp_vectors_get_name               (gint32 vectors_ID);

Gets the name of the vectors object.

@@ -478,7 +852,11 @@

gimp_vectors_get_tattoo ()

-
gint                gimp_vectors_get_tattoo             (gint32 vectors_ID);
+
gint                gimp_vectors_get_tattoo             (gint32 vectors_ID);

Get the tattoo of the vectors object.

@@ -509,7 +887,11 @@

gimp_vectors_get_visible ()

-
gboolean            gimp_vectors_get_visible            (gint32 vectors_ID);
+
gboolean            gimp_vectors_get_visible            (gint32 vectors_ID);

Gets the visibility of the vectors object.

@@ -540,8 +922,14 @@

gimp_vectors_set_linked ()

-
gboolean            gimp_vectors_set_linked             (gint32 vectors_ID,
-                                                         gboolean linked);
+
gboolean            gimp_vectors_set_linked             (gint32 vectors_ID,
+                                                         gboolean linked);

Sets the linked state of the vectors object.

@@ -577,8 +965,14 @@

gimp_vectors_set_name ()

-
gboolean            gimp_vectors_set_name               (gint32 vectors_ID,
-                                                         const gchar *name);
+
gboolean            gimp_vectors_set_name               (gint32 vectors_ID,
+                                                         const gchar *name);

Sets the name of the vectors object.

@@ -614,8 +1008,14 @@

gimp_vectors_set_tattoo ()

-
gboolean            gimp_vectors_set_tattoo             (gint32 vectors_ID,
-                                                         gint tattoo);
+
gboolean            gimp_vectors_set_tattoo             (gint32 vectors_ID,
+                                                         gint tattoo);

Set the tattoo of the vectors object.

@@ -651,8 +1051,14 @@

gimp_vectors_set_visible ()

-
gboolean            gimp_vectors_set_visible            (gint32 vectors_ID,
-                                                         gboolean visible);
+
gboolean            gimp_vectors_set_visible            (gint32 vectors_ID,
+                                                         gboolean visible);

Sets the visibility of the vectors object.

@@ -688,8 +1094,14 @@

gimp_vectors_remove_stroke ()

-
gboolean            gimp_vectors_remove_stroke          (gint32 vectors_ID,
-                                                         gint stroke_id);
+
gboolean            gimp_vectors_remove_stroke          (gint32 vectors_ID,
+                                                         gint stroke_id);

remove the stroke from a vectors object.

@@ -725,14 +1137,26 @@

gimp_vectors_to_selection ()

-
gboolean            gimp_vectors_to_selection           (gint32 vectors_ID,
+
gboolean            gimp_vectors_to_selection           (gint32 vectors_ID,
                                                          GimpChannelOps operation,
-                                                         gboolean antialias,
-                                                         gboolean feather,
-                                                         gdouble feather_radius_x,
-                                                         gdouble feather_radius_y);
+ gboolean antialias, + gboolean feather, + gdouble feather_radius_x, + gdouble feather_radius_y);

Transforms the specified vectors object into a selection

@@ -789,9 +1213,17 @@

gimp_vectors_export_to_file ()

-
gboolean            gimp_vectors_export_to_file         (gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gint32 vectors_ID);
+
gboolean            gimp_vectors_export_to_file         (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gint32 vectors_ID);

save a path as an SVG file.

@@ -835,8 +1267,14 @@

gimp_vectors_export_to_string ()

-
gchar*              gimp_vectors_export_to_string       (gint32 image_ID,
-                                                         gint32 vectors_ID);
+
gchar*              gimp_vectors_export_to_string       (gint32 image_ID,
+                                                         gint32 vectors_ID);

Save a path as an SVG string.

@@ -875,12 +1313,26 @@

gimp_vectors_import_from_file ()

-
gboolean            gimp_vectors_import_from_file       (gint32 image_ID,
-                                                         const gchar *filename,
-                                                         gboolean merge,
-                                                         gboolean scale,
-                                                         gint *num_vectors,
-                                                         gint32 **vectors_ids);
+
gboolean            gimp_vectors_import_from_file       (gint32 image_ID,
+                                                         const gchar *filename,
+                                                         gboolean merge,
+                                                         gboolean scale,
+                                                         gint *num_vectors,
+                                                         gint32 **vectors_ids);

Import paths from an SVG file.

@@ -937,13 +1389,29 @@

gimp_vectors_import_from_string ()

-
gboolean            gimp_vectors_import_from_string     (gint32 image_ID,
-                                                         const gchar *string,
-                                                         gint length,
-                                                         gboolean merge,
-                                                         gboolean scale,
-                                                         gint *num_vectors,
-                                                         gint32 **vectors_ids);
+
gboolean            gimp_vectors_import_from_string     (gint32 image_ID,
+                                                         const gchar *string,
+                                                         gint length,
+                                                         gboolean merge,
+                                                         gboolean scale,
+                                                         gint *num_vectors,
+                                                         gint32 **vectors_ids);

Import paths from an SVG string.

@@ -1006,7 +1474,11 @@

gimp_vectors_parasite_attach ()

-
gboolean            gimp_vectors_parasite_attach        (gint32 vectors_ID,
+
gboolean            gimp_vectors_parasite_attach        (gint32 vectors_ID,
                                                          const GimpParasite *parasite);
@@ -1046,8 +1518,14 @@

gimp_vectors_parasite_detach ()

-
gboolean            gimp_vectors_parasite_detach        (gint32 vectors_ID,
-                                                         const gchar *name);
+
gboolean            gimp_vectors_parasite_detach        (gint32 vectors_ID,
+                                                         const gchar *name);

Removes a parasite from a vectors object

@@ -1086,8 +1564,12 @@

gimp_vectors_parasite_find ()

GimpParasite*       gimp_vectors_parasite_find          (gint32 vectors_ID,
-                                                         const gchar *name);
+>GimpParasite* gimp_vectors_parasite_find (gint32 vectors_ID, + const gchar *name);

Look up a parasite in a vectors object

@@ -1124,9 +1606,17 @@

gimp_vectors_parasite_list ()

-
gboolean            gimp_vectors_parasite_list          (gint32 vectors_ID,
-                                                         gint *num_parasites,
-                                                         gchar ***parasites);
+
gboolean            gimp_vectors_parasite_list          (gint32 vectors_ID,
+                                                         gint *num_parasites,
+                                                         gchar ***parasites);

List all parasites.

@@ -1167,13 +1657,23 @@

gimp_vectors_stroke_new_from_points ()

-
gint                gimp_vectors_stroke_new_from_points (gint32 vectors_ID,
+
gint                gimp_vectors_stroke_new_from_points (gint32 vectors_ID,
                                                          GimpVectorsStrokeType type,
-                                                         gint num_points,
-                                                         const gdouble *controlpoints,
-                                                         gboolean closed);
+ gint num_points, + const gdouble *controlpoints, + gboolean closed);

Adds a stroke of a given type to the vectors object.

@@ -1231,8 +1731,14 @@

gimp_vectors_stroke_close ()

-
gboolean            gimp_vectors_stroke_close           (gint32 vectors_ID,
-                                                         gint stroke_id);
+
gboolean            gimp_vectors_stroke_close           (gint32 vectors_ID,
+                                                         gint stroke_id);

closes the specified stroke.

@@ -1268,9 +1774,17 @@

gimp_vectors_stroke_get_length ()

-
gdouble             gimp_vectors_stroke_get_length      (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble precision);
+
gdouble             gimp_vectors_stroke_get_length      (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble precision);

Measure the length of the given stroke.

@@ -1313,11 +1827,21 @@

gimp_vectors_stroke_get_points ()

GimpVectorsStrokeType gimp_vectors_stroke_get_points    (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gint *num_points,
-                                                         gdouble **controlpoints,
-                                                         gboolean *closed);
+>GimpVectorsStrokeType gimp_vectors_stroke_get_points (gint32 vectors_ID, + gint stroke_id, + gint *num_points, + gdouble **controlpoints, + gboolean *closed);

returns the control points of a stroke.

@@ -1371,15 +1895,33 @@

gimp_vectors_stroke_get_point_at_dist ()

-
gboolean            gimp_vectors_stroke_get_point_at_dist
-                                                        (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble dist,
-                                                         gdouble precision,
-                                                         gdouble *x_point,
-                                                         gdouble *y_point,
-                                                         gdouble *slope,
-                                                         gboolean *valid);
+
gboolean            gimp_vectors_stroke_get_point_at_dist
+                                                        (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble dist,
+                                                         gdouble precision,
+                                                         gdouble *x_point,
+                                                         gdouble *y_point,
+                                                         gdouble *slope,
+                                                         gboolean *valid);

Get point at a specified distance along the stroke.

@@ -1450,11 +1992,23 @@

gimp_vectors_stroke_interpolate ()

-
gdouble*            gimp_vectors_stroke_interpolate     (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble precision,
-                                                         gint *num_coords,
-                                                         gboolean *closed);
+
gdouble*            gimp_vectors_stroke_interpolate     (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble precision,
+                                                         gint *num_coords,
+                                                         gboolean *closed);

returns polygonal approximation of the stroke.

@@ -1505,10 +2059,20 @@

gimp_vectors_stroke_scale ()

-
gboolean            gimp_vectors_stroke_scale           (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble scale_x,
-                                                         gdouble scale_y);
+
gboolean            gimp_vectors_stroke_scale           (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble scale_x,
+                                                         gdouble scale_y);

scales the given stroke.

@@ -1554,10 +2118,20 @@

gimp_vectors_stroke_translate ()

-
gboolean            gimp_vectors_stroke_translate       (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gint off_x,
-                                                         gint off_y);
+
gboolean            gimp_vectors_stroke_translate       (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gint off_x,
+                                                         gint off_y);

translate the given stroke.

@@ -1603,10 +2177,18 @@

gimp_vectors_stroke_flip ()

-
gboolean            gimp_vectors_stroke_flip            (gint32 vectors_ID,
-                                                         gint stroke_id,
+
gboolean            gimp_vectors_stroke_flip            (gint32 vectors_ID,
+                                                         gint stroke_id,
                                                          GimpOrientationType flip_type,
-                                                         gdouble axis);
+ gdouble axis);

flips the given stroke.

@@ -1652,12 +2234,26 @@

gimp_vectors_stroke_flip_free ()

-
gboolean            gimp_vectors_stroke_flip_free       (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2);
+
gboolean            gimp_vectors_stroke_flip_free       (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2);

flips the given stroke about an arbitrary axis.

@@ -1715,11 +2311,23 @@

gimp_vectors_stroke_rotate ()

-
gboolean            gimp_vectors_stroke_rotate          (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble center_x,
-                                                         gdouble center_y,
-                                                         gdouble angle);
+
gboolean            gimp_vectors_stroke_rotate          (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble center_x,
+                                                         gdouble center_y,
+                                                         gdouble angle);

rotates the given stroke.

@@ -1770,12 +2378,26 @@

gimp_vectors_bezier_stroke_conicto ()

-
gboolean            gimp_vectors_bezier_stroke_conicto  (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1);
+
gboolean            gimp_vectors_bezier_stroke_conicto  (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1);

Extends a bezier stroke with a conic bezier spline.

@@ -1833,14 +2455,32 @@

gimp_vectors_bezier_stroke_cubicto ()

-
gboolean            gimp_vectors_bezier_stroke_cubicto  (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble x1,
-                                                         gdouble y1,
-                                                         gdouble x2,
-                                                         gdouble y2);
+
gboolean            gimp_vectors_bezier_stroke_cubicto  (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble x1,
+                                                         gdouble y1,
+                                                         gdouble x2,
+                                                         gdouble y2);

Extends a bezier stroke with a cubic bezier spline.

@@ -1906,10 +2546,20 @@

gimp_vectors_bezier_stroke_lineto ()

-
gboolean            gimp_vectors_bezier_stroke_lineto   (gint32 vectors_ID,
-                                                         gint stroke_id,
-                                                         gdouble x0,
-                                                         gdouble y0);
+
gboolean            gimp_vectors_bezier_stroke_lineto   (gint32 vectors_ID,
+                                                         gint stroke_id,
+                                                         gdouble x0,
+                                                         gdouble y0);

Extends a bezier stroke with a lineto.

@@ -1955,13 +2605,27 @@

gimp_vectors_bezier_stroke_new_ellipse ()

-
gint                gimp_vectors_bezier_stroke_new_ellipse
-                                                        (gint32 vectors_ID,
-                                                         gdouble x0,
-                                                         gdouble y0,
-                                                         gdouble radius_x,
-                                                         gdouble radius_y,
-                                                         gdouble angle);
+
gint                gimp_vectors_bezier_stroke_new_ellipse
+                                                        (gint32 vectors_ID,
+                                                         gdouble x0,
+                                                         gdouble y0,
+                                                         gdouble radius_x,
+                                                         gdouble radius_y,
+                                                         gdouble angle);

Adds a bezier stroke describing an ellipse the vectors object.

@@ -2017,10 +2681,18 @@

gimp_vectors_bezier_stroke_new_moveto ()

-
gint                gimp_vectors_bezier_stroke_new_moveto
-                                                        (gint32 vectors_ID,
-                                                         gdouble x0,
-                                                         gdouble y0);
+
gint                gimp_vectors_bezier_stroke_new_moveto
+                                                        (gint32 vectors_ID,
+                                                         gdouble x0,
+                                                         gdouble y0);

Adds a bezier stroke with a single moveto to the vectors object.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimp/html/libgimpui-hierarchy.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimp/html/libgimpui-hierarchy.html --- gimp-2.6.0/devel-docs/libgimp/html/libgimpui-hierarchy.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimp/html/libgimpui-hierarchy.html 2008-10-08 23:32:59.000000000 +0100 @@ -35,13 +35,27 @@

Object Hierarchy

-    GObject
-        GInitiallyUnowned
-            GtkObject
-                GtkWidget
-                    GtkContainer
-                        GtkBox
-                            GtkVBox
+    GObject
+        GInitiallyUnowned
+            GtkObject
+                GtkWidget
+                    GtkContainer
+                        GtkBox
+                            GtkVBox
                                 GimpPreview
@@ -51,15 +65,21 @@
 >GimpScrolledPreview
                                         GimpDrawablePreview
                                         GimpZoomPreview
-                            GtkHBox
+                            GtkHBox
                                 GimpSelectButton
                                     GimpBrushSelectButton
                                     GimpFontSelectButton
                                     GimpGradientSelectButton
                                     GimpPaletteSelectButton
                                     GimpPatternSelectButton
-                        GtkBin
-                            GtkComboBox
+                        GtkBin
+                            GtkComboBox
                                 GimpIntComboBox
@@ -68,14 +88,22 @@
                                     GimpImageComboBox
                                     GimpLayerComboBox
                                     GimpVectorsComboBox
-                            GtkWindow
-                                GtkDialog
+                            GtkWindow
+                                GtkDialog
                                     GimpDialog
                                         GimpProcBrowserDialog
-                    GtkProgress
-                        GtkProgressBar
+                    GtkProgress
+                        GtkProgressBar
                             GimpProgressBar
 
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/index.html --- gimp-2.6.0/devel-docs/libgimpbase/html/index.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/index.html 2008-10-08 23:32:57.000000000 +0100 @@ -21,7 +21,7 @@

- for GIMP 2.6.0 + for GIMP 2.6.1

@@ -44,7 +44,9 @@ gimplimits — Boundaries of some GIMP data types and some global constants.
-gimpparam — Definitions of useful GParamFlags. +gimpparam — Definitions of useful GParamFlags.
gimpchecks — Constants and functions related to rendering checkerboards. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,14 +44,30 @@
                     GimpEnumDesc;
                     GimpFlagsDesc;
-void                gimp_type_set_translation_domain    (GType type,
-                                                         const gchar *domain);
-const gchar*        gimp_type_get_translation_domain    (GType type);
-void                gimp_enum_set_value_descriptions    (GType enum_type,
+void                gimp_type_set_translation_domain    (GType type,
+                                                         const gchar *domain);
+const gchar*        gimp_type_get_translation_domain    (GType type);
+void                gimp_enum_set_value_descriptions    (GType enum_type,
                                                          const GimpEnumDesc *descriptions);
-const GimpEnumDesc* gimp_enum_get_value_descriptions    (GType enum_type);
-const GimpFlagsDesc* gimp_flags_get_value_descriptions  (GType flags_type);
-void                gimp_flags_set_value_descriptions   (GType flags_type,
+const GimpEnumDesc* gimp_enum_get_value_descriptions    (GType enum_type);
+const GimpFlagsDesc* gimp_flags_get_value_descriptions  (GType flags_type);
+void                gimp_flags_set_value_descriptions   (GType flags_type,
                                                          const GimpFlagsDesc *descriptions);
 
@@ -91,11 +107,17 @@

gimp_type_set_translation_domain ()

-
void                gimp_type_set_translation_domain    (GType type,
-                                                         const gchar *domain);
+
void                gimp_type_set_translation_domain    (GType type,
+                                                         const gchar *domain);

This function attaches a constant string as a gettext translation -domain identifier to a GType. The only purpose of this function is +domain identifier to a GType. The only purpose of this function is to use it when registering a GTypeEnum with translatable value names.

@@ -106,12 +128,16 @@

type :

- a GType + a GType

domain :

- a constant string that identifies a translation domain or NULL + a constant string that identifies a translation domain or NULL @@ -122,7 +148,11 @@

gimp_type_get_translation_domain ()

-
const gchar*        gimp_type_get_translation_domain    (GType type);
+
const gchar*        gimp_type_get_translation_domain    (GType type);

Retrieves the gettext translation domain identifier that has been previously set using gimp_type_set_translation_domain(). You should @@ -136,13 +166,17 @@

type :

- a GType + a GType

Returns :

the translation domain associated with type - or NULL if no domain was set + or NULL if no domain was set @@ -154,7 +188,9 @@

gimp_enum_set_value_descriptions ()

-
void                gimp_enum_set_value_descriptions    (GType enum_type,
+
void                gimp_enum_set_value_descriptions    (GType enum_type,
                                                          const GimpEnumDesc *descriptions);

Sets the array of human readable and translatable descriptions @@ -167,12 +203,16 @@

enum_type :

- a GType + a GType

descriptions :

- a NULL terminated constant static array of GimpEnumDesc + a NULL terminated constant static array of GimpEnumDesc @@ -183,7 +223,9 @@

gimp_enum_get_value_descriptions ()

-
const GimpEnumDesc* gimp_enum_get_value_descriptions    (GType enum_type);
+
const GimpEnumDesc* gimp_enum_get_value_descriptions    (GType enum_type);

Retreives the array of human readable and translatable descriptions and help texts for enum values.

@@ -195,12 +237,16 @@

enum_type :

- a GType + a GType

Returns :

- a NULL terminated constant array of GimpEnumDesc + a NULL terminated constant array of GimpEnumDesc @@ -212,7 +258,9 @@

gimp_flags_get_value_descriptions ()

-
const GimpFlagsDesc* gimp_flags_get_value_descriptions  (GType flags_type);
+
const GimpFlagsDesc* gimp_flags_get_value_descriptions  (GType flags_type);

Retreives the array of human readable and translatable descriptions and help texts for flags values.

@@ -224,12 +272,16 @@

flags_type :

- a GType + a GType

Returns :

- a NULL terminated constant array of GimpFlagsDesc + a NULL terminated constant array of GimpFlagsDesc @@ -241,7 +293,9 @@

gimp_flags_set_value_descriptions ()

-
void                gimp_flags_set_value_descriptions   (GType flags_type,
+
void                gimp_flags_set_value_descriptions   (GType flags_type,
                                                          const GimpFlagsDesc *descriptions);

Sets the array of human readable and translatable descriptions @@ -254,12 +308,16 @@

flags_type :

- a GType + a GType

descriptions :

- a NULL terminated constant static array of GimpFlagsDesc + a NULL terminated constant static array of GimpFlagsDesc diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2008-10-08 23:32:57.000000000 +0100 @@ -47,8 +47,12 @@ #define GIMP_CHECK_DARK #define GIMP_CHECK_LIGHT void gimp_checks_get_shades (GimpCheckType type, - guchar *light, - guchar *dark); + guchar *light, + guchar *dark);
@@ -100,8 +104,12 @@

gimp_checks_get_shades ()

void                gimp_checks_get_shades              (GimpCheckType type,
-                                                         guchar *light,
-                                                         guchar *dark);
+ guchar *light, + guchar *dark);

Retrieves the actual shades of gray to use when drawing a checkerboard for a certain GimpCheckType.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpcpuaccel.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpcpuaccel.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpcpuaccel.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpcpuaccel.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,7 +44,9 @@
 enum                GimpCpuAccelFlags;
 GimpCpuAccelFlags   gimp_cpu_accel_get_support          (void);
-void                gimp_cpu_accel_set_use              (gboolean use);
+void                gimp_cpu_accel_set_use              (gboolean use);
 
@@ -101,7 +103,9 @@

gimp_cpu_accel_set_use ()

-
void                gimp_cpu_accel_set_use              (gboolean use);
+
void                gimp_cpu_accel_set_use              (gboolean use);

This function is for internal use only.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,13 +44,27 @@

                     GimpDatafileData;
 void                (*GimpDatafileLoaderFunc)           (const GimpDatafileData *file_data,
-                                                         gpointer user_data);
-gboolean            gimp_datafiles_check_extension      (const gchar *filename,
-                                                         const gchar *extension);
-void                gimp_datafiles_read_directories     (const gchar *path_str,
-                                                         GFileTest flags,
+                                                         gpointer user_data);
+gboolean            gimp_datafiles_check_extension      (const gchar *filename,
+                                                         const gchar *extension);
+void                gimp_datafiles_read_directories     (const gchar *path_str,
+                                                         GFileTest flags,
                                                          GimpDatafileLoaderFunc loader_func,
-                                                         gpointer user_data);
+                                                         gpointer user_data);
 
@@ -81,7 +95,9 @@

GimpDatafileLoaderFunc ()

void                (*GimpDatafileLoaderFunc)           (const GimpDatafileData *file_data,
-                                                         gpointer user_data);
+ gpointer user_data);

@@ -106,8 +122,14 @@

gimp_datafiles_check_extension ()

-
gboolean            gimp_datafiles_check_extension      (const gchar *filename,
-                                                         const gchar *extension);
+
gboolean            gimp_datafiles_check_extension      (const gchar *filename,
+                                                         const gchar *extension);

@@ -137,10 +159,16 @@

gimp_datafiles_read_directories ()

-
void                gimp_datafiles_read_directories     (const gchar *path_str,
-                                                         GFileTest flags,
+
void                gimp_datafiles_read_directories     (const gchar *path_str,
+                                                         GFileTest flags,
                                                          GimpDatafileLoaderFunc loader_func,
-                                                         gpointer user_data);
+ gpointer user_data);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,22 +42,62 @@

Synopsis

-void                gimp_env_init                       (gboolean plug_in);
-const gchar*        gimp_directory                      (void);
-const gchar*        gimp_data_directory                 (void);
-const gchar*        gimp_locale_directory               (void);
-const gchar*        gimp_plug_in_directory              (void);
-const gchar*        gimp_sysconf_directory              (void);
-const gchar*        gimp_user_directory                 (GimpUserDirectory type);
-gchar*              gimp_personal_rc_file               (const gchar *basename);
-const gchar*        gimp_gtkrc                          (void);
-GList*              gimp_path_parse                     (const gchar *path,
-                                                         gint max_paths,
-                                                         gboolean check,
-                                                         GList **check_failed);
-gchar*              gimp_path_to_str                    (GList *path);
-void                gimp_path_free                      (GList *path);
-gchar*              gimp_path_get_user_writable_dir     (GList *path);
+void                gimp_env_init                       (gboolean plug_in);
+const gchar*        gimp_directory                      (void);
+const gchar*        gimp_data_directory                 (void);
+const gchar*        gimp_locale_directory               (void);
+const gchar*        gimp_plug_in_directory              (void);
+const gchar*        gimp_sysconf_directory              (void);
+const gchar*        gimp_user_directory                 (GimpUserDirectory type);
+gchar*              gimp_personal_rc_file               (const gchar *basename);
+const gchar*        gimp_gtkrc                          (void);
+GList*              gimp_path_parse                     (const gchar *path,
+                                                         gint max_paths,
+                                                         gboolean check,
+                                                         GList **check_failed);
+gchar*              gimp_path_to_str                    (GList *path);
+void                gimp_path_free                      (GList *path);
+gchar*              gimp_path_get_user_writable_dir     (GList *path);
 
@@ -71,7 +111,9 @@

Details

gimp_env_init ()

-
void                gimp_env_init                       (gboolean plug_in);
+
void                gimp_env_init                       (gboolean plug_in);

You don't need to care about this function. It is being called for you automatically (by means of the

plug_in :

- must be TRUE if this function is called from a plug-in + must be TRUE if this function is called from a plug-in
@@ -95,7 +139,9 @@

gimp_directory ()

-
const gchar*        gimp_directory                      (void);
+
const gchar*        gimp_directory                      (void);

Returns the user-specific GIMP settings directory. If the environment variable GIMP2_DIRECTORY exists, it is used. If it is @@ -132,7 +178,9 @@


gimp_data_directory ()

-
const gchar*        gimp_data_directory                 (void);
+
const gchar*        gimp_data_directory                 (void);

Returns the top directory for GIMP data. If the environment variable GIMP2_DATADIR exists, that is used. It should be an @@ -160,7 +208,9 @@


gimp_locale_directory ()

-
const gchar*        gimp_locale_directory               (void);
+
const gchar*        gimp_locale_directory               (void);

Returns the top directory for GIMP locale files. If the environment variable GIMP2_LOCALEDIR exists, that is used. It should be an @@ -191,7 +241,9 @@


gimp_plug_in_directory ()

-
const gchar*        gimp_plug_in_directory              (void);
+
const gchar*        gimp_plug_in_directory              (void);

Returns the top directory for GIMP plug_ins and modules. If the environment variable GIMP2_PLUGINDIR exists, that is used. It @@ -219,7 +271,9 @@


gimp_sysconf_directory ()

-
const gchar*        gimp_sysconf_directory              (void);
+
const gchar*        gimp_sysconf_directory              (void);

Returns the top directory for GIMP config files. If the environment variable GIMP2_SYSCONFDIR exists, that is used. It should be an @@ -247,13 +301,17 @@


gimp_user_directory ()

-
const gchar*        gimp_user_directory                 (GimpUserDirectory type);
+
const gchar*        gimp_user_directory                 (GimpUserDirectory type);

Warning

gimp_user_directory is deprecated and should not be used in newly-written code.

-This procedure is deprecated! Use g_get_user_special_dir() instead.

+This procedure is deprecated! Use g_get_user_special_dir() instead.

@@ -267,7 +325,9 @@

Returns :

- The path to the specified user directory, or NULL if the + The path to the specified user directory, or NULL if the logical ID was not found. @@ -280,13 +340,19 @@

gimp_personal_rc_file ()

-
gchar*              gimp_personal_rc_file               (const gchar *basename);
+
gchar*              gimp_personal_rc_file               (const gchar *basename);

Returns the name of a file in the user-specific GIMP settings directory.

The returned string is allocated dynamically and *SHOULD* be freed -with g_free() after use. The returned string is in the encoding +with g_free() after use. The returned string is in the encoding used for filenames by GLib, which isn't necessarily UTF-8. (On Windows it always is UTF-8.)

@@ -311,7 +377,9 @@


gimp_gtkrc ()

-
const gchar*        gimp_gtkrc                          (void);
+
const gchar*        gimp_gtkrc                          (void);

Returns the name of GIMP's application-specific gtkrc file.

@@ -335,10 +403,20 @@

gimp_path_parse ()

-
GList*              gimp_path_parse                     (const gchar *path,
-                                                         gint max_paths,
-                                                         gboolean check,
-                                                         GList **check_failed);
+
GList*              gimp_path_parse                     (const gchar *path,
+                                                         gint max_paths,
+                                                         gboolean check,
+                                                         GList **check_failed);

@@ -349,7 +427,9 @@

path :

- A list of directories separated by G_SEARCHPATH_SEPARATOR. + A list of directories separated by G_SEARCHPATH_SEPARATOR. @@ -359,18 +439,24 @@

check :

- TRUE if you want the directories to be checked. + TRUE if you want the directories to be checked.

check_failed :

- Returns a GList of path elements for which the + Returns a GList of path elements for which the check failed.

Returns :

- A GList of all directories in path. + A GList of all directories in path. @@ -379,7 +465,11 @@

gimp_path_to_str ()

-
gchar*              gimp_path_to_str                    (GList *path);
+
gchar*              gimp_path_to_str                    (GList *path);

@@ -395,7 +485,9 @@

Returns :

- A searchpath string separated by G_SEARCHPATH_SEPARATOR. + A searchpath string separated by G_SEARCHPATH_SEPARATOR. @@ -404,7 +496,9 @@

gimp_path_free ()

-
void                gimp_path_free                      (GList *path);
+
void                gimp_path_free                      (GList *path);

This function frees the memory allocated for the list and the strings it contains.

@@ -423,9 +517,15 @@

gimp_path_get_user_writable_dir ()

-
gchar*              gimp_path_get_user_writable_dir     (GList *path);
-

-Note that you have to g_free() the returned string.

+
gchar*              gimp_path_get_user_writable_dir     (GList *path);
+

+Note that you have to g_free() the returned string.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2008-10-08 23:32:57.000000000 +0100 @@ -108,7 +108,9 @@

A large but arbitrary value that can be used when an upper limit for a -memory size (in bytes) is needed. It is smaller than G_MAXDOUBLE since +memory size (in bytes) is needed. It is smaller than G_MAXDOUBLE since the GimpMemsizeEntry doesn't handle larger values. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,20 +42,50 @@

Synopsis

-gchar*              gimp_memsize_serialize              (guint64 memsize);
-gboolean            gimp_memsize_deserialize            (const gchar *string,
-                                                         guint64 *memsize);
-gchar*              gimp_memsize_to_string              (guint64 memsize);
+gchar*              gimp_memsize_serialize              (guint64 memsize);
+gboolean            gimp_memsize_deserialize            (const gchar *string,
+                                                         guint64 *memsize);
+gchar*              gimp_memsize_to_string              (guint64 memsize);
 #define             GIMP_TYPE_MEMSIZE
 #define             GIMP_TYPE_PARAM_MEMSIZE
 #define             GIMP_IS_PARAM_SPEC_MEMSIZE          (pspec)
-GParamSpec*         gimp_param_spec_memsize             (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         guint64 minimum,
-                                                         guint64 maximum,
-                                                         guint64 default_value,
-                                                         GParamFlags flags);
+GParamSpec*         gimp_param_spec_memsize             (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         guint64 minimum,
+                                                         guint64 maximum,
+                                                         guint64 default_value,
+                                                         GParamFlags flags);
 #define             GIMP_VALUE_HOLDS_MEMSIZE            (value)
 
@@ -69,12 +99,18 @@

Details

gimp_memsize_serialize ()

-
gchar*              gimp_memsize_serialize              (guint64 memsize);
+
gchar*              gimp_memsize_serialize              (guint64 memsize);

Creates a string representation of a given memory size. This string can be parsed by gimp_memsize_deserialize() and can thus be used in config files. It should not be displayed to the user. If you need a -nice human-readable string please use g_format_size_for_display().

+nice human-readable string please use g_format_size_for_display().

@@ -100,8 +136,14 @@

gimp_memsize_deserialize ()

-
gboolean            gimp_memsize_deserialize            (const gchar *string,
-                                                         guint64 *memsize);
+
gboolean            gimp_memsize_deserialize            (const gchar *string,
+                                                         guint64 *memsize);

Parses a string representation of a memory size as returned by gimp_memsize_serialize().

@@ -123,8 +165,12 @@

Returns :

- TRUE if the string was successfully parsed and - memsize has been set, FALSE otherwise. + TRUE if the string was successfully parsed and + memsize has been set, FALSE otherwise. @@ -136,13 +182,19 @@

gimp_memsize_to_string ()

-
gchar*              gimp_memsize_to_string              (guint64 memsize);
+
gchar*              gimp_memsize_to_string              (guint64 memsize);

Warning

gimp_memsize_to_string is deprecated and should not be used in newly-written code.

-This function is deprecated! Use g_format_size_for_display() instead.

+This function is deprecated! Use g_format_size_for_display() instead.

@@ -168,7 +220,11 @@
#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
 

-GIMP_TYPE_MEMSIZE is a GType derived from G_TYPE_UINT64. +GIMP_TYPE_MEMSIZE is a GType derived from G_TYPE_UINT64.


@@ -202,16 +258,34 @@

gimp_param_spec_memsize ()

-
GParamSpec*         gimp_param_spec_memsize             (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         guint64 minimum,
-                                                         guint64 maximum,
-                                                         guint64 default_value,
-                                                         GParamFlags flags);
+
GParamSpec*         gimp_param_spec_memsize             (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         guint64 minimum,
+                                                         guint64 maximum,
+                                                         guint64 default_value,
+                                                         GParamFlags flags);

Creates a param spec to hold a memory size value. -See g_param_spec_internal() for more information.

+See g_param_spec_internal() for more information.

@@ -250,12 +324,16 @@

flags :

- a combination of GParamFlags + a combination of GParamFlags

Returns :

- a newly allocated GParamSpec instance + a newly allocated GParamSpec instance diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpparam.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpparam.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpparam.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpparam.html 2008-10-08 23:32:57.000000000 +0100 @@ -35,7 +35,9 @@

gimpparam

-

gimpparam — Definitions of useful GParamFlags.

+

gimpparam — Definitions of useful GParamFlags.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2008-10-08 23:32:57.000000000 +0100 @@ -43,24 +43,54 @@

Synopsis

                     GimpParasite;
-GimpParasite*       gimp_parasite_new                   (const gchar *name,
-                                                         guint32 flags,
-                                                         guint32 size,
-                                                         gconstpointer data);
+GimpParasite*       gimp_parasite_new                   (const gchar *name,
+                                                         guint32 flags,
+                                                         guint32 size,
+                                                         gconstpointer data);
 void                gimp_parasite_free                  (GimpParasite *parasite);
 GimpParasite*       gimp_parasite_copy                  (const GimpParasite *parasite);
-gboolean            gimp_parasite_compare               (const GimpParasite *a,
+gboolean            gimp_parasite_compare               (const GimpParasite *a,
                                                          const GimpParasite *b);
-gboolean            gimp_parasite_is_type               (const GimpParasite *parasite,
-                                                         const gchar *name);
-gboolean            gimp_parasite_is_persistent         (const GimpParasite *parasite);
-gboolean            gimp_parasite_is_undoable           (const GimpParasite *parasite);
-gboolean            gimp_parasite_has_flag              (const GimpParasite *parasite,
-                                                         gulong flag);
-gulong              gimp_parasite_flags                 (const GimpParasite *parasite);
-const gchar*        gimp_parasite_name                  (const GimpParasite *parasite);
-gconstpointer       gimp_parasite_data                  (const GimpParasite *parasite);
-glong               gimp_parasite_data_size             (const GimpParasite *parasite);
+gboolean            gimp_parasite_is_type               (const GimpParasite *parasite,
+                                                         const gchar *name);
+gboolean            gimp_parasite_is_persistent         (const GimpParasite *parasite);
+gboolean            gimp_parasite_is_undoable           (const GimpParasite *parasite);
+gboolean            gimp_parasite_has_flag              (const GimpParasite *parasite,
+                                                         gulong flag);
+gulong              gimp_parasite_flags                 (const GimpParasite *parasite);
+const gchar*        gimp_parasite_name                  (const GimpParasite *parasite);
+gconstpointer       gimp_parasite_data                  (const GimpParasite *parasite);
+glong               gimp_parasite_data_size             (const GimpParasite *parasite);
 #define             GIMP_PARASITE_PERSISTENT
 #define             GIMP_PARASITE_UNDOABLE
 #define             GIMP_PARASITE_ATTACH_PARENT
@@ -72,10 +102,20 @@
 #define             GIMP_TYPE_PARASITE
 #define             GIMP_TYPE_PARAM_PARASITE
 #define             GIMP_IS_PARAM_SPEC_PARASITE         (pspec)
-GParamSpec*         gimp_param_spec_parasite            (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         GParamFlags flags);
+GParamSpec*         gimp_param_spec_parasite            (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         GParamFlags flags);
 #define             GIMP_VALUE_HOLDS_PARASITE           (value)
 
@@ -105,10 +145,18 @@

gimp_parasite_new ()

-
GimpParasite*       gimp_parasite_new                   (const gchar *name,
-                                                         guint32 flags,
-                                                         guint32 size,
-                                                         gconstpointer data);
+
GimpParasite*       gimp_parasite_new                   (const gchar *name,
+                                                         guint32 flags,
+                                                         guint32 size,
+                                                         gconstpointer data);

@@ -191,7 +239,9 @@

gimp_parasite_compare ()

-
gboolean            gimp_parasite_compare               (const GimpParasite *a,
+
gboolean            gimp_parasite_compare               (const GimpParasite *a,
                                                          const GimpParasite *b);

@@ -222,8 +272,12 @@


gimp_parasite_is_type ()

-
gboolean            gimp_parasite_is_type               (const GimpParasite *parasite,
-                                                         const gchar *name);
+
gboolean            gimp_parasite_is_type               (const GimpParasite *parasite,
+                                                         const gchar *name);

@@ -253,7 +307,9 @@

gimp_parasite_is_persistent ()

-
gboolean            gimp_parasite_is_persistent         (const GimpParasite *parasite);
+
gboolean            gimp_parasite_is_persistent         (const GimpParasite *parasite);

@@ -278,7 +334,9 @@

gimp_parasite_is_undoable ()

-
gboolean            gimp_parasite_is_undoable           (const GimpParasite *parasite);
+
gboolean            gimp_parasite_is_undoable           (const GimpParasite *parasite);

@@ -303,8 +361,12 @@

gimp_parasite_has_flag ()

-
gboolean            gimp_parasite_has_flag              (const GimpParasite *parasite,
-                                                         gulong flag);
+
gboolean            gimp_parasite_has_flag              (const GimpParasite *parasite,
+                                                         gulong flag);

@@ -334,7 +396,9 @@

gimp_parasite_flags ()

-
gulong              gimp_parasite_flags                 (const GimpParasite *parasite);
+
gulong              gimp_parasite_flags                 (const GimpParasite *parasite);

@@ -359,7 +423,9 @@

gimp_parasite_name ()

-
const gchar*        gimp_parasite_name                  (const GimpParasite *parasite);
+
const gchar*        gimp_parasite_name                  (const GimpParasite *parasite);

@@ -384,7 +450,9 @@

gimp_parasite_data ()

-
gconstpointer       gimp_parasite_data                  (const GimpParasite *parasite);
+
gconstpointer       gimp_parasite_data                  (const GimpParasite *parasite);

@@ -409,7 +477,9 @@

gimp_parasite_data_size ()

-
glong               gimp_parasite_data_size             (const GimpParasite *parasite);
+
glong               gimp_parasite_data_size             (const GimpParasite *parasite);

@@ -543,10 +613,20 @@

gimp_param_spec_parasite ()

-
GParamSpec*         gimp_param_spec_parasite            (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         GParamFlags flags);
+
GParamSpec*         gimp_param_spec_parasite            (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         GParamFlags flags);

@@ -607,12 +687,12 @@

See Also

gimp_image_parasite_attach(), gimp_drawable_parasite_attach(), gimp_parasite_attach() and their related functions.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,9 +44,13 @@
 #define             GIMP_PIXPIPE_MAXDIM
 void                gimp_pixpipe_params_init            (GimpPixPipeParams *params);
-void                gimp_pixpipe_params_parse           (const gchar *parameters,
+void                gimp_pixpipe_params_parse           (const gchar *parameters,
                                                          GimpPixPipeParams *params);
-gchar*              gimp_pixpipe_params_build           (GimpPixPipeParams *params);
+gchar*              gimp_pixpipe_params_build           (GimpPixPipeParams *params);
 
@@ -87,7 +91,9 @@

gimp_pixpipe_params_parse ()

-
void                gimp_pixpipe_params_parse           (const gchar *parameters,
+
void                gimp_pixpipe_params_parse           (const gchar *parameters,
                                                          GimpPixPipeParams *params);

@@ -113,7 +119,9 @@


gimp_pixpipe_params_build ()

-
gchar*              gimp_pixpipe_params_build           (GimpPixPipeParams *params);
+
gchar*              gimp_pixpipe_params_build           (GimpPixPipeParams *params);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimprectangle.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimprectangle.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimprectangle.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimprectangle.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,18 +42,44 @@

Synopsis

-gboolean            gimp_rectangle_intersect            (gint x1,
-                                                         gint y1,
-                                                         gint width1,
-                                                         gint height1,
-                                                         gint x2,
-                                                         gint y2,
-                                                         gint width2,
-                                                         gint height2,
-                                                         gint *dest_x,
-                                                         gint *dest_y,
-                                                         gint *dest_width,
-                                                         gint *dest_height);
+gboolean            gimp_rectangle_intersect            (gint x1,
+                                                         gint y1,
+                                                         gint width1,
+                                                         gint height1,
+                                                         gint x2,
+                                                         gint y2,
+                                                         gint width2,
+                                                         gint height2,
+                                                         gint *dest_x,
+                                                         gint *dest_y,
+                                                         gint *dest_width,
+                                                         gint *dest_height);
 
@@ -66,18 +92,44 @@

Details

gimp_rectangle_intersect ()

-
gboolean            gimp_rectangle_intersect            (gint x1,
-                                                         gint y1,
-                                                         gint width1,
-                                                         gint height1,
-                                                         gint x2,
-                                                         gint y2,
-                                                         gint width2,
-                                                         gint height2,
-                                                         gint *dest_x,
-                                                         gint *dest_y,
-                                                         gint *dest_width,
-                                                         gint *dest_height);
+
gboolean            gimp_rectangle_intersect            (gint x1,
+                                                         gint y1,
+                                                         gint width1,
+                                                         gint height1,
+                                                         gint x2,
+                                                         gint y2,
+                                                         gint width2,
+                                                         gint height2,
+                                                         gint *dest_x,
+                                                         gint *dest_y,
+                                                         gint *dest_width,
+                                                         gint *dest_height);

Calculates the intersection of two rectangles.

@@ -128,27 +180,39 @@

dest_x :

- return location for origin of intersection (may be NULL) + return location for origin of intersection (may be NULL)

dest_y :

- return location for origin of intersection (may be NULL) + return location for origin of intersection (may be NULL)

dest_width :

- return location for width of intersection (may be NULL) + return location for width of intersection (may be NULL)

dest_height :

- return location for height of intersection (may be NULL) + return location for height of intersection (may be NULL)

Returns :

- TRUE if the intersection is non-empty, FALSE otherwise + TRUE if the intersection is non-empty, FALSE otherwise diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,10 +42,16 @@

Synopsis

-void                (*GimpSignalHandlerFunc)            (gint signum);
-GimpSignalHandlerFunc gimp_signal_private               (gint signum,
+void                (*GimpSignalHandlerFunc)            (gint signum);
+GimpSignalHandlerFunc gimp_signal_private               (gint signum,
                                                          GimpSignalHandlerFunc handler,
-                                                         gint flags);
+                                                         gint flags);
 
@@ -59,7 +65,9 @@

Details

GimpSignalHandlerFunc ()

-
void                (*GimpSignalHandlerFunc)            (gint signum);
+
void                (*GimpSignalHandlerFunc)            (gint signum);

A prototype for signal handler functions. Note that each function which takes or returns a variable of this type also accepts or may return @@ -81,9 +89,13 @@


gimp_signal_private ()

-
GimpSignalHandlerFunc gimp_signal_private               (gint signum,
+
GimpSignalHandlerFunc gimp_signal_private               (gint signum,
                                                          GimpSignalHandlerFunc handler,
-                                                         gint flags);
+ gint flags);

This function furnishes a workalike for signal(2) but which internally invokes sigaction(2) after certain diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,36 +44,86 @@

Synopsis

 enum                GimpUnit;
-gint                gimp_unit_get_number_of_units       (void);
-gint                gimp_unit_get_number_of_built_in_units
+gint                gimp_unit_get_number_of_units       (void);
+gint                gimp_unit_get_number_of_built_in_units
                                                         (void);
-GimpUnit            gimp_unit_new                       (gchar *identifier,
-                                                         gdouble factor,
-                                                         gint digits,
-                                                         gchar *symbol,
-                                                         gchar *abbreviation,
-                                                         gchar *singular,
-                                                         gchar *plural);
-gboolean            gimp_unit_get_deletion_flag         (GimpUnit unit);
+GimpUnit            gimp_unit_new                       (gchar *identifier,
+                                                         gdouble factor,
+                                                         gint digits,
+                                                         gchar *symbol,
+                                                         gchar *abbreviation,
+                                                         gchar *singular,
+                                                         gchar *plural);
+gboolean            gimp_unit_get_deletion_flag         (GimpUnit unit);
 void                gimp_unit_set_deletion_flag         (GimpUnit unit,
-                                                         gboolean deletion_flag);
-gdouble             gimp_unit_get_factor                (GimpUnit unit);
-gint                gimp_unit_get_digits                (GimpUnit unit);
-const gchar*        gimp_unit_get_identifier            (GimpUnit unit);
-const gchar*        gimp_unit_get_symbol                (GimpUnit unit);
-const gchar*        gimp_unit_get_abbreviation          (GimpUnit unit);
-const gchar*        gimp_unit_get_singular              (GimpUnit unit);
-const gchar*        gimp_unit_get_plural                (GimpUnit unit);
+                                                         gboolean deletion_flag);
+gdouble             gimp_unit_get_factor                (GimpUnit unit);
+gint                gimp_unit_get_digits                (GimpUnit unit);
+const gchar*        gimp_unit_get_identifier            (GimpUnit unit);
+const gchar*        gimp_unit_get_symbol                (GimpUnit unit);
+const gchar*        gimp_unit_get_abbreviation          (GimpUnit unit);
+const gchar*        gimp_unit_get_singular              (GimpUnit unit);
+const gchar*        gimp_unit_get_plural                (GimpUnit unit);
 #define             GIMP_TYPE_UNIT
 #define             GIMP_TYPE_PARAM_UNIT
 #define             GIMP_IS_PARAM_SPEC_UNIT             (pspec)
-GParamSpec*         gimp_param_spec_unit                (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         gboolean allow_pixels,
-                                                         gboolean allow_percent,
+GParamSpec*         gimp_param_spec_unit                (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         gboolean allow_pixels,
+                                                         gboolean allow_percent,
                                                          GimpUnit default_value,
-                                                         GParamFlags flags);
+                                                         GParamFlags flags);
 #define             GIMP_VALUE_HOLDS_UNIT               (value)
 
@@ -110,7 +160,9 @@

gimp_unit_get_number_of_units ()

-
gint                gimp_unit_get_number_of_units       (void);
+
gint                gimp_unit_get_number_of_units       (void);

Returns the number of units which are known to the GimpUnit system.

@@ -128,7 +180,9 @@


gimp_unit_get_number_of_built_in_units ()

-
gint                gimp_unit_get_number_of_built_in_units
+
gint                gimp_unit_get_number_of_built_in_units
                                                         (void);

Returns the number of GimpUnit's which are hardcoded in the unit system @@ -149,19 +203,37 @@


gimp_unit_new ()

-
GimpUnit            gimp_unit_new                       (gchar *identifier,
-                                                         gdouble factor,
-                                                         gint digits,
-                                                         gchar *symbol,
-                                                         gchar *abbreviation,
-                                                         gchar *singular,
-                                                         gchar *plural);
+
GimpUnit            gimp_unit_new                       (gchar *identifier,
+                                                         gdouble factor,
+                                                         gint digits,
+                                                         gchar *symbol,
+                                                         gchar *abbreviation,
+                                                         gchar *singular,
+                                                         gchar *plural);

Returns the integer ID of the new GimpUnit.

Note that a new unit is always created with it's deletion flag -set to TRUE. You will have to set it to FALSE with +set to TRUE. You will have to set it to FALSE with gimp_unit_set_deletion_flag() to make the unit definition persistent.

@@ -215,7 +287,9 @@


gimp_unit_get_deletion_flag ()

-
gboolean            gimp_unit_get_deletion_flag         (GimpUnit unit);
+
gboolean            gimp_unit_get_deletion_flag         (GimpUnit unit);

@@ -241,10 +315,14 @@

gimp_unit_set_deletion_flag ()

void                gimp_unit_set_deletion_flag         (GimpUnit unit,
-                                                         gboolean deletion_flag);
+ gboolean deletion_flag);

Sets a GimpUnit's deletion_flag. If the deletion_flag of a unit is -TRUE when GIMP exits, this unit will not be saved in the users's +TRUE when GIMP exits, this unit will not be saved in the users's "unitrc" file.

@@ -272,7 +350,9 @@


gimp_unit_get_factor ()

-
gdouble             gimp_unit_get_factor                (GimpUnit unit);
+
gdouble             gimp_unit_get_factor                (GimpUnit unit);

A GimpUnit's factor is defined to be:

@@ -303,7 +383,9 @@

gimp_unit_get_digits ()

-
gint                gimp_unit_get_digits                (GimpUnit unit);
+
gint                gimp_unit_get_digits                (GimpUnit unit);

Returns the number of digits an entry field should provide to get approximately the same accuracy as an inch input field with two digits. @@ -332,7 +414,9 @@


gimp_unit_get_identifier ()

-
const gchar*        gimp_unit_get_identifier            (GimpUnit unit);
+
const gchar*        gimp_unit_get_identifier            (GimpUnit unit);

This is an unstranslated string and must not be changed or freed.

@@ -357,7 +441,9 @@


gimp_unit_get_symbol ()

-
const gchar*        gimp_unit_get_symbol                (GimpUnit unit);
+
const gchar*        gimp_unit_get_symbol                (GimpUnit unit);

This is e.g. "''" for UNIT_INCH.

@@ -385,7 +471,9 @@

gimp_unit_get_abbreviation ()

-
const gchar*        gimp_unit_get_abbreviation          (GimpUnit unit);
+
const gchar*        gimp_unit_get_abbreviation          (GimpUnit unit);

For built-in units, this function returns the translated abbreviation of the unit. @@ -414,7 +502,9 @@


gimp_unit_get_singular ()

-
const gchar*        gimp_unit_get_singular              (GimpUnit unit);
+
const gchar*        gimp_unit_get_singular              (GimpUnit unit);

For built-in units, this function returns the translated singular form of the unit's name. @@ -443,7 +533,9 @@


gimp_unit_get_plural ()

-
const gchar*        gimp_unit_get_plural                (GimpUnit unit);
+
const gchar*        gimp_unit_get_plural                (GimpUnit unit);

For built-in units, this function returns the translated plural form of the unit's name. @@ -475,7 +567,11 @@

#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
 

-GIMP_TYPE_UNIT is a GType derived from G_TYPE_INT. +GIMP_TYPE_UNIT is a GType derived from G_TYPE_INT.


@@ -509,16 +605,32 @@

gimp_param_spec_unit ()

-
GParamSpec*         gimp_param_spec_unit                (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         gboolean allow_pixels,
-                                                         gboolean allow_percent,
+
GParamSpec*         gimp_param_spec_unit                (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         gboolean allow_pixels,
+                                                         gboolean allow_percent,
                                                          GimpUnit default_value,
-                                                         GParamFlags flags);
+ GParamFlags flags);

Creates a param spec to hold a units param. -See g_param_spec_internal() for more information.

+See g_param_spec_internal() for more information.

@@ -557,12 +669,16 @@

flags :

- a combination of GParamFlags + a combination of GParamFlags

Returns :

- a newly allocated GParamSpec instance + a newly allocated GParamSpec instance diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimputils.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimputils.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,40 +42,130 @@

Synopsis

-gchar*              gimp_any_to_utf8                    (const gchar *str,
-                                                         gssize len,
-                                                         const gchar *warning_format,
+gchar*              gimp_any_to_utf8                    (const gchar *str,
+                                                         gssize len,
+                                                         const gchar *warning_format,
                                                          ...);
-const gchar*        gimp_filename_to_utf8               (const gchar *filename);
-gchar*              gimp_utf8_strtrim                   (const gchar *str,
-                                                         gint max_chars);
-gchar*              gimp_escape_uline                   (const gchar *str);
-gchar*              gimp_strip_uline                    (const gchar *str);
-gchar*              gimp_canonicalize_identifier        (const gchar *identifier);
-GimpEnumDesc*       gimp_enum_get_desc                  (GEnumClass *enum_class,
-                                                         gint value);
-gboolean            gimp_enum_get_value                 (GType enum_type,
-                                                         gint value,
-                                                         const gchar **value_name,
-                                                         const gchar **value_nick,
-                                                         const gchar **value_desc,
-                                                         const gchar **value_help);
-const gchar*        gimp_enum_value_get_desc            (GEnumClass *enum_class,
-                                                         GEnumValue *enum_value);
-const gchar*        gimp_enum_value_get_help            (GEnumClass *enum_class,
-                                                         GEnumValue *enum_value);
-GimpFlagsDesc*      gimp_flags_get_first_desc           (GFlagsClass *flags_class,
-                                                         guint value);
-gboolean            gimp_flags_get_first_value          (GType flags_type,
-                                                         guint value,
-                                                         const gchar **value_name,
-                                                         const gchar **value_nick,
-                                                         const gchar **value_desc,
-                                                         const gchar **value_help);
-const gchar*        gimp_flags_value_get_desc           (GFlagsClass *flags_class,
-                                                         GFlagsValue *flags_value);
-const gchar*        gimp_flags_value_get_help           (GFlagsClass *flags_class,
-                                                         GFlagsValue *flags_value);
+const gchar*        gimp_filename_to_utf8               (const gchar *filename);
+gchar*              gimp_utf8_strtrim                   (const gchar *str,
+                                                         gint max_chars);
+gchar*              gimp_escape_uline                   (const gchar *str);
+gchar*              gimp_strip_uline                    (const gchar *str);
+gchar*              gimp_canonicalize_identifier        (const gchar *identifier);
+GimpEnumDesc*       gimp_enum_get_desc                  (GEnumClass *enum_class,
+                                                         gint value);
+gboolean            gimp_enum_get_value                 (GType enum_type,
+                                                         gint value,
+                                                         const gchar **value_name,
+                                                         const gchar **value_nick,
+                                                         const gchar **value_desc,
+                                                         const gchar **value_help);
+const gchar*        gimp_enum_value_get_desc            (GEnumClass *enum_class,
+                                                         GEnumValue *enum_value);
+const gchar*        gimp_enum_value_get_help            (GEnumClass *enum_class,
+                                                         GEnumValue *enum_value);
+GimpFlagsDesc*      gimp_flags_get_first_desc           (GFlagsClass *flags_class,
+                                                         guint value);
+gboolean            gimp_flags_get_first_value          (GType flags_type,
+                                                         guint value,
+                                                         const gchar **value_name,
+                                                         const gchar **value_nick,
+                                                         const gchar **value_desc,
+                                                         const gchar **value_help);
+const gchar*        gimp_flags_value_get_desc           (GFlagsClass *flags_class,
+                                                         GFlagsValue *flags_value);
+const gchar*        gimp_flags_value_get_help           (GFlagsClass *flags_class,
+                                                         GFlagsValue *flags_value);
 
@@ -88,9 +178,17 @@

Details

gimp_any_to_utf8 ()

-
gchar*              gimp_any_to_utf8                    (const gchar *str,
-                                                         gssize len,
-                                                         const gchar *warning_format,
+
gchar*              gimp_any_to_utf8                    (const gchar *str,
+                                                         gssize len,
+                                                         const gchar *warning_format,
                                                          ...);

This function takes any string (UTF-8 or not) and always returns a valid @@ -100,7 +198,9 @@ If str is valid UTF-8, a copy of the string is returned.

-If UTF-8 validation fails, g_locale_to_utf8() is tried and if it +If UTF-8 validation fails, g_locale_to_utf8() is tried and if it succeeds the resulting string is returned.

@@ -147,7 +247,11 @@


gimp_filename_to_utf8 ()

-
const gchar*        gimp_filename_to_utf8               (const gchar *filename);
+
const gchar*        gimp_filename_to_utf8               (const gchar *filename);

Convert a filename in the filesystem's encoding to UTF-8 temporarily. The return value is a pointer to a string that is @@ -181,8 +285,14 @@


gimp_utf8_strtrim ()

-
gchar*              gimp_utf8_strtrim                   (const gchar *str,
-                                                         gint max_chars);
+
gchar*              gimp_utf8_strtrim                   (const gchar *str,
+                                                         gint max_chars);

Creates a (possibly trimmed) copy of str. The string is cut if it exceeds max_chars characters or on the first newline. The fact @@ -195,7 +305,9 @@

str :

- an UTF-8 encoded string (or NULL) + an UTF-8 encoded string (or NULL) @@ -207,7 +319,9 @@

Returns :

A (possibly trimmed) copy of str which should be freed -using g_free() when it is not needed any longer. +using g_free() when it is not needed any longer. @@ -216,7 +330,11 @@

gimp_escape_uline ()

-
gchar*              gimp_escape_uline                   (const gchar *str);
+
gchar*              gimp_escape_uline                   (const gchar *str);

This function returns a copy of str with all underline converted to two adjacent underlines. This comes in handy when needing to display @@ -230,13 +348,17 @@

str :

- Underline infested string (or NULL) + Underline infested string (or NULL)

Returns :

A (possibly escaped) copy of str which should be -freed using g_free() when it is not needed any longer. +freed using g_free() when it is not needed any longer. @@ -248,7 +370,11 @@

gimp_strip_uline ()

-
gchar*              gimp_strip_uline                    (const gchar *str);
+
gchar*              gimp_strip_uline                    (const gchar *str);

This function returns a copy of str stripped of underline characters. This comes in handy when needing to strip mnemonics @@ -267,13 +393,17 @@

str :

- underline infested string (or NULL) + underline infested string (or NULL)

Returns :

A (possibly stripped) copy of str which should be - freed using g_free() when it is not needed any longer. + freed using g_free() when it is not needed any longer. @@ -282,7 +412,11 @@

gimp_canonicalize_identifier ()

-
gchar*              gimp_canonicalize_identifier        (const gchar *identifier);
+
gchar*              gimp_canonicalize_identifier        (const gchar *identifier);

Turns any input string into a canonicalized string.

@@ -304,7 +438,9 @@

Returns :

The canonicalized identifier. This is a newly - allocated string that should be freed with g_free() + allocated string that should be freed with g_free() when no longer needed. @@ -317,10 +453,16 @@

gimp_enum_get_desc ()

-
GimpEnumDesc*       gimp_enum_get_desc                  (GEnumClass *enum_class,
-                                                         gint value);
-

-Retrieves GimpEnumDesc associated with the given value, or NULL.

+
GimpEnumDesc*       gimp_enum_get_desc                  (GEnumClass *enum_class,
+                                                         gint value);
+

+Retrieves GimpEnumDesc associated with the given value, or NULL.

@@ -329,7 +471,9 @@

enum_class :

- a GEnumClass + a GEnumClass @@ -351,17 +495,33 @@

gimp_enum_get_value ()

-
gboolean            gimp_enum_get_value                 (GType enum_type,
-                                                         gint value,
-                                                         const gchar **value_name,
-                                                         const gchar **value_nick,
-                                                         const gchar **value_desc,
-                                                         const gchar **value_help);
+
gboolean            gimp_enum_get_value                 (GType enum_type,
+                                                         gint value,
+                                                         const gchar **value_name,
+                                                         const gchar **value_nick,
+                                                         const gchar **value_desc,
+                                                         const gchar **value_help);

Checks if value is valid for the enum registered as enum_type. If the value exists in that enum, its name, nick and its translated desc and help are returned (if value_name, value_nick, value_desc -and value_help are not NULL).

+and value_help are not NULL).

@@ -370,7 +530,9 @@

enum_type :

- the GType of a registered enum + the GType of a registered enum @@ -380,28 +542,40 @@

value_name :

- return location for the value's name (or NULL) + return location for the value's name (or NULL)

value_nick :

- return location for the value's nick (or NULL) + return location for the value's nick (or NULL)

value_desc :

- return location for the value's translated desc (or NULL) + return location for the value's translated desc (or NULL)

value_help :

- return location for the value's translated help (or NULL) + return location for the value's translated help (or NULL)

Returns :

- TRUE if value is valid for the enum_type, - FALSE otherwise + TRUE if value is valid for the enum_type, + FALSE otherwise @@ -413,8 +587,14 @@

gimp_enum_value_get_desc ()

-
const gchar*        gimp_enum_value_get_desc            (GEnumClass *enum_class,
-                                                         GEnumValue *enum_value);
+
const gchar*        gimp_enum_value_get_desc            (GEnumClass *enum_class,
+                                                         GEnumValue *enum_value);

Retrieves the translated desc for a given enum_value.

@@ -425,12 +605,16 @@

enum_class :

- a GEnumClass + a GEnumClass

enum_value :

- a GEnumValue from enum_class + a GEnumValue from enum_class @@ -447,8 +631,14 @@

gimp_enum_value_get_help ()

-
const gchar*        gimp_enum_value_get_help            (GEnumClass *enum_class,
-                                                         GEnumValue *enum_value);
+
const gchar*        gimp_enum_value_get_help            (GEnumClass *enum_class,
+                                                         GEnumValue *enum_value);

Retrieves the translated help for a given enum_value.

@@ -459,12 +649,16 @@

enum_class :

- a GEnumClass + a GEnumClass

enum_value :

- a GEnumValue from enum_class + a GEnumValue from enum_class @@ -481,10 +675,16 @@

gimp_flags_get_first_desc ()

-
GimpFlagsDesc*      gimp_flags_get_first_desc           (GFlagsClass *flags_class,
-                                                         guint value);
-

-Retrieves the first GimpFlagsDesc that matches the given value, or NULL.

+
GimpFlagsDesc*      gimp_flags_get_first_desc           (GFlagsClass *flags_class,
+                                                         guint value);
+

+Retrieves the first GimpFlagsDesc that matches the given value, or NULL.

@@ -493,7 +693,9 @@

flags_class :

- a GFlagsClass + a GFlagsClass @@ -515,17 +717,33 @@

gimp_flags_get_first_value ()

-
gboolean            gimp_flags_get_first_value          (GType flags_type,
-                                                         guint value,
-                                                         const gchar **value_name,
-                                                         const gchar **value_nick,
-                                                         const gchar **value_desc,
-                                                         const gchar **value_help);
+
gboolean            gimp_flags_get_first_value          (GType flags_type,
+                                                         guint value,
+                                                         const gchar **value_name,
+                                                         const gchar **value_nick,
+                                                         const gchar **value_desc,
+                                                         const gchar **value_help);

Checks if value is valid for the flags registered as flags_type. If the value exists in that flags, its name, nick and its translated desc and help are returned (if value_name, value_nick, value_desc -and value_help are not NULL).

+and value_help are not NULL).

@@ -534,7 +752,9 @@

flags_type :

- the GType of registered flags + the GType of registered flags @@ -544,28 +764,40 @@

value_name :

- return location for the value's name (or NULL) + return location for the value's name (or NULL)

value_nick :

- return location for the value's nick (or NULL) + return location for the value's nick (or NULL)

value_desc :

- return location for the value's translated desc (or NULL) + return location for the value's translated desc (or NULL)

value_help :

- return location for the value's translated help (or NULL) + return location for the value's translated help (or NULL)

Returns :

- TRUE if value is valid for the flags_type, - FALSE otherwise + TRUE if value is valid for the flags_type, + FALSE otherwise @@ -577,8 +809,14 @@

gimp_flags_value_get_desc ()

-
const gchar*        gimp_flags_value_get_desc           (GFlagsClass *flags_class,
-                                                         GFlagsValue *flags_value);
+
const gchar*        gimp_flags_value_get_desc           (GFlagsClass *flags_class,
+                                                         GFlagsValue *flags_value);

Retrieves the translated desc for a given flags_value.

@@ -589,12 +827,16 @@

flags_class :

- a GFlagsClass + a GFlagsClass

flags_value :

- a GFlagsValue from flags_class + a GFlagsValue from flags_class @@ -611,8 +853,14 @@

gimp_flags_value_get_help ()

-
const gchar*        gimp_flags_value_get_help           (GFlagsClass *flags_class,
-                                                         GFlagsValue *flags_value);
+
const gchar*        gimp_flags_value_get_help           (GFlagsClass *flags_class,
+                                                         GFlagsValue *flags_value);

Retrieves the translated help for a given flags_value.

@@ -623,12 +871,16 @@

flags_class :

- a GFlagsClass + a GFlagsClass

flags_value :

- a GFlagsValue from flags_class + a GFlagsValue from flags_class diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2008-10-08 23:32:57.000000000 +0100 @@ -85,7 +85,7 @@

GIMP_MICRO_VERSION

-
#define GIMP_MICRO_VERSION                              (0)
+
#define GIMP_MICRO_VERSION                              (1)
 

@@ -94,7 +94,7 @@


GIMP_VERSION

-
#define GIMP_VERSION                                    "2.6.0"
+
#define GIMP_VERSION                                    "2.6.1"
 

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase.html --- gimp-2.6.0/devel-docs/libgimpbase/html/libgimpbase.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/html/libgimpbase.html 2008-10-08 23:32:57.000000000 +0100 @@ -45,7 +45,9 @@ gimplimits — Boundaries of some GIMP data types and some global constants.

-gimpparam — Definitions of useful GParamFlags. +gimpparam — Definitions of useful GParamFlags.
gimpchecks — Constants and functions related to rendering checkerboards. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpbase/xml/gimpversion.xml /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpbase/xml/gimpversion.xml --- gimp-2.6.0/devel-docs/libgimpbase/xml/gimpversion.xml 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpbase/xml/gimpversion.xml 2008-10-08 23:32:57.000000000 +0100 @@ -68,14 +68,14 @@ GIMP_MICRO_VERSION -GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (0) +GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (1) GIMP_VERSION -GIMP_VERSION#define GIMP_VERSION "2.6.0" +GIMP_VERSION#define GIMP_VERSION "2.6.1" diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/index.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/index.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/index.html 2008-10-08 23:32:57.000000000 +0100 @@ -21,7 +21,7 @@

- for GIMP 2.6.0 + for GIMP 2.6.1

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,30 +42,70 @@

Synopsis

-void                (*GimpProgressFunc)                 (gint min,
-                                                         gint max,
-                                                         gint current,
-                                                         gpointer data);
-void                (*GimpPutPixelFunc)                 (gint x,
-                                                         gint y,
+void                (*GimpProgressFunc)                 (gint min,
+                                                         gint max,
+                                                         gint current,
+                                                         gpointer data);
+void                (*GimpPutPixelFunc)                 (gint x,
+                                                         gint y,
                                                          GimpRGB *color,
-                                                         gpointer data);
-void                (*GimpRenderFunc)                   (gdouble x,
-                                                         gdouble y,
+                                                         gpointer data);
+void                (*GimpRenderFunc)                   (gdouble x,
+                                                         gdouble y,
                                                          GimpRGB *color,
-                                                         gpointer data);
-gulong              gimp_adaptive_supersample_area      (gint x1,
-                                                         gint y1,
-                                                         gint x2,
-                                                         gint y2,
-                                                         gint max_depth,
-                                                         gdouble threshold,
+                                                         gpointer data);
+gulong              gimp_adaptive_supersample_area      (gint x1,
+                                                         gint y1,
+                                                         gint x2,
+                                                         gint y2,
+                                                         gint max_depth,
+                                                         gdouble threshold,
                                                          GimpRenderFunc render_func,
-                                                         gpointer render_data,
+                                                         gpointer render_data,
                                                          GimpPutPixelFunc put_pixel_func,
-                                                         gpointer put_pixel_data,
+                                                         gpointer put_pixel_data,
                                                          GimpProgressFunc progress_func,
-                                                         gpointer progress_data);
+                                                         gpointer progress_data);
 
@@ -78,10 +118,18 @@

Details

GimpProgressFunc ()

-
void                (*GimpProgressFunc)                 (gint min,
-                                                         gint max,
-                                                         gint current,
-                                                         gpointer data);
+
void                (*GimpProgressFunc)                 (gint min,
+                                                         gint max,
+                                                         gint current,
+                                                         gpointer data);

@@ -116,10 +164,16 @@

GimpPutPixelFunc ()

-
void                (*GimpPutPixelFunc)                 (gint x,
-                                                         gint y,
+
void                (*GimpPutPixelFunc)                 (gint x,
+                                                         gint y,
                                                          GimpRGB *color,
-                                                         gpointer data);
+ gpointer data);

@@ -154,10 +208,16 @@

GimpRenderFunc ()

-
void                (*GimpRenderFunc)                   (gdouble x,
-                                                         gdouble y,
+
void                (*GimpRenderFunc)                   (gdouble x,
+                                                         gdouble y,
                                                          GimpRGB *color,
-                                                         gpointer data);
+ gpointer data);

@@ -192,18 +252,38 @@

gimp_adaptive_supersample_area ()

-
gulong              gimp_adaptive_supersample_area      (gint x1,
-                                                         gint y1,
-                                                         gint x2,
-                                                         gint y2,
-                                                         gint max_depth,
-                                                         gdouble threshold,
+
gulong              gimp_adaptive_supersample_area      (gint x1,
+                                                         gint y1,
+                                                         gint x2,
+                                                         gint y2,
+                                                         gint max_depth,
+                                                         gdouble threshold,
                                                          GimpRenderFunc render_func,
-                                                         gpointer render_data,
+                                                         gpointer render_data,
                                                          GimpPutPixelFunc put_pixel_func,
-                                                         gpointer put_pixel_data,
+                                                         gpointer put_pixel_data,
                                                          GimpProgressFunc progress_func,
-                                                         gpointer progress_data);
+ gpointer progress_data);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,30 +42,82 @@

Synopsis

-gdouble             gimp_bilinear                       (gdouble x,
-                                                         gdouble y,
-                                                         gdouble *values);
-guchar              gimp_bilinear_8                     (gdouble x,
-                                                         gdouble y,
-                                                         guchar *values);
-guint16             gimp_bilinear_16                    (gdouble x,
-                                                         gdouble y,
-                                                         guint16 *values);
-guint32             gimp_bilinear_32                    (gdouble x,
-                                                         gdouble y,
-                                                         guint32 *values);
-GimpRGB             gimp_bilinear_rgb                   (gdouble x,
-                                                         gdouble y,
+gdouble             gimp_bilinear                       (gdouble x,
+                                                         gdouble y,
+                                                         gdouble *values);
+guchar              gimp_bilinear_8                     (gdouble x,
+                                                         gdouble y,
+                                                         guchar *values);
+guint16             gimp_bilinear_16                    (gdouble x,
+                                                         gdouble y,
+                                                         guint16 *values);
+guint32             gimp_bilinear_32                    (gdouble x,
+                                                         gdouble y,
+                                                         guint32 *values);
+GimpRGB             gimp_bilinear_rgb                   (gdouble x,
+                                                         gdouble y,
                                                          GimpRGB *values);
-GimpRGB             gimp_bilinear_rgba                  (gdouble x,
-                                                         gdouble y,
+GimpRGB             gimp_bilinear_rgba                  (gdouble x,
+                                                         gdouble y,
                                                          GimpRGB *values);
-void                gimp_bilinear_pixels_8              (guchar *dest,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         guint bpp,
-                                                         gboolean has_alpha,
-                                                         guchar **values);
+void                gimp_bilinear_pixels_8              (guchar *dest,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         guint bpp,
+                                                         gboolean has_alpha,
+                                                         guchar **values);
 
@@ -78,9 +130,17 @@

Details

gimp_bilinear ()

-
gdouble             gimp_bilinear                       (gdouble x,
-                                                         gdouble y,
-                                                         gdouble *values);
+
gdouble             gimp_bilinear                       (gdouble x,
+                                                         gdouble y,
+                                                         gdouble *values);

@@ -115,9 +175,17 @@

gimp_bilinear_8 ()

-
guchar              gimp_bilinear_8                     (gdouble x,
-                                                         gdouble y,
-                                                         guchar *values);
+
guchar              gimp_bilinear_8                     (gdouble x,
+                                                         gdouble y,
+                                                         guchar *values);

@@ -152,9 +220,17 @@

gimp_bilinear_16 ()

-
guint16             gimp_bilinear_16                    (gdouble x,
-                                                         gdouble y,
-                                                         guint16 *values);
+
guint16             gimp_bilinear_16                    (gdouble x,
+                                                         gdouble y,
+                                                         guint16 *values);

@@ -189,9 +265,17 @@

gimp_bilinear_32 ()

-
guint32             gimp_bilinear_32                    (gdouble x,
-                                                         gdouble y,
-                                                         guint32 *values);
+
guint32             gimp_bilinear_32                    (gdouble x,
+                                                         gdouble y,
+                                                         guint32 *values);

@@ -226,8 +310,12 @@

gimp_bilinear_rgb ()

-
GimpRGB             gimp_bilinear_rgb                   (gdouble x,
-                                                         gdouble y,
+
GimpRGB             gimp_bilinear_rgb                   (gdouble x,
+                                                         gdouble y,
                                                          GimpRGB *values);

@@ -263,8 +351,12 @@


gimp_bilinear_rgba ()

-
GimpRGB             gimp_bilinear_rgba                  (gdouble x,
-                                                         gdouble y,
+
GimpRGB             gimp_bilinear_rgba                  (gdouble x,
+                                                         gdouble y,
                                                          GimpRGB *values);

@@ -300,18 +392,34 @@


gimp_bilinear_pixels_8 ()

-
void                gimp_bilinear_pixels_8              (guchar *dest,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         guint bpp,
-                                                         gboolean has_alpha,
-                                                         guchar **values);
+
void                gimp_bilinear_pixels_8              (guchar *dest,
+                                                         gdouble x,
+                                                         gdouble y,
+                                                         guint bpp,
+                                                         gboolean has_alpha,
+                                                         guchar **values);

Computes bilinear interpolation of four pixels.

-When has_alpha is FALSE, it's identical to gimp_bilinear_8() on -each channel separately. When has_alpha is TRUE, it handles +When has_alpha is FALSE, it's identical to gimp_bilinear_8() on +each channel separately. When has_alpha is TRUE, it handles alpha channel correctly.

@@ -346,7 +454,9 @@

has_alpha :

- TRUE if the last channel is an alpha channel. + TRUE if the last channel is an alpha channel. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,38 +44,92 @@
                     GimpCMYK;
 void                gimp_cmyk_set                       (GimpCMYK *cmyk,
-                                                         gdouble cyan,
-                                                         gdouble magenta,
-                                                         gdouble yellow,
-                                                         gdouble black);
+                                                         gdouble cyan,
+                                                         gdouble magenta,
+                                                         gdouble yellow,
+                                                         gdouble black);
 void                gimp_cmyk_set_uchar                 (GimpCMYK *cmyk,
-                                                         guchar cyan,
-                                                         guchar magenta,
-                                                         guchar yellow,
-                                                         guchar black);
+                                                         guchar cyan,
+                                                         guchar magenta,
+                                                         guchar yellow,
+                                                         guchar black);
 void                gimp_cmyk_get_uchar                 (const GimpCMYK *cmyk,
-                                                         guchar *cyan,
-                                                         guchar *magenta,
-                                                         guchar *yellow,
-                                                         guchar *black);
+                                                         guchar *cyan,
+                                                         guchar *magenta,
+                                                         guchar *yellow,
+                                                         guchar *black);
 void                gimp_cmyka_set                      (GimpCMYK *cmyka,
-                                                         gdouble cyan,
-                                                         gdouble magenta,
-                                                         gdouble yellow,
-                                                         gdouble black,
-                                                         gdouble alpha);
+                                                         gdouble cyan,
+                                                         gdouble magenta,
+                                                         gdouble yellow,
+                                                         gdouble black,
+                                                         gdouble alpha);
 void                gimp_cmyka_set_uchar                (GimpCMYK *cmyka,
-                                                         guchar cyan,
-                                                         guchar magenta,
-                                                         guchar yellow,
-                                                         guchar black,
-                                                         guchar alpha);
+                                                         guchar cyan,
+                                                         guchar magenta,
+                                                         guchar yellow,
+                                                         guchar black,
+                                                         guchar alpha);
 void                gimp_cmyka_get_uchar                (const GimpCMYK *cmyka,
-                                                         guchar *cyan,
-                                                         guchar *magenta,
-                                                         guchar *yellow,
-                                                         guchar *black,
-                                                         guchar *alpha);
+                                                         guchar *cyan,
+                                                         guchar *magenta,
+                                                         guchar *yellow,
+                                                         guchar *black,
+                                                         guchar *alpha);
 #define             GIMP_TYPE_CMYK
 
@@ -101,10 +155,18 @@

gimp_cmyk_set ()

void                gimp_cmyk_set                       (GimpCMYK *cmyk,
-                                                         gdouble cyan,
-                                                         gdouble magenta,
-                                                         gdouble yellow,
-                                                         gdouble black);
+ gdouble cyan, + gdouble magenta, + gdouble yellow, + gdouble black);

Very basic initialiser for the internal GimpCMYK structure. Channel values are doubles in the range 0 to 1.

@@ -146,10 +208,18 @@

gimp_cmyk_set_uchar ()

void                gimp_cmyk_set_uchar                 (GimpCMYK *cmyk,
-                                                         guchar cyan,
-                                                         guchar magenta,
-                                                         guchar yellow,
-                                                         guchar black);
+ guchar cyan, + guchar magenta, + guchar yellow, + guchar black);

The same as gimp_cmyk_set(), except that channel values are unsigned chars in the range 0 to 255.

@@ -191,10 +261,18 @@

gimp_cmyk_get_uchar ()

void                gimp_cmyk_get_uchar                 (const GimpCMYK *cmyk,
-                                                         guchar *cyan,
-                                                         guchar *magenta,
-                                                         guchar *yellow,
-                                                         guchar *black);
+ guchar *cyan, + guchar *magenta, + guchar *yellow, + guchar *black);

Retrieve individual channel values from a GimpCMYK structure. Channel values are pointers to unsigned chars in the range 0 to 255.

@@ -236,11 +314,21 @@

gimp_cmyka_set ()

void                gimp_cmyka_set                      (GimpCMYK *cmyka,
-                                                         gdouble cyan,
-                                                         gdouble magenta,
-                                                         gdouble yellow,
-                                                         gdouble black,
-                                                         gdouble alpha);
+ gdouble cyan, + gdouble magenta, + gdouble yellow, + gdouble black, + gdouble alpha);

Initialiser for the internal GimpCMYK structure. Channel values are doubles in the range 0 to 1.

@@ -287,11 +375,21 @@

gimp_cmyka_set_uchar ()

void                gimp_cmyka_set_uchar                (GimpCMYK *cmyka,
-                                                         guchar cyan,
-                                                         guchar magenta,
-                                                         guchar yellow,
-                                                         guchar black,
-                                                         guchar alpha);
+ guchar cyan, + guchar magenta, + guchar yellow, + guchar black, + guchar alpha);

The same as gimp_cmyka_set(), except that channel values are unsigned chars in the range 0 to 255.

@@ -338,11 +436,21 @@

gimp_cmyka_get_uchar ()

void                gimp_cmyka_get_uchar                (const GimpCMYK *cmyka,
-                                                         guchar *cyan,
-                                                         guchar *magenta,
-                                                         guchar *yellow,
-                                                         guchar *black,
-                                                         guchar *alpha);
+ guchar *cyan, + guchar *magenta, + guchar *yellow, + guchar *black, + guchar *alpha);

Retrieve individual channel values from a GimpCMYK structure. Channel values are pointers to unsigned chars in the range 0 to 255.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorManaged.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorManaged.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorManaged.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorManaged.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,8 +44,12 @@
                     GimpColorManaged;
                     GimpColorManagedInterface;
-const guint8*       gimp_color_managed_get_icc_profile  (GimpColorManaged *managed,
-                                                         gsize *len);
+const guint8*       gimp_color_managed_get_icc_profile  (GimpColorManaged *managed,
+                                                         gsize *len);
 void                gimp_color_managed_profile_changed  (GimpColorManaged *managed);
 
@@ -85,8 +89,12 @@

gimp_color_managed_get_icc_profile ()

-
const guint8*       gimp_color_managed_get_icc_profile  (GimpColorManaged *managed,
-                                                         gsize *len);
+
const guint8*       gimp_color_managed_get_icc_profile  (GimpColorManaged *managed,
+                                                         gsize *len);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html 2008-10-08 23:32:57.000000000 +0100 @@ -47,7 +47,9 @@ void gimp_rgb_to_hsl (const GimpRGB *rgb, GimpHSL *hsl); void gimp_rgb_to_cmyk (const GimpRGB *rgb, - gdouble pullout, + gdouble pullout, GimpCMYK *cmyk); void gimp_hsv_to_rgb (const GimpHSV *hsv, GimpRGB *rgb); @@ -56,44 +58,120 @@ void gimp_cmyk_to_rgb (const GimpCMYK *cmyk, GimpRGB *rgb); void gimp_rgb_to_hwb (const GimpRGB *rgb, - gdouble *hue, - gdouble *whiteness, - gdouble *blackness); -void gimp_hwb_to_rgb (gdouble hue, - gdouble whiteness, - gdouble blackness, + gdouble *hue, + gdouble *whiteness, + gdouble *blackness); +void gimp_hwb_to_rgb (gdouble hue, + gdouble whiteness, + gdouble blackness, GimpRGB *rgb); -void gimp_rgb_to_hsv_int (gint *red, - gint *green, - gint *blue); -void gimp_hsv_to_rgb_int (gint *hue, - gint *saturation, - gint *value); -void gimp_rgb_to_hsl_int (gint *red, - gint *green, - gint *blue); -void gimp_rgb_to_cmyk_int (gint *red, - gint *green, - gint *blue, - gint *pullout); -void gimp_cmyk_to_rgb_int (gint *cyan, - gint *magenta, - gint *yellow, - gint *black); -gint gimp_rgb_to_l_int (gint red, - gint green, - gint blue); -void gimp_hsl_to_rgb_int (gint *hue, - gint *saturation, - gint *lightness); -void gimp_rgb_to_hsv4 (const guchar *rgb, - gdouble *hue, - gdouble *saturation, - gdouble *value); -void gimp_hsv_to_rgb4 (guchar *rgb, - gdouble hue, - gdouble saturation, - gdouble value); +void gimp_rgb_to_hsv_int (gint *red, + gint *green, + gint *blue); +void gimp_hsv_to_rgb_int (gint *hue, + gint *saturation, + gint *value); +void gimp_rgb_to_hsl_int (gint *red, + gint *green, + gint *blue); +void gimp_rgb_to_cmyk_int (gint *red, + gint *green, + gint *blue, + gint *pullout); +void gimp_cmyk_to_rgb_int (gint *cyan, + gint *magenta, + gint *yellow, + gint *black); +gint gimp_rgb_to_l_int (gint red, + gint green, + gint blue); +void gimp_hsl_to_rgb_int (gint *hue, + gint *saturation, + gint *lightness); +void gimp_rgb_to_hsv4 (const guchar *rgb, + gdouble *hue, + gdouble *saturation, + gdouble *value); +void gimp_hsv_to_rgb4 (guchar *rgb, + gdouble hue, + gdouble saturation, + gdouble value);

@@ -164,7 +242,9 @@

gimp_rgb_to_cmyk ()

void                gimp_rgb_to_cmyk                    (const GimpRGB *rgb,
-                                                         gdouble pullout,
+                                                         gdouble pullout,
                                                          GimpCMYK *cmyk);

Does a naive conversion from RGB to CMYK colorspace. A simple @@ -280,9 +360,15 @@

gimp_rgb_to_hwb ()

void                gimp_rgb_to_hwb                     (const GimpRGB *rgb,
-                                                         gdouble *hue,
-                                                         gdouble *whiteness,
-                                                         gdouble *blackness);
+ gdouble *hue, + gdouble *whiteness, + gdouble *blackness);

Theoretically, hue 0 (pure red) is identical to hue 6 in these transforms. Pure red always maps to 6 in this implementation. Therefore UNDEFINED can @@ -324,9 +410,15 @@


gimp_hwb_to_rgb ()

-
void                gimp_hwb_to_rgb                     (gdouble hue,
-                                                         gdouble whiteness,
-                                                         gdouble blackness,
+
void                gimp_hwb_to_rgb                     (gdouble hue,
+                                                         gdouble whiteness,
+                                                         gdouble blackness,
                                                          GimpRGB *rgb);

H is defined in the range [0, 6] or UNDEFINED, B and W are both in the @@ -363,9 +455,15 @@


gimp_rgb_to_hsv_int ()

-
void                gimp_rgb_to_hsv_int                 (gint *red,
-                                                         gint *green,
-                                                         gint *blue);
+
void                gimp_rgb_to_hsv_int                 (gint *red,
+                                                         gint *green,
+                                                         gint *blue);

The arguments are pointers to int representing channel values in the RGB colorspace, and the values pointed to are all in the range @@ -402,9 +500,15 @@


gimp_hsv_to_rgb_int ()

-
void                gimp_hsv_to_rgb_int                 (gint *hue,
-                                                         gint *saturation,
-                                                         gint *value);
+
void                gimp_hsv_to_rgb_int                 (gint *hue,
+                                                         gint *saturation,
+                                                         gint *value);

The arguments are pointers to int, with the values pointed to in the following ranges: H [0, 360], S [0, 255], V [0, 255]. @@ -439,9 +543,15 @@


gimp_rgb_to_hsl_int ()

-
void                gimp_rgb_to_hsl_int                 (gint *red,
-                                                         gint *green,
-                                                         gint *blue);
+
void                gimp_rgb_to_hsl_int                 (gint *red,
+                                                         gint *green,
+                                                         gint *blue);

The arguments are pointers to int representing channel values in the RGB colorspace, and the values pointed to are all in the range [0, 255]. @@ -477,10 +587,18 @@


gimp_rgb_to_cmyk_int ()

-
void                gimp_rgb_to_cmyk_int                (gint *red,
-                                                         gint *green,
-                                                         gint *blue,
-                                                         gint *pullout);
+
void                gimp_rgb_to_cmyk_int                (gint *red,
+                                                         gint *green,
+                                                         gint *blue,
+                                                         gint *pullout);

Does a naive conversion from RGB to CMYK colorspace. A simple formula that doesn't take any color-profiles into account is used. @@ -520,10 +638,18 @@


gimp_cmyk_to_rgb_int ()

-
void                gimp_cmyk_to_rgb_int                (gint *cyan,
-                                                         gint *magenta,
-                                                         gint *yellow,
-                                                         gint *black);
+
void                gimp_cmyk_to_rgb_int                (gint *cyan,
+                                                         gint *magenta,
+                                                         gint *yellow,
+                                                         gint *black);

Does a naive conversion from CMYK to RGB colorspace. A simple formula that doesn't take any color-profiles into account is used.

@@ -559,9 +685,17 @@

gimp_rgb_to_l_int ()

-
gint                gimp_rgb_to_l_int                   (gint red,
-                                                         gint green,
-                                                         gint blue);
+
gint                gimp_rgb_to_l_int                   (gint red,
+                                                         gint green,
+                                                         gint blue);

Calculates the lightness value of an RGB triplet with the formula L = (max(R, G, B) + min (R, G, B)) / 2

@@ -597,9 +731,15 @@

gimp_hsl_to_rgb_int ()

-
void                gimp_hsl_to_rgb_int                 (gint *hue,
-                                                         gint *saturation,
-                                                         gint *lightness);
+
void                gimp_hsl_to_rgb_int                 (gint *hue,
+                                                         gint *saturation,
+                                                         gint *lightness);

The arguments are pointers to int, with the values pointed to in the following ranges: H [0, 360], L [0, 255], S [0, 255]. @@ -634,10 +774,18 @@


gimp_rgb_to_hsv4 ()

-
void                gimp_rgb_to_hsv4                    (const guchar *rgb,
-                                                         gdouble *hue,
-                                                         gdouble *saturation,
-                                                         gdouble *value);
+
void                gimp_rgb_to_hsv4                    (const guchar *rgb,
+                                                         gdouble *hue,
+                                                         gdouble *saturation,
+                                                         gdouble *value);

@@ -673,10 +821,18 @@


gimp_hsv_to_rgb4 ()

-
void                gimp_hsv_to_rgb4                    (guchar *rgb,
-                                                         gdouble hue,
-                                                         gdouble saturation,
-                                                         gdouble value);
+
void                gimp_hsv_to_rgb4                    (guchar *rgb,
+                                                         gdouble hue,
+                                                         gdouble saturation,
+                                                         gdouble value);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html 2008-10-08 23:32:57.000000000 +0100 @@ -45,15 +45,29 @@ GimpHSV; GimpHSL; void gimp_hsv_set (GimpHSV *hsv, - gdouble hue, - gdouble saturation, - gdouble value); + gdouble hue, + gdouble saturation, + gdouble value); void gimp_hsv_clamp (GimpHSV *hsv); void gimp_hsva_set (GimpHSV *hsva, - gdouble hue, - gdouble saturation, - gdouble value, - gdouble alpha); + gdouble hue, + gdouble saturation, + gdouble value, + gdouble alpha); #define GIMP_TYPE_HSV #define GIMP_TYPE_HSL

@@ -91,9 +105,15 @@

gimp_hsv_set ()

void                gimp_hsv_set                        (GimpHSV *hsv,
-                                                         gdouble hue,
-                                                         gdouble saturation,
-                                                         gdouble value);
+ gdouble hue, + gdouble saturation, + gdouble value);

@@ -147,10 +167,18 @@

gimp_hsva_set ()

void                gimp_hsva_set                       (GimpHSV *hsva,
-                                                         gdouble hue,
-                                                         gdouble saturation,
-                                                         gdouble value,
-                                                         gdouble alpha);
+ gdouble hue, + gdouble saturation, + gdouble value, + gdouble alpha);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html --- gimp-2.6.0/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html 2008-10-08 23:32:57.000000000 +0100 @@ -45,75 +45,169 @@ GimpRGB; enum GimpRGBCompositeMode; void gimp_rgb_set (GimpRGB *rgb, - gdouble red, - gdouble green, - gdouble blue); + gdouble red, + gdouble green, + gdouble blue); void gimp_rgb_set_alpha (GimpRGB *rgb, - gdouble alpha); + gdouble alpha); void gimp_rgb_set_uchar (GimpRGB *rgb, - guchar red, - guchar green, - guchar blue); + guchar red, + guchar green, + guchar blue); void gimp_rgb_get_uchar (const GimpRGB *rgb, - guchar *red, - guchar *green, - guchar *blue); -gboolean gimp_rgb_parse_name (GimpRGB *rgb, - const gchar *name, - gint len); -gboolean gimp_rgb_parse_hex (GimpRGB *rgb, - const gchar *hex, - gint len); -gboolean gimp_rgb_parse_css (GimpRGB *rgb, - const gchar *css, - gint len); -gint gimp_rgb_list_names (const gchar ***names, + guchar *red, + guchar *green, + guchar *blue); +gboolean gimp_rgb_parse_name (GimpRGB *rgb, + const gchar *name, + gint len); +gboolean gimp_rgb_parse_hex (GimpRGB *rgb, + const gchar *hex, + gint len); +gboolean gimp_rgb_parse_css (GimpRGB *rgb, + const gchar *css, + gint len); +gint gimp_rgb_list_names (const gchar ***names, GimpRGB **colors); void gimp_rgb_add (GimpRGB *rgb1, const GimpRGB *rgb2); void gimp_rgb_subtract (GimpRGB *rgb1, const GimpRGB *rgb2); void gimp_rgb_multiply (GimpRGB *rgb1, - gdouble factor); -gdouble gimp_rgb_distance (const GimpRGB *rgb1, + gdouble factor); +gdouble gimp_rgb_distance (const GimpRGB *rgb1, const GimpRGB *rgb2); -gdouble gimp_rgb_max (const GimpRGB *rgb); -gdouble gimp_rgb_min (const GimpRGB *rgb); +gdouble gimp_rgb_max (const GimpRGB *rgb); +gdouble gimp_rgb_min (const GimpRGB *rgb); void gimp_rgb_clamp (GimpRGB *rgb); void gimp_rgb_gamma (GimpRGB *rgb, - gdouble gamma); -gdouble gimp_rgb_luminance (const GimpRGB *rgb); -guchar gimp_rgb_luminance_uchar (const GimpRGB *rgb); -gdouble gimp_rgb_intensity (const GimpRGB *rgb); -guchar gimp_rgb_intensity_uchar (const GimpRGB *rgb); + gdouble gamma); +gdouble gimp_rgb_luminance (const GimpRGB *rgb); +guchar gimp_rgb_luminance_uchar (const GimpRGB *rgb); +gdouble gimp_rgb_intensity (const GimpRGB *rgb); +guchar gimp_rgb_intensity_uchar (const GimpRGB *rgb); void gimp_rgb_composite (GimpRGB *color1, const GimpRGB *color2, GimpRGBCompositeMode mode); void gimp_rgba_set (GimpRGB *rgba, - gdouble red, - gdouble green, - gdouble blue, - gdouble alpha); + gdouble red, + gdouble green, + gdouble blue, + gdouble alpha); void gimp_rgba_set_uchar (GimpRGB *rgba, - guchar red, - guchar green, - guchar blue, - guchar alpha); + guchar red, + guchar green, + guchar blue, + guchar alpha); void gimp_rgba_get_uchar (const GimpRGB *rgba, - guchar *red, - guchar *green, - guchar *blue, - guchar *alpha); -gboolean gimp_rgba_parse_css (GimpRGB *rgba, - const gchar *css, - gint len); + guchar *red, + guchar *green, + guchar *blue, + guchar *alpha); +gboolean gimp_rgba_parse_css (GimpRGB *rgba, + const gchar *css, + gint len); void gimp_rgba_add (GimpRGB *rgba1, const GimpRGB *rgba2); void gimp_rgba_subtract (GimpRGB *rgba1, const GimpRGB *rgba2); void gimp_rgba_multiply (GimpRGB *rgba, - gdouble factor); -gdouble gimp_rgba_distance (const GimpRGB *rgba1, + gdouble factor); +gdouble gimp_rgba_distance (const GimpRGB *rgba1, const GimpRGB *rgba2); #define GIMP_RGB_LUMINANCE (r,g,b) #define GIMP_RGB_LUMINANCE_RED @@ -125,17 +219,37 @@ #define GIMP_RGB_INTENSITY_BLUE #define GIMP_TYPE_RGB #define GIMP_TYPE_PARAM_RGB -GParamSpec* gimp_param_spec_rgb (const gchar *name, - const gchar *nick, - const gchar *blurb, - gboolean has_alpha, +GParamSpec* gimp_param_spec_rgb (const gchar *name, + const gchar *nick, + const gchar *blurb, + gboolean has_alpha, const GimpRGB *default_value, - GParamFlags flags); -gboolean gimp_param_spec_rgb_has_alpha (GParamSpec *pspec); + GParamFlags flags); +gboolean gimp_param_spec_rgb_has_alpha (GParamSpec *pspec); #define GIMP_VALUE_HOLDS_RGB (value) -void gimp_value_get_rgb (const GValue *value, +void gimp_value_get_rgb (const GValue *value, GimpRGB *rgb); -void gimp_value_set_rgb (GValue *value, +void gimp_value_set_rgb (GValue *value, const GimpRGB *rgb);
@@ -175,9 +289,15 @@

gimp_rgb_set ()

void                gimp_rgb_set                        (GimpRGB *rgb,
-                                                         gdouble red,
-                                                         gdouble green,
-                                                         gdouble blue);
+ gdouble red, + gdouble green, + gdouble blue);

Sets the red, green and blue components of rgb and leaves the alpha component unchanged. The color values should be between 0.0 @@ -216,7 +336,9 @@

gimp_rgb_set_alpha ()

void                gimp_rgb_set_alpha                  (GimpRGB *rgb,
-                                                         gdouble alpha);
+ gdouble alpha);

Sets the alpha component of rgb and leaves the RGB components unchanged.

@@ -242,9 +364,15 @@

gimp_rgb_set_uchar ()

void                gimp_rgb_set_uchar                  (GimpRGB *rgb,
-                                                         guchar red,
-                                                         guchar green,
-                                                         guchar blue);
+ guchar red, + guchar green, + guchar blue);

Sets the red, green and blue components of rgb from 8bit values (0 to 255) and leaves the alpha component unchanged.

@@ -281,9 +409,15 @@

gimp_rgb_get_uchar ()

void                gimp_rgb_get_uchar                  (const GimpRGB *rgb,
-                                                         guchar *red,
-                                                         guchar *green,
-                                                         guchar *blue);
+ guchar *red, + guchar *green, + guchar *blue);

@@ -318,9 +452,15 @@

gimp_rgb_parse_name ()

-
gboolean            gimp_rgb_parse_name                 (GimpRGB *rgb,
-                                                         const gchar *name,
-                                                         gint len);
+
gboolean            gimp_rgb_parse_name                 (GimpRGB *rgb,
+                                                         const gchar *name,
+                                                         gint len);

Attempts to parse a color name. This function accepts SVG 1.0 color keywords.

@@ -349,8 +489,12 @@

Returns :

- TRUE if name was parsed successfully and rgb has - been set, FALSE otherwise + TRUE if name was parsed successfully and rgb has + been set, FALSE otherwise @@ -362,9 +506,15 @@

gimp_rgb_parse_hex ()

-
gboolean            gimp_rgb_parse_hex                  (GimpRGB *rgb,
-                                                         const gchar *hex,
-                                                         gint len);
+
gboolean            gimp_rgb_parse_hex                  (GimpRGB *rgb,
+                                                         const gchar *hex,
+                                                         gint len);

Attempts to parse a string describing an RGB color in hexadecimal notation (optionally prefixed with a '#'). @@ -394,8 +544,12 @@

Returns :

- TRUE if hex was parsed successfully and rgb has - been set, FALSE otherwise + TRUE if hex was parsed successfully and rgb has + been set, FALSE otherwise @@ -407,9 +561,15 @@

gimp_rgb_parse_css ()

-
gboolean            gimp_rgb_parse_css                  (GimpRGB *rgb,
-                                                         const gchar *css,
-                                                         gint len);
+
gboolean            gimp_rgb_parse_css                  (GimpRGB *rgb,
+                                                         const gchar *css,
+                                                         gint len);

Attempts to parse a string describing an RGB color in CSS notation. This can be either a numerical representation @@ -443,8 +603,12 @@

Returns :

- TRUE if css was parsed successfully and rgb has been - set, FALSE otherwise + TRUE if css was parsed successfully and rgb has been + set, FALSE otherwise @@ -456,7 +620,11 @@

gimp_rgb_list_names ()

-
gint                gimp_rgb_list_names                 (const gchar ***names,
+
gint                gimp_rgb_list_names                 (const gchar ***names,
                                                          GimpRGB **colors);

Allows to retrieve the list of SVG 1.0 color @@ -464,7 +632,9 @@

The returned strings are const and must not be freed. Only the two -arrays are allocated dynamically. You must call g_free() on the +arrays are allocated dynamically. You must call g_free() on the names and colors arrays when they are not any longer needed.

@@ -550,7 +720,9 @@

gimp_rgb_multiply ()

void                gimp_rgb_multiply                   (GimpRGB *rgb1,
-                                                         gdouble factor);
+ gdouble factor);

@@ -575,7 +747,9 @@

gimp_rgb_distance ()

-
gdouble             gimp_rgb_distance                   (const GimpRGB *rgb1,
+
gdouble             gimp_rgb_distance                   (const GimpRGB *rgb1,
                                                          const GimpRGB *rgb2);

@@ -606,7 +780,9 @@


gimp_rgb_max ()

-
gdouble             gimp_rgb_max                        (const GimpRGB *rgb);
+
gdouble             gimp_rgb_max                        (const GimpRGB *rgb);

@@ -631,7 +807,9 @@

gimp_rgb_min ()

-
gdouble             gimp_rgb_min                        (const GimpRGB *rgb);
+
gdouble             gimp_rgb_min                        (const GimpRGB *rgb);

@@ -675,7 +853,9 @@

gimp_rgb_gamma ()

void                gimp_rgb_gamma                      (GimpRGB *rgb,
-                                                         gdouble gamma);
+ gdouble gamma);

@@ -700,7 +880,9 @@

gimp_rgb_luminance ()

-
gdouble             gimp_rgb_luminance                  (const GimpRGB *rgb);
+
gdouble             gimp_rgb_luminance                  (const GimpRGB *rgb);

@@ -728,7 +910,9 @@


gimp_rgb_luminance_uchar ()

-
guchar              gimp_rgb_luminance_uchar            (const GimpRGB *rgb);
+
guchar              gimp_rgb_luminance_uchar            (const GimpRGB *rgb);

@@ -756,7 +940,9 @@


gimp_rgb_intensity ()

-
gdouble             gimp_rgb_intensity                  (const GimpRGB *rgb);
+
gdouble             gimp_rgb_intensity                  (const GimpRGB *rgb);

Warning

gimp_rgb_intensity is deprecated and should not be used in newly-written code.

@@ -785,7 +971,9 @@

gimp_rgb_intensity_uchar ()

-
guchar              gimp_rgb_intensity_uchar            (const GimpRGB *rgb);
+
guchar              gimp_rgb_intensity_uchar            (const GimpRGB *rgb);

Warning

gimp_rgb_intensity_uchar is deprecated and should not be used in newly-written code.

@@ -847,10 +1035,18 @@

gimp_rgba_set ()

void                gimp_rgba_set                       (GimpRGB *rgba,
-                                                         gdouble red,
-                                                         gdouble green,
-                                                         gdouble blue,
-                                                         gdouble alpha);
+ gdouble red, + gdouble green, + gdouble blue, + gdouble alpha);

Sets the red, green, blue and alpha components of rgb. The values should be between 0.0 and 1.0 but there is no check to enforce this @@ -893,10 +1089,18 @@

gimp_rgba_set_uchar ()

void                gimp_rgba_set_uchar                 (GimpRGB *rgba,
-                                                         guchar red,
-                                                         guchar green,
-                                                         guchar blue,
-                                                         guchar alpha);
+ guchar red, + guchar green, + guchar blue, + guchar alpha);

Sets the red, green, blue and alpha components of rgb from 8bit values (0 to 255).

@@ -938,10 +1142,18 @@

gimp_rgba_get_uchar ()

void                gimp_rgba_get_uchar                 (const GimpRGB *rgba,
-                                                         guchar *red,
-                                                         guchar *green,
-                                                         guchar *blue,
-                                                         guchar *alpha);
+ guchar *red, + guchar *green, + guchar *blue, + guchar *alpha);

@@ -981,9 +1193,15 @@

gimp_rgba_parse_css ()

-
gboolean            gimp_rgba_parse_css                 (GimpRGB *rgba,
-                                                         const gchar *css,
-                                                         gint len);
+
gboolean            gimp_rgba_parse_css                 (GimpRGB *rgba,
+                                                         const gchar *css,
+                                                         gint len);

Similar to gimp_rgb_parse_css() but handles RGB colors with alpha channel in the numerical CSS notation (rgba(255,0,0,255) @@ -1015,8 +1233,12 @@

Returns :

- TRUE if css was parsed successfully and rgb has been - set, FALSE otherwise + TRUE if css was parsed successfully and rgb has been + set, FALSE otherwise @@ -1081,7 +1303,9 @@

gimp_rgba_multiply ()

void                gimp_rgba_multiply                  (GimpRGB *rgba,
-                                                         gdouble factor);
+ gdouble factor);

@@ -1106,7 +1330,9 @@

gimp_rgba_distance ()

-
gdouble             gimp_rgba_distance                  (const GimpRGB *rgba1,
+
gdouble             gimp_rgba_distance                  (const GimpRGB *rgba1,
                                                          const GimpRGB *rgba2);

@@ -1271,7 +1497,11 @@

#define GIMP_TYPE_RGB               (gimp_rgb_get_type ())
 

-GIMP_TYPE_RGB is a GType derived from G_TYPE_BOXED. +GIMP_TYPE_RGB is a GType derived from G_TYPE_BOXED.


@@ -1286,15 +1516,29 @@

gimp_param_spec_rgb ()

-
GParamSpec*         gimp_param_spec_rgb                 (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
-                                                         gboolean has_alpha,
+
GParamSpec*         gimp_param_spec_rgb                 (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
+                                                         gboolean has_alpha,
                                                          const GimpRGB *default_value,
-                                                         GParamFlags flags);
+ GParamFlags flags);

Creates a param spec to hold an GimpRGB value. -See g_param_spec_internal() for more information.

+See g_param_spec_internal() for more information.

@@ -1318,7 +1562,9 @@

has_alpha :

- TRUE if the alpha channel has relevance. + TRUE if the alpha channel has relevance. @@ -1328,12 +1574,16 @@

flags :

- a combination of GParamFlags + a combination of GParamFlags

Returns :

- a newly allocated GParamSpec instance + a newly allocated GParamSpec instance @@ -1345,7 +1595,11 @@

gimp_param_spec_rgb_has_alpha ()

-
gboolean            gimp_param_spec_rgb_has_alpha       (GParamSpec *pspec);
+
gboolean            gimp_param_spec_rgb_has_alpha       (GParamSpec *pspec);

@@ -1356,12 +1610,16 @@

pspec :

- a GParamSpec to hold an GimpRGB value. + a GParamSpec to hold an GimpRGB value.

Returns :

- TRUE if the alpha channel is relevant. + TRUE if the alpha channel is relevant. @@ -1392,7 +1650,9 @@

gimp_value_get_rgb ()

-
void                gimp_value_get_rgb                  (const GValue *value,
+
void                gimp_value_get_rgb                  (const GValue *value,
                                                          GimpRGB *rgb);

@@ -1418,7 +1678,9 @@


gimp_value_set_rgb ()

-
void                gimp_value_set_rgb                  (GValue *value,
+
void                gimp_value_set_rgb                  (GValue *value,
                                                          const GimpRGB *rgb);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/GimpColorConfig.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/GimpColorConfig.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/GimpColorConfig.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/GimpColorConfig.html 2008-10-08 23:32:57.000000000 +0100 @@ -56,7 +56,9 @@

Object Hierarchy

-  GObject
+  GObject
    +----GimpColorConfig
 
@@ -70,9 +72,13 @@

Properties

   "cmyk-profile"             GimpConfigPath        : Read / Write / Construct
-  "display-module"           gchar*                : Read / Write / Construct
+  "display-module"           gchar*                : Read / Write / Construct
   "display-profile"          GimpConfigPath        : Read / Write / Construct
-  "display-profile-from-gdk" gboolean              : Read / Write / Construct
+  "display-profile-from-gdk" gboolean              : Read / Write / Construct
   "display-rendering-intent" GimpColorRenderingIntent  : Read / Write / Construct
   "mode"                     GimpColorManagementMode  : Read / Write / Construct
   "out-of-gamut-color"       GimpRGB*              : Read / Write / Construct
   "printer-profile"          GimpConfigPath        : Read / Write / Construct
   "rgb-profile"              GimpConfigPath        : Read / Write / Construct
-  "simulation-gamut-check"   gboolean              : Read / Write / Construct
+  "simulation-gamut-check"   gboolean              : Read / Write / Construct
   "simulation-rendering-intent" GimpColorRenderingIntent  : Read / Write / Construct
 
@@ -155,7 +163,9 @@

The "display-module" property

-
  "display-module"           gchar*                : Read / Write / Construct
+
  "display-module"           gchar*                : Read / Write / Construct

Default value: "CdisplayLcms"

@@ -169,7 +179,9 @@

The "display-profile-from-gdk" property

-
  "display-profile-from-gdk" gboolean              : Read / Write / Construct
+
  "display-profile-from-gdk" gboolean              : Read / Write / Construct

When enabled, GIMP will try to use the display color profile from the windowing system. The configured monitor profile is then only used as a fallback.

Default value: FALSE

@@ -212,7 +224,9 @@

The "simulation-gamut-check" property

-
  "simulation-gamut-check"   gboolean              : Read / Write / Construct
+
  "simulation-gamut-check"   gboolean              : Read / Write / Construct

When enabled, the print simulation will mark colors which can not be represented in the target color space.

Default value: FALSE

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/index.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/index.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/index.html 2008-10-08 23:32:57.000000000 +0100 @@ -21,7 +21,7 @@

- for GIMP 2.6.0 + for GIMP 2.6.1

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-deserialize.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-deserialize.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-deserialize.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-deserialize.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,12 +42,24 @@

Synopsis

-gboolean            gimp_config_deserialize_properties  (GimpConfig *config,
-                                                         GScanner *scanner,
-                                                         gint nest_level);
-GTokenType          gimp_config_deserialize_property    (GimpConfig *config,
-                                                         GScanner *scanner,
-                                                         gint nest_level);
+gboolean            gimp_config_deserialize_properties  (GimpConfig *config,
+                                                         GScanner *scanner,
+                                                         gint nest_level);
+GTokenType          gimp_config_deserialize_property    (GimpConfig *config,
+                                                         GScanner *scanner,
+                                                         gint nest_level);
 
@@ -61,9 +73,15 @@

Details

gimp_config_deserialize_properties ()

-
gboolean            gimp_config_deserialize_properties  (GimpConfig *config,
-                                                         GScanner *scanner,
-                                                         gint nest_level);
+
gboolean            gimp_config_deserialize_properties  (GimpConfig *config,
+                                                         GScanner *scanner,
+                                                         gint nest_level);

This function uses the scanner to configure the properties of config.

@@ -79,7 +97,9 @@

scanner :

- a GScanner. + a GScanner. @@ -89,7 +109,11 @@

Returns :

- TRUE on success, FALSE otherwise. + TRUE on success, FALSE otherwise. @@ -101,9 +125,15 @@

gimp_config_deserialize_property ()

-
GTokenType          gimp_config_deserialize_property    (GimpConfig *config,
-                                                         GScanner *scanner,
-                                                         gint nest_level);
+
GTokenType          gimp_config_deserialize_property    (GimpConfig *config,
+                                                         GScanner *scanner,
+                                                         gint nest_level);

This function deserializes a single property of config. You shouldn't need to call this function directly. If possible, use @@ -121,7 +151,9 @@

scanner :

- a GScanner. + a GScanner. @@ -132,7 +164,9 @@

Returns :

G_TOKEN_RIGHT_PAREN on success, otherwise the -expected GTokenType or G_TOKEN_NONE if the expected token was +expected GTokenType or G_TOKEN_NONE if the expected token was found but couldn't be parsed. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html 2008-10-08 23:32:57.000000000 +0100 @@ -44,7 +44,9 @@
 enum                GimpConfigError;
 #define             GIMP_CONFIG_ERROR
-GQuark              gimp_config_error_quark             (void);
+GQuark              gimp_config_error_quark             (void);
 
@@ -82,7 +84,9 @@

gimp_config_error_quark ()

-
GQuark              gimp_config_error_quark             (void);
+
GQuark              gimp_config_error_quark             (void);

This function is never called directly. Use GIMP_CONFIG_ERROR() instead.

@@ -92,7 +96,9 @@

Returns :

- the GQuark that defines the GimpConfig error domain. + the GQuark that defines the GimpConfig error domain. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html 2008-10-08 23:32:57.000000000 +0100 @@ -50,36 +50,92 @@
                     GimpConfig;
                     GimpConfigInterface;
-gboolean            gimp_config_serialize_to_file       (GimpConfig *config,
-                                                         const gchar *filename,
-                                                         const gchar *header,
-                                                         const gchar *footer,
-                                                         gpointer data,
-                                                         GError **error);
-gboolean            gimp_config_serialize_to_fd         (GimpConfig *config,
-                                                         gint fd,
-                                                         gpointer data);
-gchar*              gimp_config_serialize_to_string     (GimpConfig *config,
-                                                         gpointer data);
-gboolean            gimp_config_deserialize_file        (GimpConfig *config,
-                                                         const gchar *filename,
-                                                         gpointer data,
-                                                         GError **error);
-gboolean            gimp_config_deserialize_string      (GimpConfig *config,
-                                                         const gchar *text,
-                                                         gint text_len,
-                                                         gpointer data,
-                                                         GError **error);
-gboolean            gimp_config_deserialize_return      (GScanner *scanner,
-                                                         GTokenType expected_token,
-                                                         gint nest_level);
-gpointer            gimp_config_duplicate               (GimpConfig *config);
-gboolean            gimp_config_is_equal_to             (GimpConfig *a,
+gboolean            gimp_config_serialize_to_file       (GimpConfig *config,
+                                                         const gchar *filename,
+                                                         const gchar *header,
+                                                         const gchar *footer,
+                                                         gpointer data,
+                                                         GError **error);
+gboolean            gimp_config_serialize_to_fd         (GimpConfig *config,
+                                                         gint fd,
+                                                         gpointer data);
+gchar*              gimp_config_serialize_to_string     (GimpConfig *config,
+                                                         gpointer data);
+gboolean            gimp_config_deserialize_file        (GimpConfig *config,
+                                                         const gchar *filename,
+                                                         gpointer data,
+                                                         GError **error);
+gboolean            gimp_config_deserialize_string      (GimpConfig *config,
+                                                         const gchar *text,
+                                                         gint text_len,
+                                                         gpointer data,
+                                                         GError **error);
+gboolean            gimp_config_deserialize_return      (GScanner *scanner,
+                                                         GTokenType expected_token,
+                                                         gint nest_level);
+gpointer            gimp_config_duplicate               (GimpConfig *config);
+gboolean            gimp_config_is_equal_to             (GimpConfig *a,
                                                          GimpConfig *b);
 void                gimp_config_reset                   (GimpConfig *config);
-gboolean            gimp_config_copy                    (GimpConfig *src,
+gboolean            gimp_config_copy                    (GimpConfig *src,
                                                          GimpConfig *dest,
-                                                         GParamFlags flags);
+                                                         GParamFlags flags);
 
@@ -93,7 +149,9 @@

Prerequisites

GimpConfigInterface requires - GObject.

+ GObject.

Known Implementations

@@ -128,12 +186,24 @@

gimp_config_serialize_to_file ()

-
gboolean            gimp_config_serialize_to_file       (GimpConfig *config,
-                                                         const gchar *filename,
-                                                         const gchar *header,
-                                                         const gchar *footer,
-                                                         gpointer data,
-                                                         GError **error);
+
gboolean            gimp_config_serialize_to_file       (GimpConfig *config,
+                                                         const gchar *filename,
+                                                         const gchar *header,
+                                                         const gchar *footer,
+                                                         gpointer data,
+                                                         GError **error);

Serializes the object properties of config to the file specified by filename. If a file with that name already exists, it is @@ -147,7 +217,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface. @@ -177,7 +249,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise. + TRUE if serialization succeeded, FALSE otherwise. @@ -189,9 +265,15 @@

gimp_config_serialize_to_fd ()

-
gboolean            gimp_config_serialize_to_fd         (GimpConfig *config,
-                                                         gint fd,
-                                                         gpointer data);
+
gboolean            gimp_config_serialize_to_fd         (GimpConfig *config,
+                                                         gint fd,
+                                                         gpointer data);

Serializes the object properties of config to the given file descriptor.

@@ -203,7 +285,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface. @@ -218,7 +302,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise. + TRUE if serialization succeeded, FALSE otherwise. @@ -230,8 +318,12 @@

gimp_config_serialize_to_string ()

-
gchar*              gimp_config_serialize_to_string     (GimpConfig *config,
-                                                         gpointer data);
+
gchar*              gimp_config_serialize_to_string     (GimpConfig *config,
+                                                         gpointer data);

Serializes the object properties of config to a string.

@@ -242,7 +334,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface. @@ -264,14 +358,24 @@

gimp_config_deserialize_file ()

-
gboolean            gimp_config_deserialize_file        (GimpConfig *config,
-                                                         const gchar *filename,
-                                                         gpointer data,
-                                                         GError **error);
+
gboolean            gimp_config_deserialize_file        (GimpConfig *config,
+                                                         const gchar *filename,
+                                                         gpointer data,
+                                                         GError **error);

Opens the file specified by filename, reads configuration data from it and configures config accordingly. Basically this function -creates a properly configured GScanner for you and calls the +creates a properly configured GScanner for you and calls the deserialize function of the config's GimpConfigInterface.

@@ -281,7 +385,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface. @@ -301,7 +407,11 @@

Returns :

- TRUE if deserialization succeeded, FALSE otherwise. + TRUE if deserialization succeeded, FALSE otherwise. @@ -313,14 +423,26 @@

gimp_config_deserialize_string ()

-
gboolean            gimp_config_deserialize_string      (GimpConfig *config,
-                                                         const gchar *text,
-                                                         gint text_len,
-                                                         gpointer data,
-                                                         GError **error);
+
gboolean            gimp_config_deserialize_string      (GimpConfig *config,
+                                                         const gchar *text,
+                                                         gint text_len,
+                                                         gpointer data,
+                                                         GError **error);

Configures config from text. Basically this function creates a -properly configured GScanner for you and calls the deserialize +properly configured GScanner for you and calls the deserialize function of the config's GimpConfigInterface.

@@ -330,7 +452,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface. @@ -355,7 +479,11 @@

Returns :

- TRUE if deserialization succeeded, FALSE otherwise. + TRUE if deserialization succeeded, FALSE otherwise. @@ -367,9 +495,17 @@

gimp_config_deserialize_return ()

-
gboolean            gimp_config_deserialize_return      (GScanner *scanner,
-                                                         GTokenType expected_token,
-                                                         gint nest_level);
+
gboolean            gimp_config_deserialize_return      (GScanner *scanner,
+                                                         GTokenType expected_token,
+                                                         gint nest_level);

@@ -407,7 +543,9 @@


gimp_config_duplicate ()

-
gpointer            gimp_config_duplicate               (GimpConfig *config);
+
gpointer            gimp_config_duplicate               (GimpConfig *config);

Creates a copy of the passed object by copying all object properties. The default implementation of the GimpConfigInterface @@ -421,7 +559,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface. @@ -438,7 +578,9 @@

gimp_config_is_equal_to ()

-
gboolean            gimp_config_is_equal_to             (GimpConfig *a,
+
gboolean            gimp_config_is_equal_to             (GimpConfig *a,
                                                          GimpConfig *b);

Compares the two objects. The default implementation of the @@ -453,17 +595,23 @@

a :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface.

b :

- another GObject of the same type as a. + another GObject of the same type as a.

Returns :

- TRUE if the two objects are equal. + TRUE if the two objects are equal. @@ -487,7 +635,9 @@

config :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface.
@@ -497,9 +647,13 @@

gimp_config_copy ()

-
gboolean            gimp_config_copy                    (GimpConfig *src,
+
gboolean            gimp_config_copy                    (GimpConfig *src,
                                                          GimpConfig *dest,
-                                                         GParamFlags flags);
+ GParamFlags flags);

Compares all read- and write-able properties from src and dest that have all flags set. Differing values are then copied from @@ -515,12 +669,16 @@

src :

- a GObject that implements the GimpConfigInterface. + a GObject that implements the GimpConfigInterface.

dest :

- another GObject of the same type as a. + another GObject of the same type as a. @@ -530,7 +688,11 @@

Returns :

- TRUE if dest was modified, FALSE otherwise + TRUE if dest was modified, FALSE otherwise diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-path.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-path.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-path.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-path.html 2008-10-08 23:32:57.000000000 +0100 @@ -43,19 +43,53 @@

Synopsis

 enum                GimpConfigPathType;
-GParamSpec*         gimp_param_spec_config_path         (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
+GParamSpec*         gimp_param_spec_config_path         (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
                                                          GimpConfigPathType type,
-                                                         const gchar *default_value,
-                                                         GParamFlags flags);
-GimpConfigPathType  gimp_param_spec_config_path_type    (GParamSpec *pspec);
-gchar*              gimp_config_path_expand             (const gchar *path,
-                                                         gboolean recode,
-                                                         GError **error);
-gchar*              gimp_config_build_data_path         (const gchar *name);
-gchar*              gimp_config_build_writable_path     (const gchar *name);
-gchar*              gimp_config_build_plug_in_path      (const gchar *name);
+                                                         const gchar *default_value,
+                                                         GParamFlags flags);
+GimpConfigPathType  gimp_param_spec_config_path_type    (GParamSpec *pspec);
+gchar*              gimp_config_path_expand             (const gchar *path,
+                                                         gboolean recode,
+                                                         GError **error);
+gchar*              gimp_config_build_data_path         (const gchar *name);
+gchar*              gimp_config_build_writable_path     (const gchar *name);
+gchar*              gimp_config_build_plug_in_path      (const gchar *name);
 #define             GIMP_VALUE_HOLDS_CONFIG_PATH        (value)
 
@@ -84,16 +118,30 @@

gimp_param_spec_config_path ()

-
GParamSpec*         gimp_param_spec_config_path         (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
+
GParamSpec*         gimp_param_spec_config_path         (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
                                                          GimpConfigPathType type,
-                                                         const gchar *default_value,
-                                                         GParamFlags flags);
+ const gchar *default_value, + GParamFlags flags);

Creates a param spec to hold a filename, dir name, or list of file or dir names. -See g_param_spec_internal() for more information.

+See g_param_spec_internal() for more information.

@@ -127,12 +175,16 @@

flags :

- a combination of GParamFlags + a combination of GParamFlags

Returns :

- a newly allocated GParamSpec instance + a newly allocated GParamSpec instance @@ -144,7 +196,9 @@

gimp_param_spec_config_path_type ()

-
GimpConfigPathType  gimp_param_spec_config_path_type    (GParamSpec *pspec);
+
GimpConfigPathType  gimp_param_spec_config_path_type    (GParamSpec *pspec);

Tells whether the path param encodes a filename, dir name, or list of file or dir names.

@@ -156,7 +210,9 @@

pspec :

- A GParamSpec for a path param + A GParamSpec for a path param @@ -173,9 +229,17 @@

gimp_config_path_expand ()

-
gchar*              gimp_config_path_expand             (const gchar *path,
-                                                         gboolean recode,
-                                                         GError **error);
+
gchar*              gimp_config_path_expand             (const gchar *path,
+                                                         gboolean recode,
+                                                         GError **error);

Paths as stored in the gimprc have to be treated special. The string may contain special identifiers such as for example @@ -219,7 +283,11 @@


gimp_config_build_data_path ()

-
gchar*              gimp_config_build_data_path         (const gchar *name);
+
gchar*              gimp_config_build_data_path         (const gchar *name);

Creates a search path as it is used in the gimprc file. The path returned by gimp_config_build_data_path() includes a directory @@ -257,7 +325,11 @@


gimp_config_build_writable_path ()

-
gchar*              gimp_config_build_writable_path     (const gchar *name);
+
gchar*              gimp_config_build_writable_path     (const gchar *name);

Creates a search path as it is used in the gimprc file. The path returned by gimp_config_build_writable_path() is just the writable @@ -294,7 +366,11 @@


gimp_config_build_plug_in_path ()

-
gchar*              gimp_config_build_plug_in_path      (const gchar *name);
+
gchar*              gimp_config_build_plug_in_path      (const gchar *name);

Creates a search path as it is used in the gimprc file. The path returned by gimp_config_build_plug_in_path() includes a directory diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-serialize.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-serialize.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-serialize.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-serialize.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,21 +42,41 @@

Synopsis

-gboolean            gimp_config_serialize_properties    (GimpConfig *config,
+gboolean            gimp_config_serialize_properties    (GimpConfig *config,
                                                          GimpConfigWriter *writer);
-gboolean            gimp_config_serialize_changed_properties
+gboolean            gimp_config_serialize_changed_properties
                                                         (GimpConfig *config,
                                                          GimpConfigWriter *writer);
-gboolean            gimp_config_serialize_property      (GimpConfig *config,
-                                                         GParamSpec *param_spec,
+gboolean            gimp_config_serialize_property      (GimpConfig *config,
+                                                         GParamSpec *param_spec,
                                                          GimpConfigWriter *writer);
-gboolean            gimp_config_serialize_property_by_name
+gboolean            gimp_config_serialize_property_by_name
                                                         (GimpConfig *config,
-                                                         const gchar *prop_name,
+                                                         const gchar *prop_name,
                                                          GimpConfigWriter *writer);
-gboolean            gimp_config_serialize_value         (const GValue *value,
-                                                         GString *str,
-                                                         gboolean escaped);
+gboolean            gimp_config_serialize_value         (const GValue *value,
+                                                         GString *str,
+                                                         gboolean escaped);
 
@@ -70,7 +90,9 @@

Details

gimp_config_serialize_properties ()

-
gboolean            gimp_config_serialize_properties    (GimpConfig *config,
+
gboolean            gimp_config_serialize_properties    (GimpConfig *config,
                                                          GimpConfigWriter *writer);

This function writes all object properties to the writer.

@@ -92,7 +114,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise + TRUE if serialization succeeded, FALSE otherwise @@ -104,7 +130,9 @@

gimp_config_serialize_changed_properties ()

-
gboolean            gimp_config_serialize_changed_properties
+
gboolean            gimp_config_serialize_changed_properties
                                                         (GimpConfig *config,
                                                          GimpConfigWriter *writer);

@@ -128,7 +156,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise + TRUE if serialization succeeded, FALSE otherwise @@ -140,8 +172,12 @@

gimp_config_serialize_property ()

-
gboolean            gimp_config_serialize_property      (GimpConfig *config,
-                                                         GParamSpec *param_spec,
+
gboolean            gimp_config_serialize_property      (GimpConfig *config,
+                                                         GParamSpec *param_spec,
                                                          GimpConfigWriter *writer);

This function serializes a single object property to the writer.

@@ -158,7 +194,9 @@

param_spec :

- a GParamSpec. + a GParamSpec. @@ -168,7 +206,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise + TRUE if serialization succeeded, FALSE otherwise @@ -180,9 +222,13 @@

gimp_config_serialize_property_by_name ()

-
gboolean            gimp_config_serialize_property_by_name
+
gboolean            gimp_config_serialize_property_by_name
                                                         (GimpConfig *config,
-                                                         const gchar *prop_name,
+                                                         const gchar *prop_name,
                                                          GimpConfigWriter *writer);

This function serializes a single object property to the writer.

@@ -209,7 +255,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise + TRUE if serialization succeeded, FALSE otherwise @@ -221,11 +271,21 @@

gimp_config_serialize_value ()

-
gboolean            gimp_config_serialize_value         (const GValue *value,
-                                                         GString *str,
-                                                         gboolean escaped);
-

-This utility function appends a string representation of GValue to str.

+
gboolean            gimp_config_serialize_value         (const GValue *value,
+                                                         GString *str,
+                                                         gboolean escaped);
+

+This utility function appends a string representation of GValue to str.

@@ -234,7 +294,9 @@

value :

- a GValue. + a GValue. @@ -249,7 +311,11 @@

Returns :

- TRUE if serialization succeeded, FALSE otherwise. + TRUE if serialization succeeded, FALSE otherwise. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-utils.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-utils.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-utils.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-gimpconfig-utils.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,17 +42,43 @@

Synopsis

-GList*              gimp_config_diff                    (GObject *a,
-                                                         GObject *b,
-                                                         GParamFlags flags);
-gboolean            gimp_config_sync                    (GObject *src,
-                                                         GObject *dest,
-                                                         GParamFlags flags);
-void                gimp_config_reset_properties        (GObject *object);
-void                gimp_config_reset_property          (GObject *object,
-                                                         const gchar *property_name);
-void                gimp_config_string_append_escaped   (GString *string,
-                                                         const gchar *val);
+GList*              gimp_config_diff                    (GObject *a,
+                                                         GObject *b,
+                                                         GParamFlags flags);
+gboolean            gimp_config_sync                    (GObject *src,
+                                                         GObject *dest,
+                                                         GParamFlags flags);
+void                gimp_config_reset_properties        (GObject *object);
+void                gimp_config_reset_property          (GObject *object,
+                                                         const gchar *property_name);
+void                gimp_config_string_append_escaped   (GString *string,
+                                                         const gchar *val);
 
@@ -66,9 +92,17 @@

Details

gimp_config_diff ()

-
GList*              gimp_config_diff                    (GObject *a,
-                                                         GObject *b,
-                                                         GParamFlags flags);
+
GList*              gimp_config_diff                    (GObject *a,
+                                                         GObject *b,
+                                                         GParamFlags flags);

Compares all properties of a and b that have all flags set. If flags is 0, all properties are compared. @@ -85,12 +119,16 @@

a :

- a GObject + a GObject

b :

- another GObject object + another GObject object @@ -112,9 +150,17 @@

gimp_config_sync ()

-
gboolean            gimp_config_sync                    (GObject *src,
-                                                         GObject *dest,
-                                                         GParamFlags flags);
+
gboolean            gimp_config_sync                    (GObject *src,
+                                                         GObject *dest,
+                                                         GParamFlags flags);

Compares all read- and write-able properties from src and dest that have all flags set. Differing values are then copied from @@ -135,12 +181,16 @@

src :

- a GObject + a GObject

dest :

- another GObject + another GObject @@ -150,7 +200,11 @@

Returns :

- TRUE if dest was modified, FALSE otherwise + TRUE if dest was modified, FALSE otherwise @@ -162,10 +216,14 @@

gimp_config_reset_properties ()

-
void                gimp_config_reset_properties        (GObject *object);
+
void                gimp_config_reset_properties        (GObject *object);

Resets all writable properties of object to the default values as -defined in their GParamSpec. Properties marked as "construct-only" +defined in their GParamSpec. Properties marked as "construct-only" are not touched.

@@ -177,7 +235,9 @@

object :

- a GObject + a GObject
@@ -187,8 +247,12 @@

gimp_config_reset_property ()

-
void                gimp_config_reset_property          (GObject *object,
-                                                         const gchar *property_name);
+
void                gimp_config_reset_property          (GObject *object,
+                                                         const gchar *property_name);

Resets the property named property_name to its default value. The property must be writable and must not be marked as "construct-only".

@@ -200,7 +264,9 @@

object :

- a GObject + a GObject @@ -216,11 +282,17 @@

gimp_config_string_append_escaped ()

-
void                gimp_config_string_append_escaped   (GString *string,
-                                                         const gchar *val);
+
void                gimp_config_string_append_escaped   (GString *string,
+                                                         const gchar *val);

Escapes and quotes val and appends it to string. The escape -algorithm is different from the one used by g_strescape() since it +algorithm is different from the one used by g_strescape() since it leaves non-ASCII characters intact and thus preserves UTF-8 strings. Only control characters and quotes are being escaped.

@@ -231,12 +303,16 @@

string :

- pointer to a GString + pointer to a GString

val :

- a string to append or NULL + a string to append or NULL diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html 2008-10-08 23:32:57.000000000 +0100 @@ -43,37 +43,75 @@

Synopsis

                     GimpConfigWriter;
-GimpConfigWriter*   gimp_config_writer_new_file         (const gchar *filename,
-                                                         gboolean atomic,
-                                                         const gchar *header,
-                                                         GError **error);
-GimpConfigWriter*   gimp_config_writer_new_fd           (gint fd);
-GimpConfigWriter*   gimp_config_writer_new_string       (GString *string);
+GimpConfigWriter*   gimp_config_writer_new_file         (const gchar *filename,
+                                                         gboolean atomic,
+                                                         const gchar *header,
+                                                         GError **error);
+GimpConfigWriter*   gimp_config_writer_new_fd           (gint fd);
+GimpConfigWriter*   gimp_config_writer_new_string       (GString *string);
 void                gimp_config_writer_open             (GimpConfigWriter *writer,
-                                                         const gchar *name);
+                                                         const gchar *name);
 void                gimp_config_writer_comment_mode     (GimpConfigWriter *writer,
-                                                         gboolean enable);
+                                                         gboolean enable);
 void                gimp_config_writer_print            (GimpConfigWriter *writer,
-                                                         const gchar *string,
-                                                         gint len);
+                                                         const gchar *string,
+                                                         gint len);
 void                gimp_config_writer_printf           (GimpConfigWriter *writer,
-                                                         const gchar *format,
+                                                         const gchar *format,
                                                          ...);
 void                gimp_config_writer_identifier       (GimpConfigWriter *writer,
-                                                         const gchar *identifier);
+                                                         const gchar *identifier);
 void                gimp_config_writer_string           (GimpConfigWriter *writer,
-                                                         const gchar *string);
+                                                         const gchar *string);
 void                gimp_config_writer_data             (GimpConfigWriter *writer,
-                                                         gint length,
-                                                         const guint8 *data);
+                                                         gint length,
+                                                         const guint8 *data);
 void                gimp_config_writer_comment          (GimpConfigWriter *writer,
-                                                         const gchar *comment);
+                                                         const gchar *comment);
 void                gimp_config_writer_linefeed         (GimpConfigWriter *writer);
 void                gimp_config_writer_revert           (GimpConfigWriter *writer);
 void                gimp_config_writer_close            (GimpConfigWriter *writer);
-gboolean            gimp_config_writer_finish           (GimpConfigWriter *writer,
-                                                         const gchar *footer,
-                                                         GError **error);
+gboolean            gimp_config_writer_finish           (GimpConfigWriter *writer,
+                                                         const gchar *footer,
+                                                         GError **error);
 
@@ -95,13 +133,23 @@

gimp_config_writer_new_file ()

-
GimpConfigWriter*   gimp_config_writer_new_file         (const gchar *filename,
-                                                         gboolean atomic,
-                                                         const gchar *header,
-                                                         GError **error);
+
GimpConfigWriter*   gimp_config_writer_new_file         (const gchar *filename,
+                                                         gboolean atomic,
+                                                         const gchar *header,
+                                                         GError **error);

Creates a new GimpConfigWriter and sets it up to write to -filename. If atomic is TRUE, a temporary file is used to avoid +filename. If atomic is TRUE, a temporary file is used to avoid possible race conditions. The temporary file is then moved to filename when the writer is closed.

@@ -117,7 +165,9 @@

atomic :

- if TRUE the file is written atomically + if TRUE the file is written atomically @@ -132,7 +182,9 @@

Returns :

- a new GimpConfigWriter or NULL in case of an error + a new GimpConfigWriter or NULL in case of an error @@ -144,7 +196,9 @@

gimp_config_writer_new_fd ()

-
GimpConfigWriter*   gimp_config_writer_new_fd           (gint fd);
+
GimpConfigWriter*   gimp_config_writer_new_fd           (gint fd);

@@ -160,7 +214,9 @@

Returns :

- a new GimpConfigWriter or NULL in case of an error + a new GimpConfigWriter or NULL in case of an error @@ -172,7 +228,9 @@

gimp_config_writer_new_string ()

-
GimpConfigWriter*   gimp_config_writer_new_string       (GString *string);
+
GimpConfigWriter*   gimp_config_writer_new_string       (GString *string);

@@ -188,7 +246,9 @@

Returns :

- a new GimpConfigWriter or NULL in case of an error + a new GimpConfigWriter or NULL in case of an error @@ -201,7 +261,9 @@

gimp_config_writer_open ()

void                gimp_config_writer_open             (GimpConfigWriter *writer,
-                                                         const gchar *name);
+ const gchar *name);

This function writes the opening parenthese followed by name. It also increases the indentation level and sets a mark that @@ -231,7 +293,9 @@

gimp_config_writer_comment_mode ()

void                gimp_config_writer_comment_mode     (GimpConfigWriter *writer,
-                                                         gboolean enable);
+ gboolean enable);

This function toggles whether the writer should create commented or uncommented output. This feature is used to generate the @@ -253,7 +317,11 @@

enable :

- TRUE to enable comment mode, FALSE to disable it + TRUE to enable comment mode, FALSE to disable it @@ -265,8 +333,12 @@

gimp_config_writer_print ()

void                gimp_config_writer_print            (GimpConfigWriter *writer,
-                                                         const gchar *string,
-                                                         gint len);
+ const gchar *string, + gint len);

Appends a space followed by string to the writer. Note that string must not contain any special characters that might need to be escaped.

@@ -300,7 +372,9 @@

gimp_config_writer_printf ()

void                gimp_config_writer_printf           (GimpConfigWriter *writer,
-                                                         const gchar *format,
+                                                         const gchar *format,
                                                          ...);

A printf-like function for GimpConfigWriter.

@@ -317,7 +391,9 @@

format :

- a format string as described for g_strdup_printf(). + a format string as described for g_strdup_printf(). @@ -334,7 +410,9 @@

gimp_config_writer_identifier ()

void                gimp_config_writer_identifier       (GimpConfigWriter *writer,
-                                                         const gchar *identifier);
+ const gchar *identifier);

Writes an identifier to writer. The string is *not* quoted and special characters are *not* escaped.

@@ -363,7 +441,9 @@

gimp_config_writer_string ()

void                gimp_config_writer_string           (GimpConfigWriter *writer,
-                                                         const gchar *string);
+ const gchar *string);

Writes a string value to writer. The string is quoted and special characters are escaped.

@@ -392,8 +472,12 @@

gimp_config_writer_data ()

void                gimp_config_writer_data             (GimpConfigWriter *writer,
-                                                         gint length,
-                                                         const guint8 *data);
+ gint length, + const guint8 *data);

@@ -426,7 +510,9 @@

gimp_config_writer_comment ()

void                gimp_config_writer_comment          (GimpConfigWriter *writer,
-                                                         const gchar *comment);
+ const gchar *comment);

Appends the comment to str and inserts linebreaks and hash-marks to format it as a comment. Note that this function does not handle non-ASCII @@ -515,9 +601,15 @@


gimp_config_writer_finish ()

-
gboolean            gimp_config_writer_finish           (GimpConfigWriter *writer,
-                                                         const gchar *footer,
-                                                         GError **error);
+
gboolean            gimp_config_writer_finish           (GimpConfigWriter *writer,
+                                                         const gchar *footer,
+                                                         GError **error);

This function finishes the work of writer and frees it afterwards. It closes all open elements, appends an optional comment and @@ -546,8 +638,12 @@

Returns :

- TRUE if everything could be successfully written, - FALSE otherwise + TRUE if everything could be successfully written, + FALSE otherwise diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html 2008-10-08 23:32:57.000000000 +0100 @@ -42,33 +42,101 @@

Synopsis

-GScanner*           gimp_scanner_new_file               (const gchar *filename,
-                                                         GError **error);
-GScanner*           gimp_scanner_new_string             (const gchar *text,
-                                                         gint text_len,
-                                                         GError **error);
-void                gimp_scanner_destroy                (GScanner *scanner);
-gboolean            gimp_scanner_parse_token            (GScanner *scanner,
-                                                         GTokenType token);
-gboolean            gimp_scanner_parse_identifier       (GScanner *scanner,
-                                                         const gchar *identifier);
-gboolean            gimp_scanner_parse_string           (GScanner *scanner,
-                                                         gchar **dest);
-gboolean            gimp_scanner_parse_string_no_validate
-                                                        (GScanner *scanner,
-                                                         gchar **dest);
-gboolean            gimp_scanner_parse_data             (GScanner *scanner,
-                                                         gint length,
-                                                         guint8 **dest);
-gboolean            gimp_scanner_parse_int              (GScanner *scanner,
-                                                         gint *dest);
-gboolean            gimp_scanner_parse_float            (GScanner *scanner,
-                                                         gdouble *dest);
-gboolean            gimp_scanner_parse_color            (GScanner *scanner,
+GScanner*           gimp_scanner_new_file               (const gchar *filename,
+                                                         GError **error);
+GScanner*           gimp_scanner_new_string             (const gchar *text,
+                                                         gint text_len,
+                                                         GError **error);
+void                gimp_scanner_destroy                (GScanner *scanner);
+gboolean            gimp_scanner_parse_token            (GScanner *scanner,
+                                                         GTokenType token);
+gboolean            gimp_scanner_parse_identifier       (GScanner *scanner,
+                                                         const gchar *identifier);
+gboolean            gimp_scanner_parse_string           (GScanner *scanner,
+                                                         gchar **dest);
+gboolean            gimp_scanner_parse_string_no_validate
+                                                        (GScanner *scanner,
+                                                         gchar **dest);
+gboolean            gimp_scanner_parse_data             (GScanner *scanner,
+                                                         gint length,
+                                                         guint8 **dest);
+gboolean            gimp_scanner_parse_int              (GScanner *scanner,
+                                                         gint *dest);
+gboolean            gimp_scanner_parse_float            (GScanner *scanner,
+                                                         gdouble *dest);
+gboolean            gimp_scanner_parse_color            (GScanner *scanner,
                                                          GimpRGB *dest);
-gboolean            gimp_scanner_parse_matrix2          (GScanner *scanner,
+gboolean            gimp_scanner_parse_matrix2          (GScanner *scanner,
                                                          GimpMatrix2 *dest);
@@ -84,8 +152,14 @@
 

Details

gimp_scanner_new_file ()

-
GScanner*           gimp_scanner_new_file               (const gchar *filename,
-                                                         GError **error);
+
GScanner*           gimp_scanner_new_file               (const gchar *filename,
+                                                         GError **error);

@@ -118,9 +192,17 @@


gimp_scanner_new_string ()

-
GScanner*           gimp_scanner_new_string             (const gchar *text,
-                                                         gint text_len,
-                                                         GError **error);
+
GScanner*           gimp_scanner_new_string             (const gchar *text,
+                                                         gint text_len,
+                                                         GError **error);

@@ -158,7 +240,9 @@


gimp_scanner_destroy ()

-
void                gimp_scanner_destroy                (GScanner *scanner);
+
void                gimp_scanner_destroy                (GScanner *scanner);

@@ -178,8 +262,14 @@


gimp_scanner_parse_token ()

-
gboolean            gimp_scanner_parse_token            (GScanner *scanner,
-                                                         GTokenType token);
+
gboolean            gimp_scanner_parse_token            (GScanner *scanner,
+                                                         GTokenType token);

@@ -212,8 +302,14 @@


gimp_scanner_parse_identifier ()

-
gboolean            gimp_scanner_parse_identifier       (GScanner *scanner,
-                                                         const gchar *identifier);
+
gboolean            gimp_scanner_parse_identifier       (GScanner *scanner,
+                                                         const gchar *identifier);

@@ -246,8 +342,14 @@


gimp_scanner_parse_string ()

-
gboolean            gimp_scanner_parse_string           (GScanner *scanner,
-                                                         gchar **dest);
+
gboolean            gimp_scanner_parse_string           (GScanner *scanner,
+                                                         gchar **dest);

@@ -280,9 +382,15 @@


gimp_scanner_parse_string_no_validate ()

-
gboolean            gimp_scanner_parse_string_no_validate
-                                                        (GScanner *scanner,
-                                                         gchar **dest);
+
gboolean            gimp_scanner_parse_string_no_validate
+                                                        (GScanner *scanner,
+                                                         gchar **dest);

@@ -315,9 +423,17 @@


gimp_scanner_parse_data ()

-
gboolean            gimp_scanner_parse_data             (GScanner *scanner,
-                                                         gint length,
-                                                         guint8 **dest);
+
gboolean            gimp_scanner_parse_data             (GScanner *scanner,
+                                                         gint length,
+                                                         guint8 **dest);

@@ -355,8 +471,14 @@


gimp_scanner_parse_int ()

-
gboolean            gimp_scanner_parse_int              (GScanner *scanner,
-                                                         gint *dest);
+
gboolean            gimp_scanner_parse_int              (GScanner *scanner,
+                                                         gint *dest);

@@ -389,8 +511,14 @@


gimp_scanner_parse_float ()

-
gboolean            gimp_scanner_parse_float            (GScanner *scanner,
-                                                         gdouble *dest);
+
gboolean            gimp_scanner_parse_float            (GScanner *scanner,
+                                                         gdouble *dest);

@@ -423,7 +551,11 @@


gimp_scanner_parse_color ()

-
gboolean            gimp_scanner_parse_color            (GScanner *scanner,
+
gboolean            gimp_scanner_parse_color            (GScanner *scanner,
                                                          GimpRGB *dest);
@@ -459,7 +591,11 @@

gimp_scanner_parse_matrix2 ()

-
gboolean            gimp_scanner_parse_matrix2          (GScanner *scanner,
+
gboolean            gimp_scanner_parse_matrix2          (GScanner *scanner,
                                                          GimpMatrix2 *dest);
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html --- gimp-2.6.0/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html 2008-10-08 23:32:57.000000000 +0100 @@ -29,7 +29,9 @@

Object Hierarchy

-    GObject
+    GObject
         GimpColorConfig
     GInterface
         GimpConfigInterface
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmath/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmath/html/index.html
--- gimp-2.6.0/devel-docs/libgimpmath/html/index.html	2008-09-30 22:55:58.000000000 +0100
+++ gimp-2.6.1/devel-docs/libgimpmath/html/index.html	2008-10-08 23:32:58.000000000 +0100
@@ -21,7 +21,7 @@
 

- for GIMP 2.6.0 + for GIMP 2.6.1

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html --- gimp-2.6.0/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html 2008-10-08 23:32:58.000000000 +0100 @@ -52,47 +52,107 @@ void gimp_matrix3_mult (const GimpMatrix3 *matrix1, GimpMatrix3 *matrix2); void gimp_matrix3_translate (GimpMatrix3 *matrix, - gdouble x, - gdouble y); + gdouble x, + gdouble y); void gimp_matrix3_scale (GimpMatrix3 *matrix, - gdouble x, - gdouble y); + gdouble x, + gdouble y); void gimp_matrix3_rotate (GimpMatrix3 *matrix, - gdouble theta); + gdouble theta); void gimp_matrix3_xshear (GimpMatrix3 *matrix, - gdouble amount); + gdouble amount); void gimp_matrix3_yshear (GimpMatrix3 *matrix, - gdouble amount); + gdouble amount); void gimp_matrix3_affine (GimpMatrix3 *matrix, - gdouble a, - gdouble b, - gdouble c, - gdouble d, - gdouble e, - gdouble f); + gdouble a, + gdouble b, + gdouble c, + gdouble d, + gdouble e, + gdouble f); void gimp_matrix3_transform_point (const GimpMatrix3 *matrix, - gdouble x, - gdouble y, - gdouble *newx, - gdouble *newy); -gdouble gimp_matrix3_determinant (const GimpMatrix3 *matrix); + gdouble x, + gdouble y, + gdouble *newx, + gdouble *newy); +gdouble gimp_matrix3_determinant (const GimpMatrix3 *matrix); void gimp_matrix3_invert (GimpMatrix3 *matrix); -gboolean gimp_matrix3_is_identity (const GimpMatrix3 *matrix); -gboolean gimp_matrix3_is_diagonal (const GimpMatrix3 *matrix); -gboolean gimp_matrix3_is_affine (const GimpMatrix3 *matrix); -gboolean gimp_matrix3_is_simple (const GimpMatrix3 *matrix); +gboolean gimp_matrix3_is_identity (const GimpMatrix3 *matrix); +gboolean gimp_matrix3_is_diagonal (const GimpMatrix3 *matrix); +gboolean gimp_matrix3_is_affine (const GimpMatrix3 *matrix); +gboolean gimp_matrix3_is_simple (const GimpMatrix3 *matrix); void gimp_matrix4_to_deg (const GimpMatrix4 *matrix, - gdouble *a, - gdouble *b, - gdouble *c); + gdouble *a, + gdouble *b, + gdouble *c); #define GIMP_TYPE_MATRIX2 #define GIMP_TYPE_PARAM_MATRIX2 #define GIMP_IS_PARAM_SPEC_MATRIX2 (pspec) -GParamSpec* gimp_param_spec_matrix2 (const gchar *name, - const gchar *nick, - const gchar *blurb, +GParamSpec* gimp_param_spec_matrix2 (const gchar *name, + const gchar *nick, + const gchar *blurb, const GimpMatrix2 *default_value, - GParamFlags flags); + GParamFlags flags); #define GIMP_VALUE_HOLDS_MATRIX2 (value)
@@ -236,8 +296,12 @@

gimp_matrix3_translate ()

void                gimp_matrix3_translate              (GimpMatrix3 *matrix,
-                                                         gdouble x,
-                                                         gdouble y);
+ gdouble x, + gdouble y);

Translates the matrix by x and y.

@@ -268,8 +332,12 @@

gimp_matrix3_scale ()

void                gimp_matrix3_scale                  (GimpMatrix3 *matrix,
-                                                         gdouble x,
-                                                         gdouble y);
+ gdouble x, + gdouble y);

Scales the matrix by x and y

@@ -300,7 +368,9 @@

gimp_matrix3_rotate ()

void                gimp_matrix3_rotate                 (GimpMatrix3 *matrix,
-                                                         gdouble theta);
+ gdouble theta);

Rotates the matrix by theta degrees.

@@ -326,7 +396,9 @@

gimp_matrix3_xshear ()

void                gimp_matrix3_xshear                 (GimpMatrix3 *matrix,
-                                                         gdouble amount);
+ gdouble amount);

Shears the matrix in the X direction.

@@ -352,7 +424,9 @@

gimp_matrix3_yshear ()

void                gimp_matrix3_yshear                 (GimpMatrix3 *matrix,
-                                                         gdouble amount);
+ gdouble amount);

Shears the matrix in the Y direction.

@@ -378,12 +452,24 @@

gimp_matrix3_affine ()

void                gimp_matrix3_affine                 (GimpMatrix3 *matrix,
-                                                         gdouble a,
-                                                         gdouble b,
-                                                         gdouble c,
-                                                         gdouble d,
-                                                         gdouble e,
-                                                         gdouble f);
+ gdouble a, + gdouble b, + gdouble c, + gdouble d, + gdouble e, + gdouble f);

Applies the affine transformation given by six values to matrix. The six values form define an affine transformation matrix as @@ -441,10 +527,18 @@

gimp_matrix3_transform_point ()

void                gimp_matrix3_transform_point        (const GimpMatrix3 *matrix,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble *newx,
-                                                         gdouble *newy);
+ gdouble x, + gdouble y, + gdouble *newx, + gdouble *newy);

Transforms a point in 2D as specified by the transformation matrix.

@@ -484,7 +578,9 @@


gimp_matrix3_determinant ()

-
gdouble             gimp_matrix3_determinant            (const GimpMatrix3 *matrix);
+
gdouble             gimp_matrix3_determinant            (const GimpMatrix3 *matrix);

Calculates the determinant of the given matrix.

@@ -527,7 +623,9 @@


gimp_matrix3_is_identity ()

-
gboolean            gimp_matrix3_is_identity            (const GimpMatrix3 *matrix);
+
gboolean            gimp_matrix3_is_identity            (const GimpMatrix3 *matrix);

Checks if the given matrix is the identity matrix.

@@ -543,7 +641,11 @@

Returns :

- TRUE if the matrix is the identity matrix, FALSE otherwise + TRUE if the matrix is the identity matrix, FALSE otherwise @@ -552,7 +654,9 @@

gimp_matrix3_is_diagonal ()

-
gboolean            gimp_matrix3_is_diagonal            (const GimpMatrix3 *matrix);
+
gboolean            gimp_matrix3_is_diagonal            (const GimpMatrix3 *matrix);

Checks if the given matrix is diagonal.

@@ -568,7 +672,11 @@

Returns :

- TRUE if the matrix is diagonal, FALSE otherwise + TRUE if the matrix is diagonal, FALSE otherwise @@ -577,7 +685,9 @@

gimp_matrix3_is_affine ()

-
gboolean            gimp_matrix3_is_affine              (const GimpMatrix3 *matrix);
+
gboolean            gimp_matrix3_is_affine              (const GimpMatrix3 *matrix);

Checks if the given matrix defines an affine transformation.

@@ -593,8 +703,12 @@

Returns :

- TRUE if the matrix defines an affine transformation, - FALSE otherwise + TRUE if the matrix defines an affine transformation, + FALSE otherwise @@ -606,7 +720,9 @@

gimp_matrix3_is_simple ()

-
gboolean            gimp_matrix3_is_simple              (const GimpMatrix3 *matrix);
+
gboolean            gimp_matrix3_is_simple              (const GimpMatrix3 *matrix);

Checks if we'll need to interpolate when applying this matrix as a transformation.

@@ -623,8 +739,12 @@

Returns :

- TRUE if all entries of the upper left 2x2 matrix are - either 0 or 1, FALSE otherwise + TRUE if all entries of the upper left 2x2 matrix are + either 0 or 1, FALSE otherwise @@ -634,9 +754,15 @@

gimp_matrix4_to_deg ()

void                gimp_matrix4_to_deg                 (const GimpMatrix4 *matrix,
-                                                         gdouble *a,
-                                                         gdouble *b,
-                                                         gdouble *c);
+ gdouble *a, + gdouble *b, + gdouble *c);

@@ -708,14 +834,26 @@


gimp_param_spec_matrix2 ()

-
GParamSpec*         gimp_param_spec_matrix2             (const gchar *name,
-                                                         const gchar *nick,
-                                                         const gchar *blurb,
+
GParamSpec*         gimp_param_spec_matrix2             (const gchar *name,
+                                                         const gchar *nick,
+                                                         const gchar *blurb,
                                                          const GimpMatrix2 *default_value,
-                                                         GParamFlags flags);
+ GParamFlags flags);

Creates a param spec to hold a GimpMatrix2 value. -See g_param_spec_internal() for more information.

+See g_param_spec_internal() for more information.

@@ -744,12 +882,16 @@

flags :

- a combination of GParamFlags + a combination of GParamFlags

Returns :

- a newly allocated GParamSpec instance + a newly allocated GParamSpec instance diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html --- gimp-2.6.0/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html 2008-10-08 23:32:58.000000000 +0100 @@ -42,9 +42,15 @@

Synopsis

-void                gimp_md5_get_digest                 (const gchar *buffer,
-                                                         gint buffer_size,
-                                                         guchar digest[16]);
+void                gimp_md5_get_digest                 (const gchar *buffer,
+                                                         gint buffer_size,
+                                                         guchar digest[16]);
 
@@ -57,11 +63,19 @@

Details

gimp_md5_get_digest ()

-
void                gimp_md5_get_digest                 (const gchar *buffer,
-                                                         gint buffer_size,
-                                                         guchar digest[16]);
+
void                gimp_md5_get_digest                 (const gchar *buffer,
+                                                         gint buffer_size,
+                                                         guchar digest[16]);

-This function is deprecated! Use GChecksum from GLib instead. +This function is deprecated! Use GChecksum from GLib instead.

Get the md5 hash of a buffer. The result is put in the 16 bytes diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html --- gimp-2.6.0/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html 2008-10-08 23:32:58.000000000 +0100 @@ -45,17 +45,33 @@ GimpVector2; GimpVector3; GimpVector4; -GimpVector2 gimp_vector2_new (gdouble x, - gdouble y); +GimpVector2 gimp_vector2_new (gdouble x, + gdouble y); void gimp_vector2_set (GimpVector2 *vector, - gdouble x, - gdouble y); -gdouble gimp_vector2_length (const GimpVector2 *vector); -gdouble gimp_vector2_length_val (GimpVector2 vector); + gdouble x, + gdouble y); +gdouble gimp_vector2_length (const GimpVector2 *vector); +gdouble gimp_vector2_length_val (GimpVector2 vector); void gimp_vector2_mul (GimpVector2 *vector, - gdouble factor); + gdouble factor); GimpVector2 gimp_vector2_mul_val (GimpVector2 vector, - gdouble factor); + gdouble factor); void gimp_vector2_normalize (GimpVector2 *vector); GimpVector2 gimp_vector2_normalize_val (GimpVector2 vector); void gimp_vector2_neg (GimpVector2 *vector); @@ -70,31 +86,59 @@ const GimpVector2 *vector2); GimpVector2 gimp_vector2_sub_val (GimpVector2 vector1, GimpVector2 vector2); -gdouble gimp_vector2_inner_product (const GimpVector2 *vector1, +gdouble gimp_vector2_inner_product (const GimpVector2 *vector1, const GimpVector2 *vector2); -gdouble gimp_vector2_inner_product_val (GimpVector2 vector1, +gdouble gimp_vector2_inner_product_val (GimpVector2 vector1, GimpVector2 vector2); GimpVector2 gimp_vector2_cross_product (const GimpVector2 *vector1, const GimpVector2 *vector2); GimpVector2 gimp_vector2_cross_product_val (GimpVector2 vector1, GimpVector2 vector2); void gimp_vector2_rotate (GimpVector2 *vector, - gdouble alpha); + gdouble alpha); GimpVector2 gimp_vector2_rotate_val (GimpVector2 vector, - gdouble alpha); -GimpVector3 gimp_vector3_new (gdouble x, - gdouble y, - gdouble z); + gdouble alpha); +GimpVector3 gimp_vector3_new (gdouble x, + gdouble y, + gdouble z); void gimp_vector3_set (GimpVector3 *vector, - gdouble x, - gdouble y, - gdouble z); -gdouble gimp_vector3_length (const GimpVector3 *vector); -gdouble gimp_vector3_length_val (GimpVector3 vector); + gdouble x, + gdouble y, + gdouble z); +gdouble gimp_vector3_length (const GimpVector3 *vector); +gdouble gimp_vector3_length_val (GimpVector3 vector); void gimp_vector3_mul (GimpVector3 *vector, - gdouble factor); + gdouble factor); GimpVector3 gimp_vector3_mul_val (GimpVector3 vector, - gdouble factor); + gdouble factor); void gimp_vector3_normalize (GimpVector3 *vector); GimpVector3 gimp_vector3_normalize_val (GimpVector3 vector); void gimp_vector3_neg (GimpVector3 *vector); @@ -109,44 +153,96 @@ const GimpVector3 *vector2); GimpVector3 gimp_vector3_sub_val (GimpVector3 vector1, GimpVector3 vector2); -gdouble gimp_vector3_inner_product (const GimpVector3 *vector1, +gdouble gimp_vector3_inner_product (const GimpVector3 *vector1, const GimpVector3 *vector2); -gdouble gimp_vector3_inner_product_val (GimpVector3 vector1, +gdouble gimp_vector3_inner_product_val (GimpVector3 vector1, GimpVector3 vector2); GimpVector3 gimp_vector3_cross_product (const GimpVector3 *vector1, const GimpVector3 *vector2); GimpVector3 gimp_vector3_cross_product_val (GimpVector3 vector1, GimpVector3 vector2); void gimp_vector3_rotate (GimpVector3 *vector, - gdouble alpha, - gdouble beta, - gdouble gamma); + gdouble alpha, + gdouble beta, + gdouble gamma); GimpVector3 gimp_vector3_rotate_val (GimpVector3 vector, - gdouble alpha, - gdouble beta, - gdouble gamma); -void gimp_vector_2d_to_3d (gint sx, - gint sy, - gint w, - gint h, - gint x, - gint y, + gdouble alpha, + gdouble beta, + gdouble gamma); +void gimp_vector_2d_to_3d (gint sx, + gint sy, + gint w, + gint h, + gint x, + gint y, const GimpVector3 *vp, GimpVector3 *p); -GimpVector3 gimp_vector_2d_to_3d_val (gint sx, - gint sy, - gint w, - gint h, - gint x, - gint y, +GimpVector3 gimp_vector_2d_to_3d_val (gint sx, + gint sy, + gint w, + gint h, + gint x, + gint y, GimpVector3 vp, GimpVector3 p); -void gimp_vector_3d_to_2d (gint sx, - gint sy, - gint w, - gint h, - gdouble *x, - gdouble *y, +void gimp_vector_3d_to_2d (gint sx, + gint sy, + gint w, + gint h, + gdouble *x, + gdouble *y, const GimpVector3 *vp, const GimpVector3 *p);

@@ -195,8 +291,12 @@

gimp_vector2_new ()

-
GimpVector2         gimp_vector2_new                    (gdouble x,
-                                                         gdouble y);
+
GimpVector2         gimp_vector2_new                    (gdouble x,
+                                                         gdouble y);

Creates a GimpVector2 of coordinates x and y.

@@ -227,8 +327,12 @@

gimp_vector2_set ()

void                gimp_vector2_set                    (GimpVector2 *vector,
-                                                         gdouble x,
-                                                         gdouble y);
+ gdouble x, + gdouble y);

Sets the X and Y coordinates of vector to x and y.

@@ -258,7 +362,9 @@


gimp_vector2_length ()

-
gdouble             gimp_vector2_length                 (const GimpVector2 *vector);
+
gdouble             gimp_vector2_length                 (const GimpVector2 *vector);

Computes the length of a 2D vector.

@@ -283,7 +389,9 @@


gimp_vector2_length_val ()

-
gdouble             gimp_vector2_length_val             (GimpVector2 vector);
+
gdouble             gimp_vector2_length_val             (GimpVector2 vector);

This function is identical to gimp_vector2_length() but the vector is passed by value rather than by reference.

@@ -310,7 +418,9 @@

gimp_vector2_mul ()

void                gimp_vector2_mul                    (GimpVector2 *vector,
-                                                         gdouble factor);
+ gdouble factor);

Multiplies each component of the vector by factor. Note that this is equivalent to multiplying the vectors length by factor.

@@ -337,7 +447,9 @@

gimp_vector2_mul_val ()

GimpVector2         gimp_vector2_mul_val                (GimpVector2 vector,
-                                                         gdouble factor);
+ gdouble factor);

This function is identical to gimp_vector2_mul() but the vector is passed by value rather than by reference.

@@ -588,7 +700,9 @@

gimp_vector2_inner_product ()

-
gdouble             gimp_vector2_inner_product          (const GimpVector2 *vector1,
+
gdouble             gimp_vector2_inner_product          (const GimpVector2 *vector1,
                                                          const GimpVector2 *vector2);

Computes the inner (dot) product of two 2D vectors. @@ -620,7 +734,9 @@


gimp_vector2_inner_product_val ()

-
gdouble             gimp_vector2_inner_product_val      (GimpVector2 vector1,
+
gdouble             gimp_vector2_inner_product_val      (GimpVector2 vector1,
                                                          GimpVector2 vector2);

This function is identical to gimp_vector2_inner_product() but the @@ -723,7 +839,9 @@

gimp_vector2_rotate ()

void                gimp_vector2_rotate                 (GimpVector2 *vector,
-                                                         gdouble alpha);
+ gdouble alpha);

Rotates the vector counterclockwise by alpha radians.

@@ -749,7 +867,9 @@

gimp_vector2_rotate_val ()

GimpVector2         gimp_vector2_rotate_val             (GimpVector2 vector,
-                                                         gdouble alpha);
+ gdouble alpha);

This function is identical to gimp_vector2_rotate() but the vector is passed by value rather than by reference.

@@ -781,9 +901,15 @@

gimp_vector3_new ()

-
GimpVector3         gimp_vector3_new                    (gdouble x,
-                                                         gdouble y,
-                                                         gdouble z);
+
GimpVector3         gimp_vector3_new                    (gdouble x,
+                                                         gdouble y,
+                                                         gdouble z);

Creates a GimpVector3 of coordinate x, y and z.

@@ -819,9 +945,15 @@

gimp_vector3_set ()

void                gimp_vector3_set                    (GimpVector3 *vector,
-                                                         gdouble x,
-                                                         gdouble y,
-                                                         gdouble z);
+ gdouble x, + gdouble y, + gdouble z);

Sets the X, Y and Z coordinates of vector to x, y and z.

@@ -856,7 +988,9 @@


gimp_vector3_length ()

-
gdouble             gimp_vector3_length                 (const GimpVector3 *vector);
+
gdouble             gimp_vector3_length                 (const GimpVector3 *vector);

Computes the length of a 3D vector.

@@ -881,7 +1015,9 @@


gimp_vector3_length_val ()

-
gdouble             gimp_vector3_length_val             (GimpVector3 vector);
+
gdouble             gimp_vector3_length_val             (GimpVector3 vector);

This function is identical to gimp_vector3_length() but the vector is passed by value rather than by reference.

@@ -908,7 +1044,9 @@

gimp_vector3_mul ()

void                gimp_vector3_mul                    (GimpVector3 *vector,
-                                                         gdouble factor);
+ gdouble factor);

Multiplies each component of the vector by factor. Note that this is equivalent to multiplying the vectors length by factor.

@@ -935,7 +1073,9 @@

gimp_vector3_mul_val ()

GimpVector3         gimp_vector3_mul_val                (GimpVector3 vector,
-                                                         gdouble factor);
+ gdouble factor);

This function is identical to gimp_vector3_mul() but the vector is passed by value rather than by reference.

@@ -1186,7 +1326,9 @@

gimp_vector3_inner_product ()

-
gdouble             gimp_vector3_inner_product          (const GimpVector3 *vector1,
+
gdouble             gimp_vector3_inner_product          (const GimpVector3 *vector1,
                                                          const GimpVector3 *vector2);

Computes the inner (dot) product of two 3D vectors. This product @@ -1218,7 +1360,9 @@


gimp_vector3_inner_product_val ()

-
gdouble             gimp_vector3_inner_product_val      (GimpVector3 vector1,
+
gdouble             gimp_vector3_inner_product_val      (GimpVector3 vector1,
                                                          GimpVector3 vector2);

This function is identical to gimp_vector3_inner_product() but the @@ -1321,9 +1465,15 @@

gimp_vector3_rotate ()

void                gimp_vector3_rotate                 (GimpVector3 *vector,
-                                                         gdouble alpha,
-                                                         gdouble beta,
-                                                         gdouble gamma);
+ gdouble alpha, + gdouble beta, + gdouble gamma);

Rotates the vector around the three axis (Z, Y, and X) by alpha, beta and gamma, respectively. @@ -1366,9 +1516,15 @@

gimp_vector3_rotate_val ()

GimpVector3         gimp_vector3_rotate_val             (GimpVector3 vector,
-                                                         gdouble alpha,
-                                                         gdouble beta,
-                                                         gdouble gamma);
+ gdouble alpha, + gdouble beta, + gdouble gamma);

This function is identical to gimp_vector3_rotate() but the vectors are passed by value rather than by reference.

@@ -1409,12 +1565,24 @@

gimp_vector_2d_to_3d ()

-
void                gimp_vector_2d_to_3d                (gint sx,
-                                                         gint sy,
-                                                         gint w,
-                                                         gint h,
-                                                         gint x,
-                                                         gint y,
+
void                gimp_vector_2d_to_3d                (gint sx,
+                                                         gint sy,
+                                                         gint w,
+                                                         gint h,
+                                                         gint x,
+                                                         gint y,
                                                          const GimpVector3 *vp,
                                                          GimpVector3 *p);

@@ -1478,12 +1646,24 @@


gimp_vector_2d_to_3d_val ()

-
GimpVector3         gimp_vector_2d_to_3d_val            (gint sx,
-                                                         gint sy,
-                                                         gint w,
-                                                         gint h,
-                                                         gint x,
-                                                         gint y,
+
GimpVector3         gimp_vector_2d_to_3d_val            (gint sx,
+                                                         gint sy,
+                                                         gint w,
+                                                         gint h,
+                                                         gint x,
+                                                         gint y,
                                                          GimpVector3 vp,
                                                          GimpVector3 p);

@@ -1547,12 +1727,24 @@


gimp_vector_3d_to_2d ()

-
void                gimp_vector_3d_to_2d                (gint sx,
-                                                         gint sy,
-                                                         gint w,
-                                                         gint h,
-                                                         gdouble *x,
-                                                         gdouble *y,
+
void                gimp_vector_3d_to_2d                (gint sx,
+                                                         gint sy,
+                                                         gint w,
+                                                         gint h,
+                                                         gdouble *x,
+                                                         gdouble *y,
                                                          const GimpVector3 *vp,
                                                          const GimpVector3 *p);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmodule/html/GimpModuleDB.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmodule/html/GimpModuleDB.html --- gimp-2.6.0/devel-docs/libgimpmodule/html/GimpModuleDB.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmodule/html/GimpModuleDB.html 2008-10-08 23:32:58.000000000 +0100 @@ -47,20 +47,32 @@

Synopsis

                     GimpModuleDB;
-GimpModuleDB*       gimp_module_db_new                  (gboolean verbose);
+GimpModuleDB*       gimp_module_db_new                  (gboolean verbose);
 void                gimp_module_db_set_load_inhibit     (GimpModuleDB *db,
-                                                         const gchar *load_inhibit);
-const gchar*        gimp_module_db_get_load_inhibit     (GimpModuleDB *db);
+                                                         const gchar *load_inhibit);
+const gchar*        gimp_module_db_get_load_inhibit     (GimpModuleDB *db);
 void                gimp_module_db_load                 (GimpModuleDB *db,
-                                                         const gchar *module_path);
+                                                         const gchar *module_path);
 void                gimp_module_db_refresh              (GimpModuleDB *db,
-                                                         const gchar *module_path);
+                                                         const gchar *module_path);
 

Object Hierarchy

-  GObject
+  GObject
    +----GimpModuleDB
 
@@ -90,7 +102,9 @@

gimp_module_db_new ()

-
GimpModuleDB*       gimp_module_db_new                  (gboolean verbose);
+
GimpModuleDB*       gimp_module_db_new                  (gboolean verbose);

Creates a new GimpModuleDB instance. The verbose parameter will be passed to the created GimpModule instances using gimp_module_new().

@@ -102,7 +116,9 @@

verbose :

- Pass TRUE to enable debugging output. + Pass TRUE to enable debugging output. @@ -117,7 +133,9 @@

gimp_module_db_set_load_inhibit ()

void                gimp_module_db_set_load_inhibit     (GimpModuleDB *db,
-                                                         const gchar *load_inhibit);
+ const gchar *load_inhibit);

Sets the load_inhibit flag for all GimpModule's which are kept by db (using gimp_module_set_load_inhibit()).

@@ -134,7 +152,9 @@

load_inhibit :

- A G_SEARCHPATH_SEPARATOR delimited list of module + A G_SEARCHPATH_SEPARATOR delimited list of module filenames to exclude from auto-loading. @@ -144,9 +164,13 @@

gimp_module_db_get_load_inhibit ()

-
const gchar*        gimp_module_db_get_load_inhibit     (GimpModuleDB *db);
-

-Return the G_SEARCHPATH_SEPARATOR selimited list of module filenames +

const gchar*        gimp_module_db_get_load_inhibit     (GimpModuleDB *db);
+

+Return the G_SEARCHPATH_SEPARATOR selimited list of module filenames which are excluded from auto-loading.

@@ -171,7 +195,9 @@

gimp_module_db_load ()

void                gimp_module_db_load                 (GimpModuleDB *db,
-                                                         const gchar *module_path);
+ const gchar *module_path);

Scans the directories contained in module_path using

module_path :

- A G_SEARCHPATH_SEPARATOR delimited list of directories + A G_SEARCHPATH_SEPARATOR delimited list of directories to load modules from. @@ -202,14 +230,18 @@

gimp_module_db_refresh ()

void                gimp_module_db_refresh              (GimpModuleDB *db,
-                                                         const gchar *module_path);
+ const gchar *module_path);

Does the same as gimp_module_db_load(), plus removes all GimpModule instances whose modules have been deleted from disk.

Note that the GimpModule's will just be removed from the internal -list and not freed as this is not possible with GTypeModule +list and not freed as this is not possible with GTypeModule instances which actually implement types.

@@ -224,7 +256,9 @@

module_path :

- A G_SEARCHPATH_SEPARATOR delimited list of directories + A G_SEARCHPATH_SEPARATOR delimited list of directories to load modules from. @@ -238,7 +272,9 @@

The "add" signal

void                user_function                      (GimpModuleDB *gimpmoduledb,
                                                         GimpModule   *arg1,
-                                                        gpointer      user_data)         : Run First
+ gpointer user_data) : Run First

@@ -268,7 +304,9 @@

The "module-modified" signal

void                user_function                      (GimpModuleDB *gimpmoduledb,
                                                         GimpModule   *arg1,
-                                                        gpointer      user_data)         : Run First
+ gpointer user_data) : Run First

@@ -298,7 +336,9 @@

The "remove" signal

void                user_function                      (GimpModuleDB *gimpmoduledb,
                                                         GimpModule   *arg1,
-                                                        gpointer      user_data)         : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmodule/html/GimpModule.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmodule/html/GimpModule.html --- gimp-2.6.0/devel-docs/libgimpmodule/html/GimpModule.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmodule/html/GimpModule.html 2008-10-08 23:32:58.000000000 +0100 @@ -41,7 +41,11 @@

GimpModule

-

GimpModule — A GTypeModule subclass which implements module loading using GModule.

+

GimpModule — A GTypeModule subclass which implements module loading using GModule.

@@ -51,27 +55,65 @@ GimpModule; GimpModuleInfo; enum GimpModuleState; -const GimpModuleInfo* (*GimpModuleQueryFunc) (GTypeModule *module); -gboolean (*GimpModuleRegisterFunc) (GTypeModule *module); +const GimpModuleInfo* (*GimpModuleQueryFunc) (GTypeModule *module); +gboolean (*GimpModuleRegisterFunc) (GTypeModule *module); #define GIMP_MODULE_ABI_VERSION #define GIMP_MODULE_PARAM_SERIALIZE -GimpModule* gimp_module_new (const gchar *filename, - gboolean load_inhibit, - gboolean verbose); +GimpModule* gimp_module_new (const gchar *filename, + gboolean load_inhibit, + gboolean verbose); void gimp_module_modified (GimpModule *module); -gboolean gimp_module_query_module (GimpModule *module); +gboolean gimp_module_query_module (GimpModule *module); void gimp_module_set_load_inhibit (GimpModule *module, - gboolean load_inhibit); -const gchar* gimp_module_state_name (GimpModuleState state); -GType gimp_module_register_enum (GTypeModule *module, - const gchar *name, - const GEnumValue *const_static_values); -GimpModuleInfo* gimp_module_info_new (guint32 abi_version, - const gchar *purpose, - const gchar *author, - const gchar *version, - const gchar *copyright, - const gchar *date); + gboolean load_inhibit); +const gchar* gimp_module_state_name (GimpModuleState state); +GType gimp_module_register_enum (GTypeModule *module, + const gchar *name, + const GEnumValue *const_static_values); +GimpModuleInfo* gimp_module_info_new (guint32 abi_version, + const gchar *purpose, + const gchar *author, + const gchar *version, + const gchar *copyright, + const gchar *date); GimpModuleInfo* gimp_module_info_copy (const GimpModuleInfo *info); void gimp_module_info_free (GimpModuleInfo *info);
@@ -79,8 +121,12 @@

Object Hierarchy

-  GObject
-   +----GTypeModule
+  GObject
+   +----GTypeModule
          +----GimpModule
 
@@ -88,7 +134,9 @@

Implemented Interfaces

GimpModule implements - GTypePlugin.

+ GTypePlugin.

Signals

@@ -99,7 +147,11 @@

Description

-A GTypeModule subclass which implements module loading using GModule. +A GTypeModule subclass which implements module loading using GModule.

@@ -120,10 +172,16 @@

GimpModule is a generic mechanism to dynamically load modules into -GIMP. It is a GTypeModule subclass, implementing module loading -using GModule. GimpModule does not know which functionality is +GIMP. It is a GTypeModule subclass, implementing module loading +using GModule. GimpModule does not know which functionality is implemented by the modules, it just provides a framework to get -arbitrary GType implementations loaded from disk. +arbitrary GType implementations loaded from disk.


@@ -145,32 +203,44 @@ -

guint32 abi_version;

+

guint32 abi_version;

The GIMP_MODULE_ABI_VERSION the module was compiled against. -

gchar *purpose;

+

gchar *purpose;

The module's general purpose. -

gchar *author;

+

gchar *author;

The module's author. -

gchar *version;

+

gchar *version;

The module's version. -

gchar *copyright;

+

gchar *copyright;

The module's copyright. -

gchar *date;

+

gchar *date;

The module's release date. @@ -217,7 +287,9 @@

GIMP_MODULE_STATE_LOAD_FAILED

-gimp_module_register() returned FALSE. +gimp_module_register() returned FALSE. @@ -233,7 +305,9 @@

GimpModuleQueryFunc ()

-
const GimpModuleInfo* (*GimpModuleQueryFunc)            (GTypeModule *module);
+
const GimpModuleInfo* (*GimpModuleQueryFunc)            (GTypeModule *module);

The signature of the query function a loadable GIMP module must implement. In the module, the function must be called @@ -265,7 +339,11 @@


GimpModuleRegisterFunc ()

-
gboolean            (*GimpModuleRegisterFunc)           (GTypeModule *module);
+
gboolean            (*GimpModuleRegisterFunc)           (GTypeModule *module);

The signature of the register function a loadable GIMP module must implement. In the module, the function must be called @@ -286,7 +364,11 @@

Returns :

-TRUE on success, FALSE otherwise. +TRUE on success, FALSE otherwise. @@ -322,9 +404,15 @@

gimp_module_new ()

-
GimpModule*         gimp_module_new                     (const gchar *filename,
-                                                         gboolean load_inhibit,
-                                                         gboolean verbose);
+
GimpModule*         gimp_module_new                     (const gchar *filename,
+                                                         gboolean load_inhibit,
+                                                         gboolean verbose);

Creates a new GimpModule instance.

@@ -340,12 +428,16 @@

load_inhibit :

- Pass TRUE to exclude this module from auto-loading. + Pass TRUE to exclude this module from auto-loading.

verbose :

- Pass TRUE to enable debugging output. + Pass TRUE to enable debugging output. @@ -378,7 +470,9 @@

gimp_module_query_module ()

-
gboolean            gimp_module_query_module            (GimpModule *module);
+
gboolean            gimp_module_query_module            (GimpModule *module);

Queries the module without actually registering any of the types it may implement. After successful query, the info field of the @@ -396,7 +490,9 @@

Returns :

- TRUE on success. + TRUE on success. @@ -406,7 +502,9 @@

gimp_module_set_load_inhibit ()

void                gimp_module_set_load_inhibit        (GimpModule *module,
-                                                         gboolean load_inhibit);
+ gboolean load_inhibit);

Sets the load_inhibit property if the module. Emits "modified".

@@ -422,7 +520,9 @@

load_inhibit :

- Pass TRUE to exclude this module from auto-loading. + Pass TRUE to exclude this module from auto-loading. @@ -431,7 +531,9 @@

gimp_module_state_name ()

-
const gchar*        gimp_module_state_name              (GimpModuleState state);
+
const gchar*        gimp_module_state_name              (GimpModuleState state);

Returns the translated textual representation of a GimpModuleState. The returned string must not be freed.

@@ -457,15 +559,25 @@

gimp_module_register_enum ()

-
GType               gimp_module_register_enum           (GTypeModule *module,
-                                                         const gchar *name,
-                                                         const GEnumValue *const_static_values);
+
GType               gimp_module_register_enum           (GTypeModule *module,
+                                                         const gchar *name,
+                                                         const GEnumValue *const_static_values);

Warning

gimp_module_register_enum is deprecated and should not be used in newly-written code.

-This function is deprecated! Use g_type_module_register_enum() instead.

+This function is deprecated! Use g_type_module_register_enum() instead.

@@ -489,7 +601,9 @@

Returns :

- a new enum GType + a new enum GType @@ -498,12 +612,24 @@

gimp_module_info_new ()

-
GimpModuleInfo*     gimp_module_info_new                (guint32 abi_version,
-                                                         const gchar *purpose,
-                                                         const gchar *author,
-                                                         const gchar *version,
-                                                         const gchar *copyright,
-                                                         const gchar *date);
+
GimpModuleInfo*     gimp_module_info_new                (guint32 abi_version,
+                                                         const gchar *purpose,
+                                                         const gchar *author,
+                                                         const gchar *version,
+                                                         const gchar *copyright,
+                                                         const gchar *date);

Creates a newly allocated GimpModuleInfo struct.

@@ -599,7 +725,9 @@

The "modified" signal

void                user_function                      (GimpModule *gimpmodule,
-                                                        gpointer    user_data)       : Run First
+ gpointer user_data) : Run First

@@ -623,10 +751,14 @@

See Also

-GModule +GModule

-GTypeModule +GTypeModule

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmodule/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmodule/html/index.html --- gimp-2.6.0/devel-docs/libgimpmodule/html/index.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmodule/html/index.html 2008-10-08 23:32:58.000000000 +0100 @@ -21,7 +21,7 @@

- for GIMP 2.6.0 + for GIMP 2.6.1

@@ -31,7 +31,11 @@
I. GIMP Module Library
-GimpModule — A GTypeModule subclass which implements module loading using GModule. +GimpModule — A GTypeModule subclass which implements module loading using GModule.
GimpModuleDB — Keeps a list of GimpModule's found in a given searchpath. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpmodule/html/libgimpmodule.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpmodule/html/libgimpmodule.html --- gimp-2.6.0/devel-docs/libgimpmodule/html/libgimpmodule.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpmodule/html/libgimpmodule.html 2008-10-08 23:32:58.000000000 +0100 @@ -32,7 +32,11 @@

Table of Contents

-GimpModule — A GTypeModule subclass which implements module loading using GModule. +GimpModule — A GTypeModule subclass which implements module loading using GModule.
GimpModuleDB — Keeps a list of GimpModule's found in a given searchpath. diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpthumb/html/GimpThumbnail.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpthumb/html/GimpThumbnail.html --- gimp-2.6.0/devel-docs/libgimpthumb/html/GimpThumbnail.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpthumb/html/GimpThumbnail.html 2008-10-08 23:32:58.000000000 +0100 @@ -49,57 +49,117 @@ GimpThumbnail; GimpThumbnail* gimp_thumbnail_new (void); void gimp_thumbnail_set_uri (GimpThumbnail *thumbnail, - const gchar *uri); -gboolean gimp_thumbnail_set_filename (GimpThumbnail *thumbnail, - const gchar *filename, - GError **error); -gboolean gimp_thumbnail_set_from_thumb (GimpThumbnail *thumbnail, - const gchar *filename, - GError **error); + const gchar *uri); +gboolean gimp_thumbnail_set_filename (GimpThumbnail *thumbnail, + const gchar *filename, + GError **error); +gboolean gimp_thumbnail_set_from_thumb (GimpThumbnail *thumbnail, + const gchar *filename, + GError **error); GimpThumbState gimp_thumbnail_peek_image (GimpThumbnail *thumbnail); GimpThumbState gimp_thumbnail_peek_thumb (GimpThumbnail *thumbnail, GimpThumbSize size); GimpThumbState gimp_thumbnail_check_thumb (GimpThumbnail *thumbnail, GimpThumbSize size); -GdkPixbuf* gimp_thumbnail_load_thumb (GimpThumbnail *thumbnail, +GdkPixbuf* gimp_thumbnail_load_thumb (GimpThumbnail *thumbnail, GimpThumbSize size, - GError **error); -gboolean gimp_thumbnail_save_thumb (GimpThumbnail *thumbnail, - GdkPixbuf *pixbuf, - const gchar *software, - GError **error); -gboolean gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail, - GdkPixbuf *pixbuf, - const gchar *software, - GError **error); -gboolean gimp_thumbnail_save_failure (GimpThumbnail *thumbnail, - const gchar *software, - GError **error); + GError **error); +gboolean gimp_thumbnail_save_thumb (GimpThumbnail *thumbnail, + GdkPixbuf *pixbuf, + const gchar *software, + GError **error); +gboolean gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail, + GdkPixbuf *pixbuf, + const gchar *software, + GError **error); +gboolean gimp_thumbnail_save_failure (GimpThumbnail *thumbnail, + const gchar *software, + GError **error); void gimp_thumbnail_delete_failure (GimpThumbnail *thumbnail); void gimp_thumbnail_delete_others (GimpThumbnail *thumbnail, GimpThumbSize size); -gboolean gimp_thumbnail_has_failed (GimpThumbnail *thumbnail); +gboolean gimp_thumbnail_has_failed (GimpThumbnail *thumbnail);

Object Hierarchy

-  GObject
+  GObject
    +----GimpThumbnail
 

Properties

-  "image-filesize"           gint64                : Read / Write
-  "image-height"             gint                  : Read / Write
-  "image-mimetype"           gchar*                : Read / Write
-  "image-mtime"              gint64                : Read / Write
-  "image-num-layers"         gint                  : Read / Write
+  "image-filesize"           gint64                : Read / Write
+  "image-height"             gint                  : Read / Write
+  "image-mimetype"           gchar*                : Read / Write
+  "image-mtime"              gint64                : Read / Write
+  "image-num-layers"         gint                  : Read / Write
   "image-state"              GimpThumbState        : Read / Write
-  "image-type"               gchar*                : Read / Write
-  "image-uri"                gchar*                : Read / Write
-  "image-width"              gint                  : Read / Write
+  "image-type"               gchar*                : Read / Write
+  "image-uri"                gchar*                : Read / Write
+  "image-width"              gint                  : Read / Write
   "thumb-state"              GimpThumbState        : Read / Write
 
@@ -141,7 +201,9 @@

gimp_thumbnail_set_uri ()

void                gimp_thumbnail_set_uri              (GimpThumbnail *thumbnail,
-                                                         const gchar *uri);
+ const gchar *uri);

Sets the location of the image file associated with the thumbnail.

@@ -169,9 +231,15 @@

gimp_thumbnail_set_filename ()

-
gboolean            gimp_thumbnail_set_filename         (GimpThumbnail *thumbnail,
-                                                         const gchar *filename,
-                                                         GError **error);
+
gboolean            gimp_thumbnail_set_filename         (GimpThumbnail *thumbnail,
+                                                         const gchar *filename,
+                                                         GError **error);

Sets the location of the image file associated with the thumbnail.

@@ -197,8 +265,12 @@

Returns :

- TRUE if the filename was successfully set, - FALSE otherwise + TRUE if the filename was successfully set, + FALSE otherwise @@ -207,9 +279,15 @@

gimp_thumbnail_set_from_thumb ()

-
gboolean            gimp_thumbnail_set_from_thumb       (GimpThumbnail *thumbnail,
-                                                         const gchar *filename,
-                                                         GError **error);
+
gboolean            gimp_thumbnail_set_from_thumb       (GimpThumbnail *thumbnail,
+                                                         const gchar *filename,
+                                                         GError **error);

This function tries to load the thumbnail file pointed to by filename and retrieves the URI of the original image file from @@ -242,7 +320,11 @@

Returns :

- TRUE if the pixbuf could be loaded, FALSE otherwise + TRUE if the pixbuf could be loaded, FALSE otherwise @@ -352,9 +434,13 @@

gimp_thumbnail_load_thumb ()

-
GdkPixbuf*          gimp_thumbnail_load_thumb           (GimpThumbnail *thumbnail,
+
GdkPixbuf*          gimp_thumbnail_load_thumb           (GimpThumbnail *thumbnail,
                                                          GimpThumbSize size,
-                                                         GError **error);
+ GError **error);

Attempts to load a thumbnail preview for the image associated with thumbnail. Before you use this function you need need to set an @@ -392,7 +478,9 @@

Returns :

- a preview pixbuf or NULL if no thumbnail was found + a preview pixbuf or NULL if no thumbnail was found @@ -401,10 +489,18 @@

gimp_thumbnail_save_thumb ()

-
gboolean            gimp_thumbnail_save_thumb           (GimpThumbnail *thumbnail,
-                                                         GdkPixbuf *pixbuf,
-                                                         const gchar *software,
-                                                         GError **error);
+
gboolean            gimp_thumbnail_save_thumb           (GimpThumbnail *thumbnail,
+                                                         GdkPixbuf *pixbuf,
+                                                         const gchar *software,
+                                                         GError **error);

Saves a preview thumbnail for the image associated with thumbnail. to the global thumbnail repository. @@ -433,7 +529,9 @@

pixbuf :

- a GdkPixbuf representing the preview thumbnail + a GdkPixbuf representing the preview thumbnail @@ -448,8 +546,12 @@

Returns :

- TRUE if a thumbnail was successfully written, - FALSE otherwise + TRUE if a thumbnail was successfully written, + FALSE otherwise @@ -458,10 +560,18 @@

gimp_thumbnail_save_thumb_local ()

-
gboolean            gimp_thumbnail_save_thumb_local     (GimpThumbnail *thumbnail,
-                                                         GdkPixbuf *pixbuf,
-                                                         const gchar *software,
-                                                         GError **error);
+
gboolean            gimp_thumbnail_save_thumb_local     (GimpThumbnail *thumbnail,
+                                                         GdkPixbuf *pixbuf,
+                                                         const gchar *software,
+                                                         GError **error);

Saves a preview thumbnail for the image associated with thumbnail to the local thumbnail repository. Local thumbnails have been added @@ -483,7 +593,9 @@

pixbuf :

- a GdkPixbuf representing the preview thumbnail + a GdkPixbuf representing the preview thumbnail @@ -498,8 +610,12 @@

Returns :

- TRUE if a thumbnail was successfully written, - FALSE otherwise + TRUE if a thumbnail was successfully written, + FALSE otherwise @@ -511,9 +627,15 @@

gimp_thumbnail_save_failure ()

-
gboolean            gimp_thumbnail_save_failure         (GimpThumbnail *thumbnail,
-                                                         const gchar *software,
-                                                         GError **error);
+
gboolean            gimp_thumbnail_save_failure         (GimpThumbnail *thumbnail,
+                                                         const gchar *software,
+                                                         GError **error);

Saves a failure thumbnail for the image associated with thumbnail. This is an empty pixbuf that indicates that an attempt @@ -542,8 +664,12 @@

Returns :

- TRUE if a failure thumbnail was successfully written, - FALSE otherwise + TRUE if a failure thumbnail was successfully written, + FALSE otherwise @@ -605,7 +731,9 @@

gimp_thumbnail_has_failed ()

-
gboolean            gimp_thumbnail_has_failed           (GimpThumbnail *thumbnail);
+
gboolean            gimp_thumbnail_has_failed           (GimpThumbnail *thumbnail);

Checks if a valid failure thumbnail for the given thumbnail exists in the global thumbnail repository. This may be the case even if @@ -629,7 +757,9 @@

Returns :

- TRUE if a failure thumbnail exists or + TRUE if a failure thumbnail exists or @@ -643,7 +773,9 @@

Property Details

The "image-filesize" property

-
  "image-filesize"           gint64                : Read / Write
+
  "image-filesize"           gint64                : Read / Write

Size of the image file in bytes.

Allowed values: >= 0

Default value: 0

@@ -651,7 +783,9 @@

The "image-height" property

-
  "image-height"             gint                  : Read / Write
+
  "image-height"             gint                  : Read / Write

Height of the image in pixels.

Allowed values: >= 0

Default value: 0

@@ -659,14 +793,18 @@

The "image-mimetype" property

-
  "image-mimetype"           gchar*                : Read / Write
+
  "image-mimetype"           gchar*                : Read / Write

Image mimetype.

Default value: NULL


The "image-mtime" property

-
  "image-mtime"              gint64                : Read / Write
+
  "image-mtime"              gint64                : Read / Write

Modification time of the image file in seconds since the Epoch.

Allowed values: >= 0

Default value: 0

@@ -674,7 +812,9 @@

The "image-num-layers" property

-
  "image-num-layers"         gint                  : Read / Write
+
  "image-num-layers"         gint                  : Read / Write

The number of layers in the image.

Allowed values: >= 0

Default value: 0

@@ -689,21 +829,27 @@

The "image-type" property

-
  "image-type"               gchar*                : Read / Write
+
  "image-type"               gchar*                : Read / Write

String describing the type of the image format.

Default value: NULL


The "image-uri" property

-
  "image-uri"                gchar*                : Read / Write
+
  "image-uri"                gchar*                : Read / Write

URI of the image file.

Default value: NULL


The "image-width" property

-
  "image-width"              gint                  : Read / Write
+
  "image-width"              gint                  : Read / Write

Width of the image in pixels.

Allowed values: >= 0

Default value: 0

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpthumb/html/index.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpthumb/html/index.html --- gimp-2.6.0/devel-docs/libgimpthumb/html/index.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpthumb/html/index.html 2008-10-08 23:32:58.000000000 +0100 @@ -21,7 +21,7 @@

- for GIMP 2.6.0 + for GIMP 2.6.1

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html --- gimp-2.6.0/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html 2008-10-08 23:32:58.000000000 +0100 @@ -44,7 +44,9 @@
 enum                GimpThumbError;
 #define             GIMP_THUMB_ERROR
-GQuark              gimp_thumb_error_quark              (void);
+GQuark              gimp_thumb_error_quark              (void);
 
@@ -65,7 +67,9 @@ } GimpThumbError;

-These are the possible error codes used when a GError is set by +These are the possible error codes used when a GError is set by libgimpthumb.

@@ -102,7 +106,9 @@

gimp_thumb_error_quark ()

-
GQuark              gimp_thumb_error_quark              (void);
+
GQuark              gimp_thumb_error_quark              (void);

This function is never called directly. Use GIMP_THUMB_ERROR() instead.

@@ -112,7 +118,9 @@

-

Returns :

the GQuark that defines the GimpThumb error domain. + the GQuark that defines the GimpThumb error domain.
diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html --- gimp-2.6.0/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html 2008-09-30 22:55:58.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html 2008-10-08 23:32:58.000000000 +0100 @@ -42,28 +42,74 @@

Synopsis

-gboolean            gimp_thumb_init                     (const gchar *creator,
-                                                         const gchar *thumb_basedir);
-gchar*              gimp_thumb_find_thumb               (const gchar *uri,
+gboolean            gimp_thumb_init                     (const gchar *creator,
+                                                         const gchar *thumb_basedir);
+gchar*              gimp_thumb_find_thumb               (const gchar *uri,
                                                          GimpThumbSize *size);
-GimpThumbFileType   gimp_thumb_file_test                (const gchar *filename,
-                                                         gint64 *mtime,
-                                                         gint64 *size,
-                                                         gint *err_no);
-gchar*              gimp_thumb_name_from_uri            (const gchar *uri,
+GimpThumbFileType   gimp_thumb_file_test                (const gchar *filename,
+                                                         gint64 *mtime,
+                                                         gint64 *size,
+                                                         gint *err_no);
+gchar*              gimp_thumb_name_from_uri            (const gchar *uri,
                                                          GimpThumbSize size);
-gboolean            gimp_thumb_ensure_thumb_dir         (GimpThumbSize size,
-                                                         GError **error);
-const gchar*        gimp_thumb_get_thumb_dir            (GimpThumbSize size);
-void                gimp_thumbs_delete_for_uri          (const gchar *uri);
-gchar*              gimp_thumb_name_from_uri_local      (const gchar *uri,
+gboolean            gimp_thumb_ensure_thumb_dir         (GimpThumbSize size,
+                                                         GError **error);
+const gchar*        gimp_thumb_get_thumb_dir            (GimpThumbSize size);
+void                gimp_thumbs_delete_for_uri          (const gchar *uri);
+gchar*              gimp_thumb_name_from_uri_local      (const gchar *uri,
                                                          GimpThumbSize size);
-gboolean            gimp_thumb_ensure_thumb_dir_local   (const gchar *dirname,
+gboolean            gimp_thumb_ensure_thumb_dir_local   (const gchar *dirname,
                                                          GimpThumbSize size,
-                                                         GError **error);
-gchar*              gimp_thumb_get_thumb_dir_local      (const gchar *dirname,
+                                                         GError **error);
+gchar*              gimp_thumb_get_thumb_dir_local      (const gchar *dirname,
                                                          GimpThumbSize size);
-void                gimp_thumbs_delete_for_uri_local    (const gchar *uri);
+void                gimp_thumbs_delete_for_uri_local    (const gchar *uri);
 
@@ -76,8 +122,14 @@

Details

gimp_thumb_init ()

-
gboolean            gimp_thumb_init                     (const gchar *creator,
-                                                         const gchar *thumb_basedir);
+
gboolean            gimp_thumb_init                     (const gchar *creator,
+                                                         const gchar *thumb_basedir);

This function initializes the thumbnail system. It must be called before any other functions from libgimpthumb are used. You may call @@ -92,7 +144,9 @@ thumbnail creation failures. See the spec for more details.

-Usually you will pass NULL for thumb_basedir. Thumbnails will +Usually you will pass NULL for thumb_basedir. Thumbnails will then be stored in the user's personal thumbnail directory as defined in the spec. If you wish to use libgimpthumb to store application-specific thumbnails, you can specify a different base @@ -110,12 +164,16 @@

thumb_basedir :

- an absolute path or NULL to use the default + an absolute path or NULL to use the default

Returns :

- TRUE if the library was successfully initialized. + TRUE if the library was successfully initialized. @@ -124,7 +182,11 @@

gimp_thumb_find_thumb ()

-
gchar*              gimp_thumb_find_thumb               (const gchar *uri,
+
gchar*              gimp_thumb_find_thumb               (const gchar *uri,
                                                          GimpThumbSize *size);

This function attempts to locate a thumbnail for the given @@ -160,7 +222,9 @@

Returns :

a newly allocated string in the encoding of the - filesystem or NULL if no thumbnail for uri was found + filesystem or NULL if no thumbnail for uri was found @@ -169,10 +233,18 @@

gimp_thumb_file_test ()

-
GimpThumbFileType   gimp_thumb_file_test                (const gchar *filename,
-                                                         gint64 *mtime,
-                                                         gint64 *size,
-                                                         gint *err_no);
+
GimpThumbFileType   gimp_thumb_file_test                (const gchar *filename,
+                                                         gint64 *mtime,
+                                                         gint64 *size,
+                                                         gint *err_no);

This is a convenience and portability wrapper around stat(). It checks if the given filename exists and returns modification time @@ -215,7 +287,11 @@


gimp_thumb_name_from_uri ()

-
gchar*              gimp_thumb_name_from_uri            (const gchar *uri,
+
gchar*              gimp_thumb_name_from_uri            (const gchar *uri,
                                                          GimpThumbSize size);

Creates the name of the thumbnail file of the specified size that @@ -239,7 +315,9 @@

Returns :

a newly allocated filename in the encoding of the - filesystem or NULL if uri points to the user's + filesystem or NULL if uri points to the user's thumbnail repository. @@ -249,8 +327,12 @@

gimp_thumb_ensure_thumb_dir ()

-
gboolean            gimp_thumb_ensure_thumb_dir         (GimpThumbSize size,
-                                                         GError **error);
+
gboolean            gimp_thumb_ensure_thumb_dir         (GimpThumbSize size,
+                                                         GError **error);

This function checks if the directory that is required to store thumbnails for a particular size exist and attempts to create it @@ -278,7 +360,11 @@

Returns :

- TRUE is the directory exists, FALSE if it could not + TRUE is the directory exists, FALSE if it could not be created @@ -288,7 +374,9 @@

gimp_thumb_get_thumb_dir ()

-
const gchar*        gimp_thumb_get_thumb_dir            (GimpThumbSize size);
+
const gchar*        gimp_thumb_get_thumb_dir            (GimpThumbSize size);

Retrieve the name of the thumbnail folder for a specific size. The returned pointer will become invalid if gimp_thumb_init() is used @@ -315,7 +403,9 @@


gimp_thumbs_delete_for_uri ()

-
void                gimp_thumbs_delete_for_uri          (const gchar *uri);
+
void                gimp_thumbs_delete_for_uri          (const gchar *uri);

Deletes all thumbnails for the image file specified by uri from the user's thumbnail repository.

@@ -336,7 +426,11 @@

gimp_thumb_name_from_uri_local ()

-
gchar*              gimp_thumb_name_from_uri_local      (const gchar *uri,
+
gchar*              gimp_thumb_name_from_uri_local      (const gchar *uri,
                                                          GimpThumbSize size);

Creates the name of a local thumbnail file of the specified size @@ -361,7 +455,9 @@

Returns :

a newly allocated filename in the encoding of the - filesystem or NULL if uri is a remote file or + filesystem or NULL if uri is a remote file or points to the user's thumbnail repository. @@ -374,9 +470,15 @@

gimp_thumb_ensure_thumb_dir_local ()

-
gboolean            gimp_thumb_ensure_thumb_dir_local   (const gchar *dirname,
+
gboolean            gimp_thumb_ensure_thumb_dir_local   (const gchar *dirname,
                                                          GimpThumbSize size,
-                                                         GError **error);
+ GError **error);

This function checks if the directory that is required to store local thumbnails for a particular size exist and attempts to @@ -408,7 +510,11 @@

Returns :

- TRUE is the directory exists, FALSE if it could not + TRUE is the directory exists, FALSE if it could not be created @@ -421,7 +527,11 @@

gimp_thumb_get_thumb_dir_local ()

-
gchar*              gimp_thumb_get_thumb_dir_local      (const gchar *dirname,
+
gchar*              gimp_thumb_get_thumb_dir_local      (const gchar *dirname,
                                                          GimpThumbSize size);

Retrieve the name of the local thumbnail folder for a specific @@ -457,7 +567,9 @@


gimp_thumbs_delete_for_uri_local ()

-
void                gimp_thumbs_delete_for_uri_local    (const gchar *uri);
+
void                gimp_thumbs_delete_for_uri_local    (const gchar *uri);

Deletes all thumbnails for the image file specified by uri from the local thumbnail repository.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpBrowser.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpBrowser.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpBrowser.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpBrowser.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,27 +57,51 @@

Synopsis

                     GimpBrowser;
-GtkWidget*          gimp_browser_new                    (void);
+GtkWidget*          gimp_browser_new                    (void);
 void                gimp_browser_add_search_types       (GimpBrowser *browser,
-                                                         const gchar *first_type_label,
-                                                         gint first_type_id,
+                                                         const gchar *first_type_label,
+                                                         gint first_type_id,
                                                          ...);
 void                gimp_browser_set_widget             (GimpBrowser *browser,
-                                                         GtkWidget *widget);
+                                                         GtkWidget *widget);
 void                gimp_browser_show_message           (GimpBrowser *browser,
-                                                         const gchar *message);
+                                                         const gchar *message);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkPaned
-                                 +----GtkHPaned
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkPaned
+                                 +----GtkHPaned
                                        +----GimpBrowser
 
@@ -85,7 +109,9 @@

Implemented Interfaces

GimpBrowser implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -111,7 +137,9 @@

gimp_browser_new ()

-
GtkWidget*          gimp_browser_new                    (void);
+
GtkWidget*          gimp_browser_new                    (void);

Create a new GimpBrowser widget.

@@ -133,11 +161,17 @@

gimp_browser_add_search_types ()

void                gimp_browser_add_search_types       (GimpBrowser *browser,
-                                                         const gchar *first_type_label,
-                                                         gint first_type_id,
+                                                         const gchar *first_type_label,
+                                                         gint first_type_id,
                                                          ...);

-Populates the GtkComboBox with search types.

+Populates the GtkComboBox with search types.

@@ -161,7 +195,9 @@

... :

- a NULL-terminated list of more labels and ids. + a NULL-terminated list of more labels and ids. @@ -173,7 +209,9 @@

gimp_browser_set_widget ()

void                gimp_browser_set_widget             (GimpBrowser *browser,
-                                                         GtkWidget *widget);
+ GtkWidget *widget);

Sets the widget to appear on the right side of the browser.

@@ -189,7 +227,9 @@

widget :

- a GtkWidget + a GtkWidget @@ -201,11 +241,17 @@

gimp_browser_show_message ()

void                gimp_browser_show_message           (GimpBrowser *browser,
-                                                         const gchar *message);
+ const gchar *message);

Displays message in the right side of the browser. Unless the right -side already contains a GtkLabel, the widget previously added with -gimp_browser_set_widget() is removed and replaced by a GtkLabel.

+side already contains a GtkLabel, the widget previously added with +gimp_browser_set_widget() is removed and replaced by a GtkLabel.

@@ -233,9 +279,15 @@

The "search" signal

void                user_function                      (GimpBrowser *gimpbrowser,
-                                                        gchar       *arg1,
-                                                        gint         arg2,
-                                                        gpointer     user_data)        : Run Last
+ gchar *arg1, + gint arg2, + gpointer user_data) : Run Last

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpButton.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,7 +49,9 @@

GimpButton

-

GimpButton — A GtkButton with a little extra functionality.

+

GimpButton — A GtkButton with a little extra functionality.

@@ -57,21 +59,39 @@

Synopsis

                     GimpButton;
-GtkWidget*          gimp_button_new                     (void);
+GtkWidget*          gimp_button_new                     (void);
 void                gimp_button_extended_clicked        (GimpButton *button,
-                                                         GdkModifierType state);
+                                                         GdkModifierType state);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkButton
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkButton
                                        +----GimpButton
                                              +----GimpColorButton
 
@@ -80,7 +100,9 @@

Implemented Interfaces

GimpButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -91,7 +113,9 @@

Description

-GimpButton adds an extra signal to the GtkButton widget that allows +GimpButton adds an extra signal to the GtkButton widget that allows to distinguish a normal click from a click that was performed with modifier keys pressed.

@@ -108,7 +132,9 @@

gimp_button_new ()

-
GtkWidget*          gimp_button_new                     (void);
+
GtkWidget*          gimp_button_new                     (void);

Creates a new GimpButton widget.

@@ -127,7 +153,9 @@

gimp_button_extended_clicked ()

void                gimp_button_extended_clicked        (GimpButton *button,
-                                                         GdkModifierType state);
+ GdkModifierType state);

Emits the button's "extended_clicked" signal.

@@ -155,8 +183,12 @@

The "extended-clicked" signal

void                user_function                      (GimpButton     *gimpbutton,
-                                                        GdkModifierType arg1,
-                                                        gpointer        user_data)       : Run First
+ GdkModifierType arg1, + gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2008-10-08 23:32:58.000000000 +0100 @@ -55,16 +55,26 @@

Synopsis

                     GimpCellRendererColor;
-GtkCellRenderer*    gimp_cell_renderer_color_new        (void);
+GtkCellRenderer*    gimp_cell_renderer_color_new        (void);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkCellRenderer
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkCellRenderer
                      +----GimpCellRendererColor
 
@@ -74,8 +84,12 @@ "color" GimpRGB* : Read / Write - "icon-size" gint : Read / Write / Construct - "opaque" gboolean : Read / Write / Construct + "icon-size" gint : Read / Write / Construct + "opaque" gboolean : Read / Write / Construct
@@ -96,9 +110,13 @@

gimp_cell_renderer_color_new ()

-
GtkCellRenderer*    gimp_cell_renderer_color_new        (void);
+
GtkCellRenderer*    gimp_cell_renderer_color_new        (void);

-Creates a GtkCellRenderer that displays a color.

+Creates a GtkCellRenderer that displays a color.

@@ -127,7 +145,9 @@

The "icon-size" property

-
  "icon-size"                gint                  : Read / Write / Construct
+
  "icon-size"                gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 1

@@ -135,7 +155,9 @@

The "opaque" property

-
  "opaque"                   gboolean              : Read / Write / Construct
+
  "opaque"                   gboolean              : Read / Write / Construct

Default value: TRUE

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2008-10-08 23:32:58.000000000 +0100 @@ -57,28 +57,50 @@

Synopsis

                     GimpCellRendererToggle;
-GtkCellRenderer*    gimp_cell_renderer_toggle_new       (const gchar *stock_id);
+GtkCellRenderer*    gimp_cell_renderer_toggle_new       (const gchar *stock_id);
 void                gimp_cell_renderer_toggle_clicked   (GimpCellRendererToggle *cell,
-                                                         const gchar *path,
-                                                         GdkModifierType state);
+                                                         const gchar *path,
+                                                         GdkModifierType state);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkCellRenderer
-                     +----GtkCellRendererToggle
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkCellRenderer
+                     +----GtkCellRendererToggle
                            +----GimpCellRendererToggle
 

Properties

-  "stock-id"                 gchar*                : Read / Write / Construct
-  "stock-size"               gint                  : Read / Write / Construct
+  "stock-id"                 gchar*                : Read / Write / Construct
+  "stock-size"               gint                  : Read / Write / Construct
 
@@ -105,9 +127,15 @@

gimp_cell_renderer_toggle_new ()

-
GtkCellRenderer*    gimp_cell_renderer_toggle_new       (const gchar *stock_id);
-

-Creates a custom version of the GtkCellRendererToggle. Instead of +

GtkCellRenderer*    gimp_cell_renderer_toggle_new       (const gchar *stock_id);
+

+Creates a custom version of the GtkCellRendererToggle. Instead of showing the standard toggle button, it shows a stock icon if the cell is active and no icon otherwise. This cell renderer is for example used in the Layers treeview to indicate and control the @@ -138,8 +166,12 @@

gimp_cell_renderer_toggle_clicked ()

void                gimp_cell_renderer_toggle_clicked   (GimpCellRendererToggle *cell,
-                                                         const gchar *path,
-                                                         GdkModifierType state);
+ const gchar *path, + GdkModifierType state);

Emits the "clicked" signal from a GimpCellRendererToggle.

@@ -173,14 +205,18 @@

Property Details

The "stock-id" property

-
  "stock-id"                 gchar*                : Read / Write / Construct
+
  "stock-id"                 gchar*                : Read / Write / Construct

Default value: NULL


The "stock-size" property

-
  "stock-size"               gint                  : Read / Write / Construct
+
  "stock-size"               gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 4

@@ -191,9 +227,15 @@

The "clicked" signal

void                user_function                      (GimpCellRendererToggle *gimpcellrenderertoggle,
-                                                        gchar                  *arg1,
-                                                        GdkModifierType         arg2,
-                                                        gpointer                user_data)                   : Run Last
+ gchar *arg1, + GdkModifierType arg2, + gpointer user_data) : Run Last

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpChainButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpChainButton.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpChainButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpChainButton.html 2008-10-08 23:32:58.000000000 +0100 @@ -60,21 +60,39 @@
                     GimpChainButton;
 enum                GimpChainPosition;
-GtkWidget*          gimp_chain_button_new               (GimpChainPosition position);
+GtkWidget*          gimp_chain_button_new               (GimpChainPosition position);
 void                gimp_chain_button_set_active        (GimpChainButton *button,
-                                                         gboolean active);
-gboolean            gimp_chain_button_get_active        (GimpChainButton *button);
+                                                         gboolean active);
+gboolean            gimp_chain_button_get_active        (GimpChainButton *button);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkTable
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkTable
                                  +----GimpChainButton
 
@@ -82,7 +100,9 @@

Implemented Interfaces

GimpChainButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

@@ -140,7 +160,9 @@

gimp_chain_button_new ()

-
GtkWidget*          gimp_chain_button_new               (GimpChainPosition position);
+
GtkWidget*          gimp_chain_button_new               (GimpChainPosition position);

Creates a new GimpChainButton widget.

@@ -177,10 +199,16 @@

gimp_chain_button_set_active ()

void                gimp_chain_button_set_active        (GimpChainButton *button,
-                                                         gboolean active);
-

-Sets the state of the GimpChainButton to be either locked (TRUE) or -unlocked (FALSE) and changes the showed pixmap to reflect the new state.

+ gboolean active); +

+Sets the state of the GimpChainButton to be either locked (TRUE) or +unlocked (FALSE) and changes the showed pixmap to reflect the new state.

@@ -203,7 +231,9 @@

gimp_chain_button_get_active ()

-
gboolean            gimp_chain_button_get_active        (GimpChainButton *button);
+
gboolean            gimp_chain_button_get_active        (GimpChainButton *button);

Checks the state of the GimpChainButton.

@@ -219,7 +249,9 @@

Returns :

- TRUE if the GimpChainButton is active (locked). + TRUE if the GimpChainButton is active (locked). @@ -246,7 +278,9 @@

The "toggled" signal

void                user_function                      (GimpChainButton *gimpchainbutton,
-                                                        gpointer         user_data)            : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorArea.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorArea.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorArea.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorArea.html 2008-10-08 23:32:58.000000000 +0100 @@ -60,11 +60,15 @@
                     GimpColorArea;
 enum                GimpColorAreaType;
-GtkWidget*          gimp_color_area_new                 (const GtkWidget*          gimp_color_area_new                 (const GimpRGB *color,
                                                          GimpColorAreaType type,
-                                                         GdkModifierType drag_mask);
+                                                         GdkModifierType drag_mask);
 void                gimp_color_area_set_color           (GimpColorArea *area,
                                                          const GimpRGB *color);
-gboolean            gimp_color_area_has_alpha           (GimpColorArea *area);
+gboolean            gimp_color_area_has_alpha           (GimpColorArea *area);
 void                gimp_color_area_set_type            (GimpColorArea *area,
                                                          GimpColorAreaType type);
 void                gimp_color_area_set_draw_border     (GimpColorArea *area,
-                                                         gboolean draw_border);
+                                                         gboolean draw_border);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkDrawingArea
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkDrawingArea
                            +----GimpColorArea
 
@@ -95,7 +113,9 @@

Implemented Interfaces

GimpColorArea implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

@@ -103,8 +123,12 @@ "color" GimpRGB* : Read / Write / Construct - "drag-mask" GdkModifierType : Write / Construct Only - "draw-border" gboolean : Read / Write + "drag-mask" GdkModifierType : Write / Construct Only + "draw-border" gboolean : Read / Write "type" GimpColorAreaType : Read / Write / Construct
@@ -146,11 +170,15 @@

gimp_color_area_new ()

-
GtkWidget*          gimp_color_area_new                 (const GtkWidget*          gimp_color_area_new                 (const GimpRGB *color,
                                                          GimpColorAreaType type,
-                                                         GdkModifierType drag_mask);
+ GdkModifierType drag_mask);

Creates a new GimpColorArea widget.

@@ -251,7 +279,9 @@

gimp_color_area_has_alpha ()

-
gboolean            gimp_color_area_has_alpha           (GimpColorArea *area);
+
gboolean            gimp_color_area_has_alpha           (GimpColorArea *area);

Checks whether the area shows transparency information. This is determined via the area's GimpColorAreaType.

@@ -268,7 +298,11 @@

Returns :

- TRUE if area shows transparency information, FALSE otherwise. + TRUE if area shows transparency information, FALSE otherwise. @@ -306,7 +340,9 @@

gimp_color_area_set_draw_border ()

void                gimp_color_area_set_draw_border     (GimpColorArea *area,
-                                                         gboolean draw_border);
+ gboolean draw_border);

The area can draw a thin border in the foreground color around itself. This function allows to toggle this behaviour on and @@ -349,13 +385,17 @@


The "drag-mask" property

-
  "drag-mask"                GdkModifierType       : Write / Construct Only
+
  "drag-mask"                GdkModifierType       : Write / Construct Only


The "draw-border" property

-
  "draw-border"              gboolean              : Read / Write
+
  "draw-border"              gboolean              : Read / Write

Whether to draw a thin border in the foreground color around the area.

@@ -384,7 +424,9 @@

The "color-changed" signal

void                user_function                      (GimpColorArea *gimpcolorarea,
-                                                        gpointer       user_data)          : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorButton.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorButton.html 2008-10-08 23:32:58.000000000 +0100 @@ -59,9 +59,17 @@

Synopsis

                     GimpColorButton;
-GtkWidget*          gimp_color_button_new               (const gchar *title,
-                                                         gint width,
-                                                         gint height,
+GtkWidget*          gimp_color_button_new               (const gchar *title,
+                                                         gint width,
+                                                         gint height,
                                                          const GimpRGB *color,
@@ -75,9 +83,15 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB *color);
 void                gimp_color_button_set_update        (GimpColorButton *button,
-                                                         gboolean continuous);
-gboolean            gimp_color_button_get_update        (GimpColorButton *button);
-gboolean            gimp_color_button_has_alpha         (GimpColorButton *button);
+                                                         gboolean continuous);
+gboolean            gimp_color_button_get_update        (GimpColorButton *button);
+gboolean            gimp_color_button_has_alpha         (GimpColorButton *button);
 void                gimp_color_button_set_type          (GimpColorButton *button,
                                                          GimpColorAreaType type);
 
@@ -85,13 +99,27 @@

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkButton
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkButton
                                        +----GimpButton
                                              +----GimpColorButton
 
@@ -100,7 +128,9 @@

Implemented Interfaces

GimpColorButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

@@ -108,8 +138,12 @@ "color" GimpRGB* : Read / Write / Construct - "continuous-update" gboolean : Read / Write / Construct - "title" gchar* : Read / Write / Construct Only + "continuous-update" gboolean : Read / Write / Construct + "title" gchar* : Read / Write / Construct Only "type" GimpColorAreaType : Read / Write / Construct
@@ -144,9 +178,17 @@

gimp_color_button_new ()

-
GtkWidget*          gimp_color_button_new               (const gchar *title,
-                                                         gint width,
-                                                         gint height,
+
GtkWidget*          gimp_color_button_new               (const gchar *title,
+                                                         gint width,
+                                                         gint height,
                                                          const GimpRGB *color,
@@ -265,9 +307,13 @@
 

gimp_color_button_set_update ()

void                gimp_color_button_set_update        (GimpColorButton *button,
-                                                         gboolean continuous);
+ gboolean continuous);

-When set to TRUE, the button will emit the "color-changed" +When set to TRUE, the button will emit the "color-changed" continuously while the color is changed in the color selection dialog.

@@ -292,7 +338,9 @@


gimp_color_button_get_update ()

-
gboolean            gimp_color_button_get_update        (GimpColorButton *button);
+
gboolean            gimp_color_button_get_update        (GimpColorButton *button);

Returns the color button's continuous_update property.

@@ -317,7 +365,9 @@


gimp_color_button_has_alpha ()

-
gboolean            gimp_color_button_has_alpha         (GimpColorButton *button);
+
gboolean            gimp_color_button_has_alpha         (GimpColorButton *button);

Checks whether the buttons shows transparency information.

@@ -333,7 +383,11 @@

Returns :

- TRUE if the button shows transparency information, FALSE + TRUE if the button shows transparency information, FALSE otherwise. @@ -385,7 +439,9 @@

The "continuous-update" property

-
  "continuous-update"        gboolean              : Read / Write / Construct
+
  "continuous-update"        gboolean              : Read / Write / Construct

The update policy of the color button.

@@ -398,7 +454,9 @@


The "title" property

-
  "title"                    gchar*                : Read / Write / Construct Only
+
  "title"                    gchar*                : Read / Write / Construct Only

The title to be used for the color selection dialog.

@@ -427,7 +485,9 @@

The "color-changed" signal

void                user_function                      (GimpColorButton *gimpcolorbutton,
-                                                        gpointer         user_data)            : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorDisplay.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorDisplay.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2008-10-08 23:32:59.000000000 +0100 @@ -59,11 +59,17 @@

Synopsis

                     GimpColorDisplay;
-GimpColorDisplay*   gimp_color_display_new              (GType display_type);
+GimpColorDisplay*   gimp_color_display_new              (GType display_type);
 GimpColorDisplay*   gimp_color_display_clone            (GimpColorDisplay *display);
 void                gimp_color_display_set_enabled      (GimpColorDisplay *display,
-                                                         gboolean enabled);
-gboolean            gimp_color_display_get_enabled      (GimpColorDisplay *display);
+                                                         gboolean enabled);
+gboolean            gimp_color_display_get_enabled      (GimpColorDisplay *display);
 GimpColorConfig*    gimp_color_display_get_config       (GimpColorDisplay *display);
@@ -71,11 +77,21 @@
 href="../libgimpcolor/libgimpcolor-GimpColorManaged.html#GimpColorManaged"
 >GimpColorManaged*   gimp_color_display_get_managed      (GimpColorDisplay *display);
 void                gimp_color_display_convert          (GimpColorDisplay *display,
-                                                         guchar *buf,
-                                                         gint width,
-                                                         gint height,
-                                                         gint bpp,
-                                                         gint bpl);
+                                                         guchar *buf,
+                                                         gint width,
+                                                         gint height,
+                                                         gint bpp,
+                                                         gint bpl);
 void                gimp_color_display_load_state       (GimpColorDisplay *display,
                                                          GimpParasite*       gimp_color_display_save_state       (GimpColorDisplay *display);
-GtkWidget*          gimp_color_display_configure        (GimpColorDisplay *display);
+GtkWidget*          gimp_color_display_configure        (GimpColorDisplay *display);
 void                gimp_color_display_configure_reset  (GimpColorDisplay *display);
 void                gimp_color_display_changed          (GimpColorDisplay *display);
 
@@ -91,7 +109,9 @@

Object Hierarchy

-  GObject
+  GObject
    +----GimpColorDisplay
 
@@ -112,7 +132,9 @@ "color-managed" GimpColorManagedInterface* : Read / Write / Construct Only - "enabled" gboolean : Read / Write / Construct + "enabled" gboolean : Read / Write / Construct
@@ -140,13 +162,17 @@

gimp_color_display_new ()

-
GimpColorDisplay*   gimp_color_display_new              (GType display_type);
+
GimpColorDisplay*   gimp_color_display_new              (GType display_type);

Warning

gimp_color_display_new is deprecated and should not be used in newly-written code.

-This function is deprecated. Please use g_object_new() directly.

+This function is deprecated. Please use g_object_new() directly.

@@ -195,7 +221,9 @@

gimp_color_display_set_enabled ()

void                gimp_color_display_set_enabled      (GimpColorDisplay *display,
-                                                         gboolean enabled);
+ gboolean enabled);

@@ -220,7 +248,9 @@

gimp_color_display_get_enabled ()

-
gboolean            gimp_color_display_get_enabled      (GimpColorDisplay *display);
+
gboolean            gimp_color_display_get_enabled      (GimpColorDisplay *display);

@@ -265,7 +295,9 @@

Returns :

a pointer to the GimpColorConfig object or NULL. +>GimpColorConfig object or NULL. @@ -297,7 +329,9 @@

Returns :

a pointer to the GimpColorManaged object or NULL. +>GimpColorManaged object or NULL. @@ -310,11 +344,21 @@

gimp_color_display_convert ()

void                gimp_color_display_convert          (GimpColorDisplay *display,
-                                                         guchar *buf,
-                                                         gint width,
-                                                         gint height,
-                                                         gint bpp,
-                                                         gint bpl);
+ guchar *buf, + gint width, + gint height, + gint bpp, + gint bpl);

@@ -414,7 +458,9 @@

gimp_color_display_configure ()

-
GtkWidget*          gimp_color_display_configure        (GimpColorDisplay *display);
+
GtkWidget*          gimp_color_display_configure        (GimpColorDisplay *display);

@@ -493,7 +539,9 @@

The "enabled" property

-
  "enabled"                  gboolean              : Read / Write / Construct
+
  "enabled"                  gboolean              : Read / Write / Construct

Default value: TRUE

@@ -503,7 +551,9 @@

The "changed" signal

void                user_function                      (GimpColorDisplay *gimpcolordisplay,
-                                                        gpointer          user_data)             : Run First
+ gpointer user_data) : Run First

@@ -527,10 +577,14 @@

See Also

-GModule +GModule

-GTypeModule +GTypeModule

libgimp-gimpmodule diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2008-10-08 23:32:59.000000000 +0100 @@ -68,17 +68,29 @@ (GimpColorDisplayStack *stack, GimpColorDisplay *display); void gimp_color_display_stack_convert (GimpColorDisplayStack *stack, - guchar *buf, - gint width, - gint height, - gint bpp, - gint bpl); + guchar *buf, + gint width, + gint height, + gint bpp, + gint bpl);

Object Hierarchy

-  GObject
+  GObject
    +----GimpColorDisplayStack
 
@@ -276,11 +288,21 @@

gimp_color_display_stack_convert ()

void                gimp_color_display_stack_convert    (GimpColorDisplayStack *stack,
-                                                         guchar *buf,
-                                                         gint width,
-                                                         gint height,
-                                                         gint bpp,
-                                                         gint bpl);
+ guchar *buf, + gint width, + gint height, + gint bpp, + gint bpl);

@@ -329,8 +351,12 @@

The "added" signal

void                user_function                      (GimpColorDisplayStack *gimpcolordisplaystack,
                                                         GimpColorDisplay      *arg1,
-                                                        gint                   arg2,
-                                                        gpointer               user_data)                  : Run First
+ gint arg2, + gpointer user_data) : Run First

@@ -364,7 +390,9 @@

The "changed" signal

void                user_function                      (GimpColorDisplayStack *gimpcolordisplaystack,
-                                                        gpointer               user_data)                  : Run First
+ gpointer user_data) : Run First

@@ -389,7 +417,9 @@

The "removed" signal

void                user_function                      (GimpColorDisplayStack *gimpcolordisplaystack,
                                                         GimpColorDisplay      *arg1,
-                                                        gpointer               user_data)                  : Run First
+ gpointer user_data) : Run First

@@ -419,8 +449,12 @@

The "reordered" signal

void                user_function                      (GimpColorDisplayStack *gimpcolordisplaystack,
                                                         GimpColorDisplay      *arg1,
-                                                        gint                   arg2,
-                                                        gpointer               user_data)                  : Run First
+ gint arg2, + gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,7 +57,9 @@

Synopsis

                     GimpColorHexEntry;
-GtkWidget*          gimp_color_hex_entry_new            (void);
+GtkWidget*          gimp_color_hex_entry_new            (void);
 void                gimp_color_hex_entry_set_color      (GimpColorHexEntry *entry,
                                                          const 
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkEntry
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkEntry
                            +----GimpColorHexEntry
 
@@ -83,7 +95,13 @@

Implemented Interfaces

GimpColorHexEntry implements - AtkImplementorIface, GtkBuildable, GtkEditable and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkEditable and GtkCellEditable.

Signals

@@ -109,7 +127,9 @@

gimp_color_hex_entry_new ()

-
GtkWidget*          gimp_color_hex_entry_new            (void);
+
GtkWidget*          gimp_color_hex_entry_new            (void);

@@ -199,7 +219,9 @@

The "color-changed" signal

void                user_function                      (GimpColorHexEntry *gimpcolorhexentry,
-                                                        gpointer           user_data)              : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorNotebook.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorNotebook.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,21 +57,41 @@

Synopsis

                     GimpColorNotebook;
-GtkWidget*          gimp_color_notebook_set_has_page    (GimpColorNotebook *notebook,
-                                                         GType page_type,
-                                                         gboolean has_page);
+GtkWidget*          gimp_color_notebook_set_has_page    (GimpColorNotebook *notebook,
+                                                         GType page_type,
+                                                         gboolean has_page);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpColorSelector
                                              +----GimpColorNotebook
 
@@ -80,13 +100,19 @@

Implemented Interfaces

GimpColorNotebook implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Style Properties

-  "tab-border"               gint                  : Read
-  "tab-icon-size"            GtkIconSize           : Read
+  "tab-border"               gint                  : Read
+  "tab-icon-size"            GtkIconSize           : Read
 
@@ -108,9 +134,15 @@

gimp_color_notebook_set_has_page ()

-
GtkWidget*          gimp_color_notebook_set_has_page    (GimpColorNotebook *notebook,
-                                                         GType page_type,
-                                                         gboolean has_page);
+
GtkWidget*          gimp_color_notebook_set_has_page    (GimpColorNotebook *notebook,
+                                                         GType page_type,
+                                                         gboolean has_page);

This function adds and removed pages to / from a GimpColorNotebook. The page_type passed must be a GimpColorSelector subtype.

@@ -127,7 +159,9 @@

page_type :

- The GType of the notebook page to add or remove. + The GType of the notebook page to add or remove. @@ -137,8 +171,14 @@

Returns :

- The new page widget, if has_page was TRUE, or NULL - if has_page was FALSE. + The new page widget, if has_page was TRUE, or NULL + if has_page was FALSE. @@ -149,7 +189,9 @@

Style Property Details

The "tab-border" style property

-
  "tab-border"               gint                  : Read
+
  "tab-border"               gint                  : Read

Width of the border around the tab contents.

Allowed values: >= 0

Default value: 0

@@ -157,7 +199,9 @@

The "tab-icon-size" style property

-
  "tab-icon-size"            GtkIconSize           : Read
+
  "tab-icon-size"            GtkIconSize           : Read

Size for icons displayed in the tab.

Default value: GTK_ICON_SIZE_BUTTON

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorProfileComboBox.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorProfileComboBox.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorProfileComboBox.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorProfileComboBox.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,32 +57,68 @@

Synopsis

                     GimpColorProfileComboBox;
-GtkWidget*          gimp_color_profile_combo_box_new    (GtkWidget *dialog,
-                                                         const gchar *history);
-GtkWidget*          gimp_color_profile_combo_box_new_with_model
-                                                        (GtkWidget *dialog,
-                                                         GtkTreeModel *model);
+GtkWidget*          gimp_color_profile_combo_box_new    (GtkWidget *dialog,
+                                                         const gchar *history);
+GtkWidget*          gimp_color_profile_combo_box_new_with_model
+                                                        (GtkWidget *dialog,
+                                                         GtkTreeModel *model);
 void                gimp_color_profile_combo_box_add    (GimpColorProfileComboBox *combo,
-                                                         const gchar *filename,
-                                                         const gchar *label);
+                                                         const gchar *filename,
+                                                         const gchar *label);
 void                gimp_color_profile_combo_box_set_active
                                                         (GimpColorProfileComboBox *combo,
-                                                         const gchar *filename,
-                                                         const gchar *label);
-gchar*              gimp_color_profile_combo_box_get_active
+                                                         const gchar *filename,
+                                                         const gchar *label);
+gchar*              gimp_color_profile_combo_box_get_active
                                                         (GimpColorProfileComboBox *combo);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpColorProfileComboBox
 
@@ -90,12 +126,20 @@

Implemented Interfaces

GimpColorProfileComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellEditable and GtkCellLayout.

+ AtkImplementorIface, GtkBuildable, GtkCellEditable and GtkCellLayout.

Properties

-  "dialog"                   GtkDialog*            : Read / Write / Construct Only
+  "dialog"                   GtkDialog*            : Read / Write / Construct Only
   "model"                    GimpColorProfileStore*  : Read / Write
 
@@ -117,8 +161,14 @@

gimp_color_profile_combo_box_new ()

-
GtkWidget*          gimp_color_profile_combo_box_new    (GtkWidget *dialog,
-                                                         const gchar *history);
+
GtkWidget*          gimp_color_profile_combo_box_new    (GtkWidget *dialog,
+                                                         const gchar *history);

Create a combo-box widget for selecting color profiles. The combo-box is populated from the file specified as history. This filename is @@ -135,13 +185,17 @@

dialog :

- a GtkDialog to present when the user selects the + a GtkDialog to present when the user selects the "Select color profile from disk..." item

history :

- filename of the profilerc (or NULL for no history) + filename of the profilerc (or NULL for no history) @@ -158,9 +212,15 @@

gimp_color_profile_combo_box_new_with_model ()

-
GtkWidget*          gimp_color_profile_combo_box_new_with_model
-                                                        (GtkWidget *dialog,
-                                                         GtkTreeModel *model);
+
GtkWidget*          gimp_color_profile_combo_box_new_with_model
+                                                        (GtkWidget *dialog,
+                                                         GtkTreeModel *model);

This constructor is useful when you want to create several combo-boxes for profile selection that all share the same @@ -177,7 +237,9 @@

dialog :

- a GtkDialog to present when the user selects the + a GtkDialog to present when the user selects the "Select color profile from disk..." item @@ -201,8 +263,12 @@

gimp_color_profile_combo_box_add ()

void                gimp_color_profile_combo_box_add    (GimpColorProfileComboBox *combo,
-                                                         const gchar *filename,
-                                                         const gchar *label);
+ const gchar *filename, + const gchar *label);

This function delegates to the underlying GimpColorProfileStore. Please refer to the documentation of @@ -220,13 +286,19 @@

filename :

- filename of the profile to add (or NULL) + filename of the profile to add (or NULL)

label :

label to use for the profile - (may only be NULL if filename is NULL) + (may only be NULL if filename is NULL) @@ -239,12 +311,18 @@

gimp_color_profile_combo_box_set_active ()

void                gimp_color_profile_combo_box_set_active
                                                         (GimpColorProfileComboBox *combo,
-                                                         const gchar *filename,
-                                                         const gchar *label);
+ const gchar *filename, + const gchar *label);

Selects a color profile from the combo and makes it the active item. If the profile is not listed in the combo, then it is added -with the given label (or filename in case that label is NULL).

+with the given label (or filename in case that label is NULL).

@@ -263,7 +341,9 @@

label :

- label to use when adding a new entry (can be NULL) + label to use when adding a new entry (can be NULL) @@ -274,7 +354,9 @@

gimp_color_profile_combo_box_get_active ()

-
gchar*              gimp_color_profile_combo_box_get_active
+
gchar*              gimp_color_profile_combo_box_get_active
                                                         (GimpColorProfileComboBox *combo);

@@ -293,7 +375,9 @@

Returns :

The filename of the currently selected color profile. This is a newly allocated string and should be released - using g_free() when it is not any longer needed. + using g_free() when it is not any longer needed. @@ -307,9 +391,13 @@

Property Details

The "dialog" property

-
  "dialog"                   GtkDialog*            : Read / Write / Construct Only
-

-GtkDialog to present when the user selects the +

  "dialog"                   GtkDialog*            : Read / Write / Construct Only
+

+GtkDialog to present when the user selects the "Select color profile from disk..." item.

@@ -322,7 +410,9 @@

The "model" property

  "model"                    GimpColorProfileStore*  : Read / Write

-Overrides the "model" property of the GtkComboBox class. +Overrides the "model" property of the GtkComboBox class. GimpColorProfileComboBox requires the model to be a GimpColorProfileStore.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorProfileStore.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorProfileStore.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorProfileStore.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorProfileStore.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,17 +57,29 @@

Synopsis

                     GimpColorProfileStore;
-GtkListStore*       gimp_color_profile_store_new        (const gchar *history);
+GtkListStore*       gimp_color_profile_store_new        (const gchar *history);
 void                gimp_color_profile_store_add        (GimpColorProfileStore *store,
-                                                         const gchar *filename,
-                                                         const gchar *label);
+                                                         const gchar *filename,
+                                                         const gchar *label);
 

Object Hierarchy

-  GObject
-   +----GtkListStore
+  GObject
+   +----GtkListStore
          +----GimpColorProfileStore
 
@@ -75,12 +87,24 @@

Implemented Interfaces

GimpColorProfileStore implements - GtkBuildable, GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

+ GtkBuildable, GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

Properties

-  "history"                  gchar*                : Read / Write / Construct Only
+  "history"                  gchar*                : Read / Write / Construct Only
 
@@ -101,7 +125,11 @@

gimp_color_profile_store_new ()

-
GtkListStore*       gimp_color_profile_store_new        (const gchar *history);
+
GtkListStore*       gimp_color_profile_store_new        (const gchar *history);

Creates a new GimpColorProfileStore object and populates it with last used profiles read from the file history. The updated history @@ -122,7 +150,9 @@

history :

- filename of the profilerc (or NULL for no history) + filename of the profilerc (or NULL for no history) @@ -140,16 +170,24 @@

gimp_color_profile_store_add ()

void                gimp_color_profile_store_add        (GimpColorProfileStore *store,
-                                                         const gchar *filename,
-                                                         const gchar *label);
+ const gchar *filename, + const gchar *label);

Adds a color profile item to the GimpColorProfileStore. Items added with this function will be kept at the top, separated from the history of last used color profiles.

-This function is often used to add a selectable item for the NULL -filename. If you pass NULL for both filename and label, the +This function is often used to add a selectable item for the NULL +filename. If you pass NULL for both filename and label, the label will be set to the string "None" for you (and translated for the user).

@@ -165,13 +203,19 @@

filename :

- filename of the profile to add (or NULL) + filename of the profile to add (or NULL)

label :

label to use for the profile - (may only be NULL if filename is NULL) + (may only be NULL if filename is NULL) @@ -184,7 +228,9 @@

Property Details

The "history" property

-
  "history"                  gchar*                : Read / Write / Construct Only
+
  "history"                  gchar*                : Read / Write / Construct Only

Filename of the color history used to populate the profile store.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorScale.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorScale.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorScale.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorScale.html 2008-10-08 23:32:58.000000000 +0100 @@ -55,7 +55,11 @@

Synopsis

                     GimpColorScale;
-GtkWidget*          gimp_color_scale_new                (GtkOrientation orientation,
+GtkWidget*          gimp_color_scale_new                (GtkOrientation orientation,
                                                          GimpColorSelectorChannel channel);
 void                gimp_color_scale_set_channel        (GimpColorScale *scale,
                                                          GimpColorSelectorChannel channel);
@@ -71,12 +75,24 @@
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkRange
-                           +----GtkScale
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkRange
+                           +----GtkScale
                                  +----GimpColorScale
 
@@ -84,7 +100,9 @@

Implemented Interfaces

GimpColorScale implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

@@ -104,7 +122,11 @@

gimp_color_scale_new ()

-
GtkWidget*          gimp_color_scale_new                (GtkOrientation orientation,
+
GtkWidget*          gimp_color_scale_new                (GtkOrientation orientation,
                                                          GimpColorSelectorChannel channel);

Creates a new GimpColorScale widget.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorScales.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorScales.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorScales.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorScales.html 2008-10-08 23:32:58.000000000 +0100 @@ -60,13 +60,27 @@

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpColorSelector
                                              +----GimpColorScales
 
@@ -75,7 +89,9 @@

Implemented Interfaces

GimpColorScales implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorSelect.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorSelect.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2008-10-08 23:32:58.000000000 +0100 @@ -60,13 +60,27 @@

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpColorSelector
                                              +----GimpColorSelect
 
@@ -75,7 +89,9 @@

Implemented Interfaces

GimpColorSelect implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorSelection.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorSelection.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2008-10-08 23:32:59.000000000 +0100 @@ -59,10 +59,16 @@

Synopsis

                     GimpColorSelection;
-GtkWidget*          gimp_color_selection_new            (void);
+GtkWidget*          gimp_color_selection_new            (void);
 void                gimp_color_selection_set_show_alpha (GimpColorSelection *selection,
-                                                         gboolean show_alpha);
-gboolean            gimp_color_selection_get_show_alpha (GimpColorSelection *selection);
+                                                         gboolean show_alpha);
+gboolean            gimp_color_selection_get_show_alpha (GimpColorSelection *selection);
 void                gimp_color_selection_set_color      (GimpColorSelection *selection,
                                                          const 
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpColorSelection
 
@@ -104,7 +124,9 @@

Implemented Interfaces

GimpColorSelection implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

@@ -138,7 +160,9 @@

gimp_color_selection_new ()

-
GtkWidget*          gimp_color_selection_new            (void);
+
GtkWidget*          gimp_color_selection_new            (void);

Creates a new GimpColorSelection widget.

@@ -157,7 +181,9 @@

gimp_color_selection_set_show_alpha ()

void                gimp_color_selection_set_show_alpha (GimpColorSelection *selection,
-                                                         gboolean show_alpha);
+ gboolean show_alpha);

Sets the show_alpha property of the selection widget.

@@ -182,7 +208,9 @@


gimp_color_selection_get_show_alpha ()

-
gboolean            gimp_color_selection_get_show_alpha (GimpColorSelection *selection);
+
gboolean            gimp_color_selection_get_show_alpha (GimpColorSelection *selection);

Returns the selection's show_alpha property.

@@ -198,7 +226,9 @@

Returns :

- TRUE if the GimpColorSelection has alpha controls. + TRUE if the GimpColorSelection has alpha controls. @@ -398,7 +428,9 @@

The "color-changed" signal

void                user_function                      (GimpColorSelection *gimpcolorselection,
-                                                        gpointer            user_data)               : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorSelector.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorSelector.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2008-10-08 23:32:58.000000000 +0100 @@ -60,7 +60,11 @@ #define GIMP_COLOR_SELECTOR_SIZE #define GIMP_COLOR_SELECTOR_BAR_SIZE enum GimpColorSelectorChannel; -GtkWidget* gimp_color_selector_new (GType selector_type, +GtkWidget* gimp_color_selector_new (GType selector_type, const GimpRGB *rgb, @@ -70,12 +74,18 @@ GimpColorSelectorChannel channel); void gimp_color_selector_set_toggles_visible (GimpColorSelector *selector, - gboolean visible); + gboolean visible); void gimp_color_selector_set_toggles_sensitive (GimpColorSelector *selector, - gboolean sensitive); + gboolean sensitive); void gimp_color_selector_set_show_alpha (GimpColorSelector *selector, - gboolean show_alpha); + gboolean show_alpha); void gimp_color_selector_set_color (GimpColorSelector *selector, const

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpColorSelector
                                              +----GimpColorNotebook
                                              +----GimpColorScales
@@ -113,7 +137,9 @@
 

Implemented Interfaces

GimpColorSelector implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -218,7 +244,11 @@

gimp_color_selector_new ()

-
GtkWidget*          gimp_color_selector_new             (GType selector_type,
+
GtkWidget*          gimp_color_selector_new             (GType selector_type,
                                                          const GimpRGB *rgb,
@@ -267,7 +297,9 @@
 

gimp_color_selector_set_toggles_visible ()

void                gimp_color_selector_set_toggles_visible
                                                         (GimpColorSelector *selector,
-                                                         gboolean visible);
+ gboolean visible);

@@ -294,7 +326,9 @@

gimp_color_selector_set_toggles_sensitive ()

void                gimp_color_selector_set_toggles_sensitive
                                                         (GimpColorSelector *selector,
-                                                         gboolean sensitive);
+ gboolean sensitive);

@@ -320,7 +354,9 @@

gimp_color_selector_set_show_alpha ()

void                gimp_color_selector_set_show_alpha  (GimpColorSelector *selector,
-                                                         gboolean show_alpha);
+ gboolean show_alpha);

@@ -476,8 +512,12 @@

The "channel-changed" signal

void                user_function                      (GimpColorSelector *gimpcolorselector,
-                                                        gint               arg1,
-                                                        gpointer           user_data)              : Run First
+ gint arg1, + gpointer user_data) : Run First

@@ -506,9 +546,15 @@

The "color-changed" signal

void                user_function                      (GimpColorSelector *gimpcolorselector,
-                                                        gpointer           arg1,
-                                                        gpointer           arg2,
-                                                        gpointer           user_data)              : Run First
+ gpointer arg1, + gpointer arg2, + gpointer user_data) : Run First

@@ -542,10 +588,14 @@

See Also

-GModule +GModule

-GTypeModule +GTypeModule

libgimp-gimpmodule diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpController.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpController.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpController.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpController.html 2008-10-08 23:32:58.000000000 +0100 @@ -64,20 +64,36 @@ GimpControllerEventValue; union GimpControllerEvent; GimpController; -GimpController* gimp_controller_new (GType controller_type); -gint gimp_controller_get_n_events (GimpController *controller); -const gchar* gimp_controller_get_event_name (GimpController *controller, - gint event_id); -const gchar* gimp_controller_get_event_blurb (GimpController *controller, - gint event_id); -gboolean gimp_controller_event (GimpController *controller, +GimpController* gimp_controller_new (GType controller_type); +gint gimp_controller_get_n_events (GimpController *controller); +const gchar* gimp_controller_get_event_name (GimpController *controller, + gint event_id); +const gchar* gimp_controller_get_event_blurb (GimpController *controller, + gint event_id); +gboolean gimp_controller_event (GimpController *controller, const GimpControllerEvent *event);

Object Hierarchy

-  GObject
+  GObject
    +----GimpController
 
@@ -92,8 +108,12 @@

Properties

-  "name"                     gchar*                : Read / Write / Construct
-  "state"                    gchar*                : Read / Write / Construct
+  "name"                     gchar*                : Read / Write / Construct
+  "state"                    gchar*                : Read / Write / Construct
 
@@ -188,7 +208,9 @@

gimp_controller_new ()

-
GimpController*     gimp_controller_new                 (GType controller_type);
+
GimpController*     gimp_controller_new                 (GType controller_type);

@@ -213,7 +235,9 @@

gimp_controller_get_n_events ()

-
gint                gimp_controller_get_n_events        (GimpController *controller);
+
gint                gimp_controller_get_n_events        (GimpController *controller);

@@ -238,8 +262,12 @@

gimp_controller_get_event_name ()

-
const gchar*        gimp_controller_get_event_name      (GimpController *controller,
-                                                         gint event_id);
+
const gchar*        gimp_controller_get_event_name      (GimpController *controller,
+                                                         gint event_id);

@@ -269,8 +297,12 @@

gimp_controller_get_event_blurb ()

-
const gchar*        gimp_controller_get_event_blurb     (GimpController *controller,
-                                                         gint event_id);
+
const gchar*        gimp_controller_get_event_blurb     (GimpController *controller,
+                                                         gint event_id);

@@ -300,7 +332,9 @@

gimp_controller_event ()

-
gboolean            gimp_controller_event               (GimpController *controller,
+
gboolean            gimp_controller_event               (GimpController *controller,
                                                          const GimpControllerEvent *event);

@@ -333,14 +367,18 @@

Property Details

The "name" property

-
  "name"                     gchar*                : Read / Write / Construct
+
  "name"                     gchar*                : Read / Write / Construct

Default value: "Unnamed Controller"


The "state" property

-
  "state"                    gchar*                : Read / Write / Construct
+
  "state"                    gchar*                : Read / Write / Construct

Default value: "Unknown"

@@ -349,9 +387,15 @@

Signal Details

The "event" signal

-
gboolean            user_function                      (GimpController *gimpcontroller,
-                                                        gpointer        arg1,
-                                                        gpointer        user_data)           : Run Last
+
gboolean            user_function                      (GimpController *gimpcontroller,
+                                                        gpointer        arg1,
+                                                        gpointer        user_data)           : Run Last

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpDialog.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpDialog.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpDialog.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpDialog.html 2008-10-08 23:32:59.000000000 +0100 @@ -49,7 +49,9 @@
@@ -58,42 +60,92 @@

Synopsis

                     GimpDialog;
-GtkWidget*          gimp_dialog_new                     (const gchar *title,
-                                                         const gchar *role,
-                                                         GtkWidget *parent,
-                                                         GtkDialogFlags flags,
+GtkWidget*          gimp_dialog_new                     (const gchar *title,
+                                                         const gchar *role,
+                                                         GtkWidget *parent,
+                                                         GtkDialogFlags flags,
                                                          GimpHelpFunc help_func,
-                                                         const gchar *help_id,
+                                                         const gchar *help_id,
                                                          ...);
-GtkWidget*          gimp_dialog_new_valist              (const gchar *title,
-                                                         const gchar *role,
-                                                         GtkWidget *parent,
-                                                         GtkDialogFlags flags,
+GtkWidget*          gimp_dialog_new_valist              (const gchar *title,
+                                                         const gchar *role,
+                                                         GtkWidget *parent,
+                                                         GtkDialogFlags flags,
                                                          GimpHelpFunc help_func,
-                                                         const gchar *help_id,
+                                                         const gchar *help_id,
                                                          va_list args);
-GtkWidget*          gimp_dialog_add_button              (GimpDialog *dialog,
-                                                         const gchar *button_text,
-                                                         gint response_id);
+GtkWidget*          gimp_dialog_add_button              (GimpDialog *dialog,
+                                                         const gchar *button_text,
+                                                         gint response_id);
 void                gimp_dialog_add_buttons             (GimpDialog *dialog,
                                                          ...);
 void                gimp_dialog_add_buttons_valist      (GimpDialog *dialog,
                                                          va_list args);
-gint                gimp_dialog_run                     (GimpDialog *dialog);
-void                gimp_dialogs_show_help_button       (gboolean show);
+gint                gimp_dialog_run                     (GimpDialog *dialog);
+void                gimp_dialogs_show_help_button       (gboolean show);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkWindow
-                                       +----GtkDialog
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkWindow
+                                       +----GtkDialog
                                              +----GimpDialog
 
@@ -101,13 +153,19 @@

Implemented Interfaces

GimpDialog implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "help-func"                gpointer              : Read / Write / Construct Only
-  "help-id"                  gchar*                : Read / Write / Construct Only
+  "help-func"                gpointer              : Read / Write / Construct Only
+  "help-id"                  gchar*                : Read / Write / Construct Only
 
@@ -128,12 +186,24 @@

gimp_dialog_new ()

-
GtkWidget*          gimp_dialog_new                     (const gchar *title,
-                                                         const gchar *role,
-                                                         GtkWidget *parent,
-                                                         GtkDialogFlags flags,
+
GtkWidget*          gimp_dialog_new                     (const gchar *title,
+                                                         const gchar *role,
+                                                         GtkWidget *parent,
+                                                         GtkDialogFlags flags,
                                                          GimpHelpFunc help_func,
-                                                         const gchar *help_id,
+                                                         const gchar *help_id,
                                                          ...);

Creates a new GimpDialog widget. @@ -144,7 +214,9 @@

For a description of the format of the va_list describing the -action_area buttons see gtk_dialog_new_with_buttons().

+action_area buttons see gtk_dialog_new_with_buttons().

@@ -154,13 +226,17 @@
@@ -170,7 +246,9 @@ - @@ -185,7 +263,9 @@ - @@ -200,12 +280,24 @@

gimp_dialog_new_valist ()

-
GtkWidget*          gimp_dialog_new_valist              (const gchar *title,
-                                                         const gchar *role,
-                                                         GtkWidget *parent,
-                                                         GtkDialogFlags flags,
+
GtkWidget*          gimp_dialog_new_valist              (const gchar *title,
+                                                         const gchar *role,
+                                                         GtkWidget *parent,
+                                                         GtkDialogFlags flags,
                                                          GimpHelpFunc help_func,
-                                                         const gchar *help_id,
+                                                         const gchar *help_id,
                                                          va_list args);

Creates a new GimpDialog widget. If a GtkWindow is specified as @@ -213,7 +305,9 @@

For a description of the format of the va_list describing the -action_area buttons see gtk_dialog_new_with_buttons().

+action_area buttons see gtk_dialog_new_with_buttons().

@@ -223,23 +317,31 @@
- - @@ -268,11 +370,19 @@

gimp_dialog_add_button ()

-
GtkWidget*          gimp_dialog_add_button              (GimpDialog *dialog,
-                                                         const gchar *button_text,
-                                                         gint response_id);
-

-This function is essentially the same as gtk_dialog_add_button() +

GtkWidget*          gimp_dialog_add_button              (GimpDialog *dialog,
+                                                         const gchar *button_text,
+                                                         gint response_id);
+

+This function is essentially the same as gtk_dialog_add_button() except it ensures there is only one help button and automatically sets the RESPONSE_OK widget as the default response.

@@ -310,8 +420,12 @@

void                gimp_dialog_add_buttons             (GimpDialog *dialog,
                                                          ...);

-This function is essentially the same as gtk_dialog_add_buttons() -except it calls gimp_dialog_add_button() instead of gtk_dialog_add_button()

+This function is essentially the same as gtk_dialog_add_buttons() +except it calls gimp_dialog_add_button() instead of gtk_dialog_add_button()

@@ -361,10 +475,16 @@

gimp_dialog_run ()

-
gint                gimp_dialog_run                     (GimpDialog *dialog);
-

-This function does exactly the same as gtk_dialog_run() except it -does not make the dialog modal while the GMainLoop is running.

+
gint                gimp_dialog_run                     (GimpDialog *dialog);
+

+This function does exactly the same as gtk_dialog_run() except it +does not make the dialog modal while the GMainLoop is running.

@@ -387,7 +507,9 @@

gimp_dialogs_show_help_button ()

-
void                gimp_dialogs_show_help_button       (gboolean show);
+
void                gimp_dialogs_show_help_button       (gboolean show);

This function is for internal use only.

@@ -409,13 +531,17 @@

Property Details

The "help-func" property

-
  "help-func"                gpointer              : Read / Write / Construct Only
+
  "help-func"                gpointer              : Read / Write / Construct Only


The "help-id" property

-
  "help-id"                  gchar*                : Read / Write / Construct Only
+
  "help-id"                  gchar*                : Read / Write / Construct Only

Default value: NULL

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpEnumComboBox.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpEnumComboBox.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpEnumComboBox.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpEnumComboBox.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,23 +57,45 @@

Synopsis

                     GimpEnumComboBox;
-GtkWidget*          gimp_enum_combo_box_new             (GType enum_type);
-GtkWidget*          gimp_enum_combo_box_new_with_model  (GimpEnumStore *enum_store);
+GtkWidget*          gimp_enum_combo_box_new             (GType enum_type);
+GtkWidget*          gimp_enum_combo_box_new_with_model  (GimpEnumStore *enum_store);
 void                gimp_enum_combo_box_set_stock_prefix
                                                         (GimpEnumComboBox *combo_box,
-                                                         const gchar *stock_prefix);
+                                                         const gchar *stock_prefix);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
                                              +----GimpEnumComboBox
 
@@ -82,7 +104,13 @@

Implemented Interfaces

GimpEnumComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellEditable and GtkCellLayout.

+ AtkImplementorIface, GtkBuildable, GtkCellEditable and GtkCellLayout.

Properties

@@ -108,9 +136,15 @@

gimp_enum_combo_box_new ()

-
GtkWidget*          gimp_enum_combo_box_new             (GType enum_type);
-

-Creates a GtkComboBox readily filled with all enum values from a +

GtkWidget*          gimp_enum_combo_box_new             (GType enum_type);
+

+Creates a GtkComboBox readily filled with all enum values from a given enum_type. The enum needs to be registered to the type system. It should also have

- @@ -147,9 +183,13 @@

gimp_enum_combo_box_new_with_model ()

-
GtkWidget*          gimp_enum_combo_box_new_with_model  (GimpEnumStore *enum_store);
-

-Creates a GtkComboBox for the given enum_store.

+
GtkWidget*          gimp_enum_combo_box_new_with_model  (GimpEnumStore *enum_store);
+

+Creates a GtkComboBox for the given enum_store.

@@ -177,7 +217,9 @@

gimp_enum_combo_box_set_stock_prefix ()

void                gimp_enum_combo_box_set_stock_prefix
                                                         (GimpEnumComboBox *combo_box,
-                                                         const gchar *stock_prefix);
+ const gchar *stock_prefix);

Attempts to create stock icons for all items in the combo_box. See gimp_enum_store_set_icons() to find out what to use as stock_prefix.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpEnumLabel.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpEnumLabel.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpEnumLabel.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpEnumLabel.html 2008-10-08 23:32:58.000000000 +0100 @@ -55,21 +55,41 @@

Synopsis

                     GimpEnumLabel;
-GtkWidget*          gimp_enum_label_new                 (GType enum_type,
-                                                         gint value);
+GtkWidget*          gimp_enum_label_new                 (GType enum_type,
+                                                         gint value);
 void                gimp_enum_label_set_value           (GimpEnumLabel *label,
-                                                         gint value);
+                                                         gint value);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkMisc
-                           +----GtkLabel
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkMisc
+                           +----GtkLabel
                                  +----GimpEnumLabel
 
@@ -77,7 +97,9 @@

Implemented Interfaces

GimpEnumLabel implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

@@ -97,8 +119,14 @@

gimp_enum_label_new ()

-
GtkWidget*          gimp_enum_label_new                 (GType enum_type,
-                                                         gint value);
+
GtkWidget*          gimp_enum_label_new                 (GType enum_type,
+                                                         gint value);

@@ -109,7 +137,9 @@

- @@ -132,7 +162,9 @@

gimp_enum_label_set_value ()

void                gimp_enum_label_set_value           (GimpEnumLabel *label,
-                                                         gint value);
+ gint value);

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpEnumStore.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpEnumStore.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpEnumStore.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpEnumStore.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,26 +57,56 @@

Synopsis

                     GimpEnumStore;
-GtkListStore*       gimp_enum_store_new                 (GType enum_type);
-GtkListStore*       gimp_enum_store_new_with_range      (GType enum_type,
-                                                         gint minimum,
-                                                         gint maximum);
-GtkListStore*       gimp_enum_store_new_with_values     (GType enum_type,
-                                                         gint n_values,
+GtkListStore*       gimp_enum_store_new                 (GType enum_type);
+GtkListStore*       gimp_enum_store_new_with_range      (GType enum_type,
+                                                         gint minimum,
+                                                         gint maximum);
+GtkListStore*       gimp_enum_store_new_with_values     (GType enum_type,
+                                                         gint n_values,
                                                          ...);
-GtkListStore*       gimp_enum_store_new_with_values_valist
-                                                        (GType enum_type,
-                                                         gint n_values,
+GtkListStore*       gimp_enum_store_new_with_values_valist
+                                                        (GType enum_type,
+                                                         gint n_values,
                                                          va_list args);
 void                gimp_enum_store_set_stock_prefix    (GimpEnumStore *store,
-                                                         const gchar *stock_prefix);
+                                                         const gchar *stock_prefix);
 

Object Hierarchy

-  GObject
-   +----GtkListStore
+  GObject
+   +----GtkListStore
          +----GimpIntStore
                +----GimpEnumStore
 
@@ -85,12 +115,24 @@

Implemented Interfaces

GimpEnumStore implements - GtkBuildable, GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

+ GtkBuildable, GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

Properties

-  "enum-type"                GType*                : Read / Write / Construct Only
+  "enum-type"                GType*                : Read / Write / Construct Only
 
@@ -111,9 +153,15 @@

gimp_enum_store_new ()

-
GtkListStore*       gimp_enum_store_new                 (GType enum_type);
-

-Creates a new GimpEnumStore, derived from GtkListStore and fills +

GtkListStore*       gimp_enum_store_new                 (GType enum_type);
+

+Creates a new GimpEnumStore, derived from GtkListStore and fills it with enum values. The enum needs to be registered to the type system and should have translatable value names.

@@ -124,7 +172,9 @@

- @@ -141,9 +191,17 @@

gimp_enum_store_new_with_range ()

-
GtkListStore*       gimp_enum_store_new_with_range      (GType enum_type,
-                                                         gint minimum,
-                                                         gint maximum);
+
GtkListStore*       gimp_enum_store_new_with_range      (GType enum_type,
+                                                         gint minimum,
+                                                         gint maximum);

Creates a new GimpEnumStore like gimp_enum_store_new() but allows to limit the enum values to a certain range. Values smaller than @@ -156,7 +214,9 @@

- @@ -183,8 +243,14 @@

gimp_enum_store_new_with_values ()

-
GtkListStore*       gimp_enum_store_new_with_values     (GType enum_type,
-                                                         gint n_values,
+
GtkListStore*       gimp_enum_store_new_with_values     (GType enum_type,
+                                                         gint n_values,
                                                          ...);

Creates a new GimpEnumStore like gimp_enum_store_new() but allows @@ -198,7 +264,9 @@

- @@ -225,9 +293,15 @@

gimp_enum_store_new_with_values_valist ()

-
GtkListStore*       gimp_enum_store_new_with_values_valist
-                                                        (GType enum_type,
-                                                         gint n_values,
+
GtkListStore*       gimp_enum_store_new_with_values_valist
+                                                        (GType enum_type,
+                                                         gint n_values,
                                                          va_list args);

See gimp_enum_store_new_with_values().

@@ -239,7 +313,9 @@
- @@ -267,7 +343,9 @@

gimp_enum_store_set_stock_prefix ()

void                gimp_enum_store_set_stock_prefix    (GimpEnumStore *store,
-                                                         const gchar *stock_prefix);
+ const gchar *stock_prefix);

Creates a stock ID for each enum value in the store by appending the value's nick to the given stock_prefix, separated by a hyphen. @@ -300,9 +378,13 @@

Property Details

The "enum-type" property

-
  "enum-type"                GType*                : Read / Write / Construct Only
-

-Sets the GType of the enum to be used in the store.

+
  "enum-type"                GType*                : Read / Write / Construct Only
+

+Sets the GType of the enum to be used in the store.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpFileEntry.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpFileEntry.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,25 +57,53 @@

Synopsis

                     GimpFileEntry;
-GtkWidget*          gimp_file_entry_new                 (const gchar *title,
-                                                         const gchar *filename,
-                                                         gboolean dir_only,
-                                                         gboolean check_valid);
-gchar*              gimp_file_entry_get_filename        (GimpFileEntry *entry);
+GtkWidget*          gimp_file_entry_new                 (const gchar *title,
+                                                         const gchar *filename,
+                                                         gboolean dir_only,
+                                                         gboolean check_valid);
+gchar*              gimp_file_entry_get_filename        (GimpFileEntry *entry);
 void                gimp_file_entry_set_filename        (GimpFileEntry *entry,
-                                                         const gchar *filename);
+                                                         const gchar *filename);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpFileEntry
 
@@ -83,7 +111,9 @@

Implemented Interfaces

GimpFileEntry implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -97,15 +127,23 @@ This widget is used to enter filenames or directories.

-There is a GtkEntry for entering the filename manually and a "..." -button which will pop up a GtkFileSelection dialog. +There is a GtkEntry for entering the filename manually and a "..." +button which will pop up a GtkFileSelection dialog.

You can restrict the GimpFileSelection to directories. In this case -the filename listbox of the GtkFileSelection dialog will be hidden. +the filename listbox of the GtkFileSelection dialog will be hidden.

-If you specify check_valid as TRUE in gimp_file_entry_new() +If you specify check_valid as TRUE in gimp_file_entry_new() the entered filename will be checked for validity and a pixmap will be shown which indicates if the file exists or not.

@@ -130,16 +168,28 @@

gimp_file_entry_new ()

-
GtkWidget*          gimp_file_entry_new                 (const gchar *title,
-                                                         const gchar *filename,
-                                                         gboolean dir_only,
-                                                         gboolean check_valid);
+
GtkWidget*          gimp_file_entry_new                 (const gchar *title,
+                                                         const gchar *filename,
+                                                         gboolean dir_only,
+                                                         gboolean check_valid);

Warning

gimp_file_entry_new is deprecated and should not be used in newly-written code.

-You should use GtkFileChooserButton instead.

+You should use GtkFileChooserButton instead.

@@ -158,12 +208,16 @@
- - @@ -178,13 +232,17 @@

gimp_file_entry_get_filename ()

-
gchar*              gimp_file_entry_get_filename        (GimpFileEntry *entry);
+
gchar*              gimp_file_entry_get_filename        (GimpFileEntry *entry);

Warning

gimp_file_entry_get_filename is deprecated and should not be used in newly-written code.

-Note that you have to g_free() the returned string.

+Note that you have to g_free() the returned string.

@@ -208,13 +266,17 @@

gimp_file_entry_set_filename ()

void                gimp_file_entry_set_filename        (GimpFileEntry *entry,
-                                                         const gchar *filename);
+ const gchar *filename);

Warning

gimp_file_entry_set_filename is deprecated and should not be used in newly-written code.

-If you specified check_valid as TRUE in gimp_file_entry_new() +If you specified check_valid as TRUE in gimp_file_entry_new() the GimpFileEntry will immediately check the validity of the file name.

@@ -242,7 +304,9 @@

The "filename-changed" signal

void                user_function                      (GimpFileEntry *arg0,
-                                                        gpointer       user_data)      : Run First
+ gpointer user_data) : Run First

This signal is emitted whenever the user changes the filename.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpFrame.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpFrame.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpFrame.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpFrame.html 2008-10-08 23:32:58.000000000 +0100 @@ -49,7 +49,9 @@

GimpDialog

-

GimpDialog — Constructors for GtkDialog's and action_areas as well as other +

GimpDialog — Constructors for GtkDialog's and action_areas as well as other dialog-related stuff.

title :

The dialog's title which will be set with - gtk_window_set_title(). + gtk_window_set_title().

role :

The dialog's role which will be set with - gtk_window_set_role(). + gtk_window_set_role().

flags :

The flags (see the GtkDialog documentation). + The flags (see the GtkDialog documentation).

... :

A NULL-terminated va_list destribing the + A NULL-terminated va_list destribing the action_area buttons.

title :

The dialog's title which will be set with - gtk_window_set_title(). + gtk_window_set_title().

role :

The dialog's role which will be set with - gtk_window_set_role(). + gtk_window_set_role().

parent :

The parent widget of this dialog or NULL. + The parent widget of this dialog or NULL.

flags :

The flags (see the GtkDialog documentation). + The flags (see the GtkDialog documentation).

enum_type :

the GType of an enum. + the GType of an enum.

enum_type :

the GType of an enum. + the GType of an enum.

enum_type :

the GType of an enum. + the GType of an enum.

enum_type :

the GType of an enum. + the GType of an enum.

enum_type :

the GType of an enum. + the GType of an enum.

enum_type :

the GType of an enum. + the GType of an enum.

dir_only :

TRUE if the file entry should accept directories only. + TRUE if the file entry should accept directories only.

check_valid :

TRUE if the widget should check if the entered file + TRUE if the widget should check if the entered file really exists.

GimpFrame

-

GimpFrame — A widget providing a HIG-compliant subclass of GtkFrame.

+

GimpFrame — A widget providing a HIG-compliant subclass of GtkFrame.

@@ -57,19 +59,37 @@

Synopsis

                     GimpFrame;
-GtkWidget*          gimp_frame_new                      (const gchar *label);
+GtkWidget*          gimp_frame_new                      (const gchar *label);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkFrame
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkFrame
                                        +----GimpFrame
 
@@ -77,19 +97,27 @@

Implemented Interfaces

GimpFrame implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Style Properties

-  "label-bold"               gboolean              : Read
-  "label-spacing"            gint                  : Read
+  "label-bold"               gboolean              : Read
+  "label-spacing"            gint                  : Read
 

Description

-A widget providing a HIG-compliant subclass of GtkFrame. +A widget providing a HIG-compliant subclass of GtkFrame.

@@ -104,10 +132,16 @@

gimp_frame_new ()

-
GtkWidget*          gimp_frame_new                      (const gchar *label);
+
GtkWidget*          gimp_frame_new                      (const gchar *label);

Creates a GimpFrame widget. A GimpFrame is a HIG-compliant -variant of GtkFrame. It doesn't render a frame at all but +variant of GtkFrame. It doesn't render a frame at all but otherwise behaves like a frame. The frame's title is rendered in bold and the frame content is indented four spaces as suggested by the GNOME HIG (see http://developer.gnome.org/projects/gup/hig/).

@@ -119,7 +153,9 @@

label :

- text to set as the frame's title label (or NULL for no title) + text to set as the frame's title label (or NULL for no title) @@ -138,14 +174,18 @@

Style Property Details

The "label-bold" style property

-
  "label-bold"               gboolean              : Read
+
  "label-bold"               gboolean              : Read

Default value: TRUE


The "label-spacing" style property

-
  "label-spacing"            gint                  : Read
+
  "label-spacing"            gint                  : Read

Allowed values: >= 0

Default value: 6

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpIntComboBox.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpIntComboBox.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,44 +57,102 @@

Synopsis

                     GimpIntComboBox;
-gboolean            (*GimpIntSensitivityFunc)           (gint value,
-                                                         gpointer data);
-GtkWidget*          gimp_int_combo_box_new              (const gchar *first_label,
-                                                         gint first_value,
+gboolean            (*GimpIntSensitivityFunc)           (gint value,
+                                                         gpointer data);
+GtkWidget*          gimp_int_combo_box_new              (const gchar *first_label,
+                                                         gint first_value,
                                                          ...);
-GtkWidget*          gimp_int_combo_box_new_valist       (const gchar *first_label,
-                                                         gint first_value,
+GtkWidget*          gimp_int_combo_box_new_valist       (const gchar *first_label,
+                                                         gint first_value,
                                                          va_list values);
-GtkWidget*          gimp_int_combo_box_new_array        (gint n_values,
-                                                         const gchar *labels[]);
+GtkWidget*          gimp_int_combo_box_new_array        (gint n_values,
+                                                         const gchar *labels[]);
 void                gimp_int_combo_box_prepend          (GimpIntComboBox *combo_box,
                                                          ...);
 void                gimp_int_combo_box_append           (GimpIntComboBox *combo_box,
                                                          ...);
-gboolean            gimp_int_combo_box_set_active       (GimpIntComboBox *combo_box,
-                                                         gint value);
-gboolean            gimp_int_combo_box_get_active       (GimpIntComboBox *combo_box,
-                                                         gint *value);
-gulong              gimp_int_combo_box_connect          (GimpIntComboBox *combo_box,
-                                                         gint value,
-                                                         GCallback callback,
-                                                         gpointer data);
+gboolean            gimp_int_combo_box_set_active       (GimpIntComboBox *combo_box,
+                                                         gint value);
+gboolean            gimp_int_combo_box_get_active       (GimpIntComboBox *combo_box,
+                                                         gint *value);
+gulong              gimp_int_combo_box_connect          (GimpIntComboBox *combo_box,
+                                                         gint value,
+                                                         GCallback callback,
+                                                         gpointer data);
 void                gimp_int_combo_box_set_sensitivity  (GimpIntComboBox *combo_box,
                                                          GimpIntSensitivityFunc func,
-                                                         gpointer data,
-                                                         GDestroyNotify destroy);
+                                                         gpointer data,
+                                                         GDestroyNotify destroy);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkComboBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkComboBox
                                        +----GimpIntComboBox
                                              +----GimpEnumComboBox
 
@@ -103,12 +161,20 @@

Implemented Interfaces

GimpIntComboBox implements - AtkImplementorIface, GtkBuildable, GtkCellEditable and GtkCellLayout.

+ AtkImplementorIface, GtkBuildable, GtkCellEditable and GtkCellLayout.

Properties

-  "ellipsize"                PangoEllipsizeMode    : Read / Write
+  "ellipsize"                PangoEllipsizeMode    : Read / Write
 
@@ -129,8 +195,14 @@

GimpIntSensitivityFunc ()

-
gboolean            (*GimpIntSensitivityFunc)           (gint value,
-                                                         gpointer data);
+
gboolean            (*GimpIntSensitivityFunc)           (gint value,
+                                                         gpointer data);

@@ -160,12 +232,20 @@

gimp_int_combo_box_new ()

-
GtkWidget*          gimp_int_combo_box_new              (const gchar *first_label,
-                                                         gint first_value,
+
GtkWidget*          gimp_int_combo_box_new              (const gchar *first_label,
+                                                         gint first_value,
                                                          ...);

Creates a GtkComboBox that has integer values associated with each -item. The items to fill the combo box with are specified as a NULL +item. The items to fill the combo box with are specified as a NULL terminated list of label/value pairs.

@@ -189,7 +269,9 @@

... :

- a NULL terminated list of more label, value pairs + a NULL terminated list of more label, value pairs @@ -206,8 +288,14 @@

gimp_int_combo_box_new_valist ()

-
GtkWidget*          gimp_int_combo_box_new_valist       (const gchar *first_label,
-                                                         gint first_value,
+
GtkWidget*          gimp_int_combo_box_new_valist       (const gchar *first_label,
+                                                         gint first_value,
                                                          va_list values);

A variant of gimp_int_combo_box_new() that takes a va_list of @@ -247,8 +335,14 @@


gimp_int_combo_box_new_array ()

-
GtkWidget*          gimp_int_combo_box_new_array        (gint n_values,
-                                                         const gchar *labels[]);
+
GtkWidget*          gimp_int_combo_box_new_array        (gint n_values,
+                                                         const gchar *labels[]);

A variant of gimp_int_combo_box_new() that takes an array of labels. The array indices are used as values.

@@ -287,7 +381,9 @@

This function provides a convenient way to prepend items to a GimpIntComboBox. It prepends a row to the combo_box's list store -and calls gtk_list_store_set() for you. +and calls gtk_list_store_set() for you.

The column number must be taken from the enum GimpIntStoreColumns.

@@ -320,7 +416,9 @@

This function provides a convenient way to append items to a GimpIntComboBox. It appends a row to the combo_box's list store -and calls gtk_list_store_set() for you. +and calls gtk_list_store_set() for you.

The column number must be taken from the enum GimpIntStoreColumns.

@@ -348,8 +446,12 @@

gimp_int_combo_box_set_active ()

-
gboolean            gimp_int_combo_box_set_active       (GimpIntComboBox *combo_box,
-                                                         gint value);
+
gboolean            gimp_int_combo_box_set_active       (GimpIntComboBox *combo_box,
+                                                         gint value);

Looks up the item that belongs to the given value and makes it the selected item in the combo_box.

@@ -371,7 +473,11 @@

Returns :

- TRUE on success or FALSE if there was no item for + TRUE on success or FALSE if there was no item for this value. @@ -384,8 +490,12 @@

gimp_int_combo_box_get_active ()

-
gboolean            gimp_int_combo_box_get_active       (GimpIntComboBox *combo_box,
-                                                         gint *value);
+
gboolean            gimp_int_combo_box_get_active       (GimpIntComboBox *combo_box,
+                                                         gint *value);

Retrieves the value of the selected (active) item in the combo_box.

@@ -406,7 +516,11 @@

Returns :

- TRUE if value has been set or FALSE if no item was + TRUE if value has been set or FALSE if no item was active. @@ -419,10 +533,18 @@

gimp_int_combo_box_connect ()

-
gulong              gimp_int_combo_box_connect          (GimpIntComboBox *combo_box,
-                                                         gint value,
-                                                         GCallback callback,
-                                                         gpointer data);
+
gulong              gimp_int_combo_box_connect          (GimpIntComboBox *combo_box,
+                                                         gint value,
+                                                         GCallback callback,
+                                                         gpointer data);

A convenience function that sets the inital value of a GimpIntComboBox and connects callback to the "changed" @@ -459,12 +581,16 @@

data :

- a pointer passed as data to g_signal_connect() + a pointer passed as data to g_signal_connect()

Returns :

- the signal handler ID as returned by g_signal_connect() + the signal handler ID as returned by g_signal_connect() @@ -478,15 +604,21 @@

gimp_int_combo_box_set_sensitivity ()

void                gimp_int_combo_box_set_sensitivity  (GimpIntComboBox *combo_box,
                                                          GimpIntSensitivityFunc func,
-                                                         gpointer data,
-                                                         GDestroyNotify destroy);
+ gpointer data, + GDestroyNotify destroy);

Sets a function that is used to decide about the sensitivity of rows in the combo_box. Use this if you want to set certain rows insensitive.

-Calling gtk_widget_queue_draw() on the combo_box will cause the +Calling gtk_widget_queue_draw() on the combo_box will cause the sensitivity to be updated.

@@ -501,7 +633,9 @@

func :

- a function that returns a boolean value, or NULL to unset + a function that returns a boolean value, or NULL to unset @@ -524,7 +658,9 @@

Property Details

The "ellipsize" property

-
  "ellipsize"                PangoEllipsizeMode    : Read / Write
+
  "ellipsize"                PangoEllipsizeMode    : Read / Write

Specifies the preferred place to ellipsize text in the combo-box, if the cell renderer does not have enough room to display the diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpIntStore.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpIntStore.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpIntStore.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpIntStore.html 2008-10-08 23:32:59.000000000 +0100 @@ -58,17 +58,31 @@

                     GimpIntStore;
 enum                GimpIntStoreColumns;
-GtkListStore*       gimp_int_store_new                  (void);
-gboolean            gimp_int_store_lookup_by_value      (GtkTreeModel *model,
-                                                         gint value,
-                                                         GtkTreeIter *iter);
+GtkListStore*       gimp_int_store_new                  (void);
+gboolean            gimp_int_store_lookup_by_value      (GtkTreeModel *model,
+                                                         gint value,
+                                                         GtkTreeIter *iter);
 

Object Hierarchy

-  GObject
-   +----GtkListStore
+  GObject
+   +----GtkListStore
          +----GimpIntStore
                +----GimpEnumStore
 
@@ -77,12 +91,24 @@

Implemented Interfaces

GimpIntStore implements - GtkBuildable, GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

+ GtkBuildable, GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

Properties

-  "user-data-type"           GType*                : Read / Write / Construct Only
+  "user-data-type"           GType*                : Read / Write / Construct Only
 
@@ -120,9 +146,13 @@

gimp_int_store_new ()

-
GtkListStore*       gimp_int_store_new                  (void);
-

-Creates a GtkListStore with a number of useful columns. +

GtkListStore*       gimp_int_store_new                  (void);
+

+Creates a GtkListStore with a number of useful columns. GimpIntStore is especially useful if the items you want to store are identified using an integer value.

@@ -143,9 +173,17 @@


gimp_int_store_lookup_by_value ()

-
gboolean            gimp_int_store_lookup_by_value      (GtkTreeModel *model,
-                                                         gint value,
-                                                         GtkTreeIter *iter);
+
gboolean            gimp_int_store_lookup_by_value      (GtkTreeModel *model,
+                                                         gint value,
+                                                         GtkTreeIter *iter);

Iterate over the model looking for value.

@@ -171,8 +209,12 @@

Returns :

- TRUE if the value has been located and iter is - valid, FALSE otherwise. + TRUE if the value has been located and iter is + valid, FALSE otherwise. @@ -186,9 +228,13 @@

Property Details

The "user-data-type" property

-
  "user-data-type"           GType*                : Read / Write / Construct Only
-

-Allows to set the GType for the GIMP_INT_STORE_USER_DATA column. +

  "user-data-type"           GType*                : Read / Write / Construct Only
+

+Allows to set the GType for the GIMP_INT_STORE_USER_DATA column.

You need to set this property when constructing the store if you want diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2008-10-08 23:32:58.000000000 +0100 @@ -57,24 +57,50 @@

Synopsis

                     GimpMemsizeEntry;
-GtkWidget*          gimp_memsize_entry_new              (guint64 value,
-                                                         guint64 lower,
-                                                         guint64 upper);
+GtkWidget*          gimp_memsize_entry_new              (guint64 value,
+                                                         guint64 lower,
+                                                         guint64 upper);
 void                gimp_memsize_entry_set_value        (GimpMemsizeEntry *entry,
-                                                         guint64 value);
-guint64             gimp_memsize_entry_get_value        (GimpMemsizeEntry *entry);
+                                                         guint64 value);
+guint64             gimp_memsize_entry_get_value        (GimpMemsizeEntry *entry);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkHBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkHBox
                                        +----GimpMemsizeEntry
 
@@ -82,7 +108,9 @@

Implemented Interfaces

GimpMemsizeEntry implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -110,12 +138,26 @@

gimp_memsize_entry_new ()

-
GtkWidget*          gimp_memsize_entry_new              (guint64 value,
-                                                         guint64 lower,
-                                                         guint64 upper);
-

-Creates a new GimpMemsizeEntry which is a GtkHBox with a GtkSpinButton -and a GtkOptionMenu all setup to allow the user to enter memory sizes.

+
GtkWidget*          gimp_memsize_entry_new              (guint64 value,
+                                                         guint64 lower,
+                                                         guint64 upper);
+

+Creates a new GimpMemsizeEntry which is a GtkHBox with a GtkSpinButton +and a GtkOptionMenu all setup to allow the user to enter memory sizes.

@@ -149,7 +191,9 @@

gimp_memsize_entry_set_value ()

void                gimp_memsize_entry_set_value        (GimpMemsizeEntry *entry,
-                                                         guint64 value);
+ guint64 value);

Sets the entry's value. Please note that the GimpMemsizeEntry rounds the value to full Kilobytes.

@@ -175,7 +219,9 @@

gimp_memsize_entry_get_value ()

-
guint64             gimp_memsize_entry_get_value        (GimpMemsizeEntry *entry);
+
guint64             gimp_memsize_entry_get_value        (GimpMemsizeEntry *entry);

Retrieves the current value from a GimpMemsizeEntry.

@@ -203,7 +249,9 @@

The "value-changed" signal

void                user_function                      (GimpMemsizeEntry *gimpmemsizeentry,
-                                                        gpointer          user_data)             : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpNumberPairEntry.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpNumberPairEntry.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpNumberPairEntry.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpNumberPairEntry.html 2008-10-08 23:32:59.000000000 +0100 @@ -60,50 +60,98 @@
                     GimpNumberPairEntry;
 enum                GimpAspectType;
-GtkWidget*          gimp_number_pair_entry_new          (const gchar *separators,
-                                                         gboolean allow_simplification,
-                                                         gdouble min_valid_value,
-                                                         gdouble max_valid_value);
+GtkWidget*          gimp_number_pair_entry_new          (const gchar *separators,
+                                                         gboolean allow_simplification,
+                                                         gdouble min_valid_value,
+                                                         gdouble max_valid_value);
 void                gimp_number_pair_entry_set_default_values
                                                         (GimpNumberPairEntry *entry,
-                                                         gdouble left,
-                                                         gdouble right);
+                                                         gdouble left,
+                                                         gdouble right);
 void                gimp_number_pair_entry_get_default_values
                                                         (GimpNumberPairEntry *entry,
-                                                         gdouble *left,
-                                                         gdouble *right);
+                                                         gdouble *left,
+                                                         gdouble *right);
 void                gimp_number_pair_entry_set_values   (GimpNumberPairEntry *entry,
-                                                         gdouble left,
-                                                         gdouble right);
+                                                         gdouble left,
+                                                         gdouble right);
 void                gimp_number_pair_entry_get_values   (GimpNumberPairEntry *entry,
-                                                         gdouble *left,
-                                                         gdouble *right);
+                                                         gdouble *left,
+                                                         gdouble *right);
 GimpAspectType      gimp_number_pair_entry_get_aspect   (GimpNumberPairEntry *entry);
 void                gimp_number_pair_entry_set_aspect   (GimpNumberPairEntry *entry,
                                                          GimpAspectType aspect);
-gdouble             gimp_number_pair_entry_get_ratio    (GimpNumberPairEntry *entry);
+gdouble             gimp_number_pair_entry_get_ratio    (GimpNumberPairEntry *entry);
 void                gimp_number_pair_entry_set_ratio    (GimpNumberPairEntry *entry,
-                                                         gdouble ratio);
-gboolean            gimp_number_pair_entry_get_user_override
+                                                         gdouble ratio);
+gboolean            gimp_number_pair_entry_get_user_override
                                                         (GimpNumberPairEntry *entry);
 void                gimp_number_pair_entry_set_user_override
                                                         (GimpNumberPairEntry *entry,
-                                                         gboolean user_override);
-const gchar*        gimp_number_pair_entry_get_default_text
+                                                         gboolean user_override);
+const gchar*        gimp_number_pair_entry_get_default_text
                                                         (GimpNumberPairEntry *entry);
 void                gimp_number_pair_entry_set_default_text
                                                         (GimpNumberPairEntry *entry,
-                                                         const gchar *string);
+                                                         const gchar *string);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkEntry
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkEntry
                            +----GimpNumberPairEntry
 
@@ -111,23 +159,51 @@

Implemented Interfaces

GimpNumberPairEntry implements - AtkImplementorIface, GtkBuildable, GtkEditable and GtkCellEditable.

+ AtkImplementorIface, GtkBuildable, GtkEditable and GtkCellEditable.

Properties

-  "allow-simplification"     gboolean              : Read / Write
+  "allow-simplification"     gboolean              : Read / Write
   "aspect"                   GimpAspectType        : Read / Write
-  "default-left-number"      gdouble               : Read / Write
-  "default-right-number"     gdouble               : Read / Write
-  "default-text"             gchar*                : Read / Write
-  "left-number"              gdouble               : Read / Write
-  "max-valid-value"          gdouble               : Read / Write
-  "min-valid-value"          gdouble               : Read / Write
-  "ratio"                    gdouble               : Read / Write
-  "right-number"             gdouble               : Read / Write
-  "separators"               gchar*                : Read / Write / Construct Only
-  "user-override"            gboolean              : Read / Write
+  "default-left-number"      gdouble               : Read / Write
+  "default-right-number"     gdouble               : Read / Write
+  "default-text"             gchar*                : Read / Write
+  "left-number"              gdouble               : Read / Write
+  "max-valid-value"          gdouble               : Read / Write
+  "min-valid-value"          gdouble               : Read / Write
+  "ratio"                    gdouble               : Read / Write
+  "right-number"             gdouble               : Read / Write
+  "separators"               gchar*                : Read / Write / Construct Only
+  "user-override"            gboolean              : Read / Write
 
@@ -169,10 +245,20 @@

gimp_number_pair_entry_new ()

-
GtkWidget*          gimp_number_pair_entry_new          (const gchar *separators,
-                                                         gboolean allow_simplification,
-                                                         gdouble min_valid_value,
-                                                         gdouble max_valid_value);
+
GtkWidget*          gimp_number_pair_entry_new          (const gchar *separators,
+                                                         gboolean allow_simplification,
+                                                         gdouble min_valid_value,
+                                                         gdouble max_valid_value);

Creates a new GimpNumberPairEntry widget, which is a GtkEntry that accepts two numbers separated by a separator. Typical input example @@ -237,8 +323,12 @@

gimp_number_pair_entry_set_default_values ()

void                gimp_number_pair_entry_set_default_values
                                                         (GimpNumberPairEntry *entry,
-                                                         gdouble left,
-                                                         gdouble right);
+ gdouble left, + gdouble right);

@@ -272,8 +362,12 @@

gimp_number_pair_entry_get_default_values ()

void                gimp_number_pair_entry_get_default_values
                                                         (GimpNumberPairEntry *entry,
-                                                         gdouble *left,
-                                                         gdouble *right);
+ gdouble *left, + gdouble *right);

@@ -306,8 +400,12 @@

gimp_number_pair_entry_set_values ()

void                gimp_number_pair_entry_set_values   (GimpNumberPairEntry *entry,
-                                                         gdouble left,
-                                                         gdouble right);
+ gdouble left, + gdouble right);

Forces setting the numbers displayed by a GimpNumberPairEntry, ignoring if the user has set his/her own value. The state of @@ -342,8 +440,12 @@

gimp_number_pair_entry_get_values ()

void                gimp_number_pair_entry_get_values   (GimpNumberPairEntry *entry,
-                                                         gdouble *left,
-                                                         gdouble *right);
+ gdouble *left, + gdouble *right);

Gets the numbers displayed by a GimpNumberPairEntry.

@@ -359,12 +461,16 @@

left :

- Pointer of where to store the left number (may be NULL). + Pointer of where to store the left number (may be NULL).

right :

- Pointer of to store the right number (may be NULL). + Pointer of to store the right number (may be NULL). @@ -433,7 +539,9 @@

gimp_number_pair_entry_get_ratio ()

-
gdouble             gimp_number_pair_entry_get_ratio    (GimpNumberPairEntry *entry);
+
gdouble             gimp_number_pair_entry_get_ratio    (GimpNumberPairEntry *entry);

Retrieves the ratio of the numbers displayed by a GimpNumberPairEntry.

@@ -462,7 +570,9 @@

gimp_number_pair_entry_set_ratio ()

void                gimp_number_pair_entry_set_ratio    (GimpNumberPairEntry *entry,
-                                                         gdouble ratio);
+ gdouble ratio);

Sets the numbers of the GimpNumberPairEntry to have the desired ratio. If the new ratio is different than the previous ratio, the @@ -495,7 +605,9 @@


gimp_number_pair_entry_get_user_override ()

-
gboolean            gimp_number_pair_entry_get_user_override
+
gboolean            gimp_number_pair_entry_get_user_override
                                                         (GimpNumberPairEntry *entry);

@@ -526,7 +638,9 @@

gimp_number_pair_entry_set_user_override ()

void                gimp_number_pair_entry_set_user_override
                                                         (GimpNumberPairEntry *entry,
-                                                         gboolean user_override);
+ gboolean user_override);

When the entry is not in user overridden mode, the values will change when the default values are changed. When in user overridden @@ -544,8 +658,12 @@

user_override :

- TRUE sets the entry in user overridden mode, - FALSE disables. + TRUE sets the entry in user overridden mode, + FALSE disables. @@ -556,7 +674,9 @@

gimp_number_pair_entry_get_default_text ()

-
const gchar*        gimp_number_pair_entry_get_default_text
+
const gchar*        gimp_number_pair_entry_get_default_text
                                                         (GimpNumberPairEntry *entry);

@@ -573,7 +693,9 @@

Returns :

- the string manully set to be shown, or NULL if values are + the string manully set to be shown, or NULL if values are shown in a normal fashion. @@ -588,7 +710,9 @@

gimp_number_pair_entry_set_default_text ()

void                gimp_number_pair_entry_set_default_text
                                                         (GimpNumberPairEntry *entry,
-                                                         const gchar *string);
+ const gchar *string);

Causes the entry to show a given string when in automatic mode, instead of the default numbers. The only thing this does is making @@ -596,7 +720,9 @@ and API calls are not affected.

-Set the default string to NULL to display default values as +Set the default string to NULL to display default values as normal.

@@ -624,7 +750,9 @@

Property Details

The "allow-simplification" property

-
  "allow-simplification"     gboolean              : Read / Write
+
  "allow-simplification"     gboolean              : Read / Write

Whether to allow simplification.

Default value: FALSE

@@ -638,7 +766,9 @@

The "default-left-number" property

-
  "default-left-number"      gdouble               : Read / Write
+
  "default-left-number"      gdouble               : Read / Write

Allowed values: >= G_MINDOUBLE

Default value: 100

@@ -646,7 +776,9 @@

The "default-right-number" property

-
  "default-right-number"     gdouble               : Read / Write
+
  "default-right-number"     gdouble               : Read / Write

Allowed values: >= G_MINDOUBLE

Default value: 100

@@ -654,14 +786,18 @@

The "default-text" property

-
  "default-text"             gchar*                : Read / Write
+
  "default-text"             gchar*                : Read / Write

String to show when in automatic mode.

Default value: NULL


The "left-number" property

-
  "left-number"              gdouble               : Read / Write
+
  "left-number"              gdouble               : Read / Write

Allowed values: >= G_MINDOUBLE

Default value: 100

@@ -669,7 +805,9 @@

The "max-valid-value" property

-
  "max-valid-value"          gdouble               : Read / Write
+
  "max-valid-value"          gdouble               : Read / Write

Maximum value valid when parsing input.

Allowed values: >= G_MINDOUBLE

Default value: 1.79769e+308

@@ -677,7 +815,9 @@

The "min-valid-value" property

-
  "min-valid-value"          gdouble               : Read / Write
+
  "min-valid-value"          gdouble               : Read / Write

Minimum value valid when parsing input.

Allowed values: >= G_MINDOUBLE

Default value: 2.22507e-308

@@ -685,7 +825,9 @@

The "ratio" property

-
  "ratio"                    gdouble               : Read / Write
+
  "ratio"                    gdouble               : Read / Write

Allowed values: >= G_MINDOUBLE

Default value: 1

@@ -693,7 +835,9 @@

The "right-number" property

-
  "right-number"             gdouble               : Read / Write
+
  "right-number"             gdouble               : Read / Write

Allowed values: >= G_MINDOUBLE

Default value: 100

@@ -701,14 +845,18 @@

The "separators" property

-
  "separators"               gchar*                : Read / Write / Construct Only
+
  "separators"               gchar*                : Read / Write / Construct Only

A string of valid separators.

Default value: NULL


The "user-override" property

-
  "user-override"            gboolean              : Read / Write
+
  "user-override"            gboolean              : Read / Write

Whether the widget is in 'user override' mode.

Default value: FALSE

@@ -718,7 +866,9 @@

The "numbers-changed" signal

void                user_function                      (GimpNumberPairEntry *gimpnumberpairentry,
-                                                        gpointer             user_data)                : Run First
+ gpointer user_data) : Run First

@@ -742,7 +892,9 @@

The "ratio-changed" signal

void                user_function                      (GimpNumberPairEntry *gimpnumberpairentry,
-                                                        gpointer             user_data)                : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpOffsetArea.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpOffsetArea.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2008-10-08 23:32:58.000000000 +0100 @@ -57,26 +57,52 @@

Synopsis

                     GimpOffsetArea;
-GtkWidget*          gimp_offset_area_new                (gint orig_width,
-                                                         gint orig_height);
+GtkWidget*          gimp_offset_area_new                (gint orig_width,
+                                                         gint orig_height);
 void                gimp_offset_area_set_size           (GimpOffsetArea *offset_area,
-                                                         gint width,
-                                                         gint height);
+                                                         gint width,
+                                                         gint height);
 void                gimp_offset_area_set_offsets        (GimpOffsetArea *offset_area,
-                                                         gint offset_x,
-                                                         gint offset_y);
+                                                         gint offset_x,
+                                                         gint offset_y);
 void                gimp_offset_area_set_pixbuf         (GimpOffsetArea *offset_area,
-                                                         GdkPixbuf *pixbuf);
+                                                         GdkPixbuf *pixbuf);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkDrawingArea
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkDrawingArea
                            +----GimpOffsetArea
 
@@ -84,7 +110,9 @@

Implemented Interfaces

GimpOffsetArea implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -110,8 +138,14 @@

gimp_offset_area_new ()

-
GtkWidget*          gimp_offset_area_new                (gint orig_width,
-                                                         gint orig_height);
+
GtkWidget*          gimp_offset_area_new                (gint orig_width,
+                                                         gint orig_height);

Creates a new GimpOffsetArea widget. A GimpOffsetArea can be used when resizing an image or a drawable to allow the user to interactively @@ -144,8 +178,12 @@

gimp_offset_area_set_size ()

void                gimp_offset_area_set_size           (GimpOffsetArea *offset_area,
-                                                         gint width,
-                                                         gint height);
+ gint width, + gint height);

Sets the size of the image/drawable displayed by the GimpOffsetArea. If the offsets change as a result of this change, the "offsets-changed" @@ -178,8 +216,12 @@

gimp_offset_area_set_offsets ()

void                gimp_offset_area_set_offsets        (GimpOffsetArea *offset_area,
-                                                         gint offset_x,
-                                                         gint offset_y);
+ gint offset_x, + gint offset_y);

Sets the offsets of the image/drawable displayed by the GimpOffsetArea. It does not emit the "offsets-changed" signal.

@@ -211,7 +253,9 @@

gimp_offset_area_set_pixbuf ()

void                gimp_offset_area_set_pixbuf         (GimpOffsetArea *offset_area,
-                                                         GdkPixbuf *pixbuf);
+ GdkPixbuf *pixbuf);

Sets the pixbuf which represents the original image/drawable which is being offset.

@@ -228,7 +272,9 @@

pixbuf :

- a GdkPixbuf. + a GdkPixbuf. @@ -242,9 +288,15 @@

The "offsets-changed" signal

void                user_function                      (GimpOffsetArea *gimpoffsetarea,
-                                                        gint            arg1,
-                                                        gint            arg2,
-                                                        gpointer        user_data)           : Run First
+ gint arg1, + gint arg2, + gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPageSelector.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPageSelector.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPageSelector.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPageSelector.html 2008-10-08 23:32:58.000000000 +0100 @@ -60,52 +60,104 @@
                     GimpPageSelector;
 enum                GimpPageSelectorTarget;
-GtkWidget*          gimp_page_selector_new              (void);
+GtkWidget*          gimp_page_selector_new              (void);
 void                gimp_page_selector_set_n_pages      (GimpPageSelector *selector,
-                                                         gint n_pages);
-gint                gimp_page_selector_get_n_pages      (GimpPageSelector *selector);
+                                                         gint n_pages);
+gint                gimp_page_selector_get_n_pages      (GimpPageSelector *selector);
 void                gimp_page_selector_set_target       (GimpPageSelector *selector,
                                                          GimpPageSelectorTarget target);
 GimpPageSelectorTarget gimp_page_selector_get_target    (GimpPageSelector *selector);
 void                gimp_page_selector_set_page_thumbnail
                                                         (GimpPageSelector *selector,
-                                                         gint page_no,
-                                                         GdkPixbuf *thumbnail);
-GdkPixbuf*          gimp_page_selector_get_page_thumbnail
+                                                         gint page_no,
+                                                         GdkPixbuf *thumbnail);
+GdkPixbuf*          gimp_page_selector_get_page_thumbnail
                                                         (GimpPageSelector *selector,
-                                                         gint page_no);
+                                                         gint page_no);
 void                gimp_page_selector_set_page_label   (GimpPageSelector *selector,
-                                                         gint page_no,
-                                                         const gchar *label);
-gchar*              gimp_page_selector_get_page_label   (GimpPageSelector *selector,
-                                                         gint page_no);
+                                                         gint page_no,
+                                                         const gchar *label);
+gchar*              gimp_page_selector_get_page_label   (GimpPageSelector *selector,
+                                                         gint page_no);
 void                gimp_page_selector_select_all       (GimpPageSelector *selector);
 void                gimp_page_selector_unselect_all     (GimpPageSelector *selector);
 void                gimp_page_selector_select_page      (GimpPageSelector *selector,
-                                                         gint page_no);
+                                                         gint page_no);
 void                gimp_page_selector_unselect_page    (GimpPageSelector *selector,
-                                                         gint page_no);
-gboolean            gimp_page_selector_page_is_selected (GimpPageSelector *selector,
-                                                         gint page_no);
-gint*               gimp_page_selector_get_selected_pages
+                                                         gint page_no);
+gboolean            gimp_page_selector_page_is_selected (GimpPageSelector *selector,
+                                                         gint page_no);
+gint*               gimp_page_selector_get_selected_pages
                                                         (GimpPageSelector *selector,
-                                                         gint *n_selected_pages);
+                                                         gint *n_selected_pages);
 void                gimp_page_selector_select_range     (GimpPageSelector *selector,
-                                                         const gchar *range);
-gchar*              gimp_page_selector_get_selected_range
+                                                         const gchar *range);
+gchar*              gimp_page_selector_get_selected_range
                                                         (GimpPageSelector *selector);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpPageSelector
 
@@ -113,12 +165,16 @@

Implemented Interfaces

GimpPageSelector implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "n-pages"                  gint                  : Read / Write
+  "n-pages"                  gint                  : Read / Write
   "target"                   GimpPageSelectorTarget  : Read / Write
 
@@ -160,7 +216,9 @@

gimp_page_selector_new ()

-
GtkWidget*          gimp_page_selector_new              (void);
+
GtkWidget*          gimp_page_selector_new              (void);

Creates a new GimpPageSelector widget.

@@ -182,7 +240,9 @@

gimp_page_selector_set_n_pages ()

void                gimp_page_selector_set_n_pages      (GimpPageSelector *selector,
-                                                         gint n_pages);
+ gint n_pages);

Sets the number of pages in the document to open.

@@ -209,7 +269,9 @@


gimp_page_selector_get_n_pages ()

-
gint                gimp_page_selector_get_n_pages      (GimpPageSelector *selector);
+
gint                gimp_page_selector_get_n_pages      (GimpPageSelector *selector);

@@ -295,8 +357,12 @@

gimp_page_selector_set_page_thumbnail ()

void                gimp_page_selector_set_page_thumbnail
                                                         (GimpPageSelector *selector,
-                                                         gint page_no,
-                                                         GdkPixbuf *thumbnail);
+ gint page_no, + GdkPixbuf *thumbnail);

Sets the thumbnail for given page_no. A default "page" icon will be used if no page thumbnail is set.

@@ -329,9 +395,13 @@

gimp_page_selector_get_page_thumbnail ()

-
GdkPixbuf*          gimp_page_selector_get_page_thumbnail
+
GdkPixbuf*          gimp_page_selector_get_page_thumbnail
                                                         (GimpPageSelector *selector,
-                                                         gint page_no);
+ gint page_no);

@@ -352,7 +422,9 @@

Returns :

- The page's thumbnail, or NULL if none is set. The returned + The page's thumbnail, or NULL if none is set. The returned pixbuf is owned by GimpPageSelector and must not be unref'ed when no longer needed. @@ -367,8 +439,12 @@

gimp_page_selector_set_page_label ()

void                gimp_page_selector_set_page_label   (GimpPageSelector *selector,
-                                                         gint page_no,
-                                                         const gchar *label);
+ gint page_no, + const gchar *label);

@@ -400,8 +476,12 @@


gimp_page_selector_get_page_label ()

-
gchar*              gimp_page_selector_get_page_label   (GimpPageSelector *selector,
-                                                         gint page_no);
+
gchar*              gimp_page_selector_get_page_label   (GimpPageSelector *selector,
+                                                         gint page_no);

@@ -422,8 +502,12 @@

Returns :

- The page's label, or NULL if none is set. This is a newly - allocated string that should be g_free()'d when no longer + The page's label, or NULL if none is set. This is a newly + allocated string that should be g_free()'d when no longer needed. @@ -477,7 +561,9 @@

gimp_page_selector_select_page ()

void                gimp_page_selector_select_page      (GimpPageSelector *selector,
-                                                         gint page_no);
+ gint page_no);

Adds a page to the selection.

@@ -505,7 +591,9 @@

gimp_page_selector_unselect_page ()

void                gimp_page_selector_unselect_page    (GimpPageSelector *selector,
-                                                         gint page_no);
+ gint page_no);

Removes a page from the selection.

@@ -532,8 +620,12 @@


gimp_page_selector_page_is_selected ()

-
gboolean            gimp_page_selector_page_is_selected (GimpPageSelector *selector,
-                                                         gint page_no);
+
gboolean            gimp_page_selector_page_is_selected (GimpPageSelector *selector,
+                                                         gint page_no);

@@ -554,7 +646,11 @@

Returns :

- TRUE if the page is selected, FALSE otherwise. + TRUE if the page is selected, FALSE otherwise. @@ -566,9 +662,13 @@

gimp_page_selector_get_selected_pages ()

-
gint*               gimp_page_selector_get_selected_pages
+
gint*               gimp_page_selector_get_selected_pages
                                                         (GimpPageSelector *selector,
-                                                         gint *n_selected_pages);
+ gint *n_selected_pages);

@@ -589,7 +689,9 @@

Returns :

- A sorted array of page numbers of selected pages. Use g_free() if + A sorted array of page numbers of selected pages. Use g_free() if you don't need the array any longer. @@ -603,7 +705,9 @@

gimp_page_selector_select_range ()

void                gimp_page_selector_select_range     (GimpPageSelector *selector,
-                                                         const gchar *range);
+ const gchar *range);

Selectes the pages described by range. The range string is a user-editable list of pages and ranges, e.g. "1,3,5-7,9-12,14". @@ -637,7 +741,9 @@


gimp_page_selector_get_selected_range ()

-
gchar*              gimp_page_selector_get_selected_range
+
gchar*              gimp_page_selector_get_selected_range
                                                         (GimpPageSelector *selector);

@@ -670,7 +776,9 @@

Property Details

The "n-pages" property

-
  "n-pages"                  gint                  : Read / Write
+
  "n-pages"                  gint                  : Read / Write

The number of pages of the document to open.

@@ -700,7 +808,9 @@

The "activate" signal

void                user_function                      (GimpPageSelector *widget,
-                                                        gpointer          user_data)      : Run First / Action
+ gpointer user_data) : Run First / Action

The "activate" signal on GimpPageSelector is an action signal. It is emitted when a user double-clicks an item in the page selection.

@@ -728,7 +838,9 @@

The "selection-changed" signal

void                user_function                      (GimpPageSelector *widget,
-                                                        gpointer          user_data)      : Run First
+ gpointer user_data) : Run First

This signal is emitted whenever the set of selected pages changes.

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPathEditor.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPathEditor.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,31 +57,67 @@

Synopsis

                     GimpPathEditor;
-GtkWidget*          gimp_path_editor_new                (const gchar *title,
-                                                         const gchar *path);
-gchar*              gimp_path_editor_get_path           (GimpPathEditor *editor);
+GtkWidget*          gimp_path_editor_new                (const gchar *title,
+                                                         const gchar *path);
+gchar*              gimp_path_editor_get_path           (GimpPathEditor *editor);
 void                gimp_path_editor_set_path           (GimpPathEditor *editor,
-                                                         const gchar *path);
-gchar*              gimp_path_editor_get_writable_path  (GimpPathEditor *editor);
+                                                         const gchar *path);
+gchar*              gimp_path_editor_get_writable_path  (GimpPathEditor *editor);
 void                gimp_path_editor_set_writable_path  (GimpPathEditor *editor,
-                                                         const gchar *path);
-gboolean            gimp_path_editor_get_dir_writable   (GimpPathEditor *editor,
-                                                         const gchar *directory);
+                                                         const gchar *path);
+gboolean            gimp_path_editor_get_dir_writable   (GimpPathEditor *editor,
+                                                         const gchar *directory);
 void                gimp_path_editor_set_dir_writable   (GimpPathEditor *editor,
-                                                         const gchar *directory,
-                                                         gboolean writable);
+                                                         const gchar *directory,
+                                                         gboolean writable);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpPathEditor
 
@@ -89,7 +125,9 @@

Implemented Interfaces

GimpPathEditor implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -129,14 +167,22 @@

gimp_path_editor_new ()

-
GtkWidget*          gimp_path_editor_new                (const gchar *title,
-                                                         const gchar *path);
+
GtkWidget*          gimp_path_editor_new                (const gchar *title,
+                                                         const gchar *path);

Creates a new GimpPathEditor widget.

The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character.

+G_SEARCHPATH_SEPARATOR character.

@@ -145,7 +191,9 @@

title :

- The title of the GtkFileChooser dialog which can be popped up. + The title of the GtkFileChooser dialog which can be popped up. @@ -164,13 +212,19 @@

gimp_path_editor_get_path ()

-
gchar*              gimp_path_editor_get_path           (GimpPathEditor *editor);
+
gchar*              gimp_path_editor_get_path           (GimpPathEditor *editor);

The elements of the returned search path string are separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character.

-Note that you have to g_free() the returned string.

+Note that you have to g_free() the returned string.

@@ -194,10 +248,14 @@

gimp_path_editor_set_path ()

void                gimp_path_editor_set_path           (GimpPathEditor *editor,
-                                                         const gchar *path);
+ const gchar *path);

The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character.

+G_SEARCHPATH_SEPARATOR character.

@@ -220,7 +278,9 @@

gimp_path_editor_get_writable_path ()

-
gchar*              gimp_path_editor_get_writable_path  (GimpPathEditor *editor);
+
gchar*              gimp_path_editor_get_writable_path  (GimpPathEditor *editor);

@@ -246,7 +306,9 @@

gimp_path_editor_set_writable_path ()

void                gimp_path_editor_set_writable_path  (GimpPathEditor *editor,
-                                                         const gchar *path);
+ const gchar *path);

@@ -271,8 +333,12 @@

gimp_path_editor_get_dir_writable ()

-
gboolean            gimp_path_editor_get_dir_writable   (GimpPathEditor *editor,
-                                                         const gchar *directory);
+
gboolean            gimp_path_editor_get_dir_writable   (GimpPathEditor *editor,
+                                                         const gchar *directory);

@@ -303,8 +369,12 @@

gimp_path_editor_set_dir_writable ()

void                gimp_path_editor_set_dir_writable   (GimpPathEditor *editor,
-                                                         const gchar *directory,
-                                                         gboolean writable);
+ const gchar *directory, + gboolean writable);

@@ -337,7 +407,9 @@

The "path-changed" signal

void                user_function                      (GimpPathEditor *arg0,
-                                                        gpointer        user_data)      : Run First
+ gpointer user_data) : Run First

This signal is emitted whenever the user adds, deletes, modifies or reorders an element of the search path.

@@ -356,7 +428,9 @@

The "writable-changed" signal

void                user_function                      (GimpPathEditor *arg0,
-                                                        gpointer        user_data)      : Run First
+ gpointer user_data) : Run First

This signal is emitted whenever the "writable" column of a directory is changed, either by the user clicking on it or by calling @@ -379,7 +453,9 @@ GimpFileEntry

-G_SEARCHPATH_SEPARATOR +G_SEARCHPATH_SEPARATOR

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPickButton.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPickButton.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPickButton.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPickButton.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,19 +57,35 @@

Synopsis

                     GimpPickButton;
-GtkWidget*          gimp_pick_button_new                (void);
+GtkWidget*          gimp_pick_button_new                (void);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBin
-                                 +----GtkButton
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBin
+                                 +----GtkButton
                                        +----GimpPickButton
 
@@ -77,7 +93,9 @@

Implemented Interfaces

GimpPickButton implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Signals

@@ -105,7 +123,9 @@

gimp_pick_button_new ()

-
GtkWidget*          gimp_pick_button_new                (void);
+
GtkWidget*          gimp_pick_button_new                (void);

Creates a new GimpPickButton widget.

@@ -126,8 +146,12 @@

The "color-picked" signal

void                user_function                      (GimpPickButton *gimppickbutton,
-                                                        gpointer        arg1,
-                                                        gpointer        user_data)           : Run First
+ gpointer arg1, + gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPixmap.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPixmap.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPixmap.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPixmap.html 2008-10-08 23:32:58.000000000 +0100 @@ -47,7 +47,9 @@

GimpPixmap

-

GimpPixmap — Widget which creates a GtkPixmap from XPM data.

+

GimpPixmap — Widget which creates a GtkPixmap from XPM data.

@@ -55,20 +57,38 @@

Synopsis

                     GimpPixmap;
-GtkWidget*          gimp_pixmap_new                     (gchar **xpm_data);
+GtkWidget*          gimp_pixmap_new                     (gchar **xpm_data);
 void                gimp_pixmap_set                     (GimpPixmap *pixmap,
-                                                         gchar **xpm_data);
+                                                         gchar **xpm_data);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkMisc
-                           +----GtkImage
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkMisc
+                           +----GtkImage
                                  +----GimpPixmap
 
@@ -76,19 +96,27 @@

Implemented Interfaces

GimpPixmap implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Description

-Widget which creates a GtkPixmap from XPM data. +Widget which creates a GtkPixmap from XPM data.

-Use this widget instead of GtkPixmap if you don't want to worry about +Use this widget instead of GtkPixmap if you don't want to worry about the parent container's "realized" state.

-Note that the drawback of the easy interface is that the actual GdkPixmap +Note that the drawback of the easy interface is that the actual GdkPixmap and it's mask have to be constructed every time you call gimp_pixmap_new() and cannot be cached in memory without doing bad hacks.

@@ -109,7 +137,11 @@

gimp_pixmap_new ()

-
GtkWidget*          gimp_pixmap_new                     (gchar **xpm_data);
+
GtkWidget*          gimp_pixmap_new                     (gchar **xpm_data);

Warning

gimp_pixmap_new is deprecated and should not be used in newly-written code.

@@ -139,7 +171,9 @@

gimp_pixmap_set ()

void                gimp_pixmap_set                     (GimpPixmap *pixmap,
-                                                         gchar **xpm_data);
+ gchar **xpm_data);

Warning

gimp_pixmap_set is deprecated and should not be used in newly-written code.

@@ -172,7 +206,9 @@ gimp_pixmap_button_new()

-GtkPixmap +GtkPixmap

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPreviewArea.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPreviewArea.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2008-10-08 23:32:59.000000000 +0100 @@ -57,73 +57,163 @@

Synopsis

                     GimpPreviewArea;
-GtkWidget*          gimp_preview_area_new               (void);
+GtkWidget*          gimp_preview_area_new               (void);
 void                gimp_preview_area_draw              (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         const guchar *buf,
-                                                         gint rowstride);
+                                                         const guchar *buf,
+                                                         gint rowstride);
 void                gimp_preview_area_fill              (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
-                                                         guchar red,
-                                                         guchar green,
-                                                         guchar blue);
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
+                                                         guchar red,
+                                                         guchar green,
+                                                         guchar blue);
 void                gimp_preview_area_blend             (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         const guchar *buf1,
-                                                         gint rowstride1,
-                                                         const guchar *buf2,
-                                                         gint rowstride2,
-                                                         guchar opacity);
+                                                         const guchar *buf1,
+                                                         gint rowstride1,
+                                                         const guchar *buf2,
+                                                         gint rowstride2,
+                                                         guchar opacity);
 void                gimp_preview_area_mask              (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         const guchar *buf1,
-                                                         gint rowstride1,
-                                                         const guchar *buf2,
-                                                         gint rowstride2,
-                                                         const guchar *mask,
-                                                         gint rowstride_mask);
+                                                         const guchar *buf1,
+                                                         gint rowstride1,
+                                                         const guchar *buf2,
+                                                         gint rowstride2,
+                                                         const guchar *mask,
+                                                         gint rowstride_mask);
 void                gimp_preview_area_set_offsets       (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y);
+                                                         gint x,
+                                                         gint y);
 void                gimp_preview_area_set_colormap      (GimpPreviewArea *area,
-                                                         const guchar *colormap,
-                                                         gint num_colors);
+                                                         const guchar *colormap,
+                                                         gint num_colors);
 void                gimp_preview_area_set_max_size      (GimpPreviewArea *area,
-                                                         gint width,
-                                                         gint height);
+                                                         gint width,
+                                                         gint height);
 void                gimp_preview_area_menu_popup        (GimpPreviewArea *area,
-                                                         GdkEventButton *event);
+                                                         GdkEventButton *event);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkDrawingArea
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkDrawingArea
                            +----GimpPreviewArea
 
@@ -131,7 +221,9 @@

Implemented Interfaces

GimpPreviewArea implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

@@ -162,7 +254,9 @@

gimp_preview_area_new ()

-
GtkWidget*          gimp_preview_area_new               (void);
+
GtkWidget*          gimp_preview_area_new               (void);

Creates a new GimpPreviewArea widget.

@@ -183,15 +277,27 @@

gimp_preview_area_draw ()

void                gimp_preview_area_draw              (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         const guchar *buf,
-                                                         gint rowstride);
+ const guchar *buf, + gint rowstride);

Draws buf on area and queues a redraw on the given rectangle.

@@ -237,7 +343,9 @@

buf :

- a guchar buffer that contains the preview pixel data. + a guchar buffer that contains the preview pixel data. @@ -252,13 +360,27 @@

gimp_preview_area_fill ()

void                gimp_preview_area_fill              (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
-                                                         guchar red,
-                                                         guchar green,
-                                                         guchar blue);
+ gint x, + gint y, + gint width, + gint height, + guchar red, + guchar green, + guchar blue);

Fills the given rectangle of area in the given color and queues a redraw. @@ -318,18 +440,36 @@

gimp_preview_area_blend ()

void                gimp_preview_area_blend             (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         const guchar *buf1,
-                                                         gint rowstride1,
-                                                         const guchar *buf2,
-                                                         gint rowstride2,
-                                                         guchar opacity);
+ const guchar *buf1, + gint rowstride1, + const guchar *buf2, + gint rowstride2, + guchar opacity);

Composites buf1 on buf2 with the given opacity, draws the result to area and queues a redraw on the given rectangle. @@ -376,7 +516,9 @@

buf1 :

- a guchar buffer that contains the pixel data for + a guchar buffer that contains the pixel data for the lower layer @@ -387,7 +529,9 @@

buf2 :

- a guchar buffer that contains the pixel data for + a guchar buffer that contains the pixel data for the upper layer @@ -408,19 +552,39 @@

gimp_preview_area_mask ()

void                gimp_preview_area_mask              (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y,
-                                                         gint width,
-                                                         gint height,
+                                                         gint x,
+                                                         gint y,
+                                                         gint width,
+                                                         gint height,
                                                          GimpImageType type,
-                                                         const guchar *buf1,
-                                                         gint rowstride1,
-                                                         const guchar *buf2,
-                                                         gint rowstride2,
-                                                         const guchar *mask,
-                                                         gint rowstride_mask);
+ const guchar *buf1, + gint rowstride1, + const guchar *buf2, + gint rowstride2, + const guchar *mask, + gint rowstride_mask);

Composites buf1 on buf2 with the given mask, draws the result on area and queues a redraw on the given rectangle. @@ -467,7 +631,9 @@

buf1 :

- a guchar buffer that contains the pixel data for + a guchar buffer that contains the pixel data for the lower layer @@ -478,7 +644,9 @@

buf2 :

- a guchar buffer that contains the pixel data for + a guchar buffer that contains the pixel data for the upper layer @@ -489,7 +657,9 @@

mask :

- a guchar buffer representing the mask of the second + a guchar buffer representing the mask of the second layer. @@ -505,8 +675,12 @@

gimp_preview_area_set_offsets ()

void                gimp_preview_area_set_offsets       (GimpPreviewArea *area,
-                                                         gint x,
-                                                         gint y);
+ gint x, + gint y);

Sets the offsets of the previewed area. This information is used when drawing the checkerboard and to determine the dither offsets.

@@ -540,8 +714,12 @@

gimp_preview_area_set_colormap ()

void                gimp_preview_area_set_colormap      (GimpPreviewArea *area,
-                                                         const guchar *colormap,
-                                                         gint num_colors);
+ const guchar *colormap, + gint num_colors);

Sets the colormap for the GimpPreviewArea widget. You need to call this function before you use gimp_preview_area_draw() with @@ -562,7 +740,9 @@

colormap :

- a guchar buffer that contains the colormap + a guchar buffer that contains the colormap @@ -577,8 +757,12 @@

gimp_preview_area_set_max_size ()

void                gimp_preview_area_set_max_size      (GimpPreviewArea *area,
-                                                         gint width,
-                                                         gint height);
+ gint width, + gint height);

Usually a GimpPreviewArea fills the size that it is allocated. This funtion allows you to limit the preview area to a @@ -614,7 +798,9 @@

gimp_preview_area_menu_popup ()

void                gimp_preview_area_menu_popup        (GimpPreviewArea *area,
-                                                         GdkEventButton *event);
+ GdkEventButton *event);

Creates a popup menu that allows to configure the size and type of the checkerboard pattern that the area uses to visualize transparency.

@@ -631,7 +817,9 @@

event :

- the button event that causes the menu to popup or NULL + the button event that causes the menu to popup or NULL diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPreview.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPreview.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpPreview.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpPreview.html 2008-10-08 23:32:59.000000000 +0100 @@ -61,51 +61,111 @@

Synopsis

                     GimpPreview;
-gboolean            gimp_preview_get_update             (GimpPreview *preview);
+gboolean            gimp_preview_get_update             (GimpPreview *preview);
 void                gimp_preview_set_update             (GimpPreview *preview,
-                                                         gboolean update);
+                                                         gboolean update);
 void                gimp_preview_set_bounds             (GimpPreview *preview,
-                                                         gint xmin,
-                                                         gint ymin,
-                                                         gint xmax,
-                                                         gint ymax);
+                                                         gint xmin,
+                                                         gint ymin,
+                                                         gint xmax,
+                                                         gint ymax);
 void                gimp_preview_get_size               (GimpPreview *preview,
-                                                         gint *width,
-                                                         gint *height);
+                                                         gint *width,
+                                                         gint *height);
 void                gimp_preview_get_position           (GimpPreview *preview,
-                                                         gint *x,
-                                                         gint *y);
+                                                         gint *x,
+                                                         gint *y);
 void                gimp_preview_transform              (GimpPreview *preview,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint *dest_x,
-                                                         gint *dest_y);
+                                                         gint src_x,
+                                                         gint src_y,
+                                                         gint *dest_x,
+                                                         gint *dest_y);
 void                gimp_preview_untransform            (GimpPreview *preview,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint *dest_x,
-                                                         gint *dest_y);
-GtkWidget*          gimp_preview_get_area               (GimpPreview *preview);
+                                                         gint src_x,
+                                                         gint src_y,
+                                                         gint *dest_x,
+                                                         gint *dest_y);
+GtkWidget*          gimp_preview_get_area               (GimpPreview *preview);
 void                gimp_preview_draw                   (GimpPreview *preview);
 void                gimp_preview_draw_buffer            (GimpPreview *preview,
-                                                         const guchar *buffer,
-                                                         gint rowstride);
+                                                         const guchar *buffer,
+                                                         gint rowstride);
 void                gimp_preview_invalidate             (GimpPreview *preview);
 void                gimp_preview_set_default_cursor     (GimpPreview *preview,
-                                                         GdkCursor *cursor);
-GtkWidget*          gimp_preview_get_controls           (GimpPreview *preview);
+                                                         GdkCursor *cursor);
+GtkWidget*          gimp_preview_get_controls           (GimpPreview *preview);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
-                     +----GtkContainer
-                           +----GtkBox
-                                 +----GtkVBox
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
+                     +----GtkContainer
+                           +----GtkBox
+                                 +----GtkVBox
                                        +----GimpPreview
                                              +----GimpScrolledPreview
 
@@ -114,18 +174,24 @@

Implemented Interfaces

GimpPreview implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "update"                   gboolean              : Read / Write / Construct
+  "update"                   gboolean              : Read / Write / Construct
 

Style Properties

-  "size"                     gint                  : Read
+  "size"                     gint                  : Read
 
@@ -152,7 +218,9 @@

gimp_preview_get_update ()

-
gboolean            gimp_preview_get_update             (GimpPreview *preview);
+
gboolean            gimp_preview_get_update             (GimpPreview *preview);

@@ -181,7 +249,9 @@

gimp_preview_set_update ()

void                gimp_preview_set_update             (GimpPreview *preview,
-                                                         gboolean update);
+ gboolean update);

Sets the state of the "Preview" check button.

@@ -197,7 +267,9 @@

update :

- TRUE if the preview should invalidate itself when being + TRUE if the preview should invalidate itself when being scrolled or when gimp_preview_invalidate() is being called @@ -210,10 +282,18 @@

gimp_preview_set_bounds ()

void                gimp_preview_set_bounds             (GimpPreview *preview,
-                                                         gint xmin,
-                                                         gint ymin,
-                                                         gint xmax,
-                                                         gint ymax);
+ gint xmin, + gint ymin, + gint xmax, + gint ymax);

Sets the lower and upper limits for the previewed area. The difference between the upper and lower value is used to set the @@ -258,8 +338,12 @@

gimp_preview_get_size ()

void                gimp_preview_get_size               (GimpPreview *preview,
-                                                         gint *width,
-                                                         gint *height);
+ gint *width, + gint *height);

@@ -292,8 +376,12 @@

gimp_preview_get_position ()

void                gimp_preview_get_position           (GimpPreview *preview,
-                                                         gint *x,
-                                                         gint *y);
+ gint *x, + gint *y);

@@ -326,10 +414,18 @@

gimp_preview_transform ()

void                gimp_preview_transform              (GimpPreview *preview,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint *dest_x,
-                                                         gint *dest_y);
+ gint src_x, + gint src_y, + gint *dest_x, + gint *dest_y);

Transforms from image to widget coordinates.

@@ -372,10 +468,18 @@

gimp_preview_untransform ()

void                gimp_preview_untransform            (GimpPreview *preview,
-                                                         gint src_x,
-                                                         gint src_y,
-                                                         gint *dest_x,
-                                                         gint *dest_y);
+ gint src_x, + gint src_y, + gint *dest_x, + gint *dest_y);

Transforms from widget to image coordinates.

@@ -417,7 +521,9 @@


gimp_preview_get_area ()

-
GtkWidget*          gimp_preview_get_area               (GimpPreview *preview);
+
GtkWidget*          gimp_preview_get_area               (GimpPreview *preview);

In most cases, you shouldn't need to access the GimpPreviewArea that is being used in the preview. Sometimes however, you need to. @@ -477,8 +583,12 @@

gimp_preview_draw_buffer ()

void                gimp_preview_draw_buffer            (GimpPreview *preview,
-                                                         const guchar *buffer,
-                                                         gint rowstride);
+ const guchar *buffer, + gint rowstride);

Calls the GimpPreview::draw_buffer method. GimpPreview itself doesn't implement this method so the behaviour is determined by the @@ -543,7 +653,9 @@

gimp_preview_set_default_cursor ()

void                gimp_preview_set_default_cursor     (GimpPreview *preview,
-                                                         GdkCursor *cursor);
+ GdkCursor *cursor);

Sets the default mouse cursor for the preview. Note that this will be overriden by a GDK_FLEUR if the preview has scrollbars, or by a @@ -561,7 +673,11 @@

cursor :

- a GdkCursor or NULL + a GdkCursor or NULL @@ -572,9 +688,13 @@

gimp_preview_get_controls ()

-
GtkWidget*          gimp_preview_get_controls           (GimpPreview *preview);
-

-Gives access to the GtkHBox at the bottom of the preview that +

GtkWidget*          gimp_preview_get_controls           (GimpPreview *preview);
+

+Gives access to the GtkHBox at the bottom of the preview that contains the update toggle. Derived widgets can use this function if they need to add controls to this area.

@@ -590,7 +710,9 @@

Returns :

- the GtkHBox at the bottom of the preview. + the GtkHBox at the bottom of the preview. @@ -604,7 +726,9 @@

Property Details

The "update" property

-
  "update"                   gboolean              : Read / Write / Construct
+
  "update"                   gboolean              : Read / Write / Construct

Default value: TRUE

@@ -613,7 +737,9 @@

Style Property Details

The "size" style property

-
  "size"                     gint                  : Read
+
  "size"                     gint                  : Read

Allowed values: [1,1024]

Default value: 200

@@ -624,7 +750,9 @@

The "invalidated" signal

void                user_function                      (GimpPreview *gimppreview,
-                                                        gpointer     user_data)        : Run First
+ gpointer user_data) : Run First

diff -Nru /tmp/IqB0uqZRMh/gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpRuler.html /tmp/h4xbGc63vZ/gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpRuler.html --- gimp-2.6.0/devel-docs/libgimpwidgets/html/GimpRuler.html 2008-09-30 22:55:59.000000000 +0100 +++ gimp-2.6.1/devel-docs/libgimpwidgets/html/GimpRuler.html 2008-10-08 23:32:58.000000000 +0100 @@ -42,7 +42,9 @@  |  Implemented Interfaces  |  - Properties + Properties +  |  + Style Properties
@@ -57,7 +59,11 @@

Synopsis

                     GimpRuler;
-GtkWidget*          gimp_ruler_new                      (GtkOrientation orientation);
+GtkWidget*          gimp_ruler_new                      (GtkOrientation orientation);
 void                gimp_ruler_set_unit                 (GimpRuler *ruler,
                                                          GimpUnit            gimp_ruler_get_unit                 (GimpRuler *ruler);
 void                gimp_ruler_set_position             (GimpRuler *ruler,
-                                                         gdouble position);
-gdouble             gimp_ruler_get_position             (GimpRuler *ruler);
+                                                         gdouble position);
+gdouble             gimp_ruler_get_position             (GimpRuler *ruler);
 void                gimp_ruler_set_range                (GimpRuler *ruler,
-                                                         gdouble lower,
-                                                         gdouble upper,
-                                                         gdouble max_size);
+                                                         gdouble lower,
+                                                         gdouble upper,
+                                                         gdouble max_size);
 void                gimp_ruler_get_range                (GimpRuler *ruler,
-                                                         gdouble *lower,
-                                                         gdouble *upper,
-                                                         gdouble *max_size);
+                                                         gdouble *lower,
+                                                         gdouble *upper,
+                                                         gdouble *max_size);
 

Object Hierarchy

-  GObject
-   +----GInitiallyUnowned
-         +----GtkObject
-               +----GtkWidget
+  GObject
+   +----GInitiallyUnowned
+         +----GtkObject
+               +----GtkWidget
                      +----GimpRuler
 
@@ -92,19 +122,39 @@

Implemented Interfaces

GimpRuler implements - AtkImplementorIface and GtkBuildable.

+ AtkImplementorIface and GtkBuildable.

Properties

-  "lower"                    gdouble               : Read / Write
-  "max-size"                 gdouble               : Read / Write
-  "orientation"              GtkOrientation        : Read / Write
-  "position"                 gdouble               : Read / Write
+  "lower"                    gdouble               : Read / Write
+  "max-size"                 gdouble               : Read / Write
+  "orientation"              GtkOrientation        : Read / Write
+  "position"                 gdouble               : Read / Write
   "unit"                     GimpUnit              : Read / Write
-  "upper"                    gdouble               : Read / Write
+  "upper"                    gdouble               : Read / Write
+
+
+
+

Style Properties

+
+  "font-scale"               gdouble               : Read
 
@@ -125,7 +175,11 @@

gimp_ruler_new ()

-
GtkWidget*          gimp_ruler_new                      (GtkOrientation orientation);
+
GtkWidget*          gimp_ruler_new                      (GtkOrientation orientation);

Creates a new ruler.

@@ -212,7 +266,9 @@

gimp_ruler_set_position ()

void                gimp_ruler_set_position             (GimpRuler *ruler,
-                                                         gdouble position);
+ gdouble position);

This sets the position of the ruler.

@@ -239,7 +295,9 @@


gimp_ruler_get_position ()

-
gdouble             gimp_ruler_get_position             (GimpRuler *ruler);
+
gdouble             gimp_ruler_get_position             (GimpRuler *ruler);

@@ -268,9 +326,15 @@

gimp_ruler_set_range ()

void                gimp_ruler_set_range                (GimpRuler *ruler,
-                                                         gdouble lower,
-                                                         gdouble upper,
-                                                         gdouble max_size);
+ gdouble lower, + gdouble upper, + gdouble max_size);

This sets the range of the ruler.

@@ -309,9 +373,15 @@

gimp_ruler_get_range ()

void                gimp_ruler_get_range                (GimpRuler *ruler,
-                                                         gdouble *lower,
-                                                         gdouble *upper,
-                                                         gdouble *max_size);
+ gdouble *lower, + gdouble *upper, + gdouble *max_size);

Retrieves values indicating the range and current position of a GimpRuler. See gimp_ruler_set_range().

@@ -328,18 +398,24 @@

lower :

- location to store lower limit of the ruler, or NULL + location to store lower limit of the ruler, or NULL

upper :

- location to store upper limit of the ruler, or NULL + location to store upper limit of the ruler, or NULL

max_size :

location to store the maximum size of the ruler used when - calculating the space to leave for the text, or NULL. + calculating the space to leave for the text, or NULL. @@ -352,28 +428,36 @@

Property Details

The "lower" property

-
  "lower"                    gdouble               : Read / Write
+
  "lower"                    gdouble               : Read / Write

Lower limit of ruler.

Default value: 0


The "max-size" property

-
  "max-size"                 gdouble               : Read / Write
+
  "max-size"                 gdouble               : Read / Write

Maximum size of the ruler.

Default value: 0


The "orientation" property

-
  "orientation"              GtkOrientation        : Read / Write
+
  "orientation"              GtkOrientation        : Read / Write

The orientation of the ruler.

Default value: GTK_ORIENTATION_HORIZONTAL


The "position" property

-
  "position"                 gdouble               : Read / Write
+
  "position"                 gdouble               : Read / Write

Position of mark on the ruler.

Default value: 0

@@ -390,11 +474,25 @@

The "upper" property

-
  "upper"                    gdouble               : Read / Write
+
  "upper"                    gdouble               : Read / Write

Upper limit of ruler.

Default value: 0

+
+

Style Property Details

+
+

The "font-scale" style property

+
  "font-scale"               gdouble               : Read
+

+

Allowed values: >= 0

+

Default value: 0.833333

+
+