summaryrefslogtreecommitdiffstats
path: root/src/widgets (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use monospace digits font in messages and spinbuttonsJabier Arraiza2018-11-031-4/+6
|
* Remove 'document-private.h' where not needed plus some other header cleanup.Tavmjong Bah2018-10-225-5/+0
|
* Renamed "Outline thin strokes" to "visible hairlines" to make the intent ↵Rick Yorgason2018-10-181-2/+2
| | | | clearer.
* New "Outline thin strokes" view mode which draws thin strokes in outline ↵Rick Yorgason2018-10-181-0/+2
| | | | mode so they're easier to see, while still drawing everything else normally. Very useful for making hairline strokes (0.001") for laser cutters.
* Removal of code but breaks gradientsMartin Owens2018-10-052-6/+8
|
* Move macros.h and remove unneeded macrosEduard Braun2018-10-013-3/+2
|
* Remove #include "config.h" wherever possibleEduard Braun2018-10-0115-52/+1
|
* Move GTKMM_CHECK_VERSION from config.h to it's own headerEduard Braun2018-10-012-0/+4
| | | | | Avoids having to recompile most of the Inkscape codebase whenever gtkmm is updated.
* Remove #include "config.h" from header files where possibleEduard Braun2018-09-249-32/+4
|
* Fix window resize canvas orientation interferenceThomas Holder2018-09-211-1/+4
| | | | https://bugs.launchpad.net/inkscape/+bug/1792514
* Remove sp-xmlview-attr with attrdialog (C++) and improve interfaceMartin Owens2018-09-143-339/+0
|
* Remove colors from gtklistviewMartin Owens2018-09-122-7/+6
|
* Allow adding new propertiesMartin Owens2018-09-122-12/+68
|
* New option to invert y-axisThomas Holder2018-09-121-2/+6
| | | | | | | | | Replaces all hard coded or implicit desktop coordinate usage with doc2dt multiplication. New global preference: Interface > Origin at upper left https://bugs.launchpad.net/inkscape/+bug/170049
* Refactor xml editor, improve UI and prepare for future additionsMartin Owens2018-09-115-230/+93
|
* Fix bug pointed by suv in ↵Jabiertxof2018-08-171-1/+1
| | | | https://gitlab.com/inkscape/inkscape/merge_requests/294#note_95077426
* Fix bug pointed by moini in ↵Jabiertxof2018-08-093-2/+3
| | | | https://gitlab.com/inkscape/inkscape/merge_requests/294#note_93146271
* Fixes pointed by TavJabier Arraiza2018-08-051-9/+2
|
* coding style fixesJabier Arraiza2018-08-052-5/+7
|
* Fixes compiling bugsJabier Arraiza2018-08-051-3/+9
|
* Refactor with Tav helpJabier Arraiza2018-08-052-6/+18
|
* Revert changesJabier Arraiza2018-08-052-44/+9
|
* Allow inkscape handle units and percent in dasharray and dashoffset. Add ↵Jabier Arraiza2018-08-052-9/+44
| | | | pref optional to scale dashes on stroke scale
* DropperToolbar: GtkAction migrationAlexander Valavanis2018-07-293-1/+19
|
* Fixing coding styleJabier Arraiza2018-07-212-37/+20
|
* adding gtk-themeJabier Arraiza2018-07-2111-46/+65
|
* Move global functions into SPImage methods.Emmanuel Gil Peyrot2018-06-211-1/+1
|
* Move global functions into SPGradient methods.Emmanuel Gil Peyrot2018-06-211-3/+3
|
* Replace typedef enum with enum in POD type declarations.Emmanuel Gil Peyrot2018-06-202-12/+12
|
* Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2018-06-201-2/+2
|
* Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-191-1/+1
|
* Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-1918-28/+28
|
* Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot2018-06-181-1/+1
| | | | | 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-182-3/+4
| | | | | This avoids having to pass variables by reference before copying them when calling a constructor.
* Run clang-tidy’s modernize-deprecated-headers pass.Emmanuel Gil Peyrot2018-06-187-9/+9
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-186-10/+6
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-1834-500/+500
| | | | | 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-1811-55/+55
| | | | | 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-171-1/+1
|
* Move toolbars to ui/toolbarAlexander Valavanis2018-06-1744-13503/+21
|
* Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscapeMarc Jeanmougin2018-06-142-3/+3
|\
| * Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-122-3/+3
| | | | | | | | | | 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-143-78/+60
|\ \
| * | 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-122-2/+4
| | | | | | | | | | | | Gdk::Display::get_default()->get_keymap().
| * | Make SPDesktopWidget::window_get_pointer() use gdkmm.Emmanuel Gil Peyrot2018-06-121-9/+13
| |/
* | Merge branch 'patch-1' of gitlab.com:Moini/inkscapeMarc Jeanmougin2018-06-141-1/+1
|\ \ | |/ |/|
| * Incorporate Eduard's suggestion for Ellipse Undo entry.Maren Hachmann2018-03-081-1/+1
| |