summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/odf.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-07-01Fix various minor typosYuri Chornoivan1-1/+1
2019-04-06More document.h cleanup.Tavmjong Bah1-2/+2
2019-02-20Give more descriptive names to document file related variables and functions.Tavmjong Bah1-1/+1
Makes searching through code for them easier.
2018-11-18Fix stream class locationsAlexander Valavanis1-2/+2
2018-11-16Fix format stringAlexander Valavanis1-1/+1
2018-11-08Clarify licensesMax Gaukler1-23/+12
- 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-11-07fix bug 1793940 ODG image exportThomas Holder1-57/+28
Fixes handling of relative image URIs and data URIs for OpenDocument drawing (*.odg) export.
2018-10-06Misc. typosluz.paz1-1/+1
Found via `codespell`
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-6/+0
2018-09-23fix .odg and .fx export with inverted y-axisThomas Holder1-15/+9
2018-06-18Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot1-2/+2
This makes it clearer whether an integer or a boolean has to be passed in this specific call.
2018-06-18Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot1-4/+4
This renames most C <*.h> includes into C++ <c*> includes.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-7/+7
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-14/+14
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-14/+14
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-11/+11
A lot of header clean-up.
2018-01-24Fix handling of filenames of linked images in .odg exportEduard Braun1-4/+1
- export of .odg files was completely broken on Windows as "documentUri = Inkscape::URI(filename);" always failed (Windows paths are never valid URIs because of '\') - Linked images did not seem to be working on any OS (probably regression in 6f844ef457690c841b0be91d70b1e54b61c04812) I assume support for linked images is still sketchy but seems to work in the most common cases; support for embedded images seems to be non-existent, though. Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/1654034
2017-11-07Misc. typosUnknown1-2/+2
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
2017-03-20Implement rotation via desktop to window affine.Tavmjong Bah1-8/+1
Remove rotation via viewbox. Still some work to do... (bzr r15603)
2016-11-05Add exportersJabier Arraiza Cenoz1-1/+8
(bzr r15142.1.32)
2016-08-17Use M_PI, M_PI_2. We use these constants everywhere so if they are not ↵Tavmjong Bah1-4/+1
defined we are already in trouble. No need to define them ourselves (except maybe in shared libraries). (bzr r15063)
2015-04-272Geom sync - initial commitKrzysztof Kosi??ski1-3/+2
(bzr r14059.2.1)
2014-02-26Remove DOM directory and reduce size of inkscape. Use Inkscape::URI and save ↵Martin Owens1-13/+6
ziptool to utils. (bzr r13047.1.5)
2013-08-27Added viewBox implement document unit support.Matthew Petroff1-1/+2
(bzr r12475.1.2)
2013-08-03Cleaned up.Markus Engel1-1/+1
(bzr r11608.1.117)
2013-06-21odf metadata - let's begin with a first step to full ODF compatibilityKris De Gussem1-17/+27
(bzr r12383)
2013-04-20minor odg export updateKris De Gussem1-37/+32
(bzr r12285.1.1)
2013-04-12odg export: some work on gradientsKris De Gussem1-53/+34
(bzr r12276)
2013-04-03odf export: code clean up and preparatory work to allow gradients in export. ↵Kris De Gussem1-661/+374
Now only linear fill gradients are shown (not taking orientation and position into account). part of bug #474956 (odg export still doesn't work) (bzr r12264)
2013-03-11Drop duplicate io code ( Bug #1120585 )Kris De Gussem1-11/+7
(bzr r12192)
2013-03-11fix build warnings / cppcheck ( Bug #1120585 )Kris De Gussem1-34/+42
(bzr r12191)
2013-03-08Preparation to merge /dom/io and /io code (bug #1120585 )Kris De Gussem1-44/+68
(bzr r12184)
2013-03-03ODF output: write correct Inkscape version number to metadataKris De Gussem1-26/+6
(bzr r12169)
2012-11-11cppcheck: Convert more C-style pointer casts to GObject or C++Alex Valavanis1-1/+1
(bzr r11867)
2012-06-07cppcheckKris De Gussem1-3/+7
(bzr r11465)
2012-02-15cppcheckKris De Gussem1-3/+0
(bzr r10977)
2011-10-27Fixing more broken and split doc comments.Jon A. Cruz1-1/+1
(bzr r10697)
2011-10-15cppcheckKris De Gussem1-6/+6
(bzr r10678)
2011-08-27Refactor SPItem bounding box methods: remove NRRect usage and make codeKrzysztof Kosi??ski1-10/+5
using them more obvious. Fix filter region computation. (bzr r10582.1.1)
2011-07-17- rename SPItem::i2d_affine to i2dt_affine, to clarify that it is ↵Johan B. C. Engelen1-3/+3
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)
2011-02-02update to latest 2geom !Johan B. C. Engelen1-19/+19
(bzr r10025)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-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)
2010-07-14SPShape c++ified to the extent it was possible and more changes done for XML ↵Abhishek Sharma Public1-1/+1
privatisation. Major changes yet to come. (bzr r9546.1.7)
2010-07-01C++fied SPDocument addedAbhishek Sharma Public1-2/+2
(bzr r9546.1.2)
2010-06-29This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public1-2/+2
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)
2010-03-09Initial F&S dialog setting of swatch colors.Jon A. Cruz1-1/+1
(bzr r9169)
2010-03-08Cleanup of gradients and stops.Jon A. Cruz1-1/+1
(bzr r9163)
2010-03-06New tab in Fill&Stroke dialog for swatch fills.Jon A. Cruz1-1/+1
(bzr r9153)
2009-12-16Patches 3-11 from 488862 for a number of memleaks and ↵Josh Andler1-2/+2
allocation/deallocation issues. (bzr r8891)
2009-08-06Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert1-1/+1
which cannot be fixed easily. (bzr r8422)