phatchman

Results 25 comments of phatchman

Thanks very much for your replies. Using the msvc release build seems to link OK for me. Looks to have just been an issue with additional checks included in debug...

@DataTriny Thanks for getting back to me so quickly. Could you check if I'm understanding correctly how we might use the API? Is there another non-rust IM UI that has...

Hi @DataTriny Do you know why the SDL example wraps most of the calls to the C API in a mutex e.g.: ``` window_state_lock(state); accesskit_tree_update *update = window_state_build_initial_tree(state); window_state_unlock(state); ```...

One of the other things I've also been wrestling with is mapping of a dvui button onto the tree. In DVUI a button is really just something clickable. The button...

Things seems to be progressing well. Just continuing to fill out the tree and properties for all the widgets and associated dvui.zig fucntions. Most of the issues are me trying...

Here's a preview of the Basic Widget's pane. Menus and sliders still need some work and the more complex widgets like grid and tree will be a little trickier. @david-vanderson...

> Thank you for this great work so far [@phatchman](https://github.com/phatchman)! While 2MB executable size growth isn't _terrible_ for wasm, I'm going to add a separate issue to have a lighter...

> Please comment on the new issue maybe then? [#593](https://github.com/david-vanderson/dvui/issues/593) I'll try and get some numbers tomorrow and add to your issue. My numbers were all with release builds, but...

@david-vanderson I'd like to get your thoughts on my plan for implementing actions. Actions are things like clicking on a button, scrolling, setting, selecting and replacing text, changing focus. These...

> So my guess is that we want to enhance the Event loop rather than deal with it separately? I think it is possible, but I was uncertain about a...