summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/point.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix a bug when update pointparaneter and no KnotJabier Arraiza Cenoz2015-03-161-1/+1
| | | (bzr r14008)
* Remove 'Active Desktop' calls from Perspective/Envelope and Lattice2 LPE, ↵Jabier Arraiza Cenoz2015-03-141-1/+6
| | | | | added auto refresh knots position in point parameters when updated programaticaly (bzr r14003)
* Lattice 2 now handle in miror mode revase of axis, also fix a bug moving ↵Jabier Arraiza Cenoz2015-03-141-0/+5
| | | | | extem axis knots (bzr r14001)
* Point parameter refactor, Fixes a bug in Lattice2 whith lines.Jabier Arraiza Cenoz2015-03-121-33/+28
| | | (bzr r13995)
* Inicialite variables to prevent crashesJabier Arraiza Cenoz2015-03-111-2/+0
| | | (bzr r13990)
* Final cleanup to point parameter, lattice2 and perspective envelope. Also ↵Jabier Arraiza Cenoz2015-03-101-7/+2
| | | | | added to lattice 2 a symmetry options (bzr r13989)
* Fix a bug whith previous commitJabier Arraiza Cenoz2015-03-101-4/+7
| | | (bzr r13988)
* This commit remove all ocurrences of Active Desktop casts and all tool swith ↵Jabier Arraiza Cenoz2015-03-101-7/+4
| | | | | on Perspective/Envelope and in Lattice 2, also remove some casts from point parameter (bzr r13987)
* Merged pointreseteable parameter to point parameterJabier Arraiza Cenoz2015-03-021-5/+41
| | | (bzr r13961)
* Workaround usage of deprecated glib symbols in 3rd party librariesAlex Valavanis2013-03-251-2/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1122774 (bzr r12243)
* const ....Johan B. C. Engelen2013-01-171-2/+2
| | | (bzr r12039)
* Fix "shift disables snapping" for LPEs and for editing objectsDiederik van Lierop2012-10-141-2/+2
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1065931 (bzr r11800)
* Removed unneeded header style filename #definesJon A. Cruz2012-06-171-2/+0
| | | (bzr r11503)
* Removed outdated classes.Jon A. Cruz2012-06-171-0/+2
| | | | | Pruned header to not introduce extraneous includes. (bzr r11502)
* Adding base configurable sizing of controls/handles.Jon A. Cruz2012-05-031-1/+1
| | | (bzr r11316)
* the knotholders for LPE parameters should not derive from ↵Johan B. C. Engelen2012-04-071-1/+1
| | | | | LPEKnotHolderEntity as this prevents deletion (bzr r11168)
* Clean up all remaining false warnings from GtkmmAlex Valavanis2012-02-261-1/+1
| | | (bzr r11018)
* Get rid of gtkmm top-level header usage - not required by APIAlex Valavanis2012-02-061-1/+0
| | | (bzr r10940)
* Cleanup GSEAL issues and deprecated GtkTooltipsAlex Valavanis2012-01-031-1/+1
| | | (bzr r10826)
* update to latest 2geom !Johan B. C. Engelen2011-02-021-2/+2
| | | (bzr r10025)
* decrease header depsJohan B. C. Engelen2009-11-231-0/+1
| | | (bzr r8842)
* Merge from fe-movedTed Gould2008-11-211-1/+0
| | | (bzr r6891)
* Get rid of some superfluous includesMaximilian Albert2008-08-131-5/+0
| | | (bzr r6613)
* remove many unnecessary to_2geom and from_2geom callsJohan B. C. Engelen2008-08-081-1/+1
| | | (bzr r6593)
* 2geomify a lot of NR::Points to Geom::PointJohan B. C. Engelen2008-08-011-6/+6
| | | (bzr r6513)
* Make PointParam handles snap, tooMaximilian Albert2008-08-011-1/+2
| | | (bzr r6507)
* Remove obsolete function param_editOncanvas for PointParamsMaximilian Albert2008-07-291-19/+0
| | | (bzr r6449)
* Rename isLPEParam() to isDeletable(), create new class LPEKnotHolderEntity ↵Maximilian Albert2008-07-291-1/+1
| | | | | and make inheritance from it a bit less clumsy (bzr r6448)
* Remove superfluous functionsMaximilian Albert2008-07-291-1/+1
| | | (bzr r6447)
* LPE knotholder refactoring: PointParams are not knotholder entities any ↵Maximilian Albert2008-07-291-6/+29
| | | | | more; instead, every parameter type can now return entities (and then forget about them) (bzr r6446)
* Warning cleanupJon A. Cruz2008-07-041-3/+3
| | | (bzr r6156)
* Remove oncanvas_editable attribute for PointParams; use their internal shape ↵Maximilian Albert2008-07-041-4/+2
| | | | | settings for the knotholder handle (bzr r6151)
* Remove now obsolete 'edit on canvas' button for PointParamsMaximilian Albert2008-07-021-10/+0
| | | (bzr r6119)
* Enable status bar tips for LPE handles that are automatically created from ↵Maximilian Albert2008-07-021-1/+4
| | | | | PointParams (bzr r6118)
* Activate automatic knotholders for LPE PointParamsMaximilian Albert2008-06-161-18/+2
| | | (bzr r5963)
* Make knotholders for LPE items finally work; each effect can now overload ↵Maximilian Albert2008-06-081-0/+21
| | | | | | | 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)
* Rename param_writeSVGValue() --> param_getSVGValue() since the method ↵Maximilian Albert2008-06-051-1/+1
| | | | | doesn't actually write to SVG but only returns a ready-to-write string (bzr r5817)
* C++ify knotholdersMaximilian Albert2008-06-041-1/+1
| | | (bzr r5797)
* RegisteredTransformedPoint: fix methods to use const&.Johan B. C. Engelen2008-04-051-0/+5
| | | | | LPE PointParam: set transform in RegisteredTransformedPoint-widget (bzr r5348)
* changes to use RegisteredTransformedPoint as widget for LPE point. not completeJohan B. C. Engelen2008-03-221-8/+8
| | | (bzr r5171)
* * add RegisteredTransformedPoint widget, that transforms the point before ↵Johan B. C. Engelen2008-03-221-2/+2
| | | | | | | | displaying/writing. This in order to keep them in SVG coordinate system in XML, but in canvas coord system in the spinbox * move Geom::Point XML writing to central place in ostringstream * add verb for LPE context (bzr r5165)
* clean up PointParamKnotHolder some more. SPKnotHolder should really be C++ ↵Johan B. C. Engelen2008-03-211-1/+1
| | | | | object. It's the next step. (bzr r5151)
* remove #ifdef that was used to disable on-canvas editing.Johan B. C. Engelen2008-03-201-7/+4
| | | | | fix initialization of PointParam (bzr r5135)
* Add on-canvas editing of LPE PointParam.Johan B. C. Engelen2008-03-201-2/+17
| | | | | | | | * made special KnotHolder for Pointparameters. todo: * pointparam numerical widgets display SVG info, instead of desktop coordinates. must be fixed * knots cannot be selected and moved by keys (bzr r5133)
* remove flashing test indicator on pointparam.Johan B. C. Engelen2008-03-021-25/+0
| | | | | | | | | remove some leftover code from point param code remove test pointparam from LPEKnot added SnapIndicator added SnapIndicator to SPDesktop, and a call from guidesnapping to display a snapindicator when a guide is snapped. fix canvas-temporary-item-list.cpp (bzr r4931)
* NEW: temporary on-canvas indicatorsJohan B. C. Engelen2008-03-021-9/+28
| | | (bzr r4918)
* fixing wrong includesFelipe Corr??a da Silva Sanches2008-02-281-1/+1
| | | (bzr r4898)
* Remove unnecessary dependencies for some of the lpe parameters.Johan B. C. Engelen2008-02-281-1/+1
| | | (bzr r4896)
* * (when debug macro is defined) call ShapeEditor function to on-canvas edit ↵Johan B. C. Engelen2008-02-271-33/+29
| | | | | | | point lpe parameters. This function still needs to be implemented. * put forward declarations in lpe parameters to decrease recompile times (bzr r4888)
* RegisteredCheckbutton is now subclassed from RegisteredWidget<CheckButton>Johan B. C. Engelen2008-01-151-31/+25
| | | (bzr r4500)