summaryrefslogtreecommitdiffstats
path: root/src/extension/execution-env.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Clarify licensesMax Gaukler2018-11-081-1/+2
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* Remove #include "config.h" from header files where possibleEduard Braun2018-09-241-2/+0
|
* Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-191-12/+12
|
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Fixes to extension system and simplify the codeJabiertxo Arraiza Cenoz2018-06-061-1/+1
|
* Apply fixedJabier Arraiza2018-05-091-3/+0
|
* Reset old code to reaply fixedJabier Arraiza2018-05-091-0/+3
|
* Start migrating 0.92 patch to masterJabier Arraiza2018-05-091-3/+0
|
* Minor cleanup (remove some unimplemented methods)Eduard Braun2017-12-201-5/+0
|
* Make script warnings transient for "Working..." dialogEduard Braun2017-12-201-0/+3
| | | | | | | | | | | This turned out to be a bit of a mess due to the interplay between the classes Script / ExecutionEnv / Effect / PrefDialog. (Basically they don't talk to each other much but all want to contribute to the GUI) Likely "Script" (and possibly "ExecutionEnv") should be refactored to let the other classes handle UI exclusively and throw errors where suitable.
* Misc. typosUnknown2017-11-071-1/+1
| | | | | | | | | | | | Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
* Remove unused includes to tidy up the code.Martin Owens2014-03-091-2/+0
| | | (bzr r13132)
* Cleanup for src/forward.h. (About 19 of the affected files did not require ↵Jon A. Cruz2011-10-051-1/+7
| | | | | the contents forward.h at all). (bzr r10667)
* More forward.h purging.Jon A. Cruz2011-10-041-1/+7
| | | (bzr r10665)
* r18220@shi: ted | 2008-02-29 13:18:55 -0800Ted Gould2008-02-291-26/+53
| | | | | | | | | | | | | | | | | | | | | | | | Okay, sadly I'm not keeping the version history because I'm not convenced that SVK will do it right. One mega-patch, but that's life. Reshuffle the exection-env and prefdialog code so that the state machines aren't intertwines, which fixes a whole host of bugs with them. I think the behavior is correct now. Make it so that the effects can count how many preferences they have to determine if the dialog should be shown (fix above). Once this code was written it was easy to make it show an ellipsis on the verb if there is a dialog or not. This involved removing ellipsis from those effects that had it hard coded. Make it so that the parameters know that their command line options are going into a list. They don't have to acknowledge it, but they can, and specifically notebook does and handles it differently. This should fix the notebooks on Win32, but doesn't apparently completely. Change the script extension on windows to use pythonw instead of python so that the command line doesn't appear all the time. (bzr r4908)
* Add virtual to a lot of the destructors. Note: perhaps it will have to be ↵Johan B. C. Engelen2007-11-041-1/+1
| | | | | reverted for some files to keep them C-compatible. (bzr r4024)
* r16892@shi: ted | 2007-10-29 21:33:09 -0700Ted Gould2007-10-301-1/+10
| | | | | | Okay, so now the caches get into the execution environment and can be passed around to the effects. Now it's a matter of implementing the caches in the drivers. (bzr r3978)
* r16474@tres: ted | 2007-08-31 21:37:33 -0700Ted Gould2007-09-011-0/+1
| | | | | Changes that SVK borked. (bzr r3656)
* r16430@tres: ted | 2007-08-30 20:32:23 -0700Ted Gould2007-09-011-1/+3
| | | | | | Adding in a timer so that the preferences aren't acted on immediately. This should give the illusion of more interactivity. (bzr r3650)
* r16406@tres: ted | 2007-08-29 20:14:55 -0700Ted Gould2007-09-011-1/+3
| | | | | | Reroute the way that the preferences signal changes so that pinning works as expected. Fixes a segmentation fault. (bzr r3645)
* r16403@tres: ted | 2007-08-29 09:10:45 -0700Ted Gould2007-09-011-1/+2
| | | | | | Fixed a tricky segmentation fault. Multithreading is hard when you don't have threads :) (bzr r3642)
* r16395@tres: ted | 2007-08-27 19:41:32 -0700Ted Gould2007-09-011-0/+1
| | | | | | This is a good stopping point. I think things are working... more testing. (bzr r3640)
* r16340@tres: ted | 2007-08-20 19:02:50 -0700Ted Gould2007-09-011-1/+2
| | | | | Pinned is still not working, somewhat usable state. Worth checking in. (bzr r3639)
* r16339@tres: ted | 2007-08-19 19:47:57 -0700Ted Gould2007-09-011-0/+2
| | | | | | Live preview toggling is working. Pinning, not as much. But getting there. (bzr r3638)
* r16220@tres: ted | 2007-08-15 19:43:11 -0700Ted Gould2007-09-011-1/+2
| | | | | | | Okay, so now things are a little more connected. The widgets are parameters and they have signals. Work left is to actually USE those signals ;) (bzr r3634)
* r15704@tres: ted | 2007-07-02 16:03:34 -0700Ted Gould2007-07-031-0/+70
Split out the execution environment object. (bzr r3163)