Reputation: 5552
I have a small firmware update program written in D which works great from the command line but I would like to give it a GUI. All a really need is a progress bar, a few dialogs and a status bar. It will only be deployed on Windows (XP to current) and I would like it to have as few dependencies as possible. Is there a GUI Library which is considered ready for production code that can be statically linked into one small exe? Or should I just use the naked windows API?
Upvotes: 0
Views: 302
Reputation: 3740
You can always go for DWT, which is a port of eclipse' SWT to D. It is cross platform, but as you only need to support Windows, you might as well use the native C API. I would much more prefer to use DWT though.
Upvotes: 0
Reputation: 19797
Yes, there are several, but DFL matches the best your description. More about DFL: http://www.dprogramming.com/dfl.php .
Upvotes: 3