diff options
author | bptato <nincsnevem662@gmail.com> | 2023-06-02 00:36:54 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-06-05 03:58:21 +0200 |
commit | 8027e52cb221c432bed64517015ebf3182e6166d (patch) | |
tree | 18991f9e74c8dcfc0ed7439f3bc78a0cfec9b2d6 /src/display/client.nim | |
parent | b3b97465805b7367df461a4b7b830fabaccf3a89 (diff) | |
download | chawan-8027e52cb221c432bed64517015ebf3182e6166d.tar.gz |
Add support for canvas and multipart
Quite incomplete canvas implementation. Crucially, the layout engine can't do much with whatever is drawn because it doesn't support images yet. I've re-introduced multipart as well, with the FormData API. For the append function I've also introduced a hack to the JS binding generator that allows requesting the JSContext pointer in nim procs. Really I should just fix the union generator thing and add support for overloading. In conclusion, for now the only thing canvas can be used for is exporting it as PNG and uploading it somewhere. Also, we now have PNG encoding and decoding too. (Now if only we had sixels as well...)
Diffstat (limited to 'src/display/client.nim')
-rw-r--r-- | src/display/client.nim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/display/client.nim b/src/display/client.nim index d705eab1..95f036f8 100644 --- a/src/display/client.nim +++ b/src/display/client.nim @@ -31,12 +31,15 @@ import ips/forkserver import ips/serialize import ips/serversocket import ips/socketstream +import js/intl import js/javascript import js/module import js/timeout +import types/blob import types/cookie import types/dispatcher import types/url +import xhr/formdata as formdata_impl type Client* = ref ClientObj @@ -535,6 +538,9 @@ proc newClient*(config: Config, dispatcher: Dispatcher): Client = ctx.addURLModule() ctx.addDOMModule() ctx.addHTMLModule() + ctx.addIntlModule() + ctx.addBlobModule() + ctx.addFormDataModule() ctx.addRequestModule() ctx.addLineEditModule() ctx.addConfigModule() |