dformlib ~master
Yet another DFL fork
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
dformlib
Yet another fork of Christopher Miller D Form Library, based on Rayerd work.
Compiling DFormLib
The simplest way to compile with dformlib is to use dub package.
$ dub build
Or you can use make:
$ make
Examples
import dfl;
int main() {
Form myForm;
Label myLabel;
myForm = new Form;
myForm.text = "dformlib Example";
myLabel = new Label;
myLabel.font = new Font("Verdana", 14f);
myLabel.text = "Hello, dformlib World!";
myLabel.location = Point(15, 15);
myLabel.autoSize = true;
myLabel.parent = myForm;
Application.run(myForm);
return 0;
}
See also examples directory and here.
Related Projects
Project | Author | Notes | DUB |
---|---|---|---|
Original dfl project | C. Miller | Abandoned | no |
DFL | Rahim Firouzi | With Entice Design | yes |
dfl | Rayerd | no | |
DFL2 | FrankLike | yes | |
DGui | Antonio Trogu | Components can be positioned using Docks | yes |
License
The project is licensed under the terms of the Boost Software License, Version 1.0
- Registered by o3o
- ~master released 8 years ago
- o3o/dformlib
- Boost
- Copyright © 2016, Orfeo Da Viá
- Authors:
- Dependencies:
- none
- Versions:
-
0.2.2 2016-Apr-27 0.2.1 2016-Feb-11 0.2.0 2016-Feb-06 0.1.0 2016-Jan-28 ~master 2016-Jul-18 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
232 downloads total
-
- Score:
- 0.7
- Short URL:
- dformlib.dub.pm