summaryrefslogtreecommitdiffstats
path: root/src/selcue.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-20Change the data type of size/width/height of the controls to unsigned intDiederik van Lierop1-2/+2
2019-05-20More pixel-level alignment fixes for various controls, by making all ↵Diederik van Lierop1-2/+2
controls have an odd-integer size (measured in pixels)
2019-01-02modernize loopsMarc Jeanmougin1-8/+8
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-bool-literals pass.Emmanuel Gil Peyrot1-1/+1
This makes it clearer whether an integer or a boolean has to be passed in this specific call.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-7/+7
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-03-27Minor cleanup of warnings. No functional change.Felipe Corrêa da Silva Sanches1-1/+1
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-6/+9
A lot of header clean-up.
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-3/+0
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-0/+3
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-3/+0
(bzr r15025)
2016-06-25Moved next functions, added namespace, renamed range functionsAdrian Boguszewski1-4/+4
(bzr r14954.1.10)
2015-11-13static code analysisKris De Gussem1-3/+3
(bzr r14463)
2015-02-27more cast cleanupMarc Jeanmougin1-1/+1
(bzr r13922.1.11)
2015-02-27corrected the casts (hopefully)Marc Jeanmougin1-5/+5
(bzr r13922.1.10)
2015-02-19Put a few std::vector<SPitem*>Marc Jeanmougin1-7/+7
(bzr r13922.1.5)
2015-02-17At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin1-8/+11
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)
2014-12-21Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White1-1/+1
(bzr r13820)
2014-12-21Purge sp_desktop_controlsLiam P. White1-3/+3
(bzr r13819)
2014-12-21Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelectionLiam P. White1-1/+2
(bzr r13809)
2014-01-15for rubberband outline, add shading instead of XOR (Bug 1266308)Alvin Penner1-0/+1
Fixed bugs: - https://launchpad.net/bugs/1266308 (bzr r12936)
2013-05-12Fix for Bug #448872 (Changing the bounding box type in preferences does not ↵Nicolas Dufour1-5/+43
update the preview) by Vinipsmaker. Fixed bugs: - https://launchpad.net/bugs/448872 (bzr r12329)
2012-06-09Stop deriving SPCanvasItem from GtkObjectAlex Valavanis1-4/+4
(bzr r11469.1.1)
2012-02-05(cppcheck and janitorial tasks:) C-style casting to C++-style castingKris De Gussem1-3/+3
(bzr r10939)
2011-10-15cppcheckKris De Gussem1-4/+4
(bzr r10678)
2011-08-27Refactor SPItem bounding box methods: remove NRRect usage and make codeKrzysztof Kosi??ski1-6/+4
using them more obvious. Fix filter region computation. (bzr r10582.1.1)
2011-07-17- rename SPItem::i2d_affine to i2dt_affine, to clarify that it is ↵Johan B. C. Engelen1-1/+1
item-to-desktop, not item-to-document. This should make it easier to spot bugs. - tag some instances where the document-to-desktop transform has been hardcoded (bzr r10466)
2010-06-29This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public1-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)
2009-12-13Position of baseline anchor is now dependent of the text alignmentDiederik van Lierop1-12/+14
Fixed bugs: - https://launchpad.net/bugs/168329 (bzr r8887)
2009-03-09for selection modified signal, only update the coords of the selcue boxes, ↵bulia byak1-9/+64
not delete and create them anew as before (bzr r7447)
2008-12-28More NR ==> Geom changesJoshua L. Blocher1-1/+1
(bzr r7032)
2008-11-21Merge from fe-movedTed Gould1-1/+1
(bzr r6891)
2008-10-27From trunkTed Gould1-4/+5
(bzr r6885)
2008-10-11Merging from trunkTed Gould1-1/+1
(bzr r6884)
2008-09-18Next roud of NR ==> Geom conversionMaximilian Albert1-1/+1
(bzr r6839)
2008-09-11convert almost all libnrtype to Geom::Johan B. C. Engelen1-1/+1
(bzr r6793)
2008-08-05NR::Maybe => boost::optionalJohan B. C. Engelen1-1/+1
(bzr r6569)
2008-06-12change NR::Matrix to Geom:: for many sp_item_xxx_affine functionsJohan B. C. Engelen1-1/+1
(bzr r5915)
2008-04-17replace text strings by ints for tools/bounding_boxbulia byak1-2/+3
(bzr r5459)
2008-01-25first set of updates to headers for clean gcc 4.3 buildsKees Cook1-0/+2
(bzr r4588)
2008-01-16Move 'bounding box' option up one level (from Selector to Tools page in ↵Maximilian Albert1-1/+1
Preferences) since it applies more globally than just in the Selector tool (see discussion on the mailing list) (bzr r4513)
2007-07-25Retrieve preferences outside the for-loop, not inside.Diederik van Lierop1-3/+3
(bzr r3295)
2007-04-14change the logic so that the value is correctly read at launch of seltrans, ↵bulia byak1-1/+1
and approximate is the default for continuity (bzr r2883)
2007-04-13make selcue sensitive to bbox typebulia byak1-1/+4
(bzr r2881)
2007-03-10Merge further bbox workMenTaLguY1-29/+29
(bzr r2596)
2006-04-17Get rid of the SP_DT_* macros which do nothing more than provide additional, ↵MenTaLguY1-4/+4
confusing, names for other functions. If shorter names are desired, the actual functions should be renamed -- or better, made into member functions. (bzr r532)
2006-02-15bulk trailing spaces removal. consistency through MD5 of binaryRalf Stephan1-6/+6
(bzr r149)