| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | UI. Filtered objects count (patch by David Mathog). | Nicolas Dufour | 2012-05-11 | 1 | -0/+1 |
| | | | | | | Translations. Inkscape.pot and French translation update. (bzr r11355) | ||||
| * | Cleaned up display-forward.h, including many redundant usages. | Jon A. Cruz | 2011-10-04 | 1 | -2/+8 |
| | | | | (bzr r10666) | ||||
| * | Obey to dont-scale-strokewidth preference, even when scaling one dimension ↵ | Diederik van Lierop | 2011-09-06 | 1 | -0/+2 |
| | | | | | | | | | to zero or infinite Fixed bugs: - https://launchpad.net/bugs/825840 (bzr r10624) | ||||
| * | Compute visual bounding box only when needed | Krzysztof Kosi??ski | 2011-09-04 | 1 | -0/+2 |
| | | | | (bzr r10618) | ||||
| * | 1) Fix absolute scaling in transform dialog | Diederik van Lierop | 2011-09-04 | 1 | -0/+1 |
| | | | | | | 2) Transform dialog now follows the user prefs for geometric vs. visual bounding box (bzr r10615) | ||||
| * | Completely remove NRRect, NRRectL, in-svg-plane.h | Krzysztof Kosi??ski | 2011-08-27 | 1 | -5/+4 |
| | | | | (bzr r10582.1.6) | ||||
| * | Remove all NRRect use. | Krzysztof Kosi??ski | 2011-08-27 | 1 | -1/+1 |
| | | | | (bzr r10582.1.5) | ||||
| * | Refactor SPItem bounding box methods: remove NRRect usage and make code | Krzysztof Kosi??ski | 2011-08-27 | 1 | -11/+14 |
| | | | | | | using them more obvious. Fix filter region computation. (bzr r10582.1.1) | ||||
| * | Rewrite NRArena -> Inkscape::Drawing. Call render and update | Krzysztof Kosi??ski | 2011-08-07 | 1 | -2/+2 |
| | | | | | | methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25) | ||||
| * | Rewrite NRArenaItem hierarchy into C++ | Krzysztof Kosi??ski | 2011-08-06 | 1 | -9/+6 |
| | | | | (bzr r10347.1.21) | ||||
| * | - rename SPItem::i2d_affine to i2dt_affine, to clarify that it is ↵ | Johan B. C. Engelen | 2011-07-17 | 1 | -1/+1 |
| | | | | | | | | item-to-desktop, not item-to-document. This should make it easier to spot bugs. - tag some instances where the document-to-desktop transform has been hardcoded (bzr r10466) | ||||
| * | Finished cleanup of outdated SP_OBJECT_STYLE C macro. | Jon A. Cruz | 2011-02-22 | 1 | -1/+2 |
| | | | | (bzr r10066) | ||||
| * | update to latest 2geom ! | Johan B. C. Engelen | 2011-02-02 | 1 | -26/+26 |
| | | | | (bzr r10025) | ||||
| * | Merge and cleanup of GSoC C++-ification project. | Jon A. Cruz | 2010-12-12 | 1 | -58/+78 |
| |\ | | | | | (bzr r9945.1.1) | ||||
| | * | This is the first c++ification commit from me. It handles sp-line, ↵ | Abhishek Sharma Public | 2010-06-29 | 1 | -35/+108 |
| | | | | | | | | | | | sp-polyline, sp-item and marks the onset of document c++ification as well. Users can check performace increase with [/usr/bin/time -v inkscape_binary_with_commandline_options]. (bzr r9546.1.1) | ||||
| * | | Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵ | Chris Morgan | 2010-11-17 | 1 | -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) | ||||
| * | Refactoring the snapping API (making it easier to maintain and understand ↵ | Diederik van Lierop | 2010-01-09 | 1 | -6/+4 |
| | | | | | | for the devs) (bzr r8960) | ||||
| * | The snap indicator's tooltip now displays "A to B", whereas before it only ↵ | Diederik van Lierop | 2009-02-20 | 1 | -25/+26 |
| | | | | | | displayed "B". (bzr r7335) | ||||
| * | small 2geomify | Johan B. C. Engelen | 2009-01-07 | 1 | -5/+1 |
| | | | | (bzr r7095) | ||||
| * | object-snapper.cpp | Thomas Holder | 2008-12-20 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | | | * fix snapping to clip/mask with parent transform * replace matrix_to_desktop call sp-item.h sp-item.cpp * improve snapping to clip/mask with parent transform * remove matrix_to_desktop/matrix_from_desktop * use desktop->doc2dt() with sp_item_i2d_affine(...) desktop.h desktop.cpp * new method: dt2doc() selection-chemistry.cpp * remove awkward matrix_to_desktop(matrix_from_desktop(...)) calls (bzr r7016) | ||||
| * | * remove sp_item_i2root_affine and sp_item_i2r_affine and replace all calls by | Thomas Holder | 2008-12-16 | 1 | -2/+0 |
| | | | | | | | | | | | | | sp_item_i2doc_affine or sp_item_i2d_affine respectively * remove sp_root_bbox, root->c2p was considered in the wrong place there * in sp_item_i2doc_affine do not consider SP_ITEM(object)->transform for root node, because <svg> node does not have a transform attribute * fix style scaling for boolean operations (with viewBox) * fix zoom to fit drawing (with viewBox) * fix export area size for "export drawing" (with viewBox) * fix simultaneous movement of clone + original (with viewBox) (bzr r7010) | ||||
| * | remove orphaned NRMatrix wrapper for sp_item_write_transform | Thomas Holder | 2008-12-09 | 1 | -1/+0 |
| | | | | (bzr r6979) | ||||
| * | Merge from fe-moved | Ted Gould | 2008-11-21 | 1 | -4/+4 |
| | | | | (bzr r6891) | ||||
| * | From trunk | Ted Gould | 2008-10-27 | 1 | -2/+3 |
| | | | | (bzr r6885) | ||||
| * | Merging from trunk | Ted Gould | 2008-10-11 | 1 | -19/+19 |
| | | | | (bzr r6884) | ||||
| * | Next roud of NR ==> Geom conversion | Maximilian Albert | 2008-09-18 | 1 | -4/+4 |
| | | | | (bzr r6839) | ||||
| * | More NR ==> Geom conversion (points and some matrices/transforms) | Maximilian Albert | 2008-09-18 | 1 | -1/+1 |
| | | | | (bzr r6836) | ||||
| * | removed unnecessary pointer, changed to by reference. (the pointer was not ↵ | Johan B. C. Engelen | 2008-09-01 | 1 | -2/+2 |
| | | | | | | allowed to be NULL, so reference is better) (bzr r6752) | ||||
| * | remove many unnecessary to_2geom and from_2geom calls | Johan B. C. Engelen | 2008-08-08 | 1 | -1/+0 |
| | | | | (bzr r6593) | ||||
| * | NR::Maybe => boost::optional | Johan B. C. Engelen | 2008-08-05 | 1 | -4/+4 |
| | | | | (bzr r6569) | ||||
| * | SPItem::getBounds now always returns a Geom::Rect boundingbox. | Johan B. C. Engelen | 2008-08-01 | 1 | -1/+1 |
| | | | | (bzr r6517) | ||||
| * | change NR::Matrix to Geom:: for many sp_item_xxx_affine functions | Johan B. C. Engelen | 2008-06-12 | 1 | -10/+13 |
| | | | | (bzr r5915) | ||||
| * | No more NRMatrix or NRPoint. | Jasper van de Gronde | 2008-03-21 | 1 | -1/+1 |
| | | | | (bzr r5149) | ||||
| * | Slightly more 'object-oriented' way to invoke item-specific ↵ | Maximilian Albert | 2008-01-15 | 1 | -0/+5 |
| | | | | | | conversion-to-guides methods (bzr r4499) | ||||
| * | Allow conversion of all selected items to guides (for items other than ↵ | Maximilian Albert | 2008-01-12 | 1 | -0/+2 |
| | | | | | | rectangles or 3D boxes these are simply aligned along the bounding box of the item being converted) (bzr r4467) | ||||
| * | Fix LP #168684 | Diederik van Lierop | 2008-01-06 | 1 | -2/+4 |
| | | | | (bzr r4409) | ||||
| * | + Fix bug #179840, forking of LPEs | Johan B. C. Engelen | 2008-01-02 | 1 | -0/+1 |
| | | | | | | + Groundwork for fixing transforming LPE bugs. TODO: implement the actual transformation of LPE parameters. (bzr r4367) | ||||
| * | avoid code duplication, i.e. use sp_item_snappoints in the object-snapper.cpp | Diederik van Lierop | 2007-09-15 | 1 | -1/+1 |
| | | | | (bzr r3752) | ||||
| * | differentiate the SP_ITEM_REFERENCE_FLAGS, even though it is not currently used | bulia byak | 2007-07-29 | 1 | -2/+3 |
| | | | | (bzr r3339) | ||||
| * | Changes to the selector tool, e.g. option to choose either APPROXIMATE_BBOX ↵ | Diederik van Lierop | 2007-04-08 | 1 | -3/+3 |
| | | | | | | or GEOMETRIC_BBOX (bzr r2833) | ||||
| * | add a snappoint at the rotation-axis of any shape | Diederik van Lierop | 2007-03-30 | 1 | -1/+1 |
| | | | | (bzr r2788) | ||||
| * | Merge further bbox work | MenTaLguY | 2007-03-10 | 1 | -1/+1 |
| | | | | (bzr r2596) | ||||
| * | comment on bbox types | bulia byak | 2007-03-04 | 1 | -1/+4 |
| | | | | (bzr r2544) | ||||
| * | switch from invokeBbox to getBounds (need to fix problems with empty | MenTaLguY | 2007-03-04 | 1 | -2/+1 |
| | | | | | | rect handling, though) (bzr r2536) | ||||
| * | implement new API via wrapper for now | MenTaLguY | 2007-03-04 | 1 | -1/+1 |
| | | | | (bzr r2535) | ||||
| * | Sketch out new bbox API | MenTaLguY | 2007-03-04 | 1 | -0/+7 |
| | | | | (bzr r2534) | ||||
| * | Fixed ungrouping bug where the changed transformation of items was not ↵ | Johan B. C. Engelen | 2006-12-13 | 1 | -2/+3 |
| | | | | | | written to XML. (bzr r2090) | ||||
| * | disconnect mask/ref connections when item is destroyed | bulia byak | 2006-09-12 | 1 | -0/+3 |
| | | | | (bzr r1699) | ||||
| * | SVG 1.1 Conditional Processing Module rendering support (<switch> element, ↵ | Andrius Ramanauskas | 2006-04-20 | 1 | -1/+15 |
| | | | | | | | | requiredReatures/requiredExtensions/systemLanguage attributes). Two more W3C SVG Test Suite testes pass after this change. (bzr r556) | ||||
| * | remember rotation centers, correctly this time (by johncliff and me) | bulia byak | 2006-01-26 | 1 | -4/+9 |
| | | | | (bzr r28) | ||||
