summaryrefslogtreecommitdiffstats
path: root/src/trace/trace.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* modernize loopsMarc Jeanmougin2019-01-021-2/+1
|
* 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
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-19/+19
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-181-3/+3
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-9/+9
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-9/+9
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-3/+4
| | | | A lot of header clean-up.
* Remove unused parameter in SPItem::doWriteTransformStefano Facchini2017-09-241-1/+1
|
* Added items as a range functionAdrian Boguszewski2016-07-031-2/+2
|\ | | | | (bzr r14954.1.13)
* | Moved next functions, added namespace, renamed range functionsAdrian Boguszewski2016-06-251-1/+1
|/ | | (bzr r14954.1.10)
* Fix a few more pick calls not preceded by updateKrzysztof Kosi??ski2016-04-131-0/+1
| | | (bzr r14834)
* static code analysisKris De Gussem2015-12-071-1/+1
| | | (bzr r14510)
* 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)
* Just...mc2015-02-181-3/+3
| | | | | | | some... more... lines... (bzr r13922.1.2)
* At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin2015-02-171-4/+4
| | | | | | | | 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)
* Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White2014-12-211-1/+1
| | | (bzr r13820)
* Purge sp_desktop_message_stackLiam P. White2014-12-211-3/+3
| | | (bzr r13817)
* Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelectionLiam P. White2014-12-211-3/+3
| | | (bzr r13809)
* Fix format security errorsAlex Valavanis2013-09-211-2/+2
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1193025 (bzr r12563)
* Encapsulate the shared memory hack for Cairo and GdkPixbuf in a classKrzysztof Kosi??ski2013-09-191-3/+22
| | | | | called Inkscape::Pixbuf. Replace usage in the code as appropriate. (bzr r12531)
* Header cleaningAlex Valavanis2012-02-121-0/+2
| | | (bzr r10963)
* Get rid of gtkmm top-level header usage - not required by APIAlex Valavanis2012-02-061-1/+1
| | | (bzr r10940)
* Janitorial tasks: get rid of deprecated repr wrapper functionsKris De Gussem2012-01-031-1/+1
| | | (bzr r10830)
* Fixing more broken and split doc comments.Jon A. Cruz2011-10-271-31/+4
| | | (bzr r10697)
* cppcheckKris De Gussem2011-10-181-3/+3
| | | (bzr r10681)
* Rewrite NRArena -> Inkscape::Drawing. Call render and updateKrzysztof Kosi??ski2011-08-071-1/+1
| | | | | methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25)
* Rewrite NRArenaItem hierarchy into C++Krzysztof Kosi??ski2011-08-061-39/+14
| | | (bzr r10347.1.21)
* Replace direct use of Cairo contexts and surfaces in the rendering treeKrzysztof Kosi??ski2011-07-221-6/+6
| | | | | | | with wrappers which keep some extra information about the surface, amd NRRect and NRRectL use with Geom::Rect and Geom::IntRect. Should simplify implementing filter primitive subregions. (bzr r10347.1.17)
* Merge from trunkKrzysztof Kosi??ski2011-04-071-1/+1
|\ | | | | (bzr r9508.1.73)
| * update to latest 2geom !Johan B. C. Engelen2011-02-021-1/+1
| | | | | | (bzr r10025)
* | Merge from trunk (again)Krzysztof Kosi??ski2010-12-151-7/+10
|\| | | | | (bzr r9508.1.72)
| * Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-7/+10
| |\ | | | | | | (bzr r9945.1.1)
| | * C++ification of SPObject continued along with the onset of XML ↵Abhishek Sharma Public2010-07-061-1/+2
| | | | | | | | | | | | | | | Privatisation. Users may checkout [grep -Ir XML Tree *] in the source code and all the places where the XML node/Tree is being used shall be reflected. (bzr r9546.1.5)
| | * New Class SPDocumentUndo created which takes care of c++fying some non ↵Abhishek Sharma Public2010-07-021-1/+1
| | | | | | | | | | | | | | | SPDocument based methods (bzr r9546.1.3)
| | * C++fied SPDocument addedAbhishek Sharma Public2010-07-011-1/+1
| | | | | | | | | (bzr r9546.1.2)
| | * This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public2010-06-291-3/+3
| |/ | | | | | | | | sp-polyline, sp-item and marks the onset of document c++ification as well. Users can check performace increase with [/usr/bin/time -v inkscape_binary_with_commandline_options]. (bzr r9546.1.1)
* / Wholesale cruft removal part 2Krzysztof Kosi??ski2010-08-041-14/+13
|/ | | (bzr r9508.1.45)
* Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert2009-08-061-1/+1
| | | | | which cannot be fixed easily. (bzr r8422)
* SPDocument->Documentjohnce2009-08-051-1/+1
| | | (bzr r8405)
* fix crashbulia byak2009-02-021-1/+2
| | | (bzr r7214)
* More NR ==> Geom changesJoshua L. Blocher2008-12-281-2/+2
| | | (bzr r7032)
* Merging from trunkTed Gould2008-10-111-3/+3
| | | (bzr r6884)
* No more NRMatrix or NRPoint.Jasper van de Gronde2008-03-211-6/+6
| | | (bzr r5149)
* Warning and whitespace cleanupJon A. Cruz2008-02-241-4/+4
| | | (bzr r4838)
* start switching sp_repr_new* over to XML::Document::create*, and rename ↵MenTaLguY2007-01-211-2/+3
| | | | | create methods to match DOM (bzr r2253)
* undo annotationsgustav_b2006-11-081-2/+1
| | | (bzr r1926)
* Display message to indicate that bitmap tracing has startedJohn Bintz2006-08-261-0/+3
| | | (bzr r1640)
* fix bug in normalizeMatrix, add some better trace messagesBob Jamison2006-07-271-1/+2
| | | (bzr r1490)