summaryrefslogtreecommitdiffstats
path: root/src/knot.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* clang-tidy recent changesAlexander Valavanis2019-02-011-3/+3
|
* Clarify licensesMax Gaukler2018-11-081-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
* Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-121-2/+2
| | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will.
* working on knots selectionJabier Arraiza2017-07-011-1/+1
|
* Starting selectable knotsJabier Arraiza2017-06-301-5/+10
|
* This commit fixes bug #1657874Jabiertxof2017-02-061-0/+1
| | | | | | | | | | | Title Missing handles after reset of rotation center Whats the bug: In a previous commit I do, I change a event on knots from onmove to onmousedown. this seems ok but the problem were if the user click on rotation center without moving it, the onrelease event has a variable move not set and hide the current knots making the needs to switch the tools to reshow. Is in particular a big problem on little elements where the center knot have a big influence and is very easy to click on it on select. Why do this commit that broke: I want have onmousedown fired to allow meshgradient triangle knots updated on mouse down. What fixes: INstras change the place of the signal, I send back to the original position and create a new signal to fire onmousedow a knot. In the gradient code I change the previous calls from undrag to onmousedown. Fixed bugs: - https://launchpad.net/bugs/1657874 (bzr r15486)
* Add triangle knot.Jabier Arraiza Cenoz2016-12-031-0/+2
| | | (bzr r15293)
* Header cleanup: stop using Glib types where they aren't truly needed. Eases ↵Liam P. White2014-08-311-29/+33
| | | | | GThread deprecation errors. (bzr r13341.1.190)
* Reduce header bloatAlex Valavanis2014-08-301-3/+1
| | | (bzr r13341.1.184)
* Further refactored SPKnot.Markus Engel2014-03-281-16/+16
| | | (bzr r13226)
* First step of refactoring SPKnot.Markus Engel2014-03-271-158/+77
| | | (bzr r13223)
* Kill ancient gcc version check in configure.ac and fix a load of broken ↵Alex Valavanis2013-03-141-2/+0
| | | | | forward declarations (bzr r12203)
* Step 1. Remove junk and keep functionality.Martin Owens2012-11-301-0/+2
| | | (bzr r11894.1.1)
* Adopt obsolete GtkAnchorType enum as SPAnchorTypeAlex Valavanis2012-04-101-3/+5
| | | (bzr r11207)
* More GDK key macro fixes, and some cursor referencingAlex Valavanis2012-04-081-0/+24
| | | (bzr r11180)
* Fixing more broken and split doc comments.Jon A. Cruz2011-10-271-2/+40
| | | (bzr r10697)
* Cleanup for src/forward.h. (About 19 of the affected files did not require ↵Jon A. Cruz2011-10-051-4/+4
| | | | | the contents forward.h at all). (bzr r10667)
* Use generic headers in preparation for GTK+ 3 transitionAlex Valavanis2011-06-031-1/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/792263 (bzr r10252.1.1)
* compatibility patch to compile using gcc 4.6Adib Taraben2011-02-271-0/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/707205 (bzr r10070.1.1)
* Split SPCanvasItem and SPCanvasGroup to individual .h files. Removed forward ↵Jon A. Cruz2010-12-231-1/+1
| | | | | header. (bzr r9978.1.1)
* Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-171-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)
* - Move snap delay mechanism to the event context (used to be in SPCanvas)Diederik van Lierop2009-03-291-1/+2
| | | | | | - Rename lots of variables and methods to make them easier to understand - Add snapping to the connector tool (bzr r7589)
* change knot.h to Geom::Point only instead of NR::Point.Johan B. C. Engelen2008-08-011-16/+16
| | | (bzr r6511)
* Make knotholders for LPE items finally work; each effect can now overload ↵Maximilian Albert2008-06-081-1/+1
| | | | | | | the addKnotHolderHandles() method to add handles which control its parameters. There is now also a virtual onKnotUngrabbed() method for each knotholder entity which can be used to do cleanup tasks (for LPE parameters it currently writes the value to SVG, although this should probably happen automatically) (bzr r5855)
* C++ify knotholdersMaximilian Albert2008-06-041-0/+11
| | | (bzr r5797)
* fix undo bug in nodepath_preserve; fix crash caused by nodepath_cleanup ↵bulia byak2006-05-121-0/+2
| | | | | deleting subpaths from under our feet; rename origin to origin_radial for node sides; add x/y origins to sides and remember origins for all nodes and sides upon grabbing; store drag pressure in the knot; sculpt (bzr r812)
* * knot.h, knot.cpp, connector-context.cpp:mjwybrow2006-05-081-0/+1
| | | | | Fix glib-gobject-warnings for knots in the connector tool. (bzr r764)
* fix an old typo by laurisbulia byak2006-04-151-1/+1
| | | (bzr r528)
* reverting part of last changes (eliminating the "invalid access to ↵Andrius Ramanauskas2006-04-071-1/+2
| | | | | non-static data member `SPKnotClass::event' of NULL object" warnings) (bzr r454)
* c -> cpp (eliminating unneded casts)Andrius Ramanauskas2006-04-061-5/+2
| | | (bzr r448)
* two crashes while editing nodes (one of those is reported as bug 1453558).Andrius Ramanauskas2006-04-061-0/+2
| | | | | | | * fixed by making SPKnotHolder a referenced class and adding ref/unref in knot_click_handler (which sometime change attributes and knot handler is destroyed before calling knotholder_update_knots); * fixed another crash by adding ref/unref to sp_knot_handler * also added signal disconnecting (bzr r445)
* Fixed warningsJon A. Cruz2006-04-021-9/+9
| | | (bzr r400)
* delete slow and redundant g_object properties, replacing them with fast ↵bulia byak2006-03-281-0/+50
| | | | | inline setters on struct members (bzr r322)
* moving trunk for module inkscapeMenTaLguY2006-01-161-0/+127
(bzr r1)