summaryrefslogtreecommitdiffstats
path: root/src/display/drawing-context.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add export/import PDF blend modes and add isolation modifierJabier Arraiza2019-10-191-0/+1
|
* 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
* New "Outline thin strokes" view mode which draws thin strokes in outline ↵Rick Yorgason2018-10-181-0/+2
| | | | mode so they're easier to see, while still drawing everything else normally. Very useful for making hairline strokes (0.001") for laser cutters.
* Fix bug #167900Yuki Hoshino2018-08-301-0/+1
| | | | | | | | | https://bugs.launchpad.net/inkscape/+bug/167900 - Tiled imported bitmap textures have errors, also exported By the default extend mode CAIRO_EXTEND_NONE, draw white on a pattern image edge with CAIRO_FILTER_GOOD. Draw an image with CAIRO_EXTEND_PAD.
* Minor include file cleanup.Tavmjong Bah2018-01-231-2/+0
|
* More header cleanupLiam P. White2014-09-061-3/+3
| | | (bzr r13341.1.198)
* Add closePath().Tavmjong Bah2014-05-111-0/+1
| | | (bzr r13341.1.6)
* DrawingContext: change variable names ct to dc (bug #1272073)David Mathog2014-02-081-3/+3
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1272073 (bzr r13009)
* Partial fix for blocker bug 1163449: "Imported bitmap appear blurry when ↵Tavmjong Bah2013-11-121-0/+4
| | | | | | | | zoomed in" Setting style to include "image-rendering:optimizeSpeed" will cause nearest neighbor filter to be used in downscaling. (bzr r12796)
* changes_2013_05_22a.patch:David Mathog2013-06-191-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Resolves issue of bug #988601 message 170 (Support of 'Unset' styles in EMF export). 2. Implements CSS 3 (and CSS 2) text-decoration support. Note that it does not yet provide any method of adding these features - at present it just shows whatever is in the SVG. This new code is also used to display EMF/WMF strike-through and underline text decorations when these files are read in. Those decorations may also be written out to EMF/WMF. Other text decoration features, like overline, or dotted lines, are dropped. For SVG text-decoration -line, -style, -color are all implemented. CSS3 provides two ways to represent the same state, this code uses the compound text-decoration method rather than the 3 fields method. Also it leaves out keywords that are not needed and would break backwards compatibility. For instance: text-decoration: underline solid is valid, but would break CSS2. Solid is the default, so that sort of case is written as: text-decoration: underline If the state is CSS3 specific all of the needed fields are of course include, like text-decoration: underline wavy red 3. It incorporates the fix for bug 1181326 (Text edit mishandles span of just colored spaces) 4. It incorporates further changes to text editing so that style can be changed on spans consisting of only spaces when text decorations are present in the span. 5. It incorporates code to disable text decorations when text so marked is mapped onto a path. 6. Fixed more bugs in Hebrew language support than I can remember. Hebrew language export/import to EMF now works quite well. (See the examples in libTERE v 0.7.) WMF does not support unicode and for all intents and purposes Inkscape has no way to read or write Hebrew to it. Some of more important things that now work that didn't (or didn't always): Hebrew diacritical marks, R/L/center justification, and bidirectional text. The Hebrew fonts "Ezra SIL" and "EZRA SIL SR" should be installed before viewing the libTERE examples, otherwise font substitutions will cause some text shifts. 7. Implemented font failover in Text Reassemble, which makes the process more robust. (Again, see the examples in libTERE. ) (bzr r11668.1.71)
* Fix for #955141: Converting clipped object to pattern produces rasterised ↵Tavmjong Bah2012-11-291-0/+2
| | | | | pattern. (bzr r11914)
* Next pass of doxygen @brief cleanup.Jon A. Cruz2011-10-021-1/+1
| | | (bzr r10658)
* Use cache even if only part of the redraw region is cleanKrzysztof Kosi??ski2011-08-091-0/+3
| | | (bzr r10347.1.28)
* Per-item render cache.Krzysztof Kosi??ski2011-07-281-0/+2
| | | | | Cache some offscreen data to facilitate smoother navigation. (bzr r10347.1.20)
* Replace direct use of Cairo contexts and surfaces in the rendering treeKrzysztof Kosi??ski2011-07-221-0/+123
with wrappers which keep some extra information about the surface, amd NRRect and NRRectL use with Geom::Rect and Geom::IntRect. Should simplify implementing filter primitive subregions. (bzr r10347.1.17)