odinthenerd
odinthenerd

Reputation: 5552

Is there a mature GUI library for D2 which does not rely on any DLLs (for windows only)

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

Answers (2)

Sebastian Graf
Sebastian Graf

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

DejanLekic
DejanLekic

Reputation: 19797

Yes, there are several, but DFL matches the best your description. More about DFL: http://www.dprogramming.com/dfl.php .

Upvotes: 3

Related Questions