summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/wpg-input.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-11-08Clarify licensesMax Gaukler1-2/+3
- 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-01Remove #include "config.h" wherever possibleEduard Braun1-1/+4
2018-10-01Use _WIN32 instead of WIN32Eduard Braun1-1/+1
The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
2018-06-19Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot1-1/+1
2018-06-18Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot1-1/+1
This renames most C <*.h> includes into C++ <c*> includes.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-2/+2
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-4/+4
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-4/+4
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-1/+1
A lot of header clean-up.
2018-01-08Misc. typosluz.paz1-1/+1
Found via `codespell`
2017-02-11Fix a memory leak introduced in r15421 and r15501 respectivelyEduard Braun1-2/+5
(bzr r15505)
2017-01-17Partially fix opening of librevenge based input formats (cdr/vsd/wpg) on ↵Eduard Braun1-0/+7
Windows if the filename contains non-ASCII characters The problem is that "RVNGFileStream" uses "fopen()" internally which only supports ANSI filenames on Windows (i.e. a complete fix would require upstream code changes). By using "g_win32_locale_filename_from_utf8()" the problem can be worked around in most cases, though: * the filename is converted to the current codepage (i.e. all 255 characters that are available in the current character encoding are allowed in the filename) * even if the filename contains a character that's not available in the current character encoding it's attempted to use the alternative short (8.3) file name instead Therefore the input operation will only fail in the unlikely case that the filename contains a character not available in the current ANSI code page while at the same time short file names are disabled on the file system (which is not the case in standard configurations). Fixed bugs: - https://launchpad.net/bugs/1656763 - https://launchpad.net/bugs/1656763 (bzr r15421)
2014-11-26Change getDefaultUnit() to getDisplayUnit() to better reflect value returned ↵Tavmjong Bah1-1/+1
by function. (bzr r13774)
2014-08-26librevenge: update to latest patch from bug #1323592 (support old and new ↵su_v1-10/+40
versions of libwpg, libcdr and libvisio ) (bzr r13398.1.7)
2014-05-27Port inkscape to librevenge framework for WPG, CDR and VSD importsFridrich Strba1-28/+13
(bzr r13398.1.1)
2013-10-27add some nullptr checking, should fix crash (couldn't test)Johan B. C. Engelen1-1/+1
Fixed bugs: - https://launchpad.net/bugs/1243011 (bzr r12733)
2013-10-24fix bug "some of the locale-based templates cause objects to be resized when ↵Johan B. C. Engelen1-1/+1
default units are changed" #1236257 Fixed bugs: - https://launchpad.net/bugs/1236257 (bzr r12717)
2013-09-22Fix adding viewBox to new documents.Matthew Petroff1-0/+8
Fixed bugs: - https://launchpad.net/bugs/1228660 - https://launchpad.net/bugs/1228693 - https://launchpad.net/bugs/1228852 (bzr r12575)
2012-04-20cppcheck / fix issue in Dutch translationKris De Gussem1-5/+2
(bzr r11270)
2012-02-29Header tidying, suppress all gdk deprecation errors in gtkmmAlex Valavanis1-0/+1
(bzr r11030)
2011-06-22Warning cleanup.Jon A. Cruz1-2/+2
(bzr r10339)
2011-06-11Update to win32 build defines for libwpg issue.Jon A. Cruz1-0/+5
(bzr r10269)
2011-06-10Modified build to conditionally build against either libwpg 0.1.x or 0.2.x. ↵Jon A. Cruz1-1/+16
Fixes bug #778951. Fixed bugs: - https://launchpad.net/bugs/778951 (bzr r10266)
2010-07-01C++fied SPDocument addedAbhishek Sharma Public1-1/+1
(bzr r9546.1.2)
2010-06-29This is the first c++ification commit from me. It handles sp-line, ↵Abhishek Sharma Public1-1/+1
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)
2009-08-06Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert1-2/+2
which cannot be fixed easily. (bzr r8422)
2009-08-05SPDocument->Documentjohnce1-2/+2
(bzr r8408)
2008-04-21r19076@shi: ted | 2008-04-21 15:42:45 -0700Ted Gould1-1/+1
Core of having a real namespace for Inkscape extensions. r19077@shi: ted | 2008-04-21 15:50:12 -0700 First layer of adding NS r19078@shi: ted | 2008-04-21 15:56:03 -0700 Whew, doing the rest of them. (bzr r5483)
2007-12-21fix linkingJohan B. C. Engelen1-0/+1
(bzr r4272)
2007-12-21compile depending on WITH_LIBWPGtheAdib1-0/+4
(bzr r4268)
2007-10-31r16914@shi: ted | 2007-10-30 21:58:05 -0700Ted Gould1-4/+4
Switching everything over to a linked in libwpg (bzr r3992)
2007-02-25r14551@tres: ted | 2007-02-24 15:22:47 -0800Ted Gould1-255/+10
Merging in the latest libwpg and some code chages to make it work with everything. (bzr r2433)
2007-02-19Cleaned up DOS line ends that had snuck in.Jon A. Cruz1-365/+365
(bzr r2399)
2006-07-31r13127@tres: ted | 2006-07-30 22:18:42 -0700Ted Gould1-0/+4
Updates from the libwpg development CVS (bzr r1528)
2006-07-31r13109@tres: ted | 2006-07-30 22:11:20 -0700Ted Gould1-2/+17
Making this all work with the Inkscape world view. (bzr r1526)
2006-07-31r13108@tres: ted | 2006-07-30 12:27:51 -0700Ted Gould1-32/+80
Builds and links. Doesn't work, but builds and links. (bzr r1525)
2006-07-31r13107@tres: ted | 2006-07-30 11:47:41 -0700Ted Gould1-20/+20
Getting the basic build stuff in. No we're building libwpg (bzr r1524)
2006-07-31r13106@tres: ted | 2006-07-30 11:10:02 -0700Ted Gould1-0/+298
Stealing some example code from the libwpg guys to make this alot easier. (bzr r1523)