summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/bluredge.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update internal extensions for latest .inx format changesPatrick Storz2019-09-011-2/+2
|
* modernize loopsMarc Jeanmougin2019-01-021-4/+1
|
* Clarify licensesMax Gaukler2018-11-081-3/+4
| | | | | | - 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
* Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-191-1/+1
|
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-3/+3
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Reset old code to reaply fixedJabier Arraiza2018-05-091-1/+0
|
* fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60694271Jabier Arraiza2018-05-091-11/+1
|
* Start migrating 0.92 patch to masterJabier Arraiza2018-05-091-1/+12
|
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-5/+5
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-5/+5
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-1/+1
| | | | A lot of header clean-up.
* 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 field "scope"Eduard Braun2017-04-091-2/+2
| | | (bzr r15633.1.2)
* CPPification: almost all sp_object_set_whatever and sp_selection_whatever ↵Marc Jeanmougin2016-10-241-1/+1
| | | | | | | | | | | | global functions are now methods of ObjectSet*, with these additional benefits: - They can now act on any SelectionSet, not just the current selection; - Whenever possible, they don't need a desktop anymore and can run if called from GUI. I hope I did not break too many things in the process. *: So instead of callink sp_selection_move(desktop,x,y), you call myobjectset->move(x,y) (bzr r15189)
* Added items as a range functionAdrian Boguszewski2016-07-031-1/+1
|\ | | | | (bzr r14954.1.13)
* | Moved next functions, added namespace, renamed range functionsAdrian Boguszewski2016-06-251-1/+1
|/ | | (bzr r14954.1.10)
* Extensions: Use underscored variants of parameters / attribute names in ↵Eduard Braun2016-06-111-2/+2
| | | | | | | | internal extensions where translation via gettext is desired. Fixed bugs: - https://launchpad.net/bugs/1591230 (bzr r14979)
* Remove unused header file.Tavmjong Bah2015-12-091-2/+0
| | | (bzr r14522)
* removed a few "using Inkscape::Util::GSListConstIterator"Marc Jeanmougin2015-04-271-1/+0
| | | (bzr r13922.1.16)
* corrected the casts (hopefully)Marc Jeanmougin2015-02-271-1/+1
| | | (bzr r13922.1.10)
* Put a few std::vector<SPitem*>Marc Jeanmougin2015-02-191-2/+2
| | | (bzr r13922.1.5)
* At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin2015-02-171-4/+3
| | | | | | | | change that GSList* with a std::list, then resolve the few problems" So, i tried that. And I will continue tomorrow, and the days after, on and on. (bzr r13922.1.1)
* Allow Object to Path verb from non-GUI (DBus) interfaceEric Greveson2013-08-121-1/+1
| | | (bzr r12473.1.1)
* Factored layer model out into new Inkscape::LayerModel class. This allowsEric Greveson2013-07-011-2/+3
| | | | | | | | | | | | | Inkscape::Selection to use a LayerModel that is not associated with a UI. Changed the interface of verbs (SPAction) to use a new ActionContext rather than UI::View::View, again so that verbs may be used in a console mode. Modified boolean operation verbs to work in console-only mode. Fixed up DESKTOP_IS_ACTIVE macro to work in the case of no desktops. Modified main.cpp to process selections and verbs in no-GUI mode. Other changes are all consequences of the SPDesktop, Selection and LayerModel interface changes. (bzr r12387.1.1)
* Merge Andrew's new OCAL dialog and clean headers. Please testAlex Valavanis2012-02-271-0/+1
| | | (bzr r11027)
* cppcheckKris De Gussem2011-10-151-1/+1
| | | (bzr r10678)
* add new preference widget for a number with a unit.Johan B. C. Engelen2011-04-171-4/+4
| | | | | change Preferences > Steps to this new widget (bzr r10177)
* Finished cleanup of outdated SP_OBJECT_REPR C macro.Jon A. Cruz2011-02-221-3/+3
| | | (bzr r10067)
* Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-1/+1
|\ | | | | (bzr r9945.1.1)
* | Extensions. UI consistency fixes and UI improvements (new help tabs when ↵Nicolas Dufour2010-09-031-2/+2
|/ | | | | needed, and new tooltips). (bzr r9739)
* From trunkTed Gould2008-10-271-5/+6
| | | (bzr r6885)
* release reprs properlybulia byak2008-09-201-0/+1
| | | (bzr r6855)
* Remove further instances of SP_ACTIVE_DESKTOPMaximilian Albert2008-08-141-7/+7
| | | (bzr r6628)
* r19076@shi: ted | 2008-04-21 15:42:45 -0700Ted Gould2008-04-211-1/+1
| | | | | | | | | 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)
* Warning cleanupJon A. Cruz2007-11-101-3/+3
| | | (bzr r4052)
* r16677@shi: ted | 2007-10-17 19:31:04 -0700Ted Gould2007-10-301-2/+2
| | | | | | | Creating and adding interfaces for a document based cache that an effect can define. This removes the effect from having to know if the document has changed, and keep track of that. This allows them to optimize their performance when doing things like live effects. (bzr r3977)
* r15481@tres: ted | 2007-05-22 09:56:22 -0700Ted Gould2007-06-271-1/+1
| | | | | Switching to sigc::signal so it actually works. (bzr r3126)
* r15480@tres: ted | 2007-05-20 23:51:34 -0700Ted Gould2007-06-271-2/+2
| | | | | | | The basics are all working, no call back from the preferences yet. That's the next step. But the dialogs appear correctly, and it works in the background. (bzr r3125)
* plumb XML::Document parameter into duplication, courtesy of bryceMenTaLguY2007-03-201-1/+1
| | | (bzr r2723)
* continue switching sp_repr_new* over to XML::Document::create*Aaron Spike2007-01-221-1/+2
| | | (bzr r2257)
* rename the effectbulia byak2006-11-241-3/+3
| | | (bzr r2025)
* more vectorization, this time in bluredgeMenTaLguY2006-05-091-7/+3
| | | (bzr r785)
* r11569@tres: ted | 2006-04-29 08:55:02 -0700Ted Gould2006-05-021-1/+1
| | | | | | | Pushing the document and node deeper into the code. This way parameters can be placed and edited on those. Mostly, this commit involves getting them into the autogui. (bzr r689)
* r11464@tres: ted | 2006-04-19 09:03:15 -0700Ted Gould2006-05-021-2/+2
| | | | | Adding descriptions and scopes for the parameters. (bzr r672)
* rearrange effect submenus, rename some effects, fix capitalizationbulia byak2006-02-101-1/+1
| | | (bzr r109)
* r10820@tres: ted | 2006-01-29 16:56:50 -0800Ted Gould2006-01-301-3/+8
| | | | | | | | Making it so all the important strings in the INX files are translateable. Also added in a 'clear-n_.h' to change the N_() macro from an inline function to a pure macro. Lastly, added in submenus for the effects. (bzr r55)
* moving trunk for module inkscapeMenTaLguY2006-01-161-0/+157
(bzr r1)