|
|
|
|
|
by AndyMaleh
1656 days ago
|
|
I don't know about non-native, but LibUI offers native GUI in C:
https://github.com/andlabs/libui Better yet, it has excellent DSLs that make it possible to build desktop apps in a way similar to HTML, but much better due to keeping all code dynamic in one language (no static/dynamic multi-language separation/mixing dissonance):
https://github.com/AndyObtiva/glimmer-dsl-libui By the way, with the `area` control (widget), you can actually make your app look like anything you want. It lets you do arbitrary painting of vertex graphics while providing keyboard and mouse event listener support to let the user interact with the user-interface, so the sky is the limit. Also, you can simply compose new custom controls from `area` controls and just work with the new custom controls as higher constructs to build your apps. In fact, most native GUI toolkits provide non-native support for building any widget you want, so do not think that native widgets limit you. They don't. They in fact provide a better user experience for cases that could utilize predictable-looking basic GUI for non-computer-savvy people while still offering you the extra option of building non-native widgets when you need them. |
|
wait wait wait, what? wow. This sounds soo damn good. THANK YOU!!!!