summaryrefslogtreecommitdiffstats
path: root/src/ui (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixing a win compiling bug and coding styleJabiertxo Arraiza Cenoz2018-07-251-9/+2
|
* Fix a win compiling bug and coding styleJabiertxo Arraiza Cenoz2018-07-254-66/+72
|
* Working on open folders on WINJabiertxo Arraiza Cenoz2018-07-251-1/+7
|
* Fix codding styleJabiertxo Arraiza Cenoz2018-07-252-43/+42
|
* Fix a compiling bugJabiertxo Arraiza Cenoz2018-07-251-1/+1
|
* Add some Marting sugestions about main.cpp in MRJabiertxo Arraiza Cenoz2018-07-251-3/+4
|
* Improve tooltip for open button in preferencesJabiertxo Arraiza Cenoz2018-07-251-8/+8
|
* Improve string for open button in preferences IIJabiertxo Arraiza Cenoz2018-07-251-1/+1
|
* Improve string for open button in preferencesJabiertxo Arraiza Cenoz2018-07-252-3/+3
|
* Improve the look of prefs buttonsJabier Arraiza2018-07-242-5/+13
|
* Fix buttons stringsJabier Arraiza2018-07-241-2/+2
|
* Fix buttons stringsJabier Arraiza2018-07-241-2/+2
|
* Add buttons to open folders as sugestion of MarenJabier Arraiza2018-07-244-8/+66
|
* Fix a wrongy commitJabier Arraiza2018-07-244-13/+3
|
* Remove pointerJabiertxo Arraiza Cenoz2018-07-244-6/+16
|
* Add themes inkscape folder abailable by the appJabiertxo Arraiza Cenoz2018-07-241-2/+5
|
* Toggle symbolic icons staff depending the theme has it or notJabiertxo Arraiza Cenoz2018-07-222-8/+41
|
* Fixing coding styleJabier Arraiza2018-07-217-115/+105
|
* Fixing some icons dont redrawJabier Arraiza2018-07-211-7/+3
|
* Working on themesJabier Arraiza2018-07-213-9/+7
|
* adding gtk-themeJabier Arraiza2018-07-2135-218/+437
|
* Fix non-standard typeEduard Braun2018-07-031-1/+1
|
* Reduce width of Transform dialog by making spinbuttons narrowerGeoff Lankow2018-07-023-0/+17
|
* Merge branch 'sp_print' of gitlab.com:linkmauve/inkscapeMarc Jeanmougin2018-06-212-2/+2
|\
| * Move global functions into SPGradient methods.Emmanuel Gil Peyrot2018-06-212-2/+2
| |
* | Move pixmaps to ui/pixmaps, and update the README accordingly.Emmanuel Gil Peyrot2018-06-2176-52/+2102
|/
* Replace typedef enum with enum in POD type declarations.Emmanuel Gil Peyrot2018-06-206-18/+18
|
* Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot2018-06-203-8/+9
|
* Replace functions with methods in SPColor.Emmanuel Gil Peyrot2018-06-197-63/+63
|
* Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot2018-06-1922-115/+115
|
* Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot2018-06-1822-226/+226
| | | | | This reduces the boilerplate required to add a new element to a container.
* Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot2018-06-1817-73/+73
| | | | | 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-1811-19/+33
| | | | | 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-1825-25/+25
| | | | This renames most C <*.h> includes into C++ <c*> includes.
* Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot2018-06-1873-151/+110
| | | | | This replaces empty constructors and destructors with the default keyword.
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-18174-1935/+1935
| | | | | 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-18152-740/+740
| | | | | This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
* ZoomToolbar: C++ify and GtkAction migrationAlexander Valavanis2018-06-175-10/+178
|
* Move toolbars to ui/toolbarAlexander Valavanis2018-06-1744-4/+13467
|
* 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-1440-86/+86
|\
| * Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot2018-06-1240-86/+86
| | | | | | | | | | 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-145-27/+23
|\ \
| * | Replace all deprecated gdk_keymap_get_default() with ↵Emmanuel Gil Peyrot2018-06-123-5/+8
| | | | | | | | | | | | Gdk::Display::get_default()->get_keymap().
| * | Make ToolBase::cursor use gdkmm and smart pointers.Emmanuel Gil Peyrot2018-06-123-22/+15
| |/
* | Merge branch 'fontselection' of gitlab.com:darktrojan/inkscapeMarc Jeanmougin2018-06-142-5/+12
|\ \
| * | In font list, don't change selection if current font is already selected; ↵Geoff Lankow2018-05-312-5/+12
| | | | | | | | | | | | other minor fixes
* | | Merge branch 'fontmarkup' of gitlab.com:darktrojan/inkscapeMarc Jeanmougin2018-06-141-2/+3
|\ \ \
| * | | Fix three more instances of incorrectly escaped markupGeoff Lankow2018-05-311-2/+3
| |/ /
* | | Merge branch 'patch-1' of gitlab.com:Moini/inkscapeMarc Jeanmougin2018-06-141-1/+1
|\ \ \