DGui Graphic Library
August 21, 2017 ยท View on GitHub
Yet another fork of DGui Form Library
Compiling DGuiHub
The simplest way to compile is to use dub package.
$ dub build
API Reference
See api.
Simple example
module hello;
import dguihub;
class MainForm : Form {
public this() {
this.text = "DGui Form";
this.size = Size(500, 400);
this.startPosition = FormStartPosition.centerScreen; // Set Form Position
}
}
int main(string[] args) {
return Application.run(new MainForm()); // Start the application
}
Compiling examples
Directly from examples directory
$ cd examples/hello
$ dub
or using subpackage
$ dub run dguihub:hello
Related Projects
| Project | Author |
|---|---|
| DGui | Antonio Trogu |
| DGuiT | FrankLike |
License
The project is licensed under the terms of the Boost Software License, Version 1.0.