Update README.md and screen shots

This commit is contained in:
haru-s 2024-07-14 19:07:56 +09:00
parent c959f221ef
commit 22b53695d0
8 changed files with 21 additions and 0 deletions

View file

@ -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.
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);
}
```
![screen shot](./image/welcomtodfl.png "screen shot")
## Recent major features
- **Windows OMF support has been removed (for DMD v2.109.0).**
- **Registered DFL to DUB.**

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Before After
Before After

BIN
image/welcomtodfl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB