summaryrefslogtreecommitdiffstats
path: root/src/object/object-set.h (unfollow)
Commit message (Collapse)AuthorFilesLines
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-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-1/+1
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-0/+0
A lot of header clean-up.
2017-12-29Fix message probles on boolops and for example when moving or transforming a ↵Jabiertxo Arraiza Cenoz1-1/+1
selection no message
2017-11-02Move finctions away object setsJabier Arraiza1-1/+1
2017-11-01Add widget to color and some refactoringJabier Arraiza1-1/+1
2017-10-03Fix bug: crash - iterator corrupted by removing objects from containerFriedrich Beckmann1-0/+1
On MacOS El Capitan with XCode 7.3 inkscape crashes when a second item is drawn in the drawing area. The crash is triggered by clearing the selection from the previous drawing activity. The reason for the crash is that the iterator is corrupted because during iteration the objects are removed from the container. This patch uses a safe way to remove items from the container and going to the next iteration. Using this patch, inkscape does not crash anymore.
2017-09-09Fix a bug when creating a cloned LPE with fill between manyJabier Arraiza1-1/+1
2017-05-23selection chemistry: implement z-stack orderchr1-0/+2
Bug #1395452 "raise and lower objects" used to stack objects above/below the next overlapping object, which makes it impossible to change the z-order of objects that don't overlap. Fixes also the object manager panel Conflicts: src/selection-chemistry.cpp src/selection-chemistry.h src/sp-item.cpp (bzr r15698.1.7)
2017-02-28Makes selection complexity linear in the number of selected objects instead ↵Marc Jeanmougin1-2/+4
of quadratic due to too many signals sent Fixed bugs: - https://launchpad.net/bugs/1666714 (bzr r15556)
2017-01-21Fix "swap fill and stroke" for multiple objects in selectionalexandru.roman1-1/+1
Add verb and shortcut possibility Fixed bugs: - https://launchpad.net/bugs/367360 - https://launchpad.net/bugs/675690 (bzr r15428)
2016-11-06further cppificationMarc Jeanmougin1-0/+1
Fixed bugs: - https://launchpad.net/bugs/1306662 (bzr r15218)
2016-11-03Fix crash in some commandline usageMarc Jeanmougin1-1/+2
(bzr r15205)
2016-10-27Add recursive clone unlink featureAlexander Brock1-2/+14
(bzr r15191.1.1)
2016-10-25Fix signalsMarc Jeanmougin1-12/+2
(bzr r15191)
2016-10-24CPPification: almost all sp_object_set_whatever and sp_selection_whatever ↵Marc Jeanmougin1-4/+131
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-11-09Move boolop functions from sp_selected_path_<op> to ObjectSet::path<op>Alexander Brock1-1/+36
(bzr r15223.1.1)
2016-07-27Renamed some functions, fixed testsAdrian Boguszewski1-5/+5
(bzr r14954.1.28)
2016-07-25Changed coding styleAdrian Boguszewski1-7/+18
(bzr r14954.1.27)
2016-07-22Improved spray tool, changed selection to object setAdrian Boguszewski1-0/+1
(bzr r14954.1.25)
2016-07-20Changed signatures of boolean functionsAdrian Boguszewski1-0/+1
(bzr r14954.1.24)
2016-07-20Changed arguments and names of selection chemistry functionsAdrian Boguszewski1-5/+38
(bzr r14954.1.22)
2016-07-01Added xmlNodes as range functionAdrian Boguszewski1-13/+32
(bzr r14954.1.12)
2016-06-27Added more testsAdrian Boguszewski1-3/+23
(bzr r14954.1.11)
2016-06-25Moved next functions, added namespace, renamed range functionsAdrian Boguszewski1-2/+25
(bzr r14954.1.10)
2016-06-05Added object setAdrian Boguszewski1-0/+58
(bzr r14954.1.1)