summaryrefslogtreecommitdiffstats
path: root/src/graphlayout.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* refactor: Eliminate SPIString::value_defaultThomas Holder2019-11-031-1/+1
| | | | | | - eliminate value_default - make value private (-> _value) - add value() method
* Refactoring: replace funcs with methods.Shlomi Fish2019-06-121-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I hereby disclaim any implicit or explicit ownership of my changes in this changeset, and put them under a multiple licence consisting of your choice of one of more of: - The CC0 / Public Domain - https://creativecommons.org/choose/zero/ . - The MIT / Expat license - https://en.wikipedia.org/wiki/MIT_License - The default licence of your project - The https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License - version 2.1 or higher - The https://en.wikipedia.org/wiki/GNU_General_Public_License - version 2 or higher - Any licence in the 2018-Aug-27 popular licenses list of https://opensource.org/licenses - The https://en.wikipedia.org/wiki/Apache_License version 2.0 or later - The https://en.wikipedia.org/wiki/Artistic_License version 2.0 or later - The https://en.wikipedia.org/wiki/ISC_license - The https://opensource.org/licenses/BSD-2-Clause Crediting me will be nice, but not mandatory, and you can change the licence of the project without needing my permission.
* Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot2019-03-061-17/+19
| | | | This makes the code a lot less readable and greppable for no reason.
* 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-emplace pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This reduces the boilerplate required to add a new element to a container.
* 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.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Put adaptagrams into its own folderMarc Jeanmougin2018-04-291-3/+3
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-7/+12
| | | | A lot of header clean-up.
* Updated libs from the Adaptagrams project: libavoid, libcola and libvspc; ↵Sylvain Chiron2017-07-011-108/+85
| | | | | | changed the code to match the new API Signed-off-by: Sylvain Chiron <chironsylvain@orange.fr>
* Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-031-10/+0
| | | (bzr r15034)
* Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-281-0/+10
| | | (bzr r15027)
* Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-10/+0
| | | (bzr r15025)
* Remove unused header file.Tavmjong Bah2015-12-091-1/+0
| | | (bzr r14522)
* cppification: GSList replaced by vectors (connectors)Marc Jeanmougin2015-12-081-6/+3
| | | (bzr r14504.1.13)
* static code analysisKris De Gussem2015-11-131-1/+1
| | | (bzr r14463)
* corrected the casts (hopefully)Marc Jeanmougin2015-02-271-2/+2
| | | (bzr r13922.1.10)
* Put a few std::vector<SPitem*>Marc Jeanmougin2015-02-191-3/+3
| | | (bzr r13922.1.5)
* At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin2015-02-171-5/+5
| | | | | | | | 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)
* Replace INKSCAPE.active_desktop() by SP_ACTIVE_DESKTOP for easier grepabilityLiam P. White2014-11-261-1/+1
| | | (bzr r13768)
* 5. Refactoring of Application class: make copy/assignment operators private, ↵Liam P. White2014-06-271-1/+1
| | | | | disallow pointers to Application (bzr r13341.5.9)
* Clean up of style code: refactor marker properties. Step 3.Tavmjong Bah2014-04-241-2/+2
| | | (bzr r13301)
* the C++11 fails without this small change in constness of a GSList iteratorJohan B. C. Engelen2013-11-211-2/+2
| | | (bzr r12829)
* Another minor pass of Doxygen cleanup.Jon A. Cruz2011-10-031-2/+3
| | | (bzr r10659)
* Refactor SPItem bounding box methods: remove NRRect usage and make codeKrzysztof Kosi??ski2011-08-271-3/+3
| | | | | using them more obvious. Fix filter region computation. (bzr r10582.1.1)
* Merge from trunkKrzysztof Kosi??ski2011-07-061-3/+4
|\ | | | | (bzr r10347.1.5)
| * compatibility for building with clang, this failed for 2 reasons.Campbell Barton2011-07-021-3/+4
| | | | | | | | | | | | | | | | - redefining the variable 'i' - the comparison between iterators didn't work. double checked this is the only use of shadowed 'i' so this has no functional changes. (bzr r10398)
* | Remove more of libnrKrzysztof Kosi??ski2011-06-231-0/+1
|/ | | (bzr r10347.1.2)
* Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-2/+3
|\ | | | | (bzr r9945.1.1)
| * This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public2010-06-291-2/+2
| | | | | | | | | | 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)
* | Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-171-1/+1
|/ | | | | | | | | | | | | | | fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
* Move around files to remove some vanity directories.Krzysztof Kosi??ski2010-03-141-0/+262
Also remove the obsolete IDL file stub. (bzr r9194)