summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2018-06-2018-116/+100
| |
* | Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-1921-128/+126
| |
* | Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-19202-631/+631
| |
* | Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-1861-345/+345
| | | | | | | | | | This reduces the boilerplate required to add a new element to a container.
* | Run clang-tidy’s modernize-use-noexcept pass.Emmanuel Gil Peyrot2018-06-185-15/+15
| | | | | | | | This removes deprecated dynamic exception specifications.
* | Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot2018-06-1848-125/+125
| | | | | | | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call.
* | Run clang-tidy’s modernize-pass-by-value pass.Emmanuel Gil Peyrot2018-06-1838-90/+128
|/ | | | | This avoids having to pass variables by reference before copying them when calling a constructor.
* Update pdf-parser.cppMarc Jeanmougin2018-06-181-4/+0
|
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-18119-162/+162
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-18323-848/+485
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-18676-7558/+7558
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot2018-06-18504-3093/+3093
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* Fix build issue caused by f09962028d017896279b717a6621a4de772d1b4f on GTK+ ↵Emmanuel Gil Peyrot2018-06-181-1/+5
| | | | <3.18.
* ZoomToolbar: C++ify and GtkAction migrationAlexander Valavanis2018-06-178-12/+223
|
* Potential fix for FTBFS introduced in 60ecfba7Alexander Valavanis2018-06-171-0/+5
|
* Move toolbars to ui/toolbarAlexander Valavanis2018-06-1746-124/+105
|
* Minor documentation changes.Tavmjong Bah2018-06-161-8/+20
|
* Increase allowed precision for filter "offset" primitive.Tavmjong Bah2018-06-151-2/+2
|
* Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscapeMarc Jeanmougin2018-06-14142-307/+307
|\
| * Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-12142-307/+307
| | | | | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will.
* | Merge branch 'gdkmm' of gitlab.com:linkmauve/inkscapeMarc Jeanmougin2018-06-1411-113/+92
|\ \
| * | Make shutdown dialogs use gtkmm.Emmanuel Gil Peyrot2018-06-131-56/+37
| | | | | | | | | | | | | | | Fixes a FIXME, by using g_markup_printf_escaped() we can make sure the filename won’t conflict with Pango markup and be wrongly interpreted.
| * | Make info dialog use gtkmm.Emmanuel Gil Peyrot2018-06-131-11/+6
| | |
| * | Replace all deprecated gdk_keymap_get_default() with ↵Emmanuel Gil Peyrot2018-06-126-9/+16
| | | | | | | | | | | | Gdk::Display::get_default()->get_keymap().
| * | Make ToolBase::cursor use gdkmm and smart pointers.Emmanuel Gil Peyrot2018-06-124-23/+16
| | |
| * | Make SPDesktopWidget::window_get_pointer() use gdkmm.Emmanuel Gil Peyrot2018-06-121-9/+13
| | |
| * | Make SPDesktop::setWaitingCursor() use gdkmm.Emmanuel Gil Peyrot2018-06-121-5/+4
| |/
* | Merge branch 'fontselection' of gitlab.com:darktrojan/inkscapeMarc Jeanmougin2018-06-144-5/+24
|\ \
| * | In font list, don't change selection if current font is already selected; ↵Geoff Lankow2018-05-314-5/+24
| | | | | | | | | | | | other minor fixes
* | | Merge branch 'fontmarkup' of gitlab.com:darktrojan/inkscapeMarc Jeanmougin2018-06-142-6/+8
|\ \ \
| * | | Fix three more instances of incorrectly escaped markupGeoff Lankow2018-05-312-6/+8
| |/ /
* | | Merge branch 'patch-1' of gitlab.com:Moini/inkscapeMarc Jeanmougin2018-06-142-2/+2
|\ \ \
| * | | Incorporate some of Mihaela's suggestions.Maren Hachmann2018-05-111-1/+1
| | | |
| * | | Try a different tool tip that hopefully can help users determine what to ↵Maren Hachmann2018-03-081-1/+1
| | | | | | | | | | | | | | | | expect on change of the rendering tile multiplicator parameter.
| * | | Incorporate Eduard's suggestion for Ellipse Undo entry.Maren Hachmann2018-03-081-1/+1
| | | |
| * | | Try to clarify what the new tile size option is for.Maren Hachmann2018-03-021-1/+1
| | | | | | | | | | | | Might still need improvement.
| * | | Suggestion for improved Undo string when changing radii of an ellipse, ↵Maren Hachmann2018-03-021-1/+1
| | | | | | | | | | | | | | | | consistent with other messages and more specific.
* | | | Create at least two radio buttons for a table.Tavmjong Bah2018-06-141-0/+7
| | | | | | | | | | | | | | | | | | | | Calculation of number of radio buttons to create could be "wrong" due to script and language tags of tables.
* | | | Limit style alternatives label width.Tavmjong Bah2018-06-141-0/+7
| | | |
* | | | Add radio buttons for font style alternates.Tavmjong Bah2018-06-142-63/+163
| | | |
* | | | Improvements to the Font Features dialog. Better OpenType coverage.Tavmjong Bah2018-06-115-145/+223
| |_|/ |/| |
* | | Add preview of more OpenType tables.Tavmjong Bah2018-06-071-2/+8
| | |
* | | Add GUI support for 'font-variant-east-asian' property.Tavmjong Bah2018-06-077-12/+421
| | |
* | | Fixes to extension system and simplify the codeJabiertxo Arraiza Cenoz2018-06-069-60/+19
| | |
* | | Remove tables that should not be exposed to user from OpenType table list.Tavmjong Bah2018-06-051-0/+19
| | |
* | | Use all available space for Ordinal label.Tavmjong Bah2018-06-051-1/+1
| | |
* | | Add support for character variant OpenType tags (cv01, cv02, ...).Tavmjong Bah2018-06-051-1/+3
| | |
* | | Prevent widget from getting too big.Tavmjong Bah2018-06-052-14/+41
| | |
* | | Keep Features tab in sync with font in Font tab.Tavmjong Bah2018-06-033-0/+12
| | |
* | | Fixes on convert to paths LPE shapesJabier Arraiza2018-06-023-21/+74
| | |