D Programming/DUI
From Wikibooks, the open-content textbooks collection
To be completed.
Duit (formerly DUI; now GtkD) is a D language graphical user interface wrapping (or binding) GTK+ graphical toolkit
GtkD is released under the LGPL license.
[edit] GtkD Code Example
import gtk.MainWindow;
import gtk.Label;
import gtk.GtkD;
void main(char[][] args)
{
GtkD.init(args);
MainWindow win = new MainWindow("Hello World");
win.setDefaultSize(200, 100);
win.add(new Label("Hello World"));
win.showAll();
GtkD.main();
}
Its main website is:
An older out-of-date website is