summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch by Felipe Sanches: fixed transparent lines in feConvolveMatrix outputNiko Kiirala2007-07-231-2/+8
| | | (bzr r3284)
* Added tiling pattern supportmiklosh2007-07-235-11/+104
| | | (bzr r3283)
* Removed transform from <svg> and corrected matrix multiplication order in ↵miklosh2007-07-232-9/+8
| | | | | PdfParser::opConcat (bzr r3282)
* Patch by Jean-René Reinhard: better SVG compliance for lighting effectsNiko Kiirala2007-07-236-32/+88
| | | (bzr r3281)
* removing kerns also trims multi-value x attribute; allow it to work on ↵bulia byak2007-07-231-3/+19
| | | | | tspans as well (bzr r3280)
* remove age-old optimization which fails to update display when undoing ↵bulia byak2007-07-231-2/+1
| | | | | removing manual kerns (bzr r3279)
* Added some heuristics to set CSS font-style and font-weight from PDF font ↵miklosh2007-07-221-1/+44
| | | | | names when these properties are not available from poppler (bzr r3278)
* Filter effects dialog:Nicholas Bishop2007-07-223-1/+151
| | | | | Created simple controls for feConvolveMatrix. Currently only handles attributes order and kernelMatrix. (bzr r3277)
* tspan statusbar descriptionbulia byak2007-07-221-0/+13
| | | (bzr r3275)
* Added xml:space=preserve attribute on <text> nodes and sodipodi:role=line ↵miklosh2007-07-221-0/+2
| | | | | attribute on <tspan> nodes to ease text editing (bzr r3274)
* Use the #RRGGBB color format instead of rgb() since most extensions don't ↵miklosh2007-07-221-4/+5
| | | | | support the latter (bzr r3273)
* Further development of the PDF import module: continued pruning of ↵miklosh2007-07-215-303/+865
| | | | | | | PdfParser.cpp, added basic text and image support and did some coding style adjustments. (bzr r3272)
* Added a missing link in making the filterRes attribute workNiko Kiirala2007-07-213-23/+52
| | | (bzr r3271)
* Patch from Felipe Sanches: support for feConvolveMatrix filter primitiveNiko Kiirala2007-07-206-4/+318
| | | (bzr r3270)
* Patch from Jean-René Reinhard: support for feDiffuseLighting andNiko Kiirala2007-07-2025-25/+2423
| | | | | feSpecularLighting filter primitives (bzr r3269)
* Updated the gtkmmified fill and stroke dialog with the filter effectsgustav_b2007-07-202-60/+81
| | | | | | changes done in the current f&s dialog. I'll probably make the gtkmmified one default pretty soon to avoid double work... (bzr r3268)
* Cleaned up logic of sp_te_delete to adhere to UI/logic layering.Gail Carmichael2007-07-183-46/+87
| | | (bzr r3267)
* make all-inkscape-files the default filter instead of all-images (do we need ↵bulia byak2007-07-181-10/+9
| | | | | that at all? MIME has some pretty strange notions of what is an image and what not) (bzr r3266)
* Use Inkscape's own code to write coordinates to svg (much nicer fix than ↵Maximilian Albert2007-07-182-38/+13
| | | | | commit #15449) (bzr r3265)
* Make string conversion of box coordinates locale-independent (fixes bug with ↵Maximilian Albert2007-07-182-13/+36
| | | | | languages that use comma instead of decimal point) (bzr r3264)
* Filter effects dialog:Nicholas Bishop2007-07-171-2/+4
| | | | | * Enable duplicating filters (from the popup menu) (bzr r3262)
* A few additions to ensure that editing trefs is not allowed (and doesn't ↵Gail Carmichael2007-07-176-69/+159
| | | | | cause a crash). Also allows all trefs within a selection to be 'unlinked'. (bzr r3261)
* Filter effects dialog:Nicholas Bishop2007-07-172-7/+63
| | | | | * Enables drag-and-drop reordering for filter primitives. Removes any connection conflicts caused by reordering. (bzr r3259)
* Filter effects dialog:Nicholas Bishop2007-07-172-17/+21
| | | | | * Prevent filter primitive connections to primitives that come after the selected primitive. (bzr r3258)
* Filter effects dialog:Nicholas Bishop2007-07-161-16/+28
| | | | | * A coule bug fixes; attempting to connect the first filter primitive to another is no longer allowed, same for attempting to connect the input of a filter primitive to its own result. Still todo is preventing a connection to a later primitive. (bzr r3256)
* fix compiler warning on ordering of init in uri-references.cppJohan B. C. Engelen2007-07-161-1/+1
| | | (bzr r3255)
* Filter effects dialog:Nicholas Bishop2007-07-165-76/+83
| | | | | | * Made a lot of strings translatable * Fixed the filter primitive input settings to work more like other ComboBoxEnums. (bzr r3253)
* fix crash with empty parameter stringbulia byak2007-07-151-0/+3
| | | (bzr r3251)
* Use popplerBob Jamison2007-07-151-1/+1
| | | (bzr r3243)
* Fixed assertion failure with some unset parameters for feComposite & feOffsetNiko Kiirala2007-07-142-4/+14
| | | (bzr r3242)
* Filter effects:Nicholas Bishop2007-07-1414-257/+357
| | | | | | | * As coded by Johan Engelen, made the filter-effect-enums code more generic; the data and conversion classes are now in src/util, filter-specific data is in filter-enums.h * Improved filter_add_primitive so that default values are filled in appropriately to prevent errors or possible crashes (bzr r3241)
* Move check for unlinked paths of 3D box faces to the correct locationMaximilian Albert2007-07-142-20/+24
| | | (bzr r3240)
* Write distinguished corners of 3D boxes to the svg representation from which ↵Maximilian Albert2007-07-148-31/+160
| | | | | | | the box can be recomputed. This is used to fix several bugs related to the editing of boxes resulting from cloning, undo operations or newly opened documents (we had stray pointers to SPPaths before that made Inkscape crash). (bzr r3239)
* Filter effects dialog:Nicholas Bishop2007-07-132-36/+66
| | | | | | * Added new combobox for setting the "in2" attribute in the same way as was already possible for the "in" attribute. * Setting in or in2 to Default now unsets that attribute (bzr r3238)
* Filter effects dialog:Nicholas Bishop2007-07-131-27/+51
| | | | | | * Improved spacing of input connections for primitives with multiple inputs * Added basic support for display of feMerge connections. Doesn't yet display the actual connections since feMergeNodes aren't supported yet. (bzr r3237)
* switch back to cairo pdf importer temporarilybulia byak2007-07-121-2/+2
| | | (bzr r3235)
* Enable the poppler-based PDF import extension by default.miklosh2007-07-121-1/+3
| | | (bzr r3231)
* Initial commit of native poppler-based PDF import.miklosh2007-07-129-0/+4268
| | | (bzr r3230)
* fix for panning and zooming into area in 3D box tool (root_handler of ↵Maximilian Albert2007-07-121-1/+0
| | | | | event_context was not called in some cases) (bzr r3229)
* Filter effects dialog:Nicholas Bishop2007-07-125-68/+146
| | | | | | * Added controls for the composite filter primitive (operator and k1-k4). * Simplified setting the filter attributes to remove duplicated code common for spinsliders and comboboxenums (bzr r3228)
* bug 1243190: add tref element support; limited editing support thus far ↵Richard Hughes2007-07-1113-22/+1007
| | | | | (patch by gbanaszk) (bzr r3227)
* Move 3D axis manipulation functions to separate fileMaximilian Albert2007-07-117-104/+169
| | | (bzr r3226)
* patch by gorodish, fixes bug 1692611 (win32 EMF crash)Josh Andler2007-07-101-1/+10
| | | (bzr r3222)
* add item handler so that right-click works over an item; fixes 1751318bulia byak2007-07-101-0/+25
| | | (bzr r3220)
* shorter and less assuming status message - note that effects are used among ↵bulia byak2007-07-101-1/+1
| | | | | other things for help menu items (bzr r3219)
* move filters dialog to where it makes more sensebulia byak2007-07-101-1/+1
| | | (bzr r3218)
* move the box tool back where it belongs, in shapesbulia byak2007-07-101-1/+1
| | | (bzr r3217)
* Different default styles for non-parallel 3D box facesMaximilian Albert2007-07-104-11/+47
| | | (bzr r3213)
* Create all 3D box faces in the beginning (fixes resizing bug; first step ↵Maximilian Albert2007-07-104-40/+51
| | | | | towards correct handling of degenerate boxes) (bzr r3212)
* More 3D auxiliary/convenience functionsMaximilian Albert2007-07-103-4/+63
| | | (bzr r3211)