mirror of https://github.com/buggins/dlangui.git
add screenshots
This commit is contained in:
parent
027eaed3c4
commit
00f0fc6c17
|
@ -10,3 +10,4 @@ Thumbs.db
|
|||
bin
|
||||
*.obj
|
||||
*.~*
|
||||
*.*~
|
||||
|
|
|
@ -5,7 +5,8 @@ GUI for D programming language, written in D.
|
|||
|
||||
Project page: http://buggins.github.io/dlangui/
|
||||
|
||||
Alpha stage of development.
|
||||
Some screenshots: http://buggins.github.io/dlangui/screenshots.html
|
||||
|
||||
|
||||
* Crossplatform (Win32 and Linux are supported in current version); can use SDL2 as a backend.
|
||||
* Mostly inspired by Android UI API (layouts, styles, two phase layout, ...)
|
||||
|
|
|
@ -101,5 +101,6 @@
|
|||
<Compile Include="src\dlangui\dialogs\filedlg.d" />
|
||||
<Compile Include="src\index.d" />
|
||||
<Compile Include="src\api.d" />
|
||||
<Compile Include="src\screenshots.d" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -24,6 +24,7 @@ DDOC = <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/h
|
|||
<section id="downloads" class="clearfix">
|
||||
<a href="index.html" id="home" class="button"><span>Home</span></a>
|
||||
<a href="api.html" id="home" class="button"><span>API Docs</span></a>
|
||||
<a href="screenshots.html" id="home" class="button"><span>Screenshots</span></a>
|
||||
<a href="https://github.com/buggins/dlangui/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
|
||||
<!--a href="https://github.com/buggins/dlangui/tarball/master" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a-->
|
||||
<a href="https://github.com/buggins/dlangui" id="view-on-github" class="button"><span>View on GitHub</span></a>
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
Ddoc
|
||||
|
||||
<hr/>
|
||||
|
||||
<h2>Buttons demo</h2>
|
||||
<img src="screenshots/screenshot1.png"/>
|
||||
<hr/>
|
||||
<h2>Editors demo</h2>
|
||||
<img src="screenshots/screenshot2.png"/>
|
||||
<hr/>
|
||||
<h2>Table layout</h2>
|
||||
<img src="screenshots/screenshot3.png"/>
|
||||
<hr/>
|
||||
<h2>Various widgets, vertical and horizontal layouts</h2>
|
||||
<img src="screenshots/screenshot4.png"/>
|
||||
<hr/>
|
||||
<h2>Animation, i18n, theme with bigger fonts and dark main menu</h2>
|
||||
<img src="screenshots/screenshot5.png"/>
|
||||
<hr/>
|
||||
|
||||
|
Loading…
Reference in New Issue