summaryrefslogtreecommitdiffstats
path: root/src/layer-manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-02modernize loopsMarc Jeanmougin1-5/+4
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-10-19Remove unused includes.Emmanuel Gil Peyrot1-3/+0
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-4/+4
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-06-18Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot1-5/+5
This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-1/+1
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-1/+1
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-6/+12
A lot of header clean-up.
2017-10-18Refactor Util::ptr_sharedJan Lingscheid1-7/+7
Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway.
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-6/+0
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-0/+6
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-6/+0
(bzr r15025)
2016-05-21Fix regression: restore order in resources (e.g. pattern list)Marc Jeanmougin1-5/+5
(bzr r14907)
2015-12-13fix minor bug from recent merge: layer names were incorrectly createdMarc Jeanmougin1-2/+3
(bzr r14530)
2015-12-07cppification : GHashMaps replaced by stl maps. getResouceList now gives a ↵Marc Jeanmougin1-11/+9
std::set<SPObject *>. Should give some performance improvements (quite a few linear lookups are now logarithmic) (bzr r14504.1.6)
2015-02-26Rename libgc/ => inkgc/ to reflect difference from Boehm GCLiam P. White1-1/+1
(bzr r13950)
2015-02-25Isolate components of libgcLiam P. White1-1/+1
(bzr r13946)
2014-12-21Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White1-1/+1
(bzr r13820)
2014-12-21Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelectionLiam P. White1-1/+1
(bzr r13809)
2012-10-12Fix for 1019974 : Default layer names are inconsistentJohn Smith1-34/+47
(bzr r11785)
2012-08-15code style (use NULL for pointers instead of 0)Johan B. C. Engelen1-3/+3
(bzr r11607)
2011-02-21Finished cleanup of outdated SP_OBJECT_PARENT C macro.Jon A. Cruz1-6/+6
(bzr r10064)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-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)
2010-07-06C++ification of SPObject continued along with the onset of XML ↵Abhishek Sharma Public1-2/+4
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)
2010-07-01C++fied SPDocument addedAbhishek Sharma Public1-3/+3
(bzr r9546.1.2)
2010-04-27Correct desktop tracking for layers dialog. Fixes bug #427514.Jon A. Cruz1-1/+2
Fixed bugs: - https://launchpad.net/bugs/427514 (bzr r9380)
2009-08-06Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert1-4/+4
which cannot be fixed easily. (bzr r8422)
2009-08-05SPDocument->Documentjohnce1-4/+4
(bzr r8404)
2009-03-08part of #339660; layers dialog allows non-unique inkscape:label attributesEd Halley1-30/+34
(bzr r7443)
2008-10-27From trunkTed Gould1-2/+3
(bzr r6885)
2008-03-03Avoid redundant additions for non-layer layersJon A. Cruz1-1/+3
(bzr r4943)
2008-03-03Avoid adding layers who's repr is null or disconnected, or with a parent ↵Jon A. Cruz1-3/+19
who's repr is null or disconnected. Fixes Bug #168586 (bzr r4939)
2008-03-03Avoiding adding layers that are not listed in the document's current set.Jon A. Cruz1-21/+108
Fixes Bug #196098 (bzr r4938)
2007-11-30http://sourceforge.net/mailarchive/forum.php?thread_name=5747bce9a7ed077c1b4 ↵Johan B. C. Engelen1-0/+3
fc9f0f4f8a5e0%40localhost&forum_name=inkscape-devel (bzr r4147)
2007-11-03add destructor to LayerManager that disconnects it signals. see bug: [ ↵Johan B. C. Engelen1-0/+6
1720871 ] Crash when adding a layer (bzr r4019)
2007-11-02warning cleanupJon A. Cruz1-6/+6
(bzr r4012)
2007-03-18fix 64-bit issues with width of npos -- patch #1675697 from mellumMenTaLguY1-1/+1
(Falk Hueffner) (bzr r2695)
2006-07-21switch to sigc++ signals and manually clean up signal connections (although ↵MenTaLguY1-9/+7
it may not be strictly necessary to do so here) (bzr r1453)
2006-05-29workaround assertion upon file revertJon A. Cruz1-3/+6
(bzr r1064)
2006-05-28Option to keep selection when changing layersJon A. Cruz1-0/+12
(bzr r1037)
2006-05-27Prevent layer name duplicationJon A. Cruz1-0/+52
(bzr r1024)
2006-05-26Cleaned up propagation of status changes.Jon A. Cruz1-1/+49
(bzr r1018)
2006-05-21Adding notification when managed layers change.Jon A. Cruz1-1/+21
(bzr r917)
2006-05-18stop structure rebuilds on change of selected layer. Added scrolling, pop-up ↵Jon A. Cruz1-3/+1
menu, in-place renamimg, and position-sensitive enabling (bzr r873)
2006-05-15Base implementation of a layers dialog.Jon A. Cruz1-0/+3
(bzr r843)
2006-05-14Minor update for compile problemJon A. Cruz1-13/+15
(bzr r839)
2006-05-14Corrected base structure and avoiding infinite loop.Jon A. Cruz1-13/+30
(bzr r833)
2006-03-29draft of layer managerMenTaLguY1-0/+71
(bzr r326)