Gimp/app/core
Ell fac91ddad4 app: add gimp_parallel_run_async_{full,independent}()
Remove the "independent" parameter of gimp_parallel_run_async(),
and have the function always execute the passed callback in the
shared async thread-pool.

Add a new gimp_parallel_run_async_full() function, taking, in
addition to a callback and a data pointer:

  - A priority value, controlling the priority of the callback in
    the async thread-pool queue.  0 is the default priority (used
    by gimp_parallel_run_async()), negative values have higher
    priority, and positive values have lower priority.

  - A destructor function for the data pointer.  This function is
    called to free the user data in case the async operation is
    canceled before execution of the callback function begins, and
    the operation is dropped from the queue and aborted without
    executing the callback.  Note that if the callback *is*
    executed, the destructor is *not* used -- it's the callback's
    responsibility to free/recycle the user data.

Add a separate gimp_parallel_run_async_independent() function,
taking the same parameters, and executing the passed callback in
an independent thread, rather than the thread pool.  This function
doesn't take a priority value or a destructor (and there's no
corresponding "_full()" variant that does), since they're pointless
for independent threads.

Adapt the rest of the code to the changes.

(cherry picked from commit b74e600c12)
2018-07-04 16:12:21 -04:00
..
.gitignore enums: add intermediate generated enum files to .gitignore 2017-08-24 15:35:27 -04:00
core-enums.c app: add GimpTransformGridTool; derive most transform tools from it 2018-06-09 18:30:28 -04:00
core-enums.h app: add GIMP_CONTEXT_PROP_MASK_TOOL_PRESET to GIMP_CONTEXT_PROP_MASK_ALL 2018-06-17 13:41:16 +02:00
core-types.h app: add GimpDataLoaderFactory which loads data from an array of formats 2018-06-04 14:35:51 +02:00
gimp-atomic.c app: make gimp-atomic parameters volatile 2018-05-15 12:58:38 -04:00
gimp-atomic.h app: make gimp-atomic parameters volatile 2018-05-15 12:58:38 -04:00
gimp-batch.c
gimp-batch.h
gimp-cairo.c app: use gimp_cairo_rounded_rectangle() in GimpOverlayFrame 2018-03-07 09:40:19 -05:00
gimp-cairo.h app: add gimp_cairo_rounded_rectangle() 2018-03-07 06:18:21 -05:00
gimp-contexts.c
gimp-contexts.h
gimp-data-factories.c all: make GimpDataLoaderFactory less static 2018-06-10 15:54:45 +02:00
gimp-data-factories.h app: add gimp-data-factories.[ch] with some code from gimp.c 2016-09-12 02:55:49 +02:00
gimp-edit.c app: remove non-cut/copy/paste functions from gimp-edit.[ch] 2018-04-18 23:48:33 +02:00
gimp-edit.h app: remove non-cut/copy/paste functions from gimp-edit.[ch] 2018-04-18 23:48:33 +02:00
gimp-filter-history.c app: allow filter actions to have hardcoded default operation settings 2017-06-03 22:08:43 +02:00
gimp-filter-history.h
gimp-gradients.c app: add "custom" gradient 2017-10-09 12:48:50 -04:00
gimp-gradients.h app: add "custom" gradient 2017-10-09 12:48:50 -04:00
gimp-gui.c app: code cleanup in previous commits 2018-05-30 02:23:03 -04:00
gimp-gui.h app: add gimp_wait() 2018-05-29 16:07:48 -04:00
gimp-internal-data.c app: explicitly close output stream when saving internal data 2018-07-02 11:48:49 -04:00
gimp-internal-data.h app: save custom gradient across sessions 2017-10-29 10:19:07 -04:00
gimp-memsize.c
gimp-memsize.h
gimp-modules.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimp-modules.h
gimp-palettes.c app: make "color" parameter of gimp_palettes_add_color_history() const 2018-03-21 19:10:55 +01:00
gimp-palettes.h app: make "color" parameter of gimp_palettes_add_color_history() const 2018-03-21 19:10:55 +01:00
gimp-parallel.cc app: add gimp_parallel_run_async_{full,independent}() 2018-07-04 16:12:21 -04:00
gimp-parallel.h app: add gimp_parallel_run_async_{full,independent}() 2018-07-04 16:12:21 -04:00
gimp-parasites.c
gimp-parasites.h
gimp-spawn.c app: fix #include order in gimp-spawn.c 2018-03-10 02:22:40 -05:00
gimp-spawn.h app: add gimp_spawn_set_cloexec() 2018-03-06 16:31:17 -05:00
gimp-tags.c
gimp-tags.h
gimp-templates.c Bug 795050 - ‘strncpy’ output truncated before terminating nul 2018-04-11 11:31:02 +02:00
gimp-templates.h
gimp-transform-resize.c app: #include <string.h> in gimp-transform-resize.c 2018-01-28 22:58:26 +01:00
gimp-transform-resize.h
gimp-transform-utils.c app: subdivide perspective-transformed Bezier curves 2018-02-04 14:45:24 -05:00
gimp-transform-utils.h app: subdivide perspective-transformed Bezier curves 2018-02-04 14:45:24 -05:00
gimp-units.c app: merge units.[ch] into core/gimp-units.[ch] 2016-09-12 23:51:29 +02:00
gimp-units.h
gimp-user-install.c app: migrate configuration files for s/Blend/Gradient/ tool renaming. 2018-04-14 04:01:32 +02:00
gimp-user-install.h Bug 599573 - Remember dialog defaults between Gimp sessions 2016-09-14 01:27:42 +02:00
gimp-utils.c app: add gimp_ascii_strtoi() and gimp_ascii_strotod() 2018-06-20 15:14:21 -04:00
gimp-utils.h app: add gimp_ascii_strtoi() and gimp_ascii_strotod() 2018-06-20 15:14:21 -04:00
gimp.c app: remove all old font management code, switch to GimpFontFactory[View] 2018-06-03 20:48:34 +02:00
gimp.h app: remove all old font management code, switch to GimpFontFactory[View] 2018-06-03 20:48:34 +02:00
gimpasync.c app: implement GimpWaitable::try_wait() in GimpAsync 2018-05-29 16:07:48 -04:00
gimpasync.h app: implement GimpWaitable and GimpCancelable in GimpAsync 2018-05-27 13:18:56 -04:00
gimpasyncset.c app: strengthen gimp_async_set_{wait,cancel}() 2018-06-03 10:05:10 -04:00
gimpasyncset.h app: code cleanup in previous commits 2018-05-30 02:23:03 -04:00
gimpbezierdesc.c
gimpbezierdesc.h
gimpboundary.c Source and trivial typos 2018-05-12 23:44:47 +02:00
gimpboundary.h Revert "Bug 791512 - make the selection boundary detection the same as 2.8" 2018-04-10 00:26:01 +02:00
gimpbrush-boundary.c app: fix rotated brush boundary position 2017-12-24 09:13:25 -05:00
gimpbrush-boundary.h app: add support for brush reflection 2017-12-22 17:52:29 -05:00
gimpbrush-header.h
gimpbrush-load.c Issue #1731: gbr file that crashes gimp-2.10. 2018-06-28 18:50:07 +02:00
gimpbrush-load.h
gimpbrush-private.h Source and trivial typos 2018-05-12 23:44:47 +02:00
gimpbrush-transform.cc Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimpbrush-transform.h app: add support for brush reflection 2017-12-22 17:52:29 -05:00
gimpbrush.c Source and trivial typos 2018-05-12 23:44:47 +02:00
gimpbrush.h app: add support for brush reflection 2017-12-22 17:52:29 -05:00
gimpbrushcache.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpbrushcache.h app: add support for brush reflection 2017-12-22 17:52:29 -05:00
gimpbrushclipboard.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpbrushclipboard.h Bug 344684 - Greyscale (no alpha) clipboard brushes are of the wrong type 2017-04-19 17:33:44 -03:00
gimpbrushgenerated-load.c Issue #1682 - Segfault when starting GIMP, due to empty data files 2018-06-20 15:14:21 -04:00
gimpbrushgenerated-load.h
gimpbrushgenerated-save.c
gimpbrushgenerated-save.h
gimpbrushgenerated.c app: add support for brush reflection 2017-12-22 17:52:29 -05:00
gimpbrushgenerated.h
gimpbrushpipe-load.c libgimpbase: add gimp_pixpipe_params_free(). 2018-06-27 18:37:20 +02:00
gimpbrushpipe-load.h
gimpbrushpipe.c
gimpbrushpipe.h
gimpbuffer.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimpbuffer.h app: keep the src image's resolution and unit in copied/cut GimpBuffers 2017-05-01 18:39:13 +02:00
gimpcancelable.c app: add GimpCancelable interface 2018-05-27 13:18:56 -04:00
gimpcancelable.h app: add GimpCancelable interface 2018-05-27 13:18:56 -04:00
gimpchannel-combine.c
gimpchannel-combine.h
gimpchannel-select.c app: make the points array const in gimp_channel_select_polygon() 2017-06-23 01:38:30 +02:00
gimpchannel-select.h app: make the points array const in gimp_channel_select_polygon() 2017-06-23 01:38:30 +02:00
gimpchannel.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpchannel.h app: switch the first two args of gimp_channel_new_from_buffer() 2018-04-03 21:57:43 +02:00
gimpchannelpropundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpchannelpropundo.h
gimpchannelundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpchannelundo.h
gimpcontainer-filter.c
gimpcontainer-filter.h
gimpcontainer.c app: add +gimp_container_freeze_count() which returns the freeze_count 2018-05-07 10:25:45 +02:00
gimpcontainer.h app: add +gimp_container_freeze_count() which returns the freeze_count 2018-05-07 10:25:45 +02:00
gimpcontext.c app: some g_return_if_fail() were missing or non-standard in GimpContext 2018-06-17 15:16:57 +02:00
gimpcontext.h app: remove all old font management code, switch to GimpFontFactory[View] 2018-06-03 20:48:34 +02:00
gimpcoords-interpolate.c app: add gimp_coords_interpolate_bezier_at() 2018-02-03 05:58:42 -05:00
gimpcoords-interpolate.h app: add gimp_coords_interpolate_bezier_at() 2018-02-03 05:58:42 -05:00
gimpcoords.c
gimpcoords.h
gimpcurve-load.c
gimpcurve-load.h
gimpcurve-map.c
gimpcurve-map.h
gimpcurve-save.c
gimpcurve-save.h
gimpcurve.c Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimpcurve.h Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimpdashpattern.c app: clean out many tabs under app/core/. 2016-11-25 05:51:03 +01:00
gimpdashpattern.h
gimpdata.c app: don't leak the identifier if gimp_data_make_internal() is called again 2018-06-03 22:50:38 +02:00
gimpdata.h app: add gimp_data_is_{copyable,duplicatable}() to gimp_data.h 2017-11-04 22:13:31 -04:00
gimpdatafactory.c app: a few async font loading fixes 2018-06-28 15:38:55 -04:00
gimpdatafactory.h app: add GimpDataLoaderFactory which loads data from an array of formats 2018-06-04 14:35:51 +02:00
gimpdataloaderfactory.c all: make GimpDataLoaderFactory less static 2018-06-10 15:54:45 +02:00
gimpdataloaderfactory.h all: make GimpDataLoaderFactory less static 2018-06-10 15:54:45 +02:00
gimpdocumentlist.c
gimpdocumentlist.h
gimpdrawable-bucket-fill.c app: use paint composite-mode, instead of AUTO, in more places 2018-04-25 11:20:48 -04:00
gimpdrawable-bucket-fill.h
gimpdrawable-combine.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpdrawable-combine.h app: make layer blend color space and compositing color space configurable 2017-02-12 23:49:26 +01:00
gimpdrawable-edit.c app: use paint composite-mode, instead of AUTO, in more places 2018-04-25 11:20:48 -04:00
gimpdrawable-edit.h app: remove non-cut/copy/paste functions from gimp-edit.[ch] 2018-04-18 23:48:33 +02:00
gimpdrawable-equalize.c Bug 785535 - Histogram not updating in real when filters are active 2017-08-05 17:15:31 +02:00
gimpdrawable-equalize.h
gimpdrawable-fill.c app: use paint composite-mode, instead of AUTO, in more places 2018-04-25 11:20:48 -04:00
gimpdrawable-fill.h Bug 766988 - Colors applied to images are not color managed 2016-10-09 15:53:43 +02:00
gimpdrawable-filters.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpdrawable-filters.h app: add gimp_drawable_has_filters() 2017-08-05 15:37:56 +02:00
gimpdrawable-floating-selection.c app: handle visbility/excludes-backdrop changes in floating sel. 2017-12-05 16:17:48 -05:00
gimpdrawable-floating-selection.h
gimpdrawable-foreground-extract.c
gimpdrawable-foreground-extract.h
gimpdrawable-gradient.c app: fix progress text when applying shaped gradient through PDB 2018-05-25 12:44:10 -04:00
gimpdrawable-gradient.h app: use gradient cache for conical gradients 2018-04-25 14:05:19 -04:00
gimpdrawable-histogram.c app: add gimp_drawable_calculate_histogram_async() 2018-05-11 14:01:42 -04:00
gimpdrawable-histogram.h app: add gimp_drawable_calculate_histogram_async() 2018-05-11 14:01:42 -04:00
gimpdrawable-levels.c Bug 785535 - Histogram not updating in real when filters are active 2017-08-05 17:15:31 +02:00
gimpdrawable-levels.h
gimpdrawable-offset.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpdrawable-offset.h
gimpdrawable-operation.c app: add crop_input parameter to gimp_gegl_apply_operation() 2018-03-22 13:46:28 -04:00
gimpdrawable-operation.h
gimpdrawable-preview.c
gimpdrawable-preview.h Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpdrawable-private.h Bug 796090 - (wrong) true-color preview of GEGL filter ops, ... 2018-05-16 02:09:19 +02:00
gimpdrawable-shadow.c app: add gimp_drawable_{start,end,flush}_paint() 2018-04-08 09:42:47 -04:00
gimpdrawable-shadow.h
gimpdrawable-stroke.c app: make gimp_item_mask_bounds() and _intersect() honor a suspended selection 2016-11-04 22:28:59 +01:00
gimpdrawable-stroke.h
gimpdrawable-transform.c app: indentation fix to last commit 2018-04-19 05:17:47 -04:00
gimpdrawable-transform.h
gimpdrawable.c Use g_set_object() in a lot of places, and splrinkle some g_clear_object() 2018-06-01 13:14:47 +02:00
gimpdrawable.h Bug 795081 - Crash when using a brush combined with a dynamics 2018-04-09 14:27:48 -04:00
gimpdrawablefilter.c Bug 795866 - Transparent gradient on transparent layer ... 2018-05-07 14:35:40 -04:00
gimpdrawablefilter.h app: make layer blend color space and compositing color space configurable 2017-02-12 23:49:26 +01:00
gimpdrawablemodundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpdrawablemodundo.h
gimpdrawablestack.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpdrawablestack.h app: add GimpLayerStack 2017-05-11 17:44:56 -04:00
gimpdrawableundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpdrawableundo.h app: make layer blend color space and compositing color space configurable 2017-02-12 23:49:26 +01:00
gimpdynamics-load.c
gimpdynamics-load.h
gimpdynamics-save.c
gimpdynamics-save.h
gimpdynamics.c app: port GimpData subclasses from ::duplicate() to ::copy() 2017-11-04 22:00:29 -04:00
gimpdynamics.h
gimpdynamicsoutput.c Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpdynamicsoutput.h
gimperror.c
gimperror.h
gimpfilloptions.c app, libgimp*, plug-ins: replace enum GimpLayerModeEffects by GimpLayerMode 2017-01-08 23:00:19 +01:00
gimpfilloptions.h app: add gimp_fill_options_create_buffer() 2016-05-29 18:25:14 +02:00
gimpfilter.c app: add GimpFilter::active property; move ::visible to GimpItem 2017-12-05 16:12:46 -05:00
gimpfilter.h app: remove gimp_filter_is_active() prototype 2017-12-06 10:20:01 -05:00
gimpfilteredcontainer.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpfilteredcontainer.h
gimpfilterstack.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpfilterstack.h
gimpfloatingselectionundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpfloatingselectionundo.h
gimpgradient-load.c Issue #1682 - Segfault when starting GIMP, due to empty data files 2018-06-20 15:14:21 -04:00
gimpgradient-load.h
gimpgradient-save.c
gimpgradient-save.h
gimpgradient.c app: drop alpha from all fishes in gimpgradient.c 2018-04-14 21:09:01 +02:00
gimpgradient.h Bug 795207 - Add color space to blend(gradient) tool options 2018-04-13 22:33:16 +02:00
gimpgrid.c app: add support for subpixel image grids 2017-02-19 18:13:41 -05:00
gimpgrid.h
gimpgrouplayer.c app: use default new-layer mode for layer groups and text layers 2018-06-06 02:40:55 -04:00
gimpgrouplayer.h Bug 795410 - Deleting a layer group and then undoing the deletion ... 2018-04-22 04:05:36 -04:00
gimpgrouplayerundo.c Bug 795410 - Deleting a layer group and then undoing the deletion ... 2018-04-22 04:05:36 -04:00
gimpgrouplayerundo.h app: fix undo when resizing a group layer with a mask 2018-02-05 15:15:21 -05:00
gimpguide.c
gimpguide.h
gimpguideundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpguideundo.h
gimphistogram.c app: add gimp_parallel_run_async_{full,independent}() 2018-07-04 16:12:21 -04:00
gimphistogram.h app: add gimp_histogram_calculate_async() 2018-05-11 14:01:42 -04:00
gimpidtable.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimpidtable.h
gimpimage-arrange.c app: we should not have any g_assert*() code if possible. 2018-01-22 12:46:37 +01:00
gimpimage-arrange.h
gimpimage-color-profile.c Issue #1668 - Smudge Tool - Wrong colors when painting on an image ... 2018-06-17 13:38:34 -04:00
gimpimage-color-profile.h Bug 768952 - Select by color works correctly only in srgb 2016-07-25 00:04:12 +02:00
gimpimage-colormap.c app: make sure image colormaps always have at least one color 2018-06-14 03:19:29 -04:00
gimpimage-colormap.h
gimpimage-convert-data.h
gimpimage-convert-fsdither.h
gimpimage-convert-indexed.c Issue #1520 - GIMP 2.10 Crashes when trying to convert 8bit colour... 2018-05-30 02:19:39 +02:00
gimpimage-convert-indexed.h app: reorder and rename indexed conversion parameters to make more sense 2016-09-27 23:51:33 +02:00
gimpimage-convert-precision.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpimage-convert-precision.h Bug 734657 - Import as 32-bit floating-point linear by default 2017-01-22 22:06:30 +01:00
gimpimage-convert-type.c app: use GimpObjectQueue in lots of places 2018-03-25 11:46:42 -04:00
gimpimage-convert-type.h
gimpimage-crop.c Bug 764024 - Allow to choose fill color when resizing layers and images 2016-10-10 00:02:16 +02:00
gimpimage-crop.h Bug 764024 - Allow to choose fill color when resizing layers and images 2016-10-10 00:02:16 +02:00
gimpimage-duplicate.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpimage-duplicate.h
gimpimage-fade.c app: use paint composite-mode, instead of AUTO, in more places 2018-04-25 11:20:48 -04:00
gimpimage-fade.h app: remove non-cut/copy/paste functions from gimp-edit.[ch] 2018-04-18 23:48:33 +02:00
gimpimage-flip.c app: use GimpObjectQueue in lots of places 2018-03-25 11:46:42 -04:00
gimpimage-flip.h
gimpimage-grid.c
gimpimage-grid.h
gimpimage-guides.c app: move guide and sample point picking to gimpimage-pick-item.[ch] 2017-06-22 09:43:50 +02:00
gimpimage-guides.h Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpimage-item-list.c Bug 795410 - Deleting a layer group and then undoing the deletion ... 2018-04-22 04:05:36 -04:00
gimpimage-item-list.h
gimpimage-merge.c Bug 793714 - Error when merging layer group with Pass through mode 2018-04-25 08:43:57 -04:00
gimpimage-merge.h
gimpimage-metadata.c Use g_set_object() in a lot of places, and splrinkle some g_clear_object() 2018-06-01 13:14:47 +02:00
gimpimage-metadata.h
gimpimage-new.c Move the new "default_new_layer_mode" APIs to the image... 2017-08-21 20:18:00 +02:00
gimpimage-new.h app: keep the src image's resolution and unit in copied/cut GimpBuffers 2017-05-01 18:39:13 +02:00
gimpimage-pick-color.c
gimpimage-pick-color.h
gimpimage-pick-item.c app: add gimp_image_pick_vectors(), remove gimp_draw_tool_on_vectors() 2017-06-22 11:35:57 +02:00
gimpimage-pick-item.h app: add gimp_image_pick_vectors(), remove gimp_draw_tool_on_vectors() 2017-06-22 11:35:57 +02:00
gimpimage-preview.c
gimpimage-preview.h Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpimage-private.h Move the new "default_new_layer_mode" APIs to the image... 2017-08-21 20:18:00 +02:00
gimpimage-quick-mask.c Bug 791519 - Unexpected selection from channel 2018-04-10 02:00:23 +02:00
gimpimage-quick-mask.h
gimpimage-resize.c app: do not stop the measurement when straightening. 2018-06-05 23:36:24 +02:00
gimpimage-resize.h app: do not stop the measurement when straightening. 2018-06-05 23:36:24 +02:00
gimpimage-rotate.c app: use GimpObjectQueue in lots of places 2018-03-25 11:46:42 -04:00
gimpimage-rotate.h
gimpimage-sample-points.c app: move guide and sample point picking to gimpimage-pick-item.[ch] 2017-06-22 09:43:50 +02:00
gimpimage-sample-points.h Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpimage-scale.c app: use GimpObjectQueue in lots of places 2018-03-25 11:46:42 -04:00
gimpimage-scale.h
gimpimage-snap.c app: add support for subpixel image grids 2017-02-19 18:13:41 -05:00
gimpimage-snap.h
gimpimage-symmetry.c
gimpimage-symmetry.h
gimpimage-undo-push.c Bug 795410 - Deleting a layer group and then undoing the deletion ... 2018-04-22 04:05:36 -04:00
gimpimage-undo-push.h Bug 795410 - Deleting a layer group and then undoing the deletion ... 2018-04-22 04:05:36 -04:00
gimpimage-undo.c app: get rid of GParameter and g_object_newv() (deprecated in GLib 2.54) 2018-01-01 15:20:05 +01:00
gimpimage-undo.h
gimpimage.c Issue #1291 - Non-intrusive warning when saved XCF version... 2018-06-06 23:12:04 +02:00
gimpimage.h Issue #1291 - Non-intrusive warning when saved XCF version... 2018-06-06 23:12:04 +02:00
gimpimagefile.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimpimagefile.h
gimpimageundo.c Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpimageundo.h
gimpitem-exclusive.c app: exclusive visibility in item group only toggles within the group. 2017-07-30 16:35:37 +02:00
gimpitem-exclusive.h
gimpitem-linked.c Bug 796014 - Cannot open some older .xcf files made with 2.8.22 in 2.10. 2018-05-11 18:04:31 +02:00
gimpitem-linked.h
gimpitem-preview.c
gimpitem-preview.h Bug 794996 - Misc. typo fixes in comments in app/ 2018-04-08 21:25:56 +02:00
gimpitem.c Use g_set_object() in a lot of places, and splrinkle some g_clear_object() 2018-06-01 13:14:47 +02:00
gimpitem.h app: change offsets parameters of GimpItem::translate() from int to double 2018-04-23 01:27:56 +02:00
gimpitempropundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpitempropundo.h Bug 769738 - Add color tags/labels for layers/channels/paths 2016-10-29 17:02:16 +02:00
gimpitemstack.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpitemstack.h
gimpitemtree.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpitemtree.h
gimpitemundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpitemundo.h Revert "New GimpMetadata as subclass of GExiv2Metadata" 2017-01-03 19:36:22 +01:00
gimplayer-floating-selection.c Revert "Bug 791512 - make the selection boundary detection the same as 2.8" 2018-04-10 00:26:01 +02:00
gimplayer-floating-selection.h
gimplayer-new.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimplayer-new.h app, libgimp*, plug-ins: replace enum GimpLayerModeEffects by GimpLayerMode 2017-01-08 23:00:19 +01:00
gimplayer.c Issue #1677 - Alpha channel copy / Layer Mask issues 2018-06-19 12:41:01 +02:00
gimplayer.h app: keep ancestor set in gimp_layer_start_move(), for use in end_move() 2018-02-10 05:36:40 -05:00
gimplayermask.c app: remove gimp_layer_mask_new_from_buffer() and some includes 2018-06-19 13:21:41 +02:00
gimplayermask.h app: remove gimp_layer_mask_new_from_buffer() and some includes 2018-06-19 13:21:41 +02:00
gimplayermaskpropundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimplayermaskpropundo.h
gimplayermaskundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimplayermaskundo.h
gimplayerpropundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimplayerpropundo.h app: make layer blend color space and compositing color space configurable 2017-02-12 23:49:26 +01:00
gimplayerstack.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimplayerstack.h app: add GimpLayerStack 2017-05-11 17:44:56 -04:00
gimplayerundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimplayerundo.h
gimplist.c
gimplist.h
gimpmarshal.list app: add handle-clicked signal to GimpToolLine 2017-10-09 12:48:50 -04:00
gimpmaskundo.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpmaskundo.h
gimpmybrush-load.c
gimpmybrush-load.h
gimpmybrush-private.h
gimpmybrush.c
gimpmybrush.h
gimpobject.c
gimpobject.h
gimpobjectqueue.c app: add GimpObjectQueue 2018-03-25 11:46:42 -04:00
gimpobjectqueue.h app: add GimpObjectQueue 2018-03-25 11:46:42 -04:00
gimppaintinfo.c Use g_set_object() in a lot of places, and splrinkle some g_clear_object() 2018-06-01 13:14:47 +02:00
gimppaintinfo.h
gimppalette-import.c app: fix the build after the GimpGradientBlendColorSpace commit 2018-04-13 23:12:21 +02:00
gimppalette-import.h Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimppalette-load.c Issue #1682 - Segfault when starting GIMP, due to empty data files 2018-06-20 15:14:21 -04:00
gimppalette-load.h
gimppalette-save.c
gimppalette-save.h
gimppalette.c app: port GimpData subclasses from ::duplicate() to ::copy() 2017-11-04 22:00:29 -04:00
gimppalette.h
gimppalettemru.c
gimppalettemru.h
gimpparamspecs-desc.c
gimpparamspecs-desc.h
gimpparamspecs-duplicate.c app: fix duplication of GeglParamSpecSeed, we missed its limits before 2018-04-17 00:12:01 +02:00
gimpparamspecs-duplicate.h
gimpparamspecs.c
gimpparamspecs.h
gimpparasitelist.c
gimpparasitelist.h
gimppattern-header.h
gimppattern-load.c gbr/pat: Fix out of boundary read on illegal names 2017-12-21 22:09:54 +01:00
gimppattern-load.h
gimppattern.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimppattern.h
gimppatternclipboard.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimppatternclipboard.h
gimppdbprogress.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimppdbprogress.h
gimppickable-auto-shrink.c app: change gimp_pickable_auto_shrink()'s parameters 2016-09-25 22:40:28 +02:00
gimppickable-auto-shrink.h app: change gimp_pickable_auto_shrink()'s parameters 2016-09-25 22:40:28 +02:00
gimppickable-contiguous-region.c app: don't use mask sampler in gimp_pickable_contiguous_region_by_seed() 2018-05-14 03:12:40 -04:00
gimppickable-contiguous-region.h app: small whitespace fix in gimppickable-contiguous-region.h 2016-09-15 10:22:53 +02:00
gimppickable.c app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimppickable.h app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimpprogress.c app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimpprogress.h app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimpprojectable.c app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimpprojectable.h app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimpprojection.c app: implement GimpPickable::get_pixel_average() in various classes 2018-05-18 15:07:32 -04:00
gimpprojection.h app: add gimp_projection_{get,set}_priority() 2017-12-02 10:38:34 -05:00
gimpsamplepoint.c
gimpsamplepoint.h
gimpsamplepointundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpsamplepointundo.h
gimpscanconvert.c Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimpscanconvert.h
gimpselection.c app: use gimp_gegl_buffer_copy() all over the place 2018-05-25 08:20:56 -04:00
gimpselection.h Bug 791519 - Unexpected selection from channel 2018-04-10 02:00:23 +02:00
gimpsettings.c app: change GimpSettings to store its time as gint64 2017-07-23 15:18:55 +02:00
gimpsettings.h app: change GimpSettings to store its time as gint64 2017-07-23 15:18:55 +02:00
gimpstrokeoptions.c Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimpstrokeoptions.h
gimpsubprogress.c app: add "progress" property to GimpSubProgress 2018-03-25 11:46:42 -04:00
gimpsubprogress.h
gimpsymmetry-mandala.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimpsymmetry-mandala.h
gimpsymmetry-mirror.c app: do not edit symmetry variables but properties. 2018-04-02 18:49:23 +02:00
gimpsymmetry-mirror.h app: rename mirror properties to mirror-position-x|y. 2016-07-19 14:24:54 +02:00
gimpsymmetry-tiling.c Bug 768872 - Tiling Symmetry doesn't wrap vertical coordinates over... 2018-04-11 02:09:21 +02:00
gimpsymmetry-tiling.h
gimpsymmetry.c Bug 795909 - Multiple images opened with floating selection ... 2018-05-08 10:22:46 -04:00
gimpsymmetry.h Bug 795909 - Multiple images opened with floating selection ... 2018-05-08 10:22:46 -04:00
gimptag.c Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimptag.h
gimptagcache.c
gimptagcache.h
gimptagged.c app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimptagged.h app: port all interfaces to G_DEFINE_INTERFACE() 2018-05-27 05:56:57 -04:00
gimptaggedcontainer.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimptaggedcontainer.h
gimptempbuf.c Bug 789613 - core: Fix integer overflow on 64 bit systems 2018-01-01 17:10:01 +01:00
gimptempbuf.h
gimptemplate.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimptemplate.h app: better defaults for image dimension. 2016-11-24 01:05:58 +01:00
gimptilehandlerprojectable.c app: add GimpTileHandlerProjectable 2017-08-08 15:39:27 -04:00
gimptilehandlerprojectable.h app: add GimpTileHandlerProjectable 2017-08-08 15:39:27 -04:00
gimptoolinfo.c Issue #1714 - When GIMP starts, default brush hardness is always at 100 2018-06-26 00:59:17 +02:00
gimptoolinfo.h app: add small hack to make the generic operation tool always invisible 2018-01-04 19:23:39 +01:00
gimptooloptions.c app: switch to using gimp-tool-options-manager 2018-07-03 20:13:20 +02:00
gimptooloptions.h Issue #1714 - When GIMP starts, default brush hardness is always at 100 2018-06-26 00:59:17 +02:00
gimptoolpreset-load.c
gimptoolpreset-load.h
gimptoolpreset-save.c
gimptoolpreset-save.h
gimptoolpreset.c Issue #1748 - Crash when parsing currupt tool preset 2018-07-04 01:55:24 +02:00
gimptoolpreset.h
gimptreehandler.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimptreehandler.h
gimptriviallycancelablewaitable.c app: code cleanup in previous commits 2018-05-30 02:23:03 -04:00
gimptriviallycancelablewaitable.h app: add GimpTriviallyCancelableWaitable 2018-05-29 16:07:48 -04:00
gimpuncancelablewaitable.c app: code cleanup in previous commits 2018-05-30 02:23:03 -04:00
gimpuncancelablewaitable.h app: add GimpUncancelableWaitable 2018-05-29 16:07:48 -04:00
gimpundo.c app: replace all g_assert() by the newly added gimp_assert() 2018-02-11 22:23:10 +01:00
gimpundo.h
gimpundostack.c app: use a lot of g_clear_object() and g_clear_pointer() 2017-07-15 18:42:44 +02:00
gimpundostack.h
gimpunit.c app: don't choke when being asked for GIMP_UNIT_PERCENT's factor or digits 2018-02-12 16:37:49 +01:00
gimpunit.h
gimpviewable.c Bug 795557 - Misc. typo fixes in source, comments and doxygen (pt3) 2018-04-25 23:49:06 +02:00
gimpviewable.h app: add GimpViewable::ancestry-changed signal, get_depth() function 2017-12-02 10:38:34 -05:00
gimpwaitable.c app: add GimpWaitable::try_wait() vfunc 2018-05-29 16:07:48 -04:00
gimpwaitable.h app: add GimpWaitable::try_wait() vfunc 2018-05-29 16:07:48 -04:00
Makefile.am app: add GimpDataLoaderFactory which loads data from an array of formats 2018-06-04 14:35:51 +02:00