Update README.md and screen shots
21
README.md
|
@ -3,6 +3,27 @@
|
||||||
This unofficial project is a migration of [D Forms Library (DFL)](http://wiki.dprogramming.com/Dfl/HomePage "D Forms Library (DFL)") that is managed on SVN.
|
This unofficial project is a migration of [D Forms Library (DFL)](http://wiki.dprogramming.com/Dfl/HomePage "D Forms Library (DFL)") that is managed on SVN.
|
||||||
DFL is a Win32 windowing library for the D language.
|
DFL is a Win32 windowing library for the D language.
|
||||||
|
|
||||||
|
```d
|
||||||
|
import dfl;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
Form form = new Form;
|
||||||
|
form.text = "Welcom to DFL";
|
||||||
|
form.size = Size(300, 300);
|
||||||
|
|
||||||
|
Button _button = new Button;
|
||||||
|
_button.text = "OK";
|
||||||
|
_button.location = Point(20, 20);
|
||||||
|
_button.size = Size(100, 50);
|
||||||
|
_button.click ~= (Control c, EventArgs e) => msgBox("OK button is clicked.");
|
||||||
|
_button.parent = form;
|
||||||
|
|
||||||
|
Application.run(form);
|
||||||
|
}
|
||||||
|
```
|
||||||
|

|
||||||
|
|
||||||
## Recent major features
|
## Recent major features
|
||||||
- **Windows OMF support has been removed (for DMD v2.109.0).**
|
- **Windows OMF support has been removed (for DMD v2.109.0).**
|
||||||
- **Registered DFL to DUB.**
|
- **Registered DFL to DUB.**
|
||||||
|
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 9.6 KiB |
BIN
image/welcomtodfl.png
Normal file
After Width: | Height: | Size: 8.2 KiB |