├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── nimdoc.out.css ├── notepadWindows.png ├── paintNetWindows.png ├── sketchMac.png ├── typography.html └── typography │ ├── font.html │ ├── layout.html │ ├── nimdoc.out.css │ ├── opentype.html │ ├── opentype │ ├── nimdoc.out.css │ ├── parser.html │ └── types.html │ ├── opentypedata.html │ ├── rasterizer.html │ ├── svg.html │ └── ttf.html ├── examples └── sdl.nim ├── src ├── typography.nim └── typography │ ├── font.nim │ ├── layout.nim │ ├── linebreak.nim │ ├── linebreak.txt │ ├── opentype │ ├── parser.nim │ └── types.nim │ ├── rasterizer.nim │ ├── svgfont.nim │ ├── systemfonts.nim │ └── textboxes.nim ├── tests ├── benchmark_otf.nim ├── common.nim ├── config.nims ├── fontglyphs.nim ├── fonts │ ├── Changa-Bold.svg │ ├── Changa-Bold.ttf │ ├── DejaVuSans.svg │ ├── DejaVuSans.ttf │ ├── IBMPlexSans-Regular.svg │ ├── IBMPlexSans-Regular.ttf │ ├── Jura-Regular.ttf │ ├── Lato-Regular.ttf │ ├── Moon Bold.otf │ ├── Moon-Bold.svg │ ├── SourceSansPro-Regular.ttf │ ├── SourceSansPro.otf │ ├── Ubuntu.svg │ ├── Ubuntu.ttf │ ├── Vera.ttf │ ├── hanazono │ │ ├── HanaMinA.ttf │ │ ├── HanaMinB.ttf │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ └── THANKS.txt │ └── silver.ttf ├── fuzz_otf.nim ├── googlefonts │ ├── index.html │ └── masters │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 4.png │ │ ├── 40.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── inspect_tableusage.nim ├── megatest.nim ├── rendered │ ├── alignment.png │ ├── basicSvg.png │ ├── basicTtf.png │ ├── basicTtf2.png │ ├── ch.png │ ├── font_metrics.png │ ├── font_metrics_blur.png │ ├── hFill.png │ ├── layout.png │ ├── layoutNoText.png │ ├── picking.png │ ├── qFill.png │ ├── qOutLine.png │ ├── ru.png │ ├── sample_blur.png │ ├── sample_svg.png │ ├── sample_ttf.png │ ├── scaledup.png │ ├── selection.png │ ├── sizes.png │ ├── subpixelglyphs.png │ ├── subpixelpos.png │ ├── tabs.png │ ├── test_char.png │ ├── test_charFill.png │ ├── test_otf.png │ ├── test_svg.png │ ├── test_ttf.png │ ├── wordwrap.png │ └── wordwrapch.png ├── samples │ ├── sample.ch.txt │ ├── sample.ch.wrap.txt │ ├── sample.fr.txt │ ├── sample.ko.txt │ ├── sample.ru.txt │ ├── sample.txt │ └── sample.wrap.txt ├── test.nim ├── test_char.nim ├── test_otf.nim ├── test_svg.nim ├── test_textboxes.nim ├── test_ttf.nim └── textbox │ ├── backspace_delete.png │ ├── copy.png │ ├── cut.png │ ├── jump_down_0.png │ ├── jump_down_1.png │ ├── jump_down_2.png │ ├── jump_down_3.png │ ├── jump_up_0.png │ ├── jump_up_1.png │ ├── jump_up_2.png │ ├── jump_up_3.png │ ├── left_right.gif │ ├── left_right.png │ ├── left_right_shift_0.png │ ├── left_right_shift_1.png │ ├── left_right_shift_10.png │ ├── left_right_shift_11.png │ ├── left_right_shift_12.png │ ├── left_right_shift_13.png │ ├── left_right_shift_14.png │ ├── left_right_shift_15.png │ ├── left_right_shift_16.png │ ├── left_right_shift_17.png │ ├── left_right_shift_18.png │ ├── left_right_shift_19.png │ ├── left_right_shift_2.png │ ├── left_right_shift_20.png │ ├── left_right_shift_21.png │ ├── left_right_shift_22.png │ ├── left_right_shift_23.png │ ├── left_right_shift_3.png │ ├── left_right_shift_4.png │ ├── left_right_shift_5.png │ ├── left_right_shift_6.png │ ├── left_right_shift_7.png │ ├── left_right_shift_8.png │ ├── left_right_shift_9.png │ ├── paste_0.png │ ├── paste_1.png │ ├── picking_0.png │ ├── picking_1.png │ ├── picking_10.png │ ├── picking_2.png │ ├── picking_3.png │ ├── picking_4.png │ ├── picking_5.png │ ├── picking_6.png │ ├── picking_7.png │ ├── picking_8.png │ ├── picking_9.png │ ├── plain.png │ ├── scroll_0.png │ ├── scroll_1.png │ ├── scroll_10.png │ ├── scroll_11.png │ ├── scroll_12.png │ ├── scroll_13.png │ ├── scroll_14.png │ ├── scroll_15.png │ ├── scroll_16.png │ ├── scroll_17.png │ ├── scroll_18.png │ ├── scroll_19.png │ ├── scroll_2.png │ ├── scroll_20.png │ ├── scroll_21.png │ ├── scroll_22.png │ ├── scroll_3.png │ ├── scroll_4.png │ ├── scroll_5.png │ ├── scroll_6.png │ ├── scroll_7.png │ ├── scroll_8.png │ ├── scroll_9.png │ ├── select.gif │ ├── select_all.png │ ├── select_peragraph.png │ ├── select_word.png │ ├── typing.png │ ├── up_down_0.png │ ├── up_down_1.png │ ├── up_down_2.png │ ├── up_down_3.png │ ├── up_down_4.png │ ├── up_down_5.png │ ├── up_down_6.png │ ├── up_down_7.png │ ├── up_down_8.png │ ├── up_down_9.png │ └── word_backspace_delete.png └── typography.nimble /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/README.md -------------------------------------------------------------------------------- /docs/nimdoc.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/nimdoc.out.css -------------------------------------------------------------------------------- /docs/notepadWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/notepadWindows.png -------------------------------------------------------------------------------- /docs/paintNetWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/paintNetWindows.png -------------------------------------------------------------------------------- /docs/sketchMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/sketchMac.png -------------------------------------------------------------------------------- /docs/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography.html -------------------------------------------------------------------------------- /docs/typography/font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/font.html -------------------------------------------------------------------------------- /docs/typography/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/layout.html -------------------------------------------------------------------------------- /docs/typography/nimdoc.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/nimdoc.out.css -------------------------------------------------------------------------------- /docs/typography/opentype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/opentype.html -------------------------------------------------------------------------------- /docs/typography/opentype/nimdoc.out.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/opentype/nimdoc.out.css -------------------------------------------------------------------------------- /docs/typography/opentype/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/opentype/parser.html -------------------------------------------------------------------------------- /docs/typography/opentype/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/opentype/types.html -------------------------------------------------------------------------------- /docs/typography/opentypedata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/opentypedata.html -------------------------------------------------------------------------------- /docs/typography/rasterizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/rasterizer.html -------------------------------------------------------------------------------- /docs/typography/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/svg.html -------------------------------------------------------------------------------- /docs/typography/ttf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/docs/typography/ttf.html -------------------------------------------------------------------------------- /examples/sdl.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/examples/sdl.nim -------------------------------------------------------------------------------- /src/typography.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography.nim -------------------------------------------------------------------------------- /src/typography/font.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/font.nim -------------------------------------------------------------------------------- /src/typography/layout.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/layout.nim -------------------------------------------------------------------------------- /src/typography/linebreak.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/linebreak.nim -------------------------------------------------------------------------------- /src/typography/linebreak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/linebreak.txt -------------------------------------------------------------------------------- /src/typography/opentype/parser.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/opentype/parser.nim -------------------------------------------------------------------------------- /src/typography/opentype/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/opentype/types.nim -------------------------------------------------------------------------------- /src/typography/rasterizer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/rasterizer.nim -------------------------------------------------------------------------------- /src/typography/svgfont.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/svgfont.nim -------------------------------------------------------------------------------- /src/typography/systemfonts.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/systemfonts.nim -------------------------------------------------------------------------------- /src/typography/textboxes.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/src/typography/textboxes.nim -------------------------------------------------------------------------------- /tests/benchmark_otf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/benchmark_otf.nim -------------------------------------------------------------------------------- /tests/common.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/common.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | --path:"../src" 2 | -------------------------------------------------------------------------------- /tests/fontglyphs.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fontglyphs.nim -------------------------------------------------------------------------------- /tests/fonts/Changa-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Changa-Bold.svg -------------------------------------------------------------------------------- /tests/fonts/Changa-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Changa-Bold.ttf -------------------------------------------------------------------------------- /tests/fonts/DejaVuSans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/DejaVuSans.svg -------------------------------------------------------------------------------- /tests/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /tests/fonts/IBMPlexSans-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/IBMPlexSans-Regular.svg -------------------------------------------------------------------------------- /tests/fonts/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/Jura-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Jura-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/Moon Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Moon Bold.otf -------------------------------------------------------------------------------- /tests/fonts/Moon-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Moon-Bold.svg -------------------------------------------------------------------------------- /tests/fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /tests/fonts/SourceSansPro.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/SourceSansPro.otf -------------------------------------------------------------------------------- /tests/fonts/Ubuntu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Ubuntu.svg -------------------------------------------------------------------------------- /tests/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /tests/fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/Vera.ttf -------------------------------------------------------------------------------- /tests/fonts/hanazono/HanaMinA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/hanazono/HanaMinA.ttf -------------------------------------------------------------------------------- /tests/fonts/hanazono/HanaMinB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/hanazono/HanaMinB.ttf -------------------------------------------------------------------------------- /tests/fonts/hanazono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/hanazono/LICENSE.txt -------------------------------------------------------------------------------- /tests/fonts/hanazono/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/hanazono/README.txt -------------------------------------------------------------------------------- /tests/fonts/hanazono/THANKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/hanazono/THANKS.txt -------------------------------------------------------------------------------- /tests/fonts/silver.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fonts/silver.ttf -------------------------------------------------------------------------------- /tests/fuzz_otf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/fuzz_otf.nim -------------------------------------------------------------------------------- /tests/googlefonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/index.html -------------------------------------------------------------------------------- /tests/googlefonts/masters/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/0.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/1.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/10.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/11.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/12.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/13.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/14.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/15.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/16.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/17.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/18.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/19.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/2.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/20.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/21.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/22.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/23.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/24.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/25.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/26.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/27.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/28.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/29.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/3.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/30.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/31.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/32.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/33.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/34.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/35.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/36.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/37.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/38.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/39.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/4.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/40.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/5.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/6.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/7.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/8.png -------------------------------------------------------------------------------- /tests/googlefonts/masters/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/googlefonts/masters/9.png -------------------------------------------------------------------------------- /tests/inspect_tableusage.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/inspect_tableusage.nim -------------------------------------------------------------------------------- /tests/megatest.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/megatest.nim -------------------------------------------------------------------------------- /tests/rendered/alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/alignment.png -------------------------------------------------------------------------------- /tests/rendered/basicSvg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/basicSvg.png -------------------------------------------------------------------------------- /tests/rendered/basicTtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/basicTtf.png -------------------------------------------------------------------------------- /tests/rendered/basicTtf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/basicTtf2.png -------------------------------------------------------------------------------- /tests/rendered/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/ch.png -------------------------------------------------------------------------------- /tests/rendered/font_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/font_metrics.png -------------------------------------------------------------------------------- /tests/rendered/font_metrics_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/font_metrics_blur.png -------------------------------------------------------------------------------- /tests/rendered/hFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/hFill.png -------------------------------------------------------------------------------- /tests/rendered/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/layout.png -------------------------------------------------------------------------------- /tests/rendered/layoutNoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/layoutNoText.png -------------------------------------------------------------------------------- /tests/rendered/picking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/picking.png -------------------------------------------------------------------------------- /tests/rendered/qFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/qFill.png -------------------------------------------------------------------------------- /tests/rendered/qOutLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/qOutLine.png -------------------------------------------------------------------------------- /tests/rendered/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/ru.png -------------------------------------------------------------------------------- /tests/rendered/sample_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/sample_blur.png -------------------------------------------------------------------------------- /tests/rendered/sample_svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/sample_svg.png -------------------------------------------------------------------------------- /tests/rendered/sample_ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/sample_ttf.png -------------------------------------------------------------------------------- /tests/rendered/scaledup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/scaledup.png -------------------------------------------------------------------------------- /tests/rendered/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/selection.png -------------------------------------------------------------------------------- /tests/rendered/sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/sizes.png -------------------------------------------------------------------------------- /tests/rendered/subpixelglyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/subpixelglyphs.png -------------------------------------------------------------------------------- /tests/rendered/subpixelpos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/subpixelpos.png -------------------------------------------------------------------------------- /tests/rendered/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/tabs.png -------------------------------------------------------------------------------- /tests/rendered/test_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/test_char.png -------------------------------------------------------------------------------- /tests/rendered/test_charFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/test_charFill.png -------------------------------------------------------------------------------- /tests/rendered/test_otf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/test_otf.png -------------------------------------------------------------------------------- /tests/rendered/test_svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/test_svg.png -------------------------------------------------------------------------------- /tests/rendered/test_ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/test_ttf.png -------------------------------------------------------------------------------- /tests/rendered/wordwrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/wordwrap.png -------------------------------------------------------------------------------- /tests/rendered/wordwrapch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/rendered/wordwrapch.png -------------------------------------------------------------------------------- /tests/samples/sample.ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.ch.txt -------------------------------------------------------------------------------- /tests/samples/sample.ch.wrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.ch.wrap.txt -------------------------------------------------------------------------------- /tests/samples/sample.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.fr.txt -------------------------------------------------------------------------------- /tests/samples/sample.ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.ko.txt -------------------------------------------------------------------------------- /tests/samples/sample.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.ru.txt -------------------------------------------------------------------------------- /tests/samples/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.txt -------------------------------------------------------------------------------- /tests/samples/sample.wrap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/samples/sample.wrap.txt -------------------------------------------------------------------------------- /tests/test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/test.nim -------------------------------------------------------------------------------- /tests/test_char.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/test_char.nim -------------------------------------------------------------------------------- /tests/test_otf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/test_otf.nim -------------------------------------------------------------------------------- /tests/test_svg.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/test_svg.nim -------------------------------------------------------------------------------- /tests/test_textboxes.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/test_textboxes.nim -------------------------------------------------------------------------------- /tests/test_ttf.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/test_ttf.nim -------------------------------------------------------------------------------- /tests/textbox/backspace_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/backspace_delete.png -------------------------------------------------------------------------------- /tests/textbox/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/copy.png -------------------------------------------------------------------------------- /tests/textbox/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/cut.png -------------------------------------------------------------------------------- /tests/textbox/jump_down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_down_0.png -------------------------------------------------------------------------------- /tests/textbox/jump_down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_down_1.png -------------------------------------------------------------------------------- /tests/textbox/jump_down_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_down_2.png -------------------------------------------------------------------------------- /tests/textbox/jump_down_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_down_3.png -------------------------------------------------------------------------------- /tests/textbox/jump_up_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_up_0.png -------------------------------------------------------------------------------- /tests/textbox/jump_up_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_up_1.png -------------------------------------------------------------------------------- /tests/textbox/jump_up_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_up_2.png -------------------------------------------------------------------------------- /tests/textbox/jump_up_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/jump_up_3.png -------------------------------------------------------------------------------- /tests/textbox/left_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right.gif -------------------------------------------------------------------------------- /tests/textbox/left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_0.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_1.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_10.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_11.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_12.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_13.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_14.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_15.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_16.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_17.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_18.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_19.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_2.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_20.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_21.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_22.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_23.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_3.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_4.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_5.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_6.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_7.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_8.png -------------------------------------------------------------------------------- /tests/textbox/left_right_shift_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/left_right_shift_9.png -------------------------------------------------------------------------------- /tests/textbox/paste_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/paste_0.png -------------------------------------------------------------------------------- /tests/textbox/paste_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/paste_1.png -------------------------------------------------------------------------------- /tests/textbox/picking_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_0.png -------------------------------------------------------------------------------- /tests/textbox/picking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_1.png -------------------------------------------------------------------------------- /tests/textbox/picking_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_10.png -------------------------------------------------------------------------------- /tests/textbox/picking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_2.png -------------------------------------------------------------------------------- /tests/textbox/picking_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_3.png -------------------------------------------------------------------------------- /tests/textbox/picking_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_4.png -------------------------------------------------------------------------------- /tests/textbox/picking_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_5.png -------------------------------------------------------------------------------- /tests/textbox/picking_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_6.png -------------------------------------------------------------------------------- /tests/textbox/picking_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_7.png -------------------------------------------------------------------------------- /tests/textbox/picking_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_8.png -------------------------------------------------------------------------------- /tests/textbox/picking_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/picking_9.png -------------------------------------------------------------------------------- /tests/textbox/plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/plain.png -------------------------------------------------------------------------------- /tests/textbox/scroll_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_0.png -------------------------------------------------------------------------------- /tests/textbox/scroll_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_1.png -------------------------------------------------------------------------------- /tests/textbox/scroll_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_10.png -------------------------------------------------------------------------------- /tests/textbox/scroll_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_11.png -------------------------------------------------------------------------------- /tests/textbox/scroll_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_12.png -------------------------------------------------------------------------------- /tests/textbox/scroll_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_13.png -------------------------------------------------------------------------------- /tests/textbox/scroll_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_14.png -------------------------------------------------------------------------------- /tests/textbox/scroll_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_15.png -------------------------------------------------------------------------------- /tests/textbox/scroll_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_16.png -------------------------------------------------------------------------------- /tests/textbox/scroll_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_17.png -------------------------------------------------------------------------------- /tests/textbox/scroll_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_18.png -------------------------------------------------------------------------------- /tests/textbox/scroll_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_19.png -------------------------------------------------------------------------------- /tests/textbox/scroll_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_2.png -------------------------------------------------------------------------------- /tests/textbox/scroll_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_20.png -------------------------------------------------------------------------------- /tests/textbox/scroll_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_21.png -------------------------------------------------------------------------------- /tests/textbox/scroll_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_22.png -------------------------------------------------------------------------------- /tests/textbox/scroll_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_3.png -------------------------------------------------------------------------------- /tests/textbox/scroll_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_4.png -------------------------------------------------------------------------------- /tests/textbox/scroll_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_5.png -------------------------------------------------------------------------------- /tests/textbox/scroll_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_6.png -------------------------------------------------------------------------------- /tests/textbox/scroll_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_7.png -------------------------------------------------------------------------------- /tests/textbox/scroll_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_8.png -------------------------------------------------------------------------------- /tests/textbox/scroll_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/scroll_9.png -------------------------------------------------------------------------------- /tests/textbox/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/select.gif -------------------------------------------------------------------------------- /tests/textbox/select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/select_all.png -------------------------------------------------------------------------------- /tests/textbox/select_peragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/select_peragraph.png -------------------------------------------------------------------------------- /tests/textbox/select_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/select_word.png -------------------------------------------------------------------------------- /tests/textbox/typing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/typing.png -------------------------------------------------------------------------------- /tests/textbox/up_down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_0.png -------------------------------------------------------------------------------- /tests/textbox/up_down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_1.png -------------------------------------------------------------------------------- /tests/textbox/up_down_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_2.png -------------------------------------------------------------------------------- /tests/textbox/up_down_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_3.png -------------------------------------------------------------------------------- /tests/textbox/up_down_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_4.png -------------------------------------------------------------------------------- /tests/textbox/up_down_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_5.png -------------------------------------------------------------------------------- /tests/textbox/up_down_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_6.png -------------------------------------------------------------------------------- /tests/textbox/up_down_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_7.png -------------------------------------------------------------------------------- /tests/textbox/up_down_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_8.png -------------------------------------------------------------------------------- /tests/textbox/up_down_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/up_down_9.png -------------------------------------------------------------------------------- /tests/textbox/word_backspace_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/tests/textbox/word_backspace_delete.png -------------------------------------------------------------------------------- /typography.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treeform/typography/HEAD/typography.nimble --------------------------------------------------------------------------------