| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2018-11-08 | Clarify licenses | Max Gaukler | 1 | -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-18 | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 1 | -1/+1 | |
| This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | |||||
| 2018-01-30 | Move classes derived from SPObject to own directory. | Tavmjong Bah | 1 | -2/+3 | |
| A lot of header clean-up. | |||||
| 2016-08-03 | Removed unused includes, decreased compilation time. Once again | Adrian Boguszewski | 1 | -1/+0 | |
| (bzr r15034) | |||||
| 2016-07-28 | Reverted changes to r15024 after many building problems | Adrian Boguszewski | 1 | -0/+1 | |
| (bzr r15027) | |||||
| 2016-07-28 | Removed unused includes, decrease compilation time | Adrian Boguszewski | 1 | -1/+0 | |
| (bzr r15025) | |||||
| 2011-10-03 | Another minor pass of Doxygen cleanup. | Jon A. Cruz | 1 | -5/+5 | |
| (bzr r10659) | |||||
| 2010-01-09 | Refactoring the snapping API (making it easier to maintain and understand ↵ | Diederik van Lierop | 1 | -3/+3 | |
| for the devs) (bzr r8960) | |||||
| 2009-04-25 | Optionaly snap to invisible grid lines too (when zoomed out). See the grids ↵ | Diederik van Lierop | 1 | -1/+7 | |
| tab in the document properties dialog. This closes bug #172115 (bzr r7773) | |||||
| 2009-03-14 | Remove obsolete includes of libnr files in the snapping code | Diederik van Lierop | 1 | -1/+0 | |
| (bzr r7491) | |||||
| 2009-02-04 | Warning cleanup. | Jon A. Cruz | 1 | -1/+1 | |
| (bzr r7227) | |||||
| 2009-01-31 | Store the snapper tolerances in the snap-preferences instead of in each ↵ | Diederik van Lierop | 1 | -26/+1 | |
| snapper individualy. This way we don't have to update all snappers when the namedview has been updated (and we can get rid of the _update_snap_distances() call) (bzr r7208) | |||||
| 2008-12-14 | 1) snap midpoints of line segments (both as source and as target) | Diederik van Lierop | 1 | -2/+2 | |
| 2) snap intersections within a single shape (as source; as target was already implemented) (bzr r7008) | |||||
| 2008-11-23 | Don't use SP_ACTIVE_DESKTOP | Diederik van Lierop | 1 | -1/+3 | |
| (bzr r6896) | |||||
| 2008-11-23 | 1) Improve the way the distance to the pointer is taken into account when ↵ | Diederik van Lierop | 1 | -2/+2 | |
| finding the best snap 2) Use this distance also when snapping nodes in the path editor 3) Add a slider in the preferences dialog to control the weighing of this distance (bzr r6895) | |||||
| 2008-10-27 | From trunk | Ted Gould | 1 | -30/+4 | |
| (bzr r6885) | |||||
| 2008-09-07 | If a snapper needs a reference to a SPNamedView or a SPDesktop, then get ↵ | Diederik van Lierop | 1 | -4/+3 | |
| that reference via the SnapManager (instead of storing references in the snapper and accessing them directly) (bzr r6773) | |||||
| 2008-08-11 | Move all of the snapper code to 2geom | Diederik van Lierop | 1 | -3/+3 | |
| (bzr r6606) | |||||
| 2008-04-30 | - Major refactoring of snapping related code... | Diederik van Lierop | 1 | -109/+0 | |
| - Enabling snap indicator for all remaining tools (bzr r5556) | |||||
| 2008-04-11 | Refactor snapping mechanisms: in seltrans.cpp, a GSList was converted to a ↵ | Diederik van Lierop | 1 | -5/+7 | |
| std::list in four different places. Now this is handled in only one place (bzr r5407) | |||||
| 2008-03-25 | Major overhaul of the selector tool's internals to improve handling of ↵ | Diederik van Lierop | 1 | -5/+3 | |
| transformations, origins and snapping, for both visual and geometric bounding boxes (see for example bug #174046 in Launchpad) (bzr r5189) | |||||
| 2008-03-08 | Node tool: snap to paths and their nodes, incl. to the path currently being ↵ | Diederik van Lierop | 1 | -9/+11 | |
| edited (bzr r4989) | |||||
| 2008-01-08 | Fix LP #181020: When snapping a guide, now only the part of the guide near ↵ | Diederik van Lierop | 1 | -0/+1 | |
| the pointer is considered (bzr r4435) | |||||
| 2008-01-03 | 1) fix snapping while scaling | Diederik van Lierop | 1 | -9/+14 | |
| 2) fix constrained snapping 3) improve snapping logic (again), or more specifically: better obey "always snap" 4) refactoring to reduce risk of bugs: renaming variables and methods for better readability, adding class members instead of using std::pairs, etc. (bzr r4379) | |||||
| 2007-12-22 | 1) solve bug #177995 | Diederik van Lierop | 1 | -2/+1 | |
| 2) don't look for nearby intersections when doing a constrained snap (bzr r4275) | |||||
| 2007-12-12 | Toggle snapping for each grid individually | Diederik van Lierop | 1 | -4/+4 | |
| (bzr r4219) | |||||
| 2007-11-03 | Oops, don't use tabs! (replace tabs by 4 spaces) | Diederik van Lierop | 1 | -12/+12 | |
| (bzr r4020) | |||||
| 2007-11-03 | Groundwork to snap to intersections, e.g. intersections of gridlines with ↵ | Diederik van Lierop | 1 | -10/+18 | |
| guidelines, and of objects with other objects. The snappers used to return only SnappedPoints, but now also SnappedLines and SnappedInfiniteLines can be returned. SnappedPaths will be implemented later. (bzr r4016) | |||||
| 2007-09-05 | Improving the performance of the object snapper | Diederik van Lierop | 1 | -4/+12 | |
| (bzr r3689) | |||||
| 2007-08-28 | Implement snapping of guides while dragging them, and snap TO item centers ↵ | Diederik van Lierop | 1 | -0/+1 | |
| (we only had snapping FROM item centers so far) (bzr r3603) | |||||
| 2007-07-28 | 1) Changes to snapping preferences dialog | Diederik van Lierop | 1 | -16/+16 | |
| 2) Strict snapping implemented, i.e. bbox only to bbox and nodes only to paths/nodes 3) Renaming of some constants to improve readability (bzr r3331) | |||||
| 2007-04-17 | Improve snapper performance (mainly in by editting WillSnapSomething()) | Diederik van Lierop | 1 | -10/+1 | |
| (bzr r2917) | |||||
| 2007-04-12 | Always snap both bboxes and nodes. Remove all 'snap bbox/nodes' options from ↵ | Diederik van Lierop | 1 | -1/+1 | |
| document properties (bzr r2868) | |||||
| 2007-03-26 | interpret snapping distance in screen pixels independent of zoom | bulia byak | 1 | -2/+4 | |
| (bzr r2762) | |||||
| 2006-05-09 | Re-enable link between grid visibility and grid snap. | Carl Hetherington | 1 | -4/+13 | |
| (bzr r795) | |||||
| 2006-05-05 | Various snapping cleanups and bug fixes. | Carl Hetherington | 1 | -2/+2 | |
| (bzr r734) | |||||
| 2006-02-15 | bulk trailing spaces removal. consistency through MD5 of binary | Ralf Stephan | 1 | -1/+1 | |
| (bzr r149) | |||||
