summaryrefslogtreecommitdiffstats
path: root/src/extension/input.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-31Add base_directory for extensions loaded from a file.Patrick Storz1-1/+2
2019-08-31cleanup includes a bitPatrick Storz1-5/+8
2019-08-31Implement "translationdomain" attribute for extensionsPatrick Storz1-9/+22
Will allow extensions to ship their own message catalog used for translation of the extension#s strings. Needs to be set on the root <inkscape-extension> element of the .inx Currently supported values: - unset: use default textdomain (which happens to be 'inkscape') - 'inkscape': use Inkscape's message catalog - 'none': disable translation for the extension's strings
2019-08-31Remove unused and disabled "help" feature for extensionsPatrick Storz1-1/+1
2019-08-31Move prefdialog to own directoryPatrick Storz1-1/+1
2018-11-08Clarify licensesMax Gaukler1-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
2018-06-19Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot1-6/+6
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-13/+13
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-1/+1
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-1/+1
2018-01-08Misc. typosluz.paz1-2/+2
Found via `codespell`
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-2/+0
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-0/+2
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-2/+0
(bzr r15025)
2012-10-11Fix for 426763 : Cancelling import leads to error messageJohn Smith1-2/+5
(bzr r11777)
2012-02-26header cleaningAlex Valavanis1-1/+1
(bzr r11017)
2012-01-03Janitorial tasks: get rid of deprecated repr wrapper functionsKris De Gussem1-9/+9
(bzr r10830)
2009-08-09Fix remaining glitches in the behaviour of the Save dialogs (w.r.t. ↵Maximilian Albert1-13/+0
remembering the last file type and folder). As part of the cleanup inkscape:output_extension was removed, too. (bzr r8454)
2009-08-06Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert1-2/+2
which cannot be fixed easily. (bzr r8422)
2009-08-05SPDocument->Documentjohnce1-2/+2
(bzr r8405)
2008-04-21r19076@shi: ted | 2008-04-21 15:42:45 -0700Ted Gould1-1/+4
Core of having a real namespace for Inkscape extensions. r19077@shi: ted | 2008-04-21 15:50:12 -0700 First layer of adding NS r19078@shi: ted | 2008-04-21 15:56:03 -0700 Whew, doing the rest of them. (bzr r5483)
2008-02-29r18220@shi: ted | 2008-02-29 13:18:55 -0800Ted Gould1-33/+36
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)
2008-01-06Removing some debug statementsBryce Harrington1-4/+0
(bzr r4402)
2008-01-05Fixing up a few more filesBryce Harrington1-1/+5
(bzr r4391)
2007-06-21Handle the case of gnome_vfs_init failing. (Fixes Debian bug ↵Peter Moulder1-10/+1
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=415640.) (bzr r3082)
2006-08-26gboolean -> bool conversion commit 1. Modifies code to do with getting the ↵Michael G. Sloan1-2/+2
undo system to ignore actions, as well as SVG/XML save/load. Shouldn't cause problems though. (bzr r1639)
2006-08-25peeled back the gboolean code as it hit on some complexity theory principles...Jon Phillips1-1/+1
need to rethink and incrementally change gbooleans to bools (bzr r1637)
2006-08-23Ok, committed msgloan's patch to convert gbooleans to bools thus completingJon Phillips1-1/+1
one major janitorial task we identified.... (bzr r1633)
2006-03-29r10921@tres: ted | 2006-02-13 09:40:25 -0800Ted Gould1-1/+1
Adding in support for a <help> tag in the base extension part of the INX file. Currently that just gets passed to the prefdialog, but it will be used in a little while. (bzr r334)