summaryrefslogtreecommitdiffstats
path: root/src/file-update.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-11-03refactor: Eliminate SPIString::value_defaultThomas Holder1-1/+1
- eliminate value_default - make value private (-> _value) - add value() method
2019-08-28Unify translatable inkscape.org links and add translation commentsGyuris Gellért1-0/+2
2019-08-23Eliminate clang warningsThomas Holder1-20/+20
-Wconstant-conversion -Wenum-compare-switch -Wpointer-bool-conversion -Wundefined-bool-conversion -Wunused-value Excluding deprecation warnings and 3rdparty directory.
2019-05-26Rm unused code now Gtk+ >= 3.22 dependency is setAlexander Valavanis1-10/+1
2019-04-24Add comment, rename functionMarc Jeanmougin1-3/+14
2019-04-24Add second Tav fixMarc Jeanmougin1-1/+16
2019-04-24Fix style and line detectionMarc Jeanmougin1-3/+4
2019-04-24Removes style on empty linesMarc Jeanmougin1-0/+20
2019-03-15Make InkscapeApplication responsible for managing documents and windows.Tavmjong Bah1-44/+1
Any change from previous behavior is a bug.
2019-03-06Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot1-12/+12
This makes the code a lot less readable and greppable for no reason.
2019-02-20Give more descriptive names to document file related variables and functions.Tavmjong Bah1-2/+2
Makes searching through code for them easier.
2019-02-12Header cleanup.Tavmjong Bah1-1/+0
2019-01-15Update error messages.Tavmjong Bah1-2/+2
2018-11-08Clarify licensesMax Gaukler1-0/+9
- 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-13Move some files to 'io' directory.Tavmjong Bah1-1/+1
2018-09-18Update file import dialog for old SVG. We couldent add a fixed siize so we ↵Jabier Arraiza1-24/+30
need to play with new lines
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-1/+1
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-1/+1
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-1/+1
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-30/+35
A lot of header clean-up.
2017-11-30Make file update dialog transient for the main windowEduard Braun1-0/+1
This ensures the (modal) dialog is positioned on top of the Inkscape window in which the file will be opened. Before it could happen that the dialog was not even on the same monitor as the Inkscape window leaving Inkscape in a seemingly inaccessible state if it was overlooked.
2017-10-15Fix link for FAQ entry on DPI changeEduard Braun1-1/+1
(see also b862d73dd9a520d02886f295c0313588818513c4)
2017-07-09Fix build for Gtk < 3.12Alexander Valavanis1-0/+6
2017-07-09Update for Gtk alignment changesAlexander Valavanis1-5/+6
2017-06-04Porting the pre-92 file update message from 0.92.x to trunk:Marc Jeanmougin1-1/+442
New dialog when opening pre-0.92 files (with 90 dpi). I implemented it mostly based on mizmo's UI proposal (thanks!), with additional inputs from su_v with a few bugfixes from jabiertxof Also adds a commandline option --convert-dpi-method=[none|scale-viewbox|scale-document] to be able to batch convert files. Fixed bugs: - https://launchpad.net/bugs/1659229 (bzr r15729)
2017-06-04Porting the pre-92 file update message from 0.92.x to trunk:Marc Jeanmougin1-1/+442
New dialog when opening pre-0.92 files (with 90 dpi). I implemented it mostly based on mizmo's UI proposal (thanks!), with additional inputs from su_v with a few bugfixes from jabiertxof Also adds a commandline option --convert-dpi-method=[none|scale-viewbox|scale-document] to be able to batch convert files. Fixed bugs: - https://launchpad.net/bugs/1659229 (bzr r15703.1.26)
2017-05-07Minor refactor: check setlocale() occurences and make sure we do not ↵Eduard Braun1-1/+4
setlocale() without resetting it to the initial default) - inkview.cpp : This occurence in fact does *not* seem to be needed anymore (despite what the comment says) - main.cpp : The (commented out) occurence is unnecessary as it is called as part of gtk_init_check() (bzr r15674)
2017-02-10temporarily sets decimal separator locale to C to fix files correctly (Users ↵Marc Jeanmougin1-0/+3
with a comma decimal separator in their locale had files broken by the line update fix) Fixed bugs: - https://launchpad.net/bugs/1663075 (bzr r15503)
2017-02-05forward-port from 0.92.x the line height conversion from <.92 to >=.92Marc Jeanmougin1-0/+173
Code written by su_v in python as an extension, ported to c++ by Mc, some fixes added by bryce. http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15338 http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15339 http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15350 http://bazaar.launchpad.net/~inkscape.dev/inkscape/0.92.x/revision/15351 Option to disable it is called --no-convert-text-baseline-spacing The terminology "convert" is chosen as a jargon word to be used for all such legacy file conversions. The "--no-XXX" naming style is adopted from the convention used by other software such as GIMP. (bzr r15481)