Recommend: IDE and GUI library

Soulsbane via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sat Mar 25 23:06:05 PDT 2017


On Wednesday, 1 March 2017 at 20:23:57 UTC, aberba wrote:
> On Friday, 24 February 2017 at 22:44:55 UTC, XavierAP wrote:
>> [...]
>
> Gtkd is obviously defacto for Linux ONLY, dlangui for cross 
> platform app without native feel. But if you want something 
> easy and flexible with native look and feel on all platforms, 
> well tested, use LibUI (http://code.dlang.org/packages/libuid). 
> Look inside the "examples" folder in their Github repository to 
> see example usage.
>
> More like:
>  auto hbox = new Box(false).setPadded(1);
>  vbox.append(hbox);
>
> hbox.append(new Button("Button"))
>     .append(new Checkbox("Checkbox"))
> ...
>
> Examples:
> https://github.com/mogud/libuid/blob/master/examples/example1.d
> https://github.com/mogud/libuid/blob/master/examples/example2.d

I second this. I've been playing with this recently and it's 
really easy to use.


More information about the Digitalmars-d-learn mailing list