summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter (follow)
Commit message (Collapse)AuthorAgeFilesLines
* merge gsoc2008_johan_path2geom into trunkJohan B. C. Engelen2008-06-062-8/+7
| | | (bzr r5823)
* Rename param_writeSVGValue() --> param_getSVGValue() since the method ↵Maximilian Albert2008-06-0511-12/+12
| | | | | doesn't actually write to SVG but only returns a ready-to-write string (bzr r5817)
* Add paramType() method to LPE parameter classesMaximilian Albert2008-06-056-0/+26
| | | (bzr r5816)
* Some cleanup of knotholder code; mostly renaming knot_(get|set|click)_func ↵Maximilian Albert2008-06-041-2/+16
| | | | | --> knot_(get|set_click) for reduced verbosity (bzr r5802)
* C++ify knotholdersMaximilian Albert2008-06-043-99/+24
| | | (bzr r5797)
* - try to use more forward declarations for less dependencies on display/curve.hJohan B. C. Engelen2008-05-091-10/+0
| | | | | | - change _bpath to private member of SPCurve, obtain and set with get_bpath and set_bpath. - added const methods, so protect changes to _bpath in SPCurve (bzr r5636)
* struct SPCurve => class SPCurveJohan B. C. Engelen2008-05-051-1/+1
| | | | | change all sp_curve_methods functions to SPCurve::methods. (bzr r5609)
* C++-ify initialization of Parameter and ScalarParam classesJohan B. C. Engelen2008-04-131-15/+15
| | | (bzr r5430)
* fix typoJohan B. C. Engelen2008-04-131-1/+0
| | | (bzr r5429)
* now with 2geom's arc implem. : accept pasting ellipse path params.Johan B. C. Engelen2008-04-131-13/+6
| | | (bzr r5428)
* move live_effects/n-art-bpath-2geom.* to libnr/n-art-bpath-2geom.*Johan B. C. Engelen2008-04-131-1/+1
| | | (bzr r5427)
* process source subdirectories with INCLUDE() instead of ADD_DIRECTORIES()Aaron Spike2008-04-101-3/+1
| | | | | | | This more or less mimics what is being done by automake with the Makefile_insert files What we were doing before did not work because add_directories() isn't able to propagate variables upwards. (bzr r5397)
* cmake: EOL of cmakelists.txt in subdirsJohan B. C. Engelen2008-04-071-20/+20
| | | (bzr r5379)
* RegisteredTransformedPoint: fix methods to use const&.Johan B. C. Engelen2008-04-051-0/+5
| | | | | LPE PointParam: set transform in RegisteredTransformedPoint-widget (bzr r5348)
* Make BoolParam usable in boolean expressions directlyMaximilian Albert2008-04-021-0/+3
| | | (bzr r5309)
* add CMakeLists.txt files for live_effectsJohan B. C. Engelen2008-03-291-0/+21
| | | (bzr r5233)
* svn propset svn:eol-style native **/todo.txtPeter Moulder2008-03-291-6/+6
| | | (bzr r5230)
* svn propset svn:eol-style native *.[ch] *.cpp (including buildtool.cpp, ↵Peter Moulder2008-03-293-314/+314
| | | | | packaging/macosx/native-gtk/*, src/dom/**). (bzr r5227)
* fix lpe-PathPAram when deleting the path that it links toJohan B. C. Engelen2008-03-282-2/+17
| | | | | fix ClipboardManager to construct the svgd from pathvector instead of obtaining the string from PathParam which can be a href instead of svgd (bzr r5222)
* add linking to other paths to lpe-PathParamJohan B. C. Engelen2008-03-275-20/+264
| | | (bzr r5209)
* system clipboard support (bug #170185) from Chris KosińskiMenTaLguY2008-03-261-24/+17
| | | (bzr r5190)
* Corrected initialization orderJon A. Cruz2008-03-241-1/+1
| | | (bzr r5185)
* prepare PathParam for linking to other objectJohan B. C. Engelen2008-03-232-21/+29
| | | (bzr r5180)
* set primary path storage to vector<path> in lpe-PathParam. only convert to ↵Johan B. C. Engelen2008-03-232-17/+61
| | | | | pwd2 when needed. (bzr r5179)
* return const reference when getting path data from lpe-PathParam!Johan B. C. Engelen2008-03-232-2/+2
| | | (bzr r5177)
* remove multiple inheritance from lpe PathParam. since it is often desired to ↵Johan B. C. Engelen2008-03-232-10/+33
| | | | | get the path not as pw< d2<> >, but also as geom::path or maybe as dw< pw<> >. Plus this enabled linking to an object, instead of keeping its own path data. (i.e. linking to other objects) (bzr r5176)
* changes to use RegisteredTransformedPoint as widget for LPE point. not completeJohan B. C. Engelen2008-03-221-8/+8
| | | (bzr r5171)
* fix fileJohan B. C. Engelen2008-03-221-204/+0
| | | (bzr r5166)
* * add RegisteredTransformedPoint widget, that transforms the point before ↵Johan B. C. Engelen2008-03-222-2/+206
| | | | | | | | 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)
* Line-end fixupsJon A. Cruz2008-03-222-275/+275
| | | (bzr r5161)
* temporary fix. removed LPE context verb. now toolbar is normal again in windows.Johan B. C. Engelen2008-03-211-1/+1
| | | (bzr r5153)
* clean up PointParamKnotHolder some more. SPKnotHolder should really be C++ ↵Johan B. C. Engelen2008-03-213-43/+44
| | | | | object. It's the next step. (bzr r5151)
* Clean up event handler functions of pointparam-knotholder.cppJohan B. C. Engelen2008-03-211-74/+5
| | | (bzr r5144)
* add pointparam-knotholder files to Makefile_insertJohan B. C. Engelen2008-03-201-0/+2
| | | (bzr r5137)
* forgot to commit the two essential files! sorry to break the build for a secondJohan B. C. Engelen2008-03-202-0/+343
| | | (bzr r5136)
* 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-202-2/+25
| | | | | | | | * 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-022-29/+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)
* Warning and whitespace cleanupJon A. Cruz2008-03-011-1/+1
| | | (bzr r4914)
* fixing wrong includesFelipe Corr??a da Silva Sanches2008-02-282-2/+2
| | | (bzr r4898)
* Remove unnecessary dependencies for some of the lpe parameters.Johan B. C. Engelen2008-02-287-13/+2
| | | (bzr r4896)
* * (when debug macro is defined) call ShapeEditor function to on-canvas edit ↵Johan B. C. Engelen2008-02-277-43/+44
| | | | | | | point lpe parameters. This function still needs to be implemented. * put forward declarations in lpe parameters to decrease recompile times (bzr r4888)
* Whitespace cleanupJon A. Cruz2008-02-251-22/+21
| | | (bzr r4843)
* Warning and whitespace cleanupJon A. Cruz2008-02-243-8/+8
| | | (bzr r4838)
* fix Bug #191909 crash on lpe stitch sub-paths, also fix crash for bend path lpeJohan B. C. Engelen2008-02-202-1/+7
| | | (bzr r4789)
* add copy button to LPE pathparamJohan B. C. Engelen2008-01-262-0/+16
| | | (bzr r4600)
* path lpe parameter should not know of it's edit button since it has no ↵Johan B. C. Engelen2008-01-262-8/+0
| | | | | unique button. (bzr r4598)
* fix initialization of lpe paramsJohan B. C. Engelen2008-01-264-2/+6
| | | (bzr r4592)
* RegisteredEnum is now subclassed from RegisteredWidget<enum> instead of old ↵Johan B. C. Engelen2008-01-161-17/+10
| | | | | RegisteredWdg (bzr r4523)