diff options
author | bptato <nincsnevem662@gmail.com> | 2024-04-25 01:06:43 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-04-25 01:20:58 +0200 |
commit | 14b871eb7eaf329b67b71385597f114f8782318a (patch) | |
tree | ac7b4655124b4579ad27d56116d9a2dee63cd31e /src/layout/box.nim | |
parent | 62944ac7abc6e37475739a1667ed5a0240fedf66 (diff) | |
download | chawan-14b871eb7eaf329b67b71385597f114f8782318a.tar.gz |
Initial image support
* png: add missing filters, various decoder fixes * term: fix kitty response interpretation, add support for kitty image detection * buffer, pager: initial image display support Emphasis on "initial"; it only "works" with kitty output and PNG input. Also, it's excruciatingly slow, and repaints images way too often. Left undocumented intentionally it for now, until it actually becomes useful. In the meantime, adventurous users can find out themselves why: [[siteconf]] url = "https://.*" images = true
Diffstat (limited to 'src/layout/box.nim')
-rw-r--r-- | src/layout/box.nim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/layout/box.nim b/src/layout/box.nim index 79f927ef..40628204 100644 --- a/src/layout/box.nim +++ b/src/layout/box.nim @@ -1,5 +1,6 @@ import css/stylednode import css/values +import img/bitmap import layout/layoutunit type @@ -12,7 +13,7 @@ type h*: LayoutUnit InlineAtomType* = enum - iatSpacing, iatWord, iatInlineBlock + iatSpacing, iatWord, iatInlineBlock, iatImage InlineAtom* = ref object offset*: Offset @@ -24,6 +25,8 @@ type str*: string of iatInlineBlock: innerbox*: BlockBox + of iatImage: + bmp*: Bitmap RootInlineFragment* = ref object # offset relative to parent |