Replies: 8 comments 7 replies
-
This is awesome! Thanks for the questions! I'm not sure I totally understand, but to start:
|
Beta Was this translation helpful? Give feedback.
-
Oh also you could try this debugging aid - call |
Beta Was this translation helpful? Give feedback.
-
OK. Is there are way that I can just have a dvui module in my app's libs/dvui folder? Can I do that and still have that "freetype" dependency still functioning? So far my attempts have failed. Thanks again in advance. |
Beta Was this translation helpful? Give feedback.
-
Sounds like you might want to "vendor" dvui so maybe a git submodule and copy the parts of build.zig and build.zig.zon into your own top level build.zig and build.zig.zon.
That should work and you can test it without git by copying the whole dvui repo contents into libs/dvui.
If that is not working can you post how far you got? Specifically what does your build.zig and build.zig.zon look like?
…On Mon, Aug 21, 2023, at 5:07 PM, JosephABudd wrote:
OK.
So now I need to add and test my own additions to dvui. I need to do this to learn more about dvui and to attempt to create some widgets.
Is there are way that I can just have a dvui module in my app's libs/dvui folder? Can I do that and still have that "freetype" dependency still functioning? So far my attempts have failed.
Thanks again in advance.
—
Reply to this email directly, view it on GitHub <#24 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAZDO5EVSJ3QTPV7ZTP5LETXWPEYFANCNFSM6AAAAAA3WBSA4I>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
My .gitignore is incorrect. I'll fix this but my internet is down. This will take all day. |
Beta Was this translation helpful? Give feedback.
-
I apologize for that. Thank you for your patience. I have fixed the mess I created at my okp repo. I just cloned it and it builds and runs correctly. Its still at https://github.com/JosephABudd/okp. |
Beta Was this translation helpful? Give feedback.
-
Its the name of my morse code trainer I want to re write in zig. It uses a metronome to assist in timing for keying as well as simple instructions for keying ("down, 2, 3 up") . Hence, "One Key Piano". I first wrote it in wasm using my kickwasm, then in go and fyne using my kickfyne. Now I want to do it with zig. My kick tools are just code generators to write most of my app code for me. My github okp site shows how the generated code will be layed out. My goal is to write my kickzig tool, and then recreate okp using kickzig. |
Beta Was this translation helpful? Give feedback.
-
That was too easy. Thanks again. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
So far dvui is doing everything I want for building my gui framework. I'm very impressed. Especially with the slowed frame rates.
Below is my frame function for a tab-bar. (Its a callback and thats the reason for the anyopaque.)
There are 2 unsolved issues.
Any help is greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions