Gimp/app/tools
Jehan c06083158a Issue #8102: crash when using the clone tool.
So it turns out that the "notify::src-drawables" property signal in
particular can happen during gimp_paint_tool_paint_interpolate() called
from gimp_paint_tool_paint_thread(). Though the function
gimp_clone_options_gui_update_src_label() was run in the main thread in
simple cases, being called this way through a paint thread happens when
very quickly changing the source while painting, which is what Aryeom
does (when I see her using the clone tool, she would sometimes change
the source very quickly several times in barely a few seconds).

Yet GTK and GDK calls must not happen in non-main threads. It used to be
acceptable when protected with gdk_threads_enter|leave() calls but doing
this is deprecated. The now sanctioned method is to call the GTK code in
an idle function since these are guaranteed to run in the main thread.

This was most likely explaining why crashes could quite randomly happen,
though I'm not sure why I never had those (even though I could reproduce
the GTK calls happening in non-main threads, but without crashing GIMP)
and why Aryeom gets these much more often suddenly. Maybe some recent
dependency change which would trigger these more easily or other
context-dependant changes (as most non thread-safe code, bugs and crash
often happen in race conditions, so are harder to reproduce reliably)?
2022-04-21 19:13:01 +02:00
..
.gitignore enums: add intermediate generated enum files to .gitignore 2017-08-24 15:35:27 -04:00
gimp-tool-options-manager.c Issue #3435 - GIMP encountered an error: GIMP-CRITICAL:... 2019-06-26 18:53:22 +02:00
gimp-tool-options-manager.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimp-tools.c app: mark the paint select tool as experimental. 2020-11-24 21:43:11 +01:00
gimp-tools.h app: add tool-group support to GimpToolEditor 2020-01-30 02:51:56 +02:00
gimpairbrushtool.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpairbrushtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpalignoptions.c Cleanup GObject signal marshallers 2020-04-01 21:20:01 +00:00
gimpalignoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpaligntool.c Issue #4094 - Corrects some tools descriptions 2020-03-10 21:39:06 +03:00
gimpaligntool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpbrightnesscontrasttool.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpbrightnesscontrasttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpbrushtool.c app: make painting possibly multi-drawable aware. 2021-09-14 17:59:47 +02:00
gimpbrushtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpbucketfilloptions.c app: pack all line art settings in a single box. 2022-03-06 19:30:31 +01:00
gimpbucketfilloptions.h app: make the "Automatic closure" a settings of its own. 2022-03-03 20:05:14 +01:00
gimpbucketfilltool.c app, libgimpwidgets: allowing changing a dockable settings value while… 2022-03-06 19:30:31 +01:00
gimpbucketfilltool.h app: make GimpBucketFillTool a GimpColorTool. 2018-11-27 17:25:05 +01:00
gimpbycolorselecttool.c app: Color Select tool multi-layer aware. 2020-08-01 20:37:48 +02:00
gimpbycolorselecttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcageoptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimpcageoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcagetool.c app: properly blink the right locked layer when pixels are locked. 2022-02-15 22:08:23 +01:00
gimpcagetool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcloneoptions-gui.c Issue #8102: crash when using the clone tool. 2022-04-21 19:13:01 +02:00
gimpcloneoptions-gui.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpclonetool.c Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpclonetool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcoloroptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpcoloroptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcolorpickeroptions.c app: GimpFilterTool displays a "Sample merged" checkbox. 2020-09-26 12:40:54 +02:00
gimpcolorpickeroptions.h app: move GimpColorFrameMode to the core and name it GimpColorPickMode 2018-07-15 23:24:50 +02:00
gimpcolorpickertool.c app, libgimp, pdb: color picker multi-layer aware. 2020-05-17 18:57:32 +02:00
gimpcolorpickertool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcolortool.c app: fix alignment of generic pixel buffers 2020-05-20 08:53:41 +03:00
gimpcolortool.h app: rename enum GimpColorPickMode to GimpColorPickTarget 2018-07-15 14:32:53 +02:00
gimpconvolvetool.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpconvolvetool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpcropoptions.c gui: Update text of 'Crop tool' option to 'Selected layers only' 2021-02-25 23:02:04 +06:00
gimpcropoptions.h app: make deletion of cropped pixels in crop tool optional 2020-04-01 18:14:20 +00:00
gimpcroptool.c app: properly blink the right locked layer when pixels are locked. 2022-02-15 22:08:23 +01:00
gimpcroptool.h app: Crop tool now multi-layer aware. 2020-05-17 18:57:32 +02:00
gimpcurvestool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpcurvestool.h app: fix Curves tool numeric-entry range/precision for > 8-bpc images 2019-04-19 11:13:14 -04:00
gimpdodgeburntool.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpdodgeburntool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpdrawtool.c app: forward tool get_popup() to widget get_popup() in GimpDrawTool 2020-05-26 11:07:25 +03:00
gimpdrawtool.h app: use a pickable instead of a drawable in GimpCanvasTransformPreview 2019-08-11 00:28:43 +03:00
gimpeditselectiontool.c app: allowing to "Lock position" on layer groups. 2022-02-15 22:08:23 +01:00
gimpeditselectiontool.h app: in the move tool, blink type box when there's no item to move 2018-12-10 08:39:47 -05:00
gimpellipseselecttool.c Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpellipseselecttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimperasertool.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimperasertool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpfilteroptions.c app: fix switching filter-tool split-preview orientation 2020-06-11 21:31:01 +03:00
gimpfilteroptions.h app: fix switching filter-tool split-preview orientation 2020-06-11 21:31:01 +03:00
gimpfiltertool-settings.c app, libgimpconfig: make various usage of g_file_replace() safer. 2018-11-26 15:50:38 +01:00
gimpfiltertool-settings.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpfiltertool-widgets.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpfiltertool-widgets.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpfiltertool.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpfiltertool.h app: in GimpFilterTool, store common settings in GimpOperationSettings 2020-04-07 19:39:51 +03:00
gimpflipoptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimpflipoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpfliptool.c app, devel-docs, libgimp, pdb: remove item link ref in flip code. 2021-12-23 13:45:20 +01:00
gimpfliptool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpforegroundselectoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpforegroundselectoptions.h Foreground-select Tool: new Preview Mode and color selector for "On color" preview 2019-06-18 17:59:41 +02:00
gimpforegroundselecttool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpforegroundselecttool.h Foreground-select Tool: new Preview Mode and color selector for "On color" preview 2019-06-18 17:59:41 +02:00
gimpforegroundselecttoolundo.c Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpforegroundselecttoolundo.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpfreeselecttool.c app: improve empty-selection check in GimpSelectionTool 2020-02-03 12:40:54 +02:00
gimpfreeselecttool.h app: factor-out common free/fg-select logic into GimpPolygonSelectTool 2019-04-25 06:07:57 -04:00
gimpfuzzyselecttool.c app: Fuzzy Select tool multi-layer aware. 2020-08-01 19:56:07 +02:00
gimpfuzzyselecttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpgegltool.c app, menus: move "GEGL Operation" from Tools to Filters > Generic menu. 2021-01-31 17:46:29 +01:00
gimpgegltool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpgenerictransformtool.c app: reduce dialog size of Unified Transform tool and friends 2020-01-06 21:35:52 +02:00
gimpgenerictransformtool.h app: in GimpTransformGridTool, allow simultaneous forward and backward transforms 2019-02-04 16:48:12 -05:00
gimpgradientoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpgradientoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpgradienttool-editor.c libgimpwidgets, app, plug-ins: use GimpSpinButton everywhere 2019-03-09 07:28:52 -05:00
gimpgradienttool-editor.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpgradienttool.c app: properly blink the right locked layer when pixels are locked. 2022-02-15 22:08:23 +01:00
gimpgradienttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpguidetool.c app: remove useless code. 2021-02-22 00:10:17 +01:00
gimpguidetool.h app: allow moving an intersecting pair of guides with the Move tool 2019-05-30 01:51:06 -04:00
gimphandletransformoptions.c app, libgimpwidgets: move GimpSpinScale to libgimpwidgets. 2022-02-17 23:13:42 +01:00
gimphandletransformoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimphandletransformtool.c app: in GimpTransformGridTool, allow linking forward/backward transforms 2019-02-04 16:48:13 -05:00
gimphandletransformtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimphealtool.c Issue #4094 - Corrects some tools descriptions 2020-03-10 21:39:06 +03:00
gimphealtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimphistogramoptions.c libgimbase: merge gimpparam.h into gimpparamspecs.h 2019-07-31 10:16:21 +02:00
gimphistogramoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpinkoptions-gui.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpinkoptions-gui.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpinktool.c app: rename enum GimpColorPickMode to GimpColorPickTarget 2018-07-15 14:32:53 +02:00
gimpinktool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpiscissorsoptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimpiscissorsoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpiscissorstool.c Issue #4094 - Corrects some tools descriptions 2020-03-10 21:39:06 +03:00
gimpiscissorstool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimplevelstool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimplevelstool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpmagnifyoptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimpmagnifyoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpmagnifytool.c Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpmagnifytool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpmeasureoptions.c libgimbase: merge gimpparam.h into gimpparamspecs.h 2019-07-31 10:16:21 +02:00
gimpmeasureoptions.h Revert "app: add "perspective correction" option to the measure tool" 2018-09-25 04:21:49 -04:00
gimpmeasuretool.c app: add GimpTransformToolClass::undo_desc field 2019-02-04 15:59:55 -05:00
gimpmeasuretool.h Revert "app: add "perspective correction" option to the measure tool" 2018-09-25 04:21:49 -04:00
gimpmoveoptions.c app: Move tool multi-layer aware. 2020-05-17 18:32:16 +02:00
gimpmoveoptions.h app: in the move tool, blink type box when there's no item to move 2018-12-10 08:39:47 -05:00
gimpmovetool.c app: this string became singular. Fix the grammar. 2022-02-15 23:52:08 +01:00
gimpmovetool.h app: "active item" concept => "selected items". 2020-05-17 18:32:16 +02:00
gimpmybrushoptions-gui.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpmybrushoptions-gui.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpmybrushtool.c app: rename enum GimpColorPickMode to GimpColorPickTarget 2018-07-15 14:32:53 +02:00
gimpmybrushtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpnpointdeformationoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpnpointdeformationoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpnpointdeformationtool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpnpointdeformationtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpoffsettool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpoffsettool.h Issue #40 - Layer offset tool 2019-06-05 19:06:56 -04:00
gimpoperationtool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpoperationtool.h Issue #2898 - Gegl Operations - Color Wrap does not fit the screen on... 2019-02-03 18:08:27 +01:00
gimppaintbrushtool.c app: rename enum GimpColorPickMode to GimpColorPickTarget 2018-07-15 14:32:53 +02:00
gimppaintbrushtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimppaintoptions-gui.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimppaintoptions-gui.h app: in the paint tools, blink mode box when the current mode is invalid 2018-12-10 08:55:14 -05:00
gimppaintselectoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimppaintselectoptions.h Paint Select tool: add a temporary option to show painted scribbles 2020-12-04 18:56:28 +01:00
gimppaintselecttool.c Paint Select tool: enable viewport-based local selection 2021-01-18 18:43:39 +01:00
gimppaintselecttool.h Paint Select tool: enable viewport-based local selection 2021-01-18 18:43:39 +01:00
gimppainttool-paint.c app: make painting possibly multi-drawable aware. 2021-09-14 17:59:47 +02:00
gimppainttool-paint.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimppainttool.c app: use the unobtrusive cursor only in no-pointer+no-outline case. 2022-03-13 16:04:40 +01:00
gimppainttool.h app: make painting possibly multi-drawable aware. 2021-09-14 17:59:47 +02:00
gimppenciltool.c Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimppenciltool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpperspectiveclonetool.c Issue #287: Impossible to stroke a path with the clone tool. 2022-02-04 23:25:38 +01:00
gimpperspectiveclonetool.h app: in perspective-clone tool, fix cursor presicion; hide brush while adjusting 2019-01-31 06:22:46 -05:00
gimpperspectivetool.c app: take transform-grid handle size into account when readjusting 2019-03-08 12:11:13 -05:00
gimpperspectivetool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimppolygonselecttool.c Issue #4285 - [Free Select Tool] functionality bug with Ctrl/Shift combination 2020-02-03 12:40:54 +02:00
gimppolygonselecttool.h app: factor-out common free/fg-select logic into GimpPolygonSelectTool 2019-04-25 06:07:57 -04:00
gimprectangleoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimprectangleoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimprectangleselectoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimprectangleselectoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimprectangleselecttool.c app: in Rectangle/Ellipse tools, update selection when clicking inside existing one 2019-09-19 17:39:22 +03:00
gimprectangleselecttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpregionselectoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpregionselectoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpregionselecttool.c app: Fuzzy Select tool multi-layer aware. 2020-08-01 19:56:07 +02:00
gimpregionselecttool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimprotatetool.c app: add a pivot selector to the Rotate tool 2020-01-06 21:49:54 +02:00
gimprotatetool.h app: add a pivot selector to the Rotate tool 2020-01-06 21:49:54 +02:00
gimpsamplepointtool.c app: turn GimpSamplePoint into a GObject, just like GimpGuide 2018-07-15 15:58:24 +02:00
gimpsamplepointtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpscaletool.c app: in GimpTransformGridTool, compress successive undo steps 2020-01-06 21:35:52 +02:00
gimpscaletool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpseamlesscloneoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpseamlesscloneoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpseamlessclonetool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpseamlessclonetool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpselectionoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpselectionoptions.h app: in the selection tools, blink mode box when the current operation is invalid 2018-12-10 08:39:46 -05:00
gimpselectiontool.c app: properly blink the right locked layer when pixels are locked. 2022-02-15 22:08:23 +01:00
gimpselectiontool.h app: improve empty-selection check in GimpSelectionTool 2020-02-03 12:40:54 +02:00
gimpsheartool.c app, libgimpwidgets: move GimpSpinScale to libgimpwidgets. 2022-02-17 23:13:42 +01:00
gimpsheartool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpsmudgetool.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpsmudgetool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpsourcetool.c Issue #287: Impossible to stroke a path with the clone tool. 2022-02-04 23:25:38 +01:00
gimpsourcetool.h app: fix cursor precision of source tools 2019-01-31 06:22:45 -05:00
gimptextoptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimptextoptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimptexttool-editor.c app: [Wayland] fix invalid preedit range in text tool. 2020-06-21 12:35:22 +02:00
gimptexttool-editor.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimptexttool.c app: "Bend the text along the currently active path" multi-layer aware. 2021-12-23 12:55:11 +01:00
gimptexttool.h app: "Bend the text along the currently active path" multi-layer aware. 2021-12-23 12:55:11 +01:00
gimpthresholdtool.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimpthresholdtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimptilehandleriscissors.c libgimbase: merge gimpparam.h into gimpparamspecs.h 2019-07-31 10:16:21 +02:00
gimptilehandleriscissors.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimptool-progress.c app: fix tool->progress_cancelable assignment in gimp_tool_progress_start() 2019-02-10 21:22:16 +01:00
gimptool-progress.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimptool.c app: add some doc comment to internal API. 2022-02-02 22:42:03 +01:00
gimptool.h app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
gimptoolcontrol.c Issue #1180 - Warp tool aborts changes to layer A when ... 2018-09-29 12:38:45 -04:00
gimptoolcontrol.h Issue #1180 - Warp tool aborts changes to layer A when ... 2018-09-29 12:38:45 -04:00
gimptooloptions-gui.c app: construct tool-options GUI lazily 2018-09-27 02:41:59 -04:00
gimptooloptions-gui.h app: construct tool-options GUI lazily 2018-09-27 02:41:59 -04:00
gimptools-utils.c app: move gimp_tools_blink_widget() as gimp_blink_dockable() in… 2022-03-05 17:42:54 +01:00
gimptools-utils.h app: move gimp_tools_blink_widget() as gimp_blink_dockable() in… 2022-03-05 17:42:54 +01:00
gimptransform3doptions.c app: set the default 3D Transform tool mode to rotation 2020-02-05 09:28:46 +02:00
gimptransform3doptions.h app: add unified interaction mode to the 3D Transform tool 2020-01-10 23:21:36 +02:00
gimptransform3dtool.c app, libgimpwidgets: move GimpSpinScale to libgimpwidgets. 2022-02-17 23:13:42 +01:00
gimptransform3dtool.h app, icons: add 3D Transform tool 2020-01-06 21:52:54 +02:00
gimptransformgridoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimptransformgridoptions.h app: more removal of item link related code. 2021-12-23 13:45:20 +01:00
gimptransformgridtool.c app, devel-docs, libgimp, pdb: remove gimp_item_set_linked(). 2021-12-23 13:45:20 +01:00
gimptransformgridtool.h app: GimpTransformTool multi-layer aware. 2020-05-28 14:28:01 +02:00
gimptransformgridtoolundo.c libgimbase: merge gimpparam.h into gimpparamspecs.h 2019-07-31 10:16:21 +02:00
gimptransformgridtoolundo.h app: in GimpTransformGridTool, allow simultaneous forward and backward transforms 2019-02-04 16:48:12 -05:00
gimptransformoptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimptransformoptions.h app: in GimpTransformGridTool, allow linking forward/backward transforms 2019-02-04 16:48:13 -05:00
gimptransformtool.c app: allowing to "Lock position" on layer groups. 2022-02-15 22:08:23 +01:00
gimptransformtool.h app: GimpTransformTool multi-layer aware. 2020-05-28 14:28:01 +02:00
gimpunifiedtransformtool.c app: in Unified Transform tool, avoid moving pivot when locked 2020-04-27 16:51:21 +03:00
gimpunifiedtransformtool.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpvectoroptions.c app, libgimpwidgets: return visible widgets from all gimp_prop_foo_new() 2019-09-25 20:24:06 +02:00
gimpvectoroptions.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
gimpvectortool.c app: selection stroke and "Stroke Path" now multi-layer aware. 2020-08-01 14:02:24 +02:00
gimpvectortool.h app: Add basic infratructure for a vector tool popup menu. 2020-05-25 22:13:45 +02:00
gimpwarpoptions.c app, libgimpwidgets: move gimp_prop_spin_scale_new() and… 2022-02-19 00:14:44 +01:00
gimpwarpoptions.h app: add "real-time preview" option to the warp tool 2019-03-03 16:23:23 -05:00
gimpwarptool.c app: properly blink the right locked layer when pixels are locked. 2022-02-15 22:08:23 +01:00
gimpwarptool.h app: respect brush-outline preferences in the Warp tool 2020-02-05 21:36:59 +02:00
Makefile.am app, icons: add Paint Select tool in the playground 2020-11-24 12:10:40 +01:00
meson.build app, icons: add Paint Select tool in the playground 2020-11-24 12:10:40 +01:00
tool_manager.c app: GimpTool multi-drawable aware. 2020-05-26 14:15:17 +02:00
tool_manager.h Change the license URL from http://www.gnu.org/licenses/ to https:// 2018-07-11 23:29:46 +02:00
tools-enums.c app: fix typo in name of lens mode enum 2022-02-13 13:49:36 +01:00
tools-enums.h app: fix typo in name of lens mode enum 2022-02-13 13:49:36 +01:00
tools-types.h app: construct tool-options GUI lazily 2018-09-27 02:41:59 -04:00