summaryrefslogtreecommitdiffstats
path: root/src/file-update.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rm unused code now Gtk+ >= 3.22 dependency is setAlexander Valavanis2019-05-261-10/+1
|
* Add comment, rename functionMarc Jeanmougin2019-04-241-3/+14
|
* Add second Tav fixMarc Jeanmougin2019-04-241-1/+16
|
* Fix style and line detectionMarc Jeanmougin2019-04-241-3/+4
|
* Removes style on empty linesMarc Jeanmougin2019-04-241-0/+20
|
* Make InkscapeApplication responsible for managing documents and windows.Tavmjong Bah2019-03-151-44/+1
| | | | Any change from previous behavior is a bug.
* Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot2019-03-061-12/+12
| | | | This makes the code a lot less readable and greppable for no reason.
* Give more descriptive names to document file related variables and functions.Tavmjong Bah2019-02-201-2/+2
| | | | Makes searching through code for them easier.
* Header cleanup.Tavmjong Bah2019-02-121-1/+0
|
* Update error messages.Tavmjong Bah2019-01-151-2/+2
|
* Clarify licensesMax Gaukler2018-11-081-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
* Move some files to 'io' directory.Tavmjong Bah2018-10-131-1/+1
|
* Update file import dialog for old SVG. We couldent add a fixed siize so we ↵Jabier Arraiza2018-09-181-24/+30
| | | | need to play with new lines
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-1/+1
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-1/+1
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-30/+35
| | | | A lot of header clean-up.
* Make file update dialog transient for the main windowEduard Braun2017-11-301-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.
* Fix link for FAQ entry on DPI changeEduard Braun2017-10-151-1/+1
| | | | (see also b862d73dd9a520d02886f295c0313588818513c4)
* Fix build for Gtk < 3.12Alexander Valavanis2017-07-091-0/+6
|
* Update for Gtk alignment changesAlexander Valavanis2017-07-091-5/+6
|
* Porting the pre-92 file update message from 0.92.x to trunk:Marc Jeanmougin2017-06-041-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)
* Minor refactor: check setlocale() occurences and make sure we do not ↵Eduard Braun2017-05-071-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)
* temporarily sets decimal separator locale to C to fix files correctly (Users ↵Marc Jeanmougin2017-02-101-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)
* forward-port from 0.92.x the line height conversion from <.92 to >=.92Marc Jeanmougin2017-02-051-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)