summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow building with USE_PANGO_WIN32.Tavmjong Bah2018-03-233-2/+10
| | | | Needs to be tested....
* Start of reading OpenType fvar table.Tavmjong Bah2018-03-233-1/+82
|
* Move OpenType functions to separate file.Tavmjong Bah2018-03-234-174/+255
|
* Remove "hack" for support of FreeType 2.1.Tavmjong Bah2018-03-201-15/+4
| | | | FreeType 2.2 was released 12 years ago... no need to support 2.1.
* Add basic rendering support for 'font-variation-settings'.Tavmjong Bah2018-03-191-2/+93
| | | | Requires Pango 1.41.1 and FreeType 2.8 (maybe 2.9).
* Removing sample meson build files.Felipe Corrêa da Silva Sanches2018-03-1726-2538/+0
| | | | | | | | | | These will be kept at a separate "meson_build" branch at https://gitlab.com/fsanches/inkscape/ Learn more at: * "Using Meson's automatic dependency manager to build GTK" ** https://www.youtube.com/watch?v=2dB80CjH_3Q * "The Meson Build System - 4+ years of work to become an overnight success" ** https://www.youtube.com/watch?v=gHdTzdXkhRY
* [meson-build] inkscape-version placeholderFelipe Corrêa da Silva Sanches2018-03-172-1/+17
|
* [meson-build] libdepixelizeFelipe Corrêa da Silva Sanches2018-03-173-4/+34
|
* [meson-build] libuemfFelipe Corrêa da Silva Sanches2018-03-173-1/+40
|
* [meson-build] a few more dependenciesFelipe Corrêa da Silva Sanches2018-03-172-2/+5
|
* [meson-build] fix broken build of libextension static libFelipe Corrêa da Silva Sanches2018-03-172-4/+14
| | | | This one was subtle!
* [meson-build] [BROKEN] libextensionFelipe Corrêa da Silva Sanches2018-03-173-9/+261
|
* [meson-build] libgimpwidgetsFelipe Corrêa da Silva Sanches2018-03-173-7/+30
|
* [meson-build] libcrocoFelipe Corrêa da Silva Sanches2018-03-173-6/+76
|
* [meson-build] libwidgetsFelipe Corrêa da Silva Sanches2018-03-173-0/+133
|
* [meson-build] libio + zlibFelipe Corrêa da Silva Sanches2018-03-173-2/+44
|
* [meson-build] libutilFelipe Corrêa da Silva Sanches2018-03-173-8/+54
|
* [meson-build] live path effectsFelipe Corrêa da Silva Sanches2018-03-173-0/+196
|
* [meson-build] libsvgFelipe Corrêa da Silva Sanches2018-03-173-1/+47
|
* [meson-build] libdebugFelipe Corrêa da Silva Sanches2018-03-173-1/+40
|
* [meson-build] declare some more dependenciesFelipe Corrêa da Silva Sanches2018-03-172-5/+4
|
* [meson-build] libvpscFelipe Corrêa da Silva Sanches2018-03-173-1/+36
|
* [meson-build] libavoidFelipe Corrêa da Silva Sanches2018-03-172-1/+68
|
* [meson-build] libcolaFelipe Corrêa da Silva Sanches2018-03-172-1/+39
|
* [meson-build] spobject filtersFelipe Corrêa da Silva Sanches2018-03-173-4/+68
|
* [meson-build] xmlFelipe Corrêa da Silva Sanches2018-03-172-1/+65
|
* [meson-build] displayFelipe Corrêa da Silva Sanches2018-03-172-1/+143
|
* [meson-build] livarotFelipe Corrêa da Silva Sanches2018-03-173-2/+58
|
* [meson-build] libsrcdirFelipe Corrêa da Silva Sanches2018-03-177-17/+289
|
* [meson-build] wip: sp-object, sp-marshal and lib_helperFelipe Corrêa da Silva Sanches2018-03-173-0/+258
|
* [meson-build] 2geomFelipe Corrêa da Silva Sanches2018-03-172-1/+147
|
* [meson-build] declaring more libnrtype and libinkgc dependenciesFelipe Corrêa da Silva Sanches2018-03-172-2/+5
|
* [meson-build] wip: inkgc + ui + libnrtypeFelipe Corrêa da Silva Sanches2018-03-174-0/+411
|
* [meson-build] building the uiFelipe Corrêa da Silva Sanches2018-03-172-5/+2
|
* wip - meson build systemFelipe Corrêa da Silva Sanches2018-03-172-0/+41
|
* Add font styles that use font variations to style list.Tavmjong Bah2018-03-152-25/+60
| | | | Must be linked against Pango >- 1.41.1 to show these style.
* Add 'font-variation-settings' to style query.Tavmjong Bah2018-03-151-4/+6
|
* Code cleanup.Tavmjong Bah2018-03-151-26/+27
|
* Remove duplicate code.Tavmjong Bah2018-03-141-135/+6
|
* Fix bug in operator= for SPIFontVariableSettings.Tavmjong Bah2018-03-142-2/+2
|
* Avoid crash when confirming new value in InkSpinScale with KeyboardEduard Braun2018-03-131-1/+1
| | | | | | | | | | | | It seems "InkSpinScale::set_focus_widget()" is never called, so "_focus_widget" is never initialized and has an arbitrary value. Avoid this by initializing to zero. Why we never call set_focus_widget() is TBD... Fixed bugs: - https://bugs.launchpad.net/inkscape/+bug/1755464
* Work around possible Pango bug where an empty 'variations' generates a '@' ↵Tavmjong Bah2018-03-131-1/+4
| | | | in font description string.
* Remove duplicate code.Tavmjong Bah2018-03-134-244/+156
|
* Remove unused functions and reformat section.Tavmjong Bah2018-03-131-75/+17
|
* Update some debugging code for text layout.Tavmjong Bah2018-03-131-2/+15
|
* Add 'font-variation-settings' support to FontFactory.Tavmjong Bah2018-03-131-14/+35
|
* Pango requires different 'font-variation-settints' string.Tavmjong Bah2018-03-131-3/+10
|
* Use upward pointing arrow cursor in InkSpinScaleEduard Braun2018-03-121-1/+1
| | | | | Downward pointing cursors are confusing. Also this restores consistency with the replaced GimpSpinScale.
* Allow to constrain InkSpinScale slider values by pressing Ctrl keyEduard Braun2018-03-122-5/+25
| | | | Some common and useful step intervals are hardcoded.
* Allow to constrain color slider values by pressing Ctrl keyEduard Braun2018-03-123-5/+18
| | | | | | | Currently - steps of 16 (for sliders with 0-255 range) and - steps of 10 (for all other cases) are hardcoded but could be made a preference if there's demand for it.