summaryrefslogtreecommitdiffstats
path: root/src/ui/cache/svg_preview_cache.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-02modernize loopsMarc Jeanmougin1-4/+3
2018-11-08Clarify licensesMax Gaukler1-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
2018-10-22Remove 'document-private.h' where not needed plus some other header cleanup.Tavmjong Bah1-1/+0
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-4/+0
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot1-2/+1
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-4/+4
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-2/+2
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-2/+2
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-2/+4
A lot of header clean-up.
2016-05-03Correct comment.Tavmjong Bah1-1/+1
(bzr r14869)
2014-02-08DrawingContext: change variable names ct to dc (bug #1272073)David Mathog1-2/+2
Fixed bugs: - https://launchpad.net/bugs/1272073 (bzr r13009)
2013-09-13Improve the functions which create GdkPixbuf from Cairo surfaceKrzysztof Kosi??ski1-8/+11
and vice versa. Simplifies some code. Also introduce proper refcounting into svg_preview_cache.cpp and fix its users. (bzr r12512)
2013-03-29Header cleanupAlex Valavanis1-1/+0
(bzr r12258)
2012-08-20Fix for 165865 : markers must take object's stroke colorJohn Smith1-0/+8
(bzr r11614)
2011-12-08Switch to top-level glib headers. Thanks to DimStar for patchAlex Valavanis1-1/+1
Fixed bugs: - https://launchpad.net/bugs/898538 (bzr r10762)
2011-08-07Rewrite NRArena -> Inkscape::Drawing. Call render and updateKrzysztof Kosi??ski1-5/+5
methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25)
2011-08-06Rewrite NRArenaItem hierarchy into C++Krzysztof Kosi??ski1-12/+7
(bzr r10347.1.21)
2011-07-22Replace direct use of Cairo contexts and surfaces in the rendering treeKrzysztof Kosi??ski1-24/+26
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)
2011-07-13Fix crashes in print previewKrzysztof Kosi??ski1-2/+1
Fixed bugs: - https://launchpad.net/bugs/806105 (bzr r10450)
2011-06-23Remove more of libnrKrzysztof Kosi??ski1-0/+1
(bzr r10347.1.2)
2011-02-02update to latest 2geom !Johan B. C. Engelen1-1/+1
(bzr r10025)
2010-08-15Make nr_arena_invoke_render expect an already transformed context,Krzysztof Kosi??ski1-0/+1
to remove a limitation to integer translations imposed by NRRectL (bzr r9508.1.68)
2010-08-14Completely remove NRPixBlockKrzysztof Kosi??ski1-27/+16
(bzr r9508.1.67)
2010-08-04Wholesale cruft removal part 1Krzysztof Kosi??ski1-0/+1
(bzr r9508.1.44)
2009-02-19Make all icons themable (except the filter icons).Krzysztof Kosi??ski1-1/+0
(bzr r7332)
2008-10-11Merging from trunkTed Gould1-1/+1
(bzr r6884)
2008-08-08remove many unnecessary to_2geom and from_2geom callsJohan B. C. Engelen1-1/+1
(bzr r6593)
2008-08-04NR:: => Geom:: for much of src/ui and src/widgetsJohan B. C. Engelen1-7/+7
(bzr r6561)
2008-03-21No more NRMatrix or NRPoint.Jasper van de Gronde1-4/+3
(bzr r5149)
2007-11-08warning cleanupJon A. Cruz1-3/+3
(bzr r4043)
2007-03-01API change: render methods now take a cairo_t (not yet used)bulia byak1-1/+1
(bzr r2472)
2007-02-21Fixes issue where a modified stock marker's preview image appears in theBryce Harrington1-4/+8
marker dropdown with the same preview image as the unmodified stock marker. This adds the source document's uri to the cache index. (bzr r2413)
2007-02-20Moving cache management code from .h to .cpp.Bryce Harrington1-0/+47
Making the marker dropdowns static so they can be updated. (bzr r2403)
2007-02-20Moving functions from svg_preview_cache.h to a new .cppBryce Harrington1-4/+26
(bzr r2402)
2007-02-20Partial fix for bug 980157.Bryce Harrington1-0/+78
This commit disables the code that prevents stock markers from appearing at the top of the marker menu, as discussed in the bug report. Additionally, this patch factors out the pixmap rendering code, which is nearly identical to the rendering code in icon.cpp (and perhaps elsewhere). (bzr r2401)