Thread overview
What are GUI builder options for D?
May 28, 2020
Jack J.
May 28, 2020
JN
May 29, 2020
solidstate1991
May 28, 2020
drag-and-drop GUI builder, similar to Qt/visual studio (C#'s GUI designer). What are the options for D?
May 28, 2020
On Thursday, 28 May 2020 at 19:38:25 UTC, Jack J. wrote:
> drag-and-drop GUI builder, similar to Qt/visual studio (C#'s GUI designer). What are the options for D?

You can use Glade (https://glade.gnome.org/) to drag and drop your GUI and then import it to a GtkD project (https://gtkd.org/).

There used to be a GUI designer for D named Entice Designer, but it is very old (from D1 times) and not supported to my knowledge.

Alternatively, you can make your GUI in another language (e.g. Java with JavaFX) and call the D functions from there, although it won't be a very convenient option.
May 29, 2020
On Thursday, 28 May 2020 at 19:38:25 UTC, Jack J. wrote:
> drag-and-drop GUI builder, similar to Qt/visual studio (C#'s GUI designer). What are the options for D?

I have created one for my game engine's own GUI framework. It's called WindowMaker for PPE/Concrete. However - unless you want your app to look like it's out from the 90's - you might not want to use it for modern apps.