dguihub

A graphic library for Windows (github version).


Keywords
library, gui, dlang, win32
License
BSL-1.0
Install
dub fetch dguihub --version 0.1.2

Documentation

DGui Graphic Library

Dub version Dub downloads

Yet another fork of DGui Form Library

Compiling DGuiHub

The simplest way to compile is to use dub package.

$ dub build

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.