summaryrefslogtreecommitdiffstats
path: root/src/arc-context.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* When switching context by pressing a key, while dragging to create a new ↵Diederik van Lierop2009-08-011-0/+16
| | | | | shape, the original context should be finished properly and sp_canvas_item_ungrab should be called. set_event_context() was looking for e.g. sp_rect_context_finish, but this wasn't implemented for any of the shape tools. This closes bug #195101 (bzr r8375)
* Make the snap delay mechanism easier to implement for the devs, and get rid ↵Diederik van Lierop2009-07-181-4/+3
| | | | | of the related warning messages (bzr r8302)
* Don't create ellipses/arcs/circles that have a zero x or y dimension. When ↵Diederik van Lierop2009-06-291-7/+41
| | | | | snapping for example to the same point twice then just cancel the arc creation (Fixes bug #375975). And while we're at it, make the ellipse tool escapeable by pressing esc. Needs to be copied to the rect / star / etc. tools too (bzr r8187)
* Fix bug #338838: Using double-click on a selected shape to switch to that ↵Diederik van Lierop2009-03-301-1/+1
| | | | | shape's tool would give a snap-window-already-closed warning (bzr r7594)
* - Move snap delay mechanism to the event context (used to be in SPCanvas)Diederik van Lierop2009-03-291-3/+4
| | | | | | - Rename lots of variables and methods to make them easier to understand - Add snapping to the connector tool (bzr r7589)
* The snap indicator's tooltip now displays "A to B", whereas before it only ↵Diederik van Lierop2009-02-201-1/+1
| | | | | displayed "B". (bzr r7335)
* - The snap-delay mechanism should now be more robust. From now on, it must ↵Diederik van Lierop2009-01-251-5/+8
| | | | | | | be turned on and off explicitely within each context. This prevents delayed snapping events from being fired after the context or context's state has changed. - Creating single dots now snaps (bzr r7172)
* switch to using shape_editor, instead of separate knotholders and listeners; ↵bulia byak2009-01-081-50/+9
| | | | | fixes a lot of crashes, simplifies code (bzr r7097)
* Make all tools consider full parent transform (up to document, not just up ↵Thomas Holder2008-12-081-1/+1
| | | | | | | to root) See http://wiki.inkscape.org/wiki/index.php/ViewBoxToDo (bzr r6974)
* From trunkTed Gould2008-10-271-6/+8
| | | (bzr r6885)
* * Lots of documentation for the Inkscape::XML namespaceKrzysztof Kosi??ski2008-09-231-9/+8
| | | | | | * Doxygen fixes for a few files * Garbage-collected allocator for STL containers (bzr r6877)
* NR => Geom for context-fnsJohan B. C. Engelen2008-08-301-7/+7
| | | (bzr r6733)
* NR => Geom for arc-contextJohan B. C. Engelen2008-08-301-13/+13
| | | (bzr r6732)
* Modify the parameters required for setting up the SnapManagerDiederik van Lierop2008-08-281-1/+1
| | | (bzr r6722)
* Move all of the snapper code to 2geomDiederik van Lierop2008-08-111-1/+3
| | | (bzr r6606)
* remove many unnecessary to_2geom and from_2geom callsJohan B. C. Engelen2008-08-081-1/+1
| | | (bzr r6593)
* I'm an idiot who forgot that MOTION_HINT_MASK still needs MOTION_MASKMenTaLguY2008-07-081-1/+1
| | | (bzr r6222)
* enable motion hints for non-freehand actionsMenTaLguY2008-07-081-1/+1
| | | (bzr r6220)
* change NR::Matrix to Geom:: for many sp_item_xxx_affine functionsJohan B. C. Engelen2008-06-121-1/+1
| | | (bzr r5915)
* C++ify knotholdersMaximilian Albert2008-06-041-2/+2
| | | (bzr r5797)
* Improve snapping behaviour when creating new shapesDiederik van Lierop2008-05-201-5/+5
| | | (bzr r5721)
* Eliminate some redundant snapping callsDiederik van Lierop2008-05-181-8/+5
| | | (bzr r5693)
* Fix a regression in the snapper, caused by me. Sorry!Diederik van Lierop2008-05-161-2/+2
| | | (bzr r5680)
* Add a centralized check (i.e. in the snapper mechanism) whether we've ↵Diederik van Lierop2008-05-121-2/+2
| | | | | snapped or not, instead of leaving it up to the various tools. This should prevent these tools from moving to (0,0) if they bluntly use the value returned by the snapping mechanism without checking whether snapping has really occured. (bzr r5659)
* - Major refactoring of snapping related code...Diederik van Lierop2008-04-301-4/+6
| | | | | - Enabling snap indicator for all remaining tools (bzr r5556)
* Fundamentally reworked version of the 3D box tool (among many other things, ↵Maximilian Albert2007-12-131-1/+32
| | | | | this fixes bugs #168900 and #168868). See mailing list for details. Sorry for this single large commit but it was unfeasible to keep the history. (bzr r4224)
* In ellipse and rect tool: include info about width/height ratio in status ↵Maximilian Albert2007-08-291-3/+17
| | | | | messages when Ctrl+dragging (bzr r3609)
* Implement snapping of guides while dragging them, and snap TO item centers ↵Diederik van Lierop2007-08-281-1/+1
| | | | | (we only had snapping FROM item centers so far) (bzr r3603)
* gobble more of motion events; make statusbar messages immediate for better ↵bulia byak2007-08-211-2/+4
| | | | | visual feedback (bzr r3561)
* Only in the selector tool we should snap in bbox mode (PointType = ↵Diederik van Lierop2007-08-071-2/+2
| | | | | SNAPPOINT_BBOX) (bzr r3415)
* due to the order of processing events, we must disable lmb handling in ↵bulia byak2007-07-291-4/+4
| | | | | children contexts so that parent event context can handle it for space panning (bzr r3341)
* 1) Changes to snapping preferences dialogDiederik van Lierop2007-07-281-2/+2
| | | | | | 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)
* fix crash when pressing space while drawing a shapebulia byak2007-04-181-0/+15
| | | (bzr r2922)
* Implementing feature request #1673807: snapping of gradient handlesDiederik van Lierop2007-03-201-1/+1
| | | (bzr r2722)
* Implement snapping in shape-tools during initial-drawingDiederik van Lierop2007-03-181-3/+9
| | | (bzr r2690)
* continue switching sp_repr_new* over to XML::Document::create*Aaron Spike2007-01-211-1/+2
| | | (bzr r2254)
* remove color cursorsJosh Andler2006-10-191-6/+0
| | | (bzr r1811)
* Other tools now also retain there specific statusbar text when pressing ↵Johan B. C. Engelen2006-10-011-5/+8
| | | | | alt/shift/ctrl. (bzr r1748)
* Added forced redraws to other toolsJohn Bintz2006-09-241-0/+4
| | | (bzr r1719)
* Initial reworking of forced redraw to work better with interruptible displayJohn Bintz2006-09-061-4/+0
| | | (bzr r1696)
* Force non-interruptible canvas redraws to ensure accurate display while ↵John Bintz2006-09-041-0/+4
| | | | | creating objects (bzr r1679)
* undo annotationbulia byak2006-06-291-1/+1
| | | (bzr r1321)
* patch from Gustav Broberg: undo annotations and history dialogbulia byak2006-06-291-1/+3
| | | (bzr r1315)
* initial color cursor implementation (reads from pixbufs, will work on ↵Josh Andler2006-06-191-0/+6
| | | | | reading from svg instead) (bzr r1227)
* Give SPNamedView a SnapManager instance and use it for all management of ↵Carl Hetherington2006-05-031-1/+1
| | | | | snapping settings. (bzr r701)
* Get rid of the SP_DT_* macros which do nothing more than provide additional, ↵MenTaLguY2006-04-171-5/+5
| | | | | confusing, names for other functions. If shorter names are desired, the actual functions should be renamed -- or better, made into member functions. (bzr r532)
* turns out, all these synthesize_events were not necessary at all - they just ↵bulia byak2006-04-011-2/+0
| | | | | fired fake events that i never needed (bzr r382)
* moving trunk for module inkscapeMenTaLguY2006-01-161-0/+447
(bzr r1)