summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/bluredge.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-01Update internal extensions for latest .inx format changesPatrick Storz1-2/+2
2019-01-02modernize loopsMarc Jeanmougin1-4/+1
2018-11-08Clarify licensesMax Gaukler1-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
2018-06-19Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot1-1/+1
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-3/+3
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-09Reset old code to reaply fixedJabier Arraiza1-1/+0
2018-05-09fix https://gitlab.com/inkscape/inkscape/merge_requests/208#note_60694271Jabier Arraiza1-11/+1
2018-05-09Start migrating 0.92 patch to masterJabier Arraiza1-1/+12
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-5/+5
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-5/+5
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-1/+1
A lot of header clean-up.
2017-11-07Misc. typosUnknown1-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 ```
2017-04-09Remove unused field "scope"Eduard Braun1-2/+2
(bzr r15633.1.2)
2016-10-24CPPification: almost all sp_object_set_whatever and sp_selection_whatever ↵Marc Jeanmougin1-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)
2016-06-25Moved next functions, added namespace, renamed range functionsAdrian Boguszewski1-1/+1
(bzr r14954.1.10)
2016-06-11Extensions: Use underscored variants of parameters / attribute names in ↵Eduard Braun1-2/+2
internal extensions where translation via gettext is desired. Fixed bugs: - https://launchpad.net/bugs/1591230 (bzr r14979)
2015-12-09Remove unused header file.Tavmjong Bah1-2/+0
(bzr r14522)
2015-04-27removed a few "using Inkscape::Util::GSListConstIterator"Marc Jeanmougin1-1/+0
(bzr r13922.1.16)
2015-02-27corrected the casts (hopefully)Marc Jeanmougin1-1/+1
(bzr r13922.1.10)
2015-02-19Put a few std::vector<SPitem*>Marc Jeanmougin1-2/+2
(bzr r13922.1.5)
2015-02-17At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin1-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)
2013-08-12Allow Object to Path verb from non-GUI (DBus) interfaceEric Greveson1-1/+1
(bzr r12473.1.1)
2013-07-01Factored layer model out into new Inkscape::LayerModel class. This allowsEric Greveson1-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)
2011-10-15cppcheckKris De Gussem1-1/+1
(bzr r10678)
2011-04-17add new preference widget for a number with a unit.Johan B. C. Engelen1-4/+4
change Preferences > Steps to this new widget (bzr r10177)
2011-02-22Finished cleanup of outdated SP_OBJECT_REPR C macro.Jon A. Cruz1-3/+3
(bzr r10067)
2010-09-03Extensions. UI consistency fixes and UI improvements (new help tabs when ↵Nicolas Dufour1-2/+2
needed, and new tooltips). (bzr r9739)
2008-10-27From trunkTed Gould1-5/+6
(bzr r6885)
2008-09-20release reprs properlybulia byak1-0/+1
(bzr r6855)
2008-08-14Remove further instances of SP_ACTIVE_DESKTOPMaximilian Albert1-7/+7
(bzr r6628)
2008-04-21r19076@shi: ted | 2008-04-21 15:42:45 -0700Ted Gould1-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)
2007-11-10Warning cleanupJon A. Cruz1-3/+3
(bzr r4052)
2007-10-30r16677@shi: ted | 2007-10-17 19:31:04 -0700Ted Gould1-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)
2007-06-27r15481@tres: ted | 2007-05-22 09:56:22 -0700Ted Gould1-1/+1
Switching to sigc::signal so it actually works. (bzr r3126)
2007-06-27r15480@tres: ted | 2007-05-20 23:51:34 -0700Ted Gould1-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)
2007-03-20plumb XML::Document parameter into duplication, courtesy of bryceMenTaLguY1-1/+1
(bzr r2723)
2007-01-22continue switching sp_repr_new* over to XML::Document::create*Aaron Spike1-1/+2
(bzr r2257)
2006-11-24rename the effectbulia byak1-3/+3
(bzr r2025)
2006-05-09more vectorization, this time in bluredgeMenTaLguY1-7/+3
(bzr r785)
2006-05-02r11569@tres: ted | 2006-04-29 08:55:02 -0700Ted Gould1-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)
2006-05-02r11464@tres: ted | 2006-04-19 09:03:15 -0700Ted Gould1-2/+2
Adding descriptions and scopes for the parameters. (bzr r672)
2006-02-10rearrange effect submenus, rename some effects, fix capitalizationbulia byak1-1/+1
(bzr r109)
2006-01-30r10820@tres: ted | 2006-01-29 16:56:50 -0800Ted Gould1-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)