summaryrefslogtreecommitdiffstats
path: root/src/display (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * use visual bbox in calculation of filter area (Bug 1188336)Alvin Penner2013-06-101-2/+4
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1188336 (bzr r12362)
| * Added configure/ifdef guards to only bring in the needed #include if glibmm ↵Jon A. Cruz2013-06-062-0/+4
| | | | | | | | | | has it. (bzr r12353)
| * Correct to compile against recent gtkmm, including updated macports ↵Jon A. Cruz2013-06-042-0/+4
| | | | | | | | | | | | | | | | versions. Fixes bug #1179338. Fixed bugs: - https://launchpad.net/bugs/1179338 (bzr r12346.1.1)
* | changes_2013_05_22a.patch:David Mathog2013-06-195-20/+409
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* Fixed logic error confusing bitwise and with logical and.Jon A. Cruz2013-04-291-2/+2
| | | | | Whitespace cleanup to make the issue easier to spot. (bzr r12311)
* Fix some broken Vim modelinesAlex Valavanis2013-04-113-3/+3
| | | (bzr r12275)
* Implement read/write of image-rendering property. To be used to control scaling.Tavmjong Bah2013-04-081-0/+7
| | | (bzr r12272)
* Workaround usage of deprecated glib symbols in 3rd party librariesAlex Valavanis2013-03-253-3/+4
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1122774 (bzr r12243)
* Fix more clang warningsAlex Valavanis2013-03-232-7/+7
| | | (bzr r12235)
* Clarified choice of downsampling routine.Jasper van de Gronde2013-03-211-1/+3
| | | (bzr r12228)
* Handle bitmap downsampling ourselves, see bug #804162 in launchpad.Jasper van de Gronde2013-03-212-12/+115
| | | (bzr r12227)
* Drop checks for ancient dependency versions. These are satisfied elsewhere.Alex Valavanis2013-03-161-3/+0
| | | (bzr r12213)
* Warning cleanupAlex Valavanis2013-03-161-5/+5
| | | (bzr r12211)
* Fix even more forward declaration tagsAlex Valavanis2013-03-155-10/+10
| | | (bzr r12206)
* Fix another load of forward declaration tagsAlex Valavanis2013-03-146-6/+5
| | | (bzr r12205)
* Fix another tonne of forward declaration tagsAlex Valavanis2013-03-146-6/+7
| | | (bzr r12204)
* Kill ancient gcc version check in configure.ac and fix a load of broken ↵Alex Valavanis2013-03-141-1/+1
| | | | | forward declarations (bzr r12203)
* Drop more Gtk::Table usageAlex Valavanis2013-03-082-11/+100
| | | (bzr r12180)
* Use ink_cairo_surface_filter when converting surfaces between linearRGB and ↵Tavmjong Bah2013-03-031-27/+64
| | | | | | | sRGB. Huge speed advantage when using multiple threads. (bzr r12170)
* Fix build with C++11Alex Valavanis2013-03-021-0/+5
| | | | | | Fixed bugs: - https://launchpad.net/bugs/858814 (bzr r12166)
* Bug #561503: fix typo in earlier fix (r11133)vaifrax2013-02-151-1/+1
| | | (bzr r12128)
* Fix for Bug #1110397: Opacity of clipped group is ignored (regression)Ted Janeczko2013-02-011-2/+4
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1110397 (bzr r12086)
* code cleanup. don't use pointers when you don't have to. use const whereever ↵Johan B. C. Engelen2013-01-305-38/+38
| | | | | you can. (bzr r12077)
* Filter color values always defined as sRGB (or ICC).Tavmjong Bah2013-01-297-10/+97
| | | (bzr r12070)
* More GObject boilerplate reductionAlex Valavanis2013-01-262-94/+45
| | | (bzr r12065)
* Fix multiple instances of ci_key.Jon A. Cruz2013-01-202-9/+11
| | | (bzr r12045)
* fix warningJohan B. C. Engelen2013-01-171-1/+1
| | | (bzr r12041)
* constJohan B. C. Engelen2013-01-172-9/+9
| | | (bzr r12040)
* make grayscale viewmode color factors configurable.Johan B. C. Engelen2013-01-132-14/+20
| | | (bzr r12022)
* Warning and dead code cleanup.Jon A. Cruz2013-01-111-0/+3
| | | (bzr r12014)
* Speed up canvas item drawing for GTK+ 3Alex Valavanis2012-12-301-27/+20
| | | (bzr r11999)
* Implement GTK+ 3 drawing for zoom correction ruler in preferences dialogAlex Valavanis2012-12-281-15/+3
| | | (bzr r11995)
* Move some code from filter primitives to cairo-utils.cpp. Fix bug in ↵Tavmjong Bah2012-12-2319-214/+40
| | | | | lighting primitives. (bzr r11976)
* Add support for color-interpolation-filters = linearRGB.Tavmjong Bah2012-12-2219-5/+352
| | | (bzr r11972)
* Add utilities to tag a cairo surface with color interpolation value.Tavmjong Bah2012-12-222-0/+124
| | | (bzr r11971)
* Minor changes.Tavmjong Bah2012-12-221-1/+1
| | | (bzr r11969)
* re-add Grayscale color modeJohan B. C. Engelen2012-12-133-41/+79
| | | | | | Fixed bugs: - https://launchpad.net/bugs/885048 (bzr r11953)
* stacked clip paths. patch by Ted Janeczko for Bug 1067271Alvin Penner2012-12-091-16/+11
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1067271 (bzr r11943)
* Revert r11914, better fix for bug #955141 coming.Tavmjong Bah2012-12-091-27/+2
| | | (bzr r11940)
* Fix for bug #790192, the unclipped alpha component was used for clipping the ↵Jasper van de Gronde2012-12-061-4/+5
| | | | | colour components. (bzr r11935)
* Fix for #955141: Converting clipped object to pattern produces rasterised ↵Tavmjong Bah2012-11-292-2/+29
| | | | | pattern. (bzr r11914)
* Fix for 1073128 : Command line PNG export fails if FeFlood filter primitive ↵John Smith2012-11-291-2/+1
| | | | | is present (bzr r11913)
* Update to current trunkTed Gould2012-11-2519-141/+155
|\ | | | | (bzr r11804.1.8)
| * UI. Fix for Bug #1072007 (Mouse scroll zoom depends on if the cursor is over ↵Nicolas Dufour2012-11-231-2/+6
| | | | | | | | | | an object). (bzr r11893)
| * cppcheck: Fix a couple more C-style pointer casts and inefficient ↵Alex Valavanis2012-11-152-4/+4
| | | | | | | | | | vector-emptiness checking (bzr r11872)
| * cppcheck: Convert more C-style pointer casts to GObject or C++Alex Valavanis2012-11-112-36/+33
| | | | | | (bzr r11867)
| * Change outline mode rendering tolerance from 1.25 to 0.5.Krzysztof Kosi??ski2012-11-062-2/+2
| | | | | | | | | | Fixes disappearing lines in newer versions of Cairo. (bzr r11862)
| * Fix for 1068763 : Opening 'File > Document Properties' dirties current documentJohn Smith2012-10-311-2/+4
| | | | | | (bzr r11855)
| * cppcheck: More C-style pointer castingAlex Valavanis2012-10-284-11/+13
| | | | | | (bzr r11844)
| * cppcheck: get rid of more C-style pointer castsAlex Valavanis2012-10-275-15/+15
| | | | | | (bzr r11840)