update docs

This commit is contained in:
Vadim Lopatin 2014-12-15 17:48:25 +03:00
parent 99395c31f3
commit 4d7811f249
39 changed files with 2090 additions and 430 deletions

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.all</h1>
<!-- Generated by Ddoc from src/dlangui/all.d -->
<!-- Generated by Ddoc from src\dlangui\all.d -->
This module is just to simplify import of most useful DLANGUI modules.
<br><br>
<b>Synopsis:</b><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>api</h1>
<!-- Generated by Ddoc from src/api.d -->
<!-- Generated by Ddoc from src\api.d -->
@ -69,6 +69,11 @@
<li><a href="menu.html">menu</a></li>
<li><a href="popup.html">popup</a></li>
<li><a href="tabs.html">tabs</a></li>
<li><a href="tree.html">tree</a></li>
<li><a href="scroll.html">scroll</a></li>
<li><a href="grid.html">grid</a></li>
<li><a href="tree.html">tree</a></li>
<li><a href="combobox.html">combobox</a></li>
</ul></li>
<li>dlangui.dialogs
<ul>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.collections</h1>
<!-- Generated by Ddoc from src/dlangui/core/collections.d -->
<!-- Generated by Ddoc from src\dlangui\core\collections.d -->
This module implements array based collection.
<br><br>
<b>Synopsis:</b><br>
@ -68,104 +68,105 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="Collection"></a>struct <u>Collection</u>(T, bool ownItems = false);
</big></dt>
<dd>array based collection of items
retains item order when during add/remove operations<br><br>
<br><br>
retains item order when during add/remove operations<br><br>
<dl><dt><big><a name="empty"></a>bool <u>empty</u>();
<dl><dt><big><a name="Collection.empty"></a>@property bool <u>empty</u>();
</big></dt>
<dd>returns <b>true</b> if there are no items in collection<br><br>
</dd>
<dt><big><a name="length"></a>size_t <u>length</u>();
<dt><big><a name="Collection.length"></a>@property size_t <u>length</u>();
</big></dt>
<dd>returns number of items in collection<br><br>
</dd>
<dt><big><a name="size"></a>size_t <u>size</u>();
<dt><big><a name="Collection.size"></a>@property size_t <u>size</u>();
</big></dt>
<dd>returns currently allocated capacity (may be more than length)<br><br>
</dd>
<dt><big><a name="size"></a>void <u>size</u>(size_t <i>newSize</i>);
<dt><big><a name="Collection.size"></a>@property void <u>size</u>(size_t <i>newSize</i>);
</big></dt>
<dd>change capacity (e.g. to reserve big space to avoid multiple reallocations)<br><br>
</dd>
<dt><big><a name="length"></a>void <u>length</u>(size_t <i>newSize</i>);
<dt><big><a name="Collection.length"></a>@property void <u>length</u>(size_t <i>newSize</i>);
</big></dt>
<dd>returns number of items in collection<br><br>
</dd>
<dt><big><a name="opIndex"></a>T <u>opIndex</u>(size_t <i>index</i>);
<dt><big><a name="Collection.opIndex"></a>ref T <u>opIndex</u>(size_t <i>index</i>);
</big></dt>
<dd>access item by <i>index</i><br><br>
</dd>
<dt><big><a name="add"></a>void <u>add</u>(T <i>item</i>, size_t <i>index</i> = size_t.max);
<dt><big><a name="Collection.add"></a>void <u>add</u>(T <i>item</i>, size_t <i>index</i> = size_t.max);
</big></dt>
<dd>insert new <i>item</i> in specified position<br><br>
</dd>
<dt><big><a name="addAll"></a>void <u>addAll</u>(ref Collection!(T, ownItems) <i>v</i>);
<dt><big><a name="Collection.addAll"></a>void <u>addAll</u>(ref Collection!(T, ownItems) <i>v</i>);
</big></dt>
<dd>add all items from other collection<br><br>
</dd>
<dt><big><a name="opOpAssign"></a>Collection <u>opOpAssign</u>(string op)(T <i>item</i>);
<dt><big><a name="Collection.opOpAssign"></a>ref Collection <u>opOpAssign</u>(string op)(T <i>item</i>);
</big></dt>
<dd>support for appending (~=, +=) and removing by value (-=)<br><br>
</dd>
<dt><big><a name="indexOf"></a>size_t <u>indexOf</u>(T <i>item</i>);
<dt><big><a name="Collection.indexOf"></a>size_t <u>indexOf</u>(T <i>item</i>);
</big></dt>
<dd>returns index of first occurence of <i>item</i>, size_t.max if not found<br><br>
</dd>
<dt><big><a name="remove"></a>T <u>remove</u>(size_t <i>index</i>);
<dt><big><a name="Collection.remove"></a>T <u>remove</u>(size_t <i>index</i>);
</big></dt>
<dd><u>remove</u> single item, returning removed item<br><br>
</dd>
<dt><big><a name="removeValue"></a>bool <u>removeValue</u>(T <i>value</i>);
<dt><big><a name="Collection.removeValue"></a>bool <u>removeValue</u>(T <i>value</i>);
</big></dt>
<dd>remove single item by <i>value</i> - if present in collection, returning <b>true</b> if item was found and removed<br><br>
</dd>
<dt><big><a name="opApply"></a>int <u>opApply</u>(int delegate(ref T param) <i>op</i>);
<dt><big><a name="Collection.opApply"></a>int <u>opApply</u>(int delegate(ref T param) <i>op</i>);
</big></dt>
<dd>support of foreach with reference<br><br>
</dd>
<dt><big><a name="clear"></a>void <u>clear</u>();
<dt><big><a name="Collection.clear"></a>void <u>clear</u>();
</big></dt>
<dd>remove all items<br><br>
</dd>
<dt><big><a name="popFront"></a>T <u>popFront</u>();
<dt><big><a name="Collection.popFront"></a>@property T <u>popFront</u>();
</big></dt>
<dd>remove first item<br><br>
</dd>
<dt><big><a name="pushFront"></a>void <u>pushFront</u>(T <i>item</i>);
<dt><big><a name="Collection.pushFront"></a>void <u>pushFront</u>(T <i>item</i>);
</big></dt>
<dd>insert <i>item</i> at beginning of collection<br><br>
</dd>
<dt><big><a name="popBack"></a>T <u>popBack</u>();
<dt><big><a name="Collection.popBack"></a>@property T <u>popBack</u>();
</big></dt>
<dd>remove last item<br><br>
</dd>
<dt><big><a name="pushBack"></a>void <u>pushBack</u>(T <i>item</i>);
<dt><big><a name="Collection.pushBack"></a>void <u>pushBack</u>(T <i>item</i>);
</big></dt>
<dd>insert <i>item</i> at end of collection<br><br>
</dd>
<dt><big><a name="front"></a>T <u>front</u>();
<dt><big><a name="Collection.front"></a>@property T <u>front</u>();
</big></dt>
<dd>peek first item<br><br>
</dd>
<dt><big><a name="back"></a>T <u>back</u>();
<dt><big><a name="Collection.back"></a>@property T <u>back</u>();
</big></dt>
<dd>peek last item<br><br>

90
combobox.html Normal file
View File

@ -0,0 +1,90 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - dlangui.widgets.combobox</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr>
<section id="main_content">
<h1>dlangui.widgets.combobox</h1>
<!-- Generated by Ddoc from src\dlangui\widgets\combobox.d -->
This module contains Combo Box widgets implementation.
<br><br>
<b>Synopsis:</b><br>
<pre class="d_code"><font color=blue>import</font> dlangui.widgets.<u>combobox</u>;
<font color=green>// creation of simple strings list
</font>ComboBox box = <font color=blue>new</font> ComboBox(<font color=red>"combo1"</font>, [<font color=red>"value 1"d</font>, <font color=red>"value 2"d</font>, <font color=red>"value 3"d</font>]);
<font color=green>// select first item
</font>box.selectedItemIndex = 0;
<font color=green>// get selected item text
</font>println(box.text);
</pre>
<br><br>
<b>License:</b><br>
Boost License 1.0
<br><br>
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="ComboBoxBase"></a>class <u>ComboBoxBase</u>: <u>dlangui.widgets.layouts.HorizontalLayout</u>, <u>dlangui.widgets.widget.OnClickHandler</u>;
</big></dt>
<dd>Abstract ComboBox.<br><br>
<dl><dt><big><a name="ComboBoxBase.onItemClickListener"></a>Signal!OnItemSelectedHandler <u>onItemClickListener</u>;
</big></dt>
<dd>Handle item click.<br><br>
</dd>
<dt><big><a name="ComboBoxBase.selectedItemIndex"></a>@property int <u>selectedItemIndex</u>();
</big></dt>
<dd>Selected item index.<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ComboBox"></a>class <u>ComboBox</u>: <u>dlangui.widgets.combobox.ComboBoxBase</u>;
</big></dt>
<dd><u>ComboBox</u> with list of strings.<br><br>
</dd>
</dl>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.controls</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/controls.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\controls.d -->
This module contains simple <u>controls</u> widgets implementation.
<br><br>
TextWidget
@ -63,17 +63,17 @@ Boost License 1.0
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="VSpacer"></a>class <u>VSpacer</u>: dlangui.widgets.widget.Widget;
<dl><dt><big><a name="VSpacer"></a>class <u>VSpacer</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>vertical spacer to fill empty space in vertical layouts<br><br>
</dd>
<dt><big><a name="HSpacer"></a>class <u>HSpacer</u>: dlangui.widgets.widget.Widget;
<dt><big><a name="HSpacer"></a>class <u>HSpacer</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>horizontal spacer to fill empty space in horizontal layouts<br><br>
</dd>
<dt><big><a name="TextWidget"></a>class <u>TextWidget</u>: dlangui.widgets.widget.Widget;
<dt><big><a name="TextWidget"></a>class <u>TextWidget</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>static text widget<br><br>
@ -99,7 +99,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ImageWidget"></a>class <u>ImageWidget</u>: dlangui.widgets.widget.Widget;
<dt><big><a name="ImageWidget"></a>class <u>ImageWidget</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>static image widget<br><br>
@ -122,30 +122,35 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>set custom <u>drawable</u> (not one from resources)<br><br>
</dd>
<dt><big><a name="ImageWidget.drawable"></a>@property ImageWidget <u>drawable</u>(string <i>drawableId</i>);
</big></dt>
<dd>set custom <u>drawable</u> (not one from resources)<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ImageButton"></a>class <u>ImageButton</u>: dlangui.widgets.controls.ImageWidget;
<dt><big><a name="ImageButton"></a>class <u>ImageButton</u>: <u>dlangui.widgets.controls.ImageWidget</u>;
</big></dt>
<dd>button with image only<br><br>
</dd>
<dt><big><a name="ImageTextButton"></a>class <u>ImageTextButton</u>: dlangui.widgets.layouts.HorizontalLayout;
<dt><big><a name="ImageTextButton"></a>class <u>ImageTextButton</u>: <u>dlangui.widgets.layouts.HorizontalLayout</u>;
</big></dt>
<dd>button with image and text<br><br>
</dd>
<dt><big><a name="CheckBox"></a>class <u>CheckBox</u>: dlangui.widgets.controls.ImageTextButton;
<dt><big><a name="CheckBox"></a>class <u>CheckBox</u>: <u>dlangui.widgets.controls.ImageTextButton</u>;
</big></dt>
<dd>checkbox<br><br>
</dd>
<dt><big><a name="RadioButton"></a>class <u>RadioButton</u>: dlangui.widgets.controls.ImageTextButton;
<dt><big><a name="RadioButton"></a>class <u>RadioButton</u>: <u>dlangui.widgets.controls.ImageTextButton</u>;
</big></dt>
<dd>radio button<br><br>
</dd>
<dt><big><a name="Button"></a>class <u>Button</u>: dlangui.widgets.widget.Widget;
<dt><big><a name="Button"></a>class <u>Button</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>Text only button<br><br>
@ -161,7 +166,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="AbstractSlider"></a>class <u>AbstractSlider</u>: dlangui.widgets.widget.WidgetGroup;
<dt><big><a name="AbstractSlider"></a>class <u>AbstractSlider</u>: <u>dlangui.widgets.widget.WidgetGroup</u>;
</big></dt>
<dd>base class for widgets like scrollbars and sliders<br><br>
@ -207,7 +212,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ScrollBar"></a>class <u>ScrollBar</u>: dlangui.widgets.controls.AbstractSlider, dlangui.widgets.widget.OnClickHandler;
<dt><big><a name="ScrollBar"></a>class <u>ScrollBar</u>: <u>dlangui.widgets.controls.AbstractSlider</u>, <u>dlangui.widgets.widget.OnClickHandler</u>;
</big></dt>
<dd>scroll bar - either vertical or horizontal<br><br>
@ -220,6 +225,11 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>sets scrollbar <u>orientation</u><br><br>
</dd>
<dt><big><a name="ScrollBar.updateState"></a>protected void <u>updateState</u>();
</big></dt>
<dd>hide controls when scroll is not possible<br><br>
</dd>
<dt><big><a name="ScrollBar.onMouseEvent"></a>bool <u>onMouseEvent</u>(MouseEvent <i>event</i>);
</big></dt>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.dialogs.dialog</h1>
<!-- Generated by Ddoc from src/dlangui/dialogs/dialog.d -->
<!-- Generated by Ddoc from src\dlangui\dialogs\dialog.d -->
This module contains common Dialog implementation.
<br><br>
<b>Synopsis:</b><br>
@ -60,11 +60,21 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="Dialog"></a>class <u>Dialog</u>: dlangui.widgets.layouts.VerticalLayout;
<dt><big><a name="Dialog"></a>class <u>Dialog</u>: <u>dlangui.widgets.layouts.VerticalLayout</u>;
</big></dt>
<dd>base for all dialogs<br><br>
<dl><dt><big><a name="Dialog.show"></a>void <u>show</u>();
<dl><dt><big><a name="Dialog.createButtonsPanel"></a>Widget <u>createButtonsPanel</u>(const Action[] <i>actions</i>, int <i>defaultActionIndex</i>, int <i>splitBeforeIndex</i>);
</big></dt>
<dd>create panel with buttons based on list of <i>actions</i><br><br>
</dd>
<dt><big><a name="Dialog.init"></a>void <u>init</u>();
</big></dt>
<dd>override to implement creation of dialog controls<br><br>
</dd>
<dt><big><a name="Dialog.show"></a>void <u>show</u>();
</big></dt>
<dd>shows dialog<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.drawbuf</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/drawbuf.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\drawbuf.d -->
This module contains drawing buffer implementation.
<br><br>
<b>Synopsis:</b><br>
@ -83,7 +83,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="DrawBuf"></a>abstract class <u>DrawBuf</u>: dlangui.core.types.RefCountedObject;
<dt><big><a name="DrawBuf"></a>abstract class <u>DrawBuf</u>: <u>dlangui.core.types.RefCountedObject</u>;
</big></dt>
<dd>drawing buffer - image container which allows to perform some drawing operations<br><br>
@ -106,11 +106,6 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>applies current drawbuf alpha to <i>argb</i> color value<br><br>
</dd>
<dt><big><a name="DrawBuf.id"></a>@property uint <u>id</u>();
</big></dt>
<dd>unique ID of drawbug instance, for using with hardware accelerated rendering for caching<br><br>
</dd>
<dt><big><a name="DrawBuf.ninePatch"></a>const @property const(NinePatch)* <u>ninePatch</u>();
</big></dt>
@ -141,25 +136,32 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>returns current <u>height</u><br><br>
</dd>
<dt><big><a name="DrawBuf.resetClipping"></a>void <u>resetClipping</u>();
</big></dt>
<dd>init clip rectangle to full buffer size<br><br>
</dd>
<dt><big><a name="DrawBuf.clipRect"></a>@property ref Rect <u>clipRect</u>();
</big></dt>
<dd>returns clipping rectangle, when <u>clipRect</u>.isEmpty == <b>true</b> -- means no clipping.<br><br>
</dd>
<dt><big><a name="DrawBuf.clipOrFullRect"></a>@property Rect <u>clipOrFullRect</u>();
</big></dt>
<dd>returns clipping rectangle, or (0,0,dx,dy) when no clipping.<br><br>
</dd>
<dt><big><a name="DrawBuf.clipRect"></a>@property void <u>clipRect</u>(ref const Rect <i>rect</i>);
</big></dt>
<dd>sets new clipping rectangle, when <u>clipRect</u>.isEmpty == <b>true</b> -- means no clipping.<br><br>
<dd>returns clipping rectangle, or (0,0,dx,dy) when no clipping.
<br><br>
sets new clipping rectangle, when <u>clipRect</u>.isEmpty == <b>true</b> -- means no clipping.<br><br>
</dd>
<dt><big><a name="DrawBuf.intersectClipRect"></a>@property void <u>intersectClipRect</u>(ref const Rect <i>rect</i>);
</big></dt>
<dd>sets new clipping rectangle, when clipRect.isEmpty == <b>true</b> -- means no clipping.<br><br>
<dd>sets new clipping rectangle, intersect with previous one.<br><br>
</dd>
<dt><big><a name="DrawBuf.isClippedOut"></a>@property bool <u>isClippedOut</u>(ref const Rect <i>rect</i>);
</big></dt>
<dd>returns <b>true</b> if rectangle is completely clipped out and cannot be drawn.<br><br>
</dd>
<dt><big><a name="DrawBuf.applyClipping"></a>bool <u>applyClipping</u>(ref Rect <i>rc</i>);
@ -238,6 +240,12 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>RAII setting/restoring of clip rectangle<br><br>
<dl><dt><big><a name="ClipRectSaver.this"></a>this(DrawBuf <i>buf</i>, ref Rect <i>newClipRect</i>, uint <i>newAlpha</i> = 0);
</big></dt>
<dd>apply (intersect) new clip rectangle and alpha to draw <i>buf</i>; restore<br><br>
</dd>
</dl>
</dd>
</dl>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.editors</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/editors.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\editors.d -->
This module contains implementation of <u>editors</u>.
<br><br>
EditLine - single line editor.
@ -327,8 +327,11 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="EditAction.Replace"></a><u>Replace</u></big></dt>
<dd>insert content into specified position (range.start)
delete content in range
replace range content with new content<br><br>
<br><br>
delete content in range
<br><br>
replace range content with new content<br><br>
</dd>
</dl>
@ -536,7 +539,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="EditWidgetBase"></a>abstract class <u>EditWidgetBase</u>: dlangui.widgets.widget.WidgetGroup, dlangui.widgets.editors.EditableContentListener, dlangui.widgets.menu.MenuItemActionHandler;
<dt><big><a name="EditWidgetBase"></a>abstract class <u>EditWidgetBase</u>: <u>dlangui.widgets.scroll.ScrollWidgetBase</u>, <u>dlangui.widgets.editors.EditableContentListener</u>, <u>dlangui.widgets.menu.MenuItemActionHandler</u>;
</big></dt>
<dd>base for all editor widgets<br><br>
@ -653,11 +656,6 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>draws caret<br><br>
</dd>
<dt><big><a name="EditWidgetBase.updateScrollbars"></a>protected void <u>updateScrollbars</u>();
</big></dt>
<dd>override to update scrollbars - if necessary<br><br>
</dd>
<dt><big><a name="EditWidgetBase.correctCaretPos"></a>protected void <u>correctCaretPos</u>();
</big></dt>
@ -701,7 +699,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="EditLine"></a>class <u>EditLine</u>: dlangui.widgets.editors.EditWidgetBase;
<dt><big><a name="EditLine"></a>class <u>EditLine</u>: <u>dlangui.widgets.editors.EditWidgetBase</u>;
</big></dt>
<dd>single line editor<br><br>
@ -737,34 +735,44 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="EditBox"></a>class <u>EditBox</u>: dlangui.widgets.editors.EditWidgetBase, dlangui.widgets.controls.OnScrollHandler;
<dt><big><a name="EditBox"></a>class <u>EditBox</u>: <u>dlangui.widgets.editors.EditWidgetBase</u>;
</big></dt>
<dd>single line editor<br><br>
<dl><dt><big><a name="EditBox.onScrollEvent"></a>bool <u>onScrollEvent</u>(AbstractSlider <i>source</i>, ScrollEvent <i>event</i>);
<dl><dt><big><a name="EditBox.updateHScrollBar"></a>protected void <u>updateHScrollBar</u>();
</big></dt>
<dd>handle scroll <i>event</i><br><br>
<dd>update horizontal scrollbar widget position<br><br>
</dd>
<dt><big><a name="EditBox.updateVScrollBar"></a>protected void <u>updateVScrollBar</u>();
</big></dt>
<dd>update verticat scrollbar widget position<br><br>
</dd>
<dt><big><a name="EditBox.onHScroll"></a>bool <u>onHScroll</u>(ScrollEvent <i>event</i>);
</big></dt>
<dd>process horizontal scrollbar <i>event</i><br><br>
</dd>
<dt><big><a name="EditBox.onVScroll"></a>bool <u>onVScroll</u>(ScrollEvent <i>event</i>);
</big></dt>
<dd>process vertical scrollbar <i>event</i><br><br>
</dd>
<dt><big><a name="EditBox.fullContentSize"></a>Point <u>fullContentSize</u>();
</big></dt>
<dd>calculate full content size in pixels<br><br>
</dd>
<dt><big><a name="EditBox.measure"></a>void <u>measure</u>(int <i>parentWidth</i>, int <i>parentHeight</i>);
</big></dt>
<dd><u>measure</u><br><br>
</dd>
<dt><big><a name="EditBox.layout"></a>void <u>layout</u>(Rect <i>rc</i>);
</big></dt>
<dd>Set widget rectangle to specified value and <u>layout</u> widget contents. (Step 2 of two phase <u>layout</u>).<br><br>
</dd>
<dt><big><a name="EditBox.drawLineBackground"></a>protected void <u>drawLineBackground</u>(DrawBuf <i>buf</i>, int <i>lineIndex</i>, Rect <i>lineRect</i>, Rect <i>visibleRect</i>);
</big></dt>
<dd>override to custom highlight of line background<br><br>
</dd>
<dt><big><a name="EditBox.onDraw"></a>void <u>onDraw</u>(DrawBuf <i>buf</i>);
</big></dt>
<dd>draw content<br><br>
</dd>
</dl>
</dd>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.events</h1>
<!-- Generated by Ddoc from src/dlangui/core/events.d -->
<!-- Generated by Ddoc from src\dlangui\core\events.d -->
This module contains dlangui event types declarations.
<br><br>
<b>Synopsis:</b><br>
@ -76,7 +76,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dd>additional custom (Object) parameter<br><br>
</dd>
<dt><big><a name="Action.this"></a> this(Action <i>a</i>);
<dt><big><a name="Action.this"></a>this(Action <i>a</i>);
</big></dt>
<dd>deep copy constructor<br><br>
@ -86,17 +86,17 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dd>deep copy<br><br>
</dd>
<dt><big><a name="Action.this"></a> this(int <i>id</i>);
<dt><big><a name="Action.this"></a>this(int <i>id</i>);
</big></dt>
<dd>create action only with ID<br><br>
</dd>
<dt><big><a name="Action.this"></a> this(int <i>id</i>, uint <i>keyCode</i>, uint <i>keyFlags</i> = 0);
<dt><big><a name="Action.this"></a>this(int <i>id</i>, uint <i>keyCode</i>, uint <i>keyFlags</i> = 0);
</big></dt>
<dd>action with accelerator, w/o label<br><br>
</dd>
<dt><big><a name="Action.this"></a> this(int <i>id</i>, dstring <i>label</i>, string <i>iconResourceId</i> = null, uint <i>keyCode</i> = 0, uint <i>keyFlags</i> = 0);
<dt><big><a name="Action.this"></a>this(int <i>id</i>, dstring <i>label</i>, string <i>iconResourceId</i> = null, uint <i>keyCode</i> = 0, uint <i>keyFlags</i> = 0);
</big></dt>
<dd>action with <i>label</i>, icon, and accelerator<br><br>
@ -160,11 +160,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>mouse flag bits<br><br>
<dl><dt><big><a name="MouseFlag.Control"></a><u>Control</u></big></dt>
<dd>Ctrl key is down<br><br>
</dd>
<dt><big><a name="MouseFlag.LButton"></a><u>LButton</u></big></dt>
<dl><dt><big><a name="MouseFlag.LButton"></a><u>LButton</u></big></dt>
<dd>Left mouse button is down<br><br>
</dd>
@ -175,10 +171,6 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dt><big><a name="MouseFlag.RButton"></a><u>RButton</u></big></dt>
<dd>Right mouse button is down<br><br>
</dd>
<dt><big><a name="MouseFlag.Shift"></a><u>Shift</u></big></dt>
<dd><u>Shift</u> key is down<br><br>
</dd>
<dt><big><a name="MouseFlag.XButton1"></a><u>XButton1</u></big></dt>
<dd>X1 mouse button is down<br><br>
@ -187,10 +179,48 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dt><big><a name="MouseFlag.XButton2"></a><u>XButton2</u></big></dt>
<dd>X2 mouse button is down<br><br>
</dd>
<dt><big><a name="MouseFlag.Control"></a><u>Control</u></big></dt>
<dd>Ctrl key is down<br><br>
</dd>
<dt><big><a name="MouseFlag.Shift"></a><u>Shift</u></big></dt>
<dd><u>Shift</u> key is down<br><br>
</dd>
<dt><big><a name="MouseFlag.Alt"></a><u>Alt</u></big></dt>
<dd><u>Alt</u> key is down<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="MouseButton"></a>enum <u>MouseButton</u>: ubyte;
</big></dt>
<dd>mouse button<br><br>
<dl><dt><big><a name="MouseButton.None"></a><u>None</u></big></dt>
<dd>no button<br><br>
</dd>
<dt><big><a name="MouseButton.Left"></a><u>Left</u></big></dt>
<dd>left mouse button<br><br>
</dd>
<dt><big><a name="MouseButton.Right"></a><u>Right</u></big></dt>
<dd>right mouse button<br><br>
</dd>
<dt><big><a name="MouseButton.Middle"></a><u>Middle</u></big></dt>
<dd>right mouse button<br><br>
</dd>
<dt><big><a name="MouseButton.XButton1"></a><u>XButton1</u></big></dt>
<dd>additional mouse button 1<br><br>
</dd>
<dt><big><a name="MouseButton.XButton2"></a><u>XButton2</u></big></dt>
<dd>additional mouse button 2<br><br>
</dd>
</dl>
</dd>
@ -237,36 +267,6 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>returns button down state duration in hnsecs (1/10000 of second).<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="MouseButton"></a>enum <u>MouseButton</u>: ubyte;
</big></dt>
<dd>mouse button<br><br>
<dl><dt><big><a name="MouseButton.None"></a><u>None</u></big></dt>
<dd>no button<br><br>
</dd>
<dt><big><a name="MouseButton.Left"></a><u>Left</u></big></dt>
<dd>left mouse button<br><br>
</dd>
<dt><big><a name="MouseButton.Right"></a><u>Right</u></big></dt>
<dd>right mouse button<br><br>
</dd>
<dt><big><a name="MouseButton.Middle"></a><u>Middle</u></big></dt>
<dd>right mouse button<br><br>
</dd>
<dt><big><a name="MouseButton.XButton1"></a><u>XButton1</u></big></dt>
<dd>additional mouse button 1<br><br>
</dd>
<dt><big><a name="MouseButton.XButton2"></a><u>XButton2</u></big></dt>
<dd>additional mouse button 2<br><br>
</dd>
</dl>
</dd>
@ -409,7 +409,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dd>entered <u>text</u>, for Text action<br><br>
</dd>
<dt><big><a name="KeyEvent.this"></a> this(KeyAction <i>action</i>, uint <i>keyCode</i>, uint <i>flags</i>, dstring <i>text</i> = null);
<dt><big><a name="KeyEvent.this"></a>this(KeyAction <i>action</i>, uint <i>keyCode</i>, uint <i>flags</i>, dstring <i>text</i> = null);
</big></dt>
<dd>create key event<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.dialogs.filedlg</h1>
<!-- Generated by Ddoc from src/dlangui/dialogs/filedlg.d -->
<!-- Generated by Ddoc from src\dlangui\dialogs\filedlg.d -->
This module contains FileDialog implementation.
<br><br>
Can show dialog for open / save.
@ -77,10 +77,16 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="FileDialog"></a>class <u>FileDialog</u>: dlangui.dialogs.dialog.Dialog;
<dt><big><a name="FileDialog"></a>class <u>FileDialog</u>: <u>dlangui.dialogs.dialog.Dialog</u>;
</big></dt>
<dd>file open / save dialog<br><br>
<dl><dt><big><a name="FileDialog.init"></a>void <u>init</u>();
</big></dt>
<dd>override to implement creation of dialog controls<br><br>
</dd>
</dl>
</dd>
</dl>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.fonts</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/fonts.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\fonts.d -->
This module contains base <u>fonts</u> access interface and common implementation.
<br><br>
Font - base class for <u>fonts</u>.
@ -128,38 +128,13 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="glyphDestroyCallback"></a>@property void function(uint id) <u>glyphDestroyCallback</u>();
</big></dt>
<dd>get glyph destroy callback (to cleanup OpenGL caches)
<br><br>
Used for resource management. Usually you don't have to call it manually.<br><br>
</dd>
<dt><big><a name="glyphDestroyCallback"></a>@property void <u>glyphDestroyCallback</u>(void function(uint id) <i>callback</i>);
</big></dt>
<dd>Set glyph destroy <i>callback</i> (to cleanup OpenGL caches)
This <i>callback</i> is used to tell OpenGL glyph cache that glyph is not more used - to let OpenGL glyph cache delete texture if all glyphs in it are no longer used.
<br><br>
Used for resource management. Usually you don't have to call it manually.<br><br>
</dd>
<dt><big><a name="nextGlyphId"></a>uint <u>nextGlyphId</u>();
</big></dt>
<dd>ID generator for glyphs
<br><br>
Generates next glyph ID. Unique IDs are being used to control OpenGL glyph cache items lifetime.
<br><br>
Used for resource management. Usually you don't have to call it manually.<br><br>
</dd>
<dt><big><a name="MAX_WIDTH_UNSPECIFIED"></a>immutable int <u>MAX_WIDTH_UNSPECIFIED</u>;
</big></dt>
<dd>constant for measureText maxWidth paramenter - to tell that all characters of text string should be measured.<br><br>
</dd>
<dt><big><a name="Font"></a>abstract class <u>Font</u>: dlangui.core.types.RefCountedObject;
<dt><big><a name="Font"></a>abstract class <u>Font</u>: <u>dlangui.core.types.RefCountedObject</u>;
</big></dt>
<dd>Instance of font with specific size, weight, face, etc.
<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.ftfonts</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/ftfonts.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\ftfonts.d -->
This file contains FontManager implementation based on FreeType library.
<br><br>
<b>License:</b><br>
@ -40,11 +40,11 @@ Boost License 1.0
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="FreeTypeFont"></a>class <u>FreeTypeFont</u>: dlangui.graphics.fonts.Font;
<dl><dt><big><a name="FreeTypeFont"></a>class <u>FreeTypeFont</u>: <u>dlangui.graphics.fonts.Font</u>;
</big></dt>
<dd>Font implementation based on Win32 API system fonts.<br><br>
<dl><dt><big><a name="FreeTypeFont.this"></a> this(FontFileItem <i>item</i>, int <i>size</i>);
<dl><dt><big><a name="FreeTypeFont.this"></a>this(FontFileItem <i>item</i>, int <i>size</i>);
</big></dt>
<dd>need to call create() after construction to initialize font<br><br>
@ -76,7 +76,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="FreeTypeFontManager"></a>class <u>FreeTypeFontManager</u>: dlangui.graphics.fonts.FontManager;
<dt><big><a name="FreeTypeFontManager"></a>class <u>FreeTypeFontManager</u>: <u>dlangui.graphics.fonts.FontManager</u>;
</big></dt>
<dd>FreeType based font manager.<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.gldrawbuf</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/gldrawbuf.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\gldrawbuf.d -->
This module contains opengl based drawing buffer implementation.
<br><br>
To enable OpenGL support, build with version(USE_OPENGL);
@ -49,109 +49,6 @@ Boost License 1.0
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="GLDrawBuf"></a>class <u>GLDrawBuf</u>: dlangui.graphics.drawbuf.DrawBuf;
</big></dt>
<dd>drawing buffer - image container which allows to perform some drawing operations<br><br>
<dl><dt><big><a name="GLDrawBuf.scene"></a>@property Scene <u>scene</u>();
</big></dt>
<dd>get current <u>scene</u> (exists only between beforeDrawing() and afterDrawing() calls)<br><br>
</dd>
<dt><big><a name="GLDrawBuf.width"></a>@property int <u>width</u>();
</big></dt>
<dd>returns current <u>width</u><br><br>
</dd>
<dt><big><a name="GLDrawBuf.height"></a>@property int <u>height</u>();
</big></dt>
<dd>returns current <u>height</u><br><br>
</dd>
<dt><big><a name="GLDrawBuf.beforeDrawing"></a>void <u>beforeDrawing</u>();
</big></dt>
<dd>reserved for hardware-accelerated drawing - begins drawing batch<br><br>
</dd>
<dt><big><a name="GLDrawBuf.afterDrawing"></a>void <u>afterDrawing</u>();
</big></dt>
<dd>reserved for hardware-accelerated drawing - ends drawing batch<br><br>
</dd>
<dt><big><a name="GLDrawBuf.resize"></a>void <u>resize</u>(int <i>width</i>, int <i>height</i>);
</big></dt>
<dd><u>resize</u> buffer<br><br>
</dd>
<dt><big><a name="GLDrawBuf.fill"></a>void <u>fill</u>(uint <i>color</i>);
</big></dt>
<dd><u>fill</u> the whole buffer with solid <i>color</i> (no clipping applied)<br><br>
</dd>
<dt><big><a name="GLDrawBuf.fillRect"></a>void <u>fillRect</u>(Rect <i>rc</i>, uint <i>color</i>);
</big></dt>
<dd>fill rectangle with solid <i>color</i> (clipping is applied)<br><br>
</dd>
<dt><big><a name="GLDrawBuf.drawGlyph"></a>void <u>drawGlyph</u>(int <i>x</i>, int <i>y</i>, Glyph* <i>glyph</i>, uint <i>color</i>);
</big></dt>
<dd>draw 8bit alpha image - usually font <i>glyph</i> using specified <i>color</i> (clipping is applied)<br><br>
</dd>
<dt><big><a name="GLDrawBuf.drawFragment"></a>void <u>drawFragment</u>(int <i>x</i>, int <i>y</i>, DrawBuf <i>src</i>, Rect <i>srcrect</i>);
</big></dt>
<dd>draw source buffer rectangle contents to destination buffer<br><br>
</dd>
<dt><big><a name="GLDrawBuf.drawRescaled"></a>void <u>drawRescaled</u>(Rect <i>dstrect</i>, DrawBuf <i>src</i>, Rect <i>srcrect</i>);
</big></dt>
<dd>draw source buffer rectangle contents to destination buffer rectangle applying rescaling<br><br>
</dd>
<dt><big><a name="GLDrawBuf.clear"></a>void <u>clear</u>();
</big></dt>
<dd>cleanup resources<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="SceneItem"></a>abstract class <u>SceneItem</u>;
</big></dt>
<dd>base class for all drawing scene items.<br><br>
</dd>
<dt><big><a name="Scene"></a>class <u>Scene</u>;
</big></dt>
<dd>Drawing scene (operations sheduled for drawing)<br><br>
<dl><dt><big><a name="Scene.add"></a>void <u>add</u>(SceneItem <i>item</i>);
</big></dt>
<dd><u>add</u> new scene <i>item</i> to scene<br><br>
</dd>
<dt><big><a name="Scene.draw"></a>void <u>draw</u>();
</big></dt>
<dd>draws all scene items and removes them from list<br><br>
</dd>
<dt><big><a name="Scene.reset"></a>void <u>reset</u>();
</big></dt>
<dd>resets scene for new drawing - deletes all items<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="onObjectDestroyedCallback"></a>void <u>onObjectDestroyedCallback</u>(uint <i>pobject</i>);
</big></dt>
<dd>object deletion listener callback function type<br><br>
</dd>
<dt><big><a name="onGlyphDestroyedCallback"></a>void <u>onGlyphDestroyedCallback</u>(uint <i>pobject</i>);
</big></dt>
<dd>object deletion listener callback function type<br><br>
</dd>
</dl>
</section>
<footer>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.glsupport</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/glsupport.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\glsupport.d -->
This module contains OpenGL access layer.
<br><br>
To enable OpenGL support, build with version(USE_OPENGL);
@ -49,27 +49,6 @@ Boost License 1.0
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="genTexture"></a>uint <u>genTexture</u>();
</big></dt>
<dd>generate new texture ID<br><br>
</dd>
<dt><big><a name="deleteTexture"></a>void <u>deleteTexture</u>(ref uint <i>textureId</i>);
</big></dt>
<dd>delete OpenGL texture<br><br>
</dd>
<dt><big><a name="flushGL"></a>void <u>flushGL</u>();
</big></dt>
<dd>call glFlush<br><br>
</dd>
<dt><big><a name="createFramebuffer"></a>bool <u>createFramebuffer</u>(ref uint <i>textureId</i>, ref uint <i>framebufferId</i>, int <i>dx</i>, int <i>dy</i>);
</big></dt>
<dd>returns texture ID for buffer, 0 if failed<br><br>
</dd>
</dl>
</section>
<footer>

139
i18n.html
View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.i18n</h1>
<!-- Generated by Ddoc from src/dlangui/core/i18n.d -->
<!-- Generated by Ddoc from src\dlangui\core\i18n.d -->
This module contains internationalization support implementation.
<br><br>
Translation files contain of simple key=value pair lines.
@ -77,12 +77,12 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>container for UI string - either raw value or string resource ID<br><br>
<dl><dt><big><a name="UIString.this"></a> this(string <i>id</i>);
<dl><dt><big><a name="UIString.this"></a>this(string <i>id</i>);
</big></dt>
<dd>create string with i18n resource <i>id</i><br><br>
</dd>
<dt><big><a name="UIString.this"></a> this(dstring <i>value</i>);
<dt><big><a name="UIString.this"></a>this(dstring <i>value</i>);
</big></dt>
<dd>create string with raw <i>value</i><br><br>
@ -109,36 +109,147 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="UIStringList"></a>class <u>UIStringList</u>;
<dt><big><a name="UIStringCollection"></a>struct <u>UIStringCollection</u>;
</big></dt>
<dd>UI string translator<br><br>
<dd>UIString item collection.<br><br>
<dl><dt><big><a name="UIStringList.clear"></a>void <u>clear</u>();
<dl><dt><big><a name="UIStringCollection.length"></a>@property int <u>length</u>();
</big></dt>
<dd>returns number of items<br><br>
</dd>
<dt><big><a name="UIStringCollection.opIndex"></a>UIString[] <u>opIndex</u>();
</big></dt>
<dd>slice<br><br>
</dd>
<dt><big><a name="UIStringCollection.opSlice"></a>UIString[] <u>opSlice</u>();
</big></dt>
<dd>slice<br><br>
</dd>
<dt><big><a name="UIStringCollection.opSlice"></a>UIString[] <u>opSlice</u>(size_t <i>start</i>, size_t <i>end</i>);
</big></dt>
<dd>slice<br><br>
</dd>
<dt><big><a name="UIStringCollection.opIndex"></a>UIString <u>opIndex</u>(size_t <i>index</i>);
</big></dt>
<dd>read item by <i>index</i><br><br>
</dd>
<dt><big><a name="UIStringCollection.opIndexAssign"></a>UIString <u>opIndexAssign</u>(UIString <i>value</i>, size_t <i>index</i>);
</big></dt>
<dd>modify item by <i>index</i><br><br>
</dd>
<dt><big><a name="UIStringCollection.get"></a>dstring <u>get</u>(size_t <i>index</i>);
</big></dt>
<dd>return unicode string for item by <i>index</i><br><br>
</dd>
<dt><big><a name="UIStringCollection.opAssign"></a>void <u>opAssign</u>(ref UIStringCollection <i>items</i>);
</big></dt>
<dd>Assign UIStringCollection<br><br>
</dd>
<dt><big><a name="UIStringCollection.addAll"></a>void <u>addAll</u>(ref UIStringCollection <i>items</i>);
</big></dt>
<dd>Append UIStringCollection<br><br>
</dd>
<dt><big><a name="UIStringCollection.opAssign"></a>void <u>opAssign</u>(string[] <i>items</i>);
</big></dt>
<dd>Assign array of string resource IDs<br><br>
</dd>
<dt><big><a name="UIStringCollection.addAll"></a>void <u>addAll</u>(string[] <i>items</i>);
</big></dt>
<dd>Append array of string resource IDs<br><br>
</dd>
<dt><big><a name="UIStringCollection.opAssign"></a>void <u>opAssign</u>(dstring[] <i>items</i>);
</big></dt>
<dd>Assign array of unicode strings<br><br>
</dd>
<dt><big><a name="UIStringCollection.addAll"></a>void <u>addAll</u>(dstring[] <i>items</i>);
</big></dt>
<dd>Append array of unicode strings<br><br>
</dd>
<dt><big><a name="UIStringCollection.clear"></a>void <u>clear</u>();
</big></dt>
<dd>remove all items<br><br>
</dd>
<dt><big><a name="UIStringList.set"></a>void <u>set</u>(string <i>id</i>, dstring <i>value</i>);
<dt><big><a name="UIStringCollection.add"></a>void <u>add</u>(string <i>item</i>, int <i>index</i> = -1);
</big></dt>
<dd><u>set</u> item <i>value</i><br><br>
<dd>Insert resource id <i>item</i> into specified position<br><br>
</dd>
<dt><big><a name="UIStringList.get"></a>const dstring <u>get</u>(string <i>id</i>);
<dt><big><a name="UIStringCollection.add"></a>void <u>add</u>(dstring <i>item</i>, int <i>index</i> = -1);
</big></dt>
<dd><u>get</u> item value, <b>null</b> if translation is not found for <i>id</i><br><br>
<dd>Insert unicode string <i>item</i> into specified position<br><br>
</dd>
<dt><big><a name="UIStringList.load"></a>bool <u>load</u>(std.<i>stream</i>.InputStream <i>stream</i>);
<dt><big><a name="UIStringCollection.add"></a>void <u>add</u>(UIString <i>item</i>, int <i>index</i> = -1);
</big></dt>
<dd><u>load</u> strings from <i>stream</i><br><br>
<dd>Insert UIString <i>item</i> into specified position<br><br>
</dd>
<dt><big><a name="UIStringList.load"></a>bool <u>load</u>(string[] <i>filenames</i>);
<dt><big><a name="UIStringCollection.remove"></a>void <u>remove</u>(int <i>index</i>);
</big></dt>
<dd><u>load</u> strings from file (utf8, id=value lines)<br><br>
<dd>Remove item with specified <i>index</i><br><br>
</dd>
<dt><big><a name="UIStringCollection.indexOf"></a>int <u>indexOf</u>(dstring <i>str</i>);
</big></dt>
<dd>Return index of first item with specified text or -1 if not found.<br><br>
</dd>
<dt><big><a name="UIStringCollection.indexOf"></a>int <u>indexOf</u>(string <i>strId</i>);
</big></dt>
<dd>Return index of first item with specified string resource id or -1 if not found.<br><br>
</dd>
<dt><big><a name="UIStringCollection.indexOf"></a>int <u>indexOf</u>(UIString <i>str</i>);
</big></dt>
<dd>Return index of first item with specified string or -1 if not found.<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="UIStringTranslator"></a>class <u>UIStringTranslator</u>;
</big></dt>
<dd>UI Strings internationalization translator.<br><br>
<dl><dt><big><a name="UIStringTranslator.findTranslationsDir"></a>shared void <u>findTranslationsDir</u>(string[] <i>dirs</i>...);
</big></dt>
<dd>looks for i18n directory inside one of passed <i>dirs</i>, and uses first found as directory to read i18n files from<br><br>
</dd>
<dt><big><a name="UIStringTranslator.convertResourcePaths"></a>shared string[] <u>convertResourcePaths</u>(string <i>filename</i>);
</big></dt>
<dd>convert resource path - append resource dir if necessary<br><br>
</dd>
<dt><big><a name="UIStringTranslator.load"></a>shared bool <u>load</u>(string <i>mainFilename</i>, string <i>fallbackFilename</i> = null);
</big></dt>
<dd><u>load</u> translation file(s)<br><br>
</dd>
<dt><big><a name="UIStringTranslator.get"></a>shared dstring <u>get</u>(string <i>id</i>);
</big></dt>
<dd>translate string ID to string (returns "UNTRANSLATED: <i>id</i>" for missing values)<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="i18n"></a>UIStringTranslator <u>i18n</u>;
</big></dt>
<dd>Global translator object.<br><br>
</dd>
</dl>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.images</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/images.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\images.d -->
This module contains image loading functions.
<br><br>
Currently uses FreeImage.

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>index</h1>
<!-- Generated by Ddoc from src/index.d -->
<!-- Generated by Ddoc from src\index.d -->
<h1>
@ -76,6 +76,10 @@
<li>TabControl - tabs widget, allows to select one of tabs</li>
<li>TabHost - container for pages controlled by TabControl</li>
<li>TabWidget - combination of TabControl and TabHost</li>
<li>GridWidgetBase - abstract Grid widget</li>
<li>StringGrid - grid view with strings content</li>
<li>TreeWidget - tree view</li>
<li>ComboBox - combo box with text items</li>
</ul>
<h2><a name="layouts" class="anchor" href="#layouts"><span class="octicon octicon-link"></span></a>Layouts</h2>
@ -141,7 +145,7 @@ standard values are used.</li>
dub run dlangui:example1
</pre>
<p>To develop using Visual-D, download sources for dlangui and dependencies into some directory:</p>
<p>To develop using Visual-D, download sources for dlabgui and dependencies into some directory:</p>
<pre class="d_code"> git clone https:<font color=green>//github.com/buggins/dlangui.git
</font> git clone https:<font color=green>//github.com/DerelictOrg/DerelictUtil.git
@ -224,6 +228,8 @@ standard values are used.</li>
</ul><h2>
<a name="hello-world" class="anchor" href="#hello-world"><span class="octicon octicon-link"></span></a>Hello World</h2>
Sample code:
<pre class="d_code"><font color=green>// main.d
</font><font color=blue>import</font> dlangui.all;
<font color=blue>mixin</font> DLANGUI_ENTRY_POINT;
@ -254,6 +260,41 @@ standard values are used.</li>
}
</pre>
Sample dub.json:
<pre class="d_code">{
<font color=red>"name"</font>: <font color=red>"myproject"</font>,
<font color=red>"description"</font>: <font color=red>"sample DLangUI project"</font>,
<font color=red>"homepage"</font>: <font color=red>"https://github.com/buggins/dlangui"</font>,
<font color=red>"license"</font>: <font color=red>"Boost"</font>,
<font color=red>"authors"</font>: [<font color=red>"Vadim Lopatin"</font>],
<font color=red>"targetName"</font>: <font color=red>"example"</font>,
<font color=red>"targetPath"</font>: <font color=red>"bin"</font>,
<font color=red>"targetType"</font>: <font color=red>"executable"</font>,
<font color=red>"sourcePaths"</font>: [<font color=red>"src"</font>],
<font color=red>"sourceFiles"</font>: [
<font color=red>"src/app.d"</font>
],
<font color=red>"copyFiles-windows"</font>: [
<font color=red>"lib/FreeImage.dll"</font>
],
<font color=red>"copyFiles"</font>: [
<font color=red>"res"</font>
],
<font color=red>"dependencies"</font>: {
<font color=red>"dlangui:dlanguilib"</font>: <font color=red>"~master"</font>
}
}
</pre>
There is sample project which is using DLangUI.
<a href="https://github.com/buggins/dlangide">https://github.com/buggins/dlangide</a>
</section>
<footer>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.layouts</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/layouts.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\layouts.d -->
This module contains common <u>layouts</u> implementations.
<br><br>
Layouts are similar to the same in Android.
@ -90,7 +90,36 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="FrameLayout"></a>class <u>FrameLayout</u>: dlangui.widgets.widget.WidgetGroup;
<dt><big><a name="ResizerWidget"></a>class <u>ResizerWidget</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>Resizer control.
Put it between other items in LinearLayout to allow resizing its siblings.
While dragging, it will resize previous and next children in layout.<br><br>
<dl><dt><big><a name="ResizerWidget.getCursorType"></a>uint <u>getCursorType</u>(int <i>x</i>, int <i>y</i>);
</big></dt>
<dd>returns mouse cursor type for widget<br><br>
</dd>
<dt><big><a name="ResizerWidget.measure"></a>void <u>measure</u>(int <i>parentWidth</i>, int <i>parentHeight</i>);
</big></dt>
<dd>Measure widget according to desired width and height constraints. (Step 1 of two phase layout).
<br><br>
</dd>
<dt><big><a name="ResizerWidget.layout"></a>void <u>layout</u>(Rect <i>rc</i>);
</big></dt>
<dd>Set widget rectangle to specified value and <u>layout</u> widget contents. (Step 2 of two phase <u>layout</u>).<br><br>
</dd>
<dt><big><a name="ResizerWidget.onMouseEvent"></a>bool <u>onMouseEvent</u>(MouseEvent <i>event</i>);
</big></dt>
<dd>process mouse <i>event</i>; return <b>true</b> if <i>event</i> is processed by widget.<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="FrameLayout"></a>class <u>FrameLayout</u>: <u>dlangui.widgets.widget.WidgetGroup</u>;
</big></dt>
<dd>place all children into same place (usually, only one child should be visible at a time)<br><br>
@ -116,7 +145,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="TableLayout"></a>class <u>TableLayout</u>: dlangui.widgets.widget.WidgetGroup;
<dt><big><a name="TableLayout"></a>class <u>TableLayout</u>: <u>dlangui.widgets.widget.WidgetGroup</u>;
</big></dt>
<dd>layout children as table with rows and columns<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.linestream</h1>
<!-- Generated by Ddoc from src/dlangui/core/linestream.d -->
<!-- Generated by Ddoc from src\dlangui\core\linestream.d -->
This module contains text file reader implementation.
<br><br>
Support utf8, utf16, utf32 be and le encodings, and line endings - according to D language source file specification.

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.lists</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/lists.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\lists.d -->
This module contains list widgets implementation.
<br><br>
Similar to <u>lists</u> implementation in Android UI API.
@ -80,7 +80,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="WidgetListAdapter"></a>class <u>WidgetListAdapter</u>: dlangui.widgets.lists.ListAdapter;
<dt><big><a name="WidgetListAdapter"></a>class <u>WidgetListAdapter</u>: <u>dlangui.widgets.lists.ListAdapter</u>;
</big></dt>
<dd>List adapter for simple list of widget instances<br><br>
@ -116,11 +116,82 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ListWidget"></a>class <u>ListWidget</u>: dlangui.widgets.widget.WidgetGroup, dlangui.widgets.controls.OnScrollHandler;
<dt><big><a name="StringListAdapter"></a>class <u>StringListAdapter</u>: <u>dlangui.widgets.lists.ListAdapter</u>;
</big></dt>
<dd>List<br><br>
<dd>List adapter providing strings only.<br><br>
<dl><dt><big><a name="ListWidget.orientation"></a>@property Orientation <u>orientation</u>();
<dl><dt><big><a name="StringListAdapter.this"></a>this();
</big></dt>
<dd>create empty string list adapter.<br><br>
</dd>
<dt><big><a name="StringListAdapter.this"></a>this(string[] <i>items</i>);
</big></dt>
<dd>Init with array of string resource IDs.<br><br>
</dd>
<dt><big><a name="StringListAdapter.this"></a>this(dstring[] <i>items</i>);
</big></dt>
<dd>Init with array of unicode strings.<br><br>
</dd>
<dt><big><a name="StringListAdapter.items"></a>@property ref UIStringCollection <u>items</u>();
</big></dt>
<dd>Access to <u>items</u> collection.<br><br>
</dd>
<dt><big><a name="StringListAdapter.itemCount"></a>@property int <u>itemCount</u>();
</big></dt>
<dd>returns number of widgets in list<br><br>
</dd>
<dt><big><a name="StringListAdapter.itemWidget"></a>Widget <u>itemWidget</u>(int <i>index</i>);
</big></dt>
<dd>return list item widget by item <i>index</i><br><br>
</dd>
<dt><big><a name="StringListAdapter.itemState"></a>uint <u>itemState</u>(int <i>index</i>);
</big></dt>
<dd>return list item's state flags<br><br>
</dd>
<dt><big><a name="StringListAdapter.setItemState"></a>uint <u>setItemState</u>(int <i>index</i>, uint <i>flags</i>);
</big></dt>
<dd>set one or more list item's state <i>flags</i>, returns updated state<br><br>
</dd>
<dt><big><a name="StringListAdapter.resetItemState"></a>uint <u>resetItemState</u>(int <i>index</i>, uint <i>flags</i>);
</big></dt>
<dd>reset one or more list item's state <i>flags</i>, returns updated state<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="OnItemSelectedHandler"></a>interface <u>OnItemSelectedHandler</u>;
</big></dt>
<dd>interface - slot for onItemSelectedListener<br><br>
</dd>
<dt><big><a name="OnItemClickHandler"></a>interface <u>OnItemClickHandler</u>;
</big></dt>
<dd>interface - slot for onItemClickListener<br><br>
</dd>
<dt><big><a name="ListWidget"></a>class <u>ListWidget</u>: <u>dlangui.widgets.widget.WidgetGroup</u>, <u>dlangui.widgets.controls.OnScrollHandler</u>;
</big></dt>
<dd>List widget - shows content as hori<br><br>
<dl><dt><big><a name="ListWidget.onItemSelectedListener"></a>Signal!OnItemSelectedHandler <u>onItemSelectedListener</u>;
</big></dt>
<dd>Handle selection change.<br><br>
</dd>
<dt><big><a name="ListWidget.onItemClickListener"></a>Signal!OnItemSelectedHandler <u>onItemClickListener</u>;
</big></dt>
<dd>Handle item click.<br><br>
</dd>
<dt><big><a name="ListWidget.orientation"></a>@property Orientation <u>orientation</u>();
</big></dt>
<dd>returns linear layout <u>orientation</u> (Vertical, Horizontal)<br><br>
@ -264,6 +335,11 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>move selection<br><br>
</dd>
<dt><big><a name="ListWidget.selectedItemIndex"></a>@property int <u>selectedItemIndex</u>();
</big></dt>
<dd>Selected item index.<br><br>
</dd>
<dt><big><a name="ListWidget.onScrollEvent"></a>bool <u>onScrollEvent</u>(AbstractSlider <i>source</i>, ScrollEvent <i>event</i>);
</big></dt>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.logger</h1>
<!-- Generated by Ddoc from src/dlangui/core/logger.d -->
<!-- Generated by Ddoc from src\dlangui\core\logger.d -->
This module contains <u>logger</u> implementation.
<br><br>
<b>Synopsis:</b><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.menu</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/menu.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\menu.d -->
This module contains <u>menu</u> widgets implementation.
<br><br>
MenuItem - <u>menu</u> item properties container - to hold hierarchy of <u>menu</u>.
@ -208,7 +208,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="MenuItemWidget"></a>class <u>MenuItemWidget</u>: dlangui.widgets.widget.WidgetGroup;
<dt><big><a name="MenuItemWidget"></a>class <u>MenuItemWidget</u>: <u>dlangui.widgets.widget.WidgetGroup</u>;
</big></dt>
<dd>widget to draw menu item<br><br>
@ -229,7 +229,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="MenuWidgetBase"></a>class <u>MenuWidgetBase</u>: dlangui.widgets.lists.ListWidget;
<dt><big><a name="MenuWidgetBase"></a>class <u>MenuWidgetBase</u>: <u>dlangui.widgets.lists.ListWidget</u>;
</big></dt>
<dd>base class for menus<br><br>
@ -270,7 +270,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="MainMenu"></a>class <u>MainMenu</u>: dlangui.widgets.menu.MenuWidgetBase;
<dt><big><a name="MainMenu"></a>class <u>MainMenu</u>: <u>dlangui.widgets.menu.MenuWidgetBase</u>;
</big></dt>
<dd>main menu (horizontal)<br><br>
@ -316,7 +316,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="PopupMenu"></a>class <u>PopupMenu</u>: dlangui.widgets.menu.MenuWidgetBase;
<dt><big><a name="PopupMenu"></a>class <u>PopupMenu</u>: <u>dlangui.widgets.menu.MenuWidgetBase</u>;
</big></dt>
<dd>popup menu widget (vertical layout of items)<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.platforms.common.platform</h1>
<!-- Generated by Ddoc from src/dlangui/platforms/common/platform.d -->
<!-- Generated by Ddoc from src\dlangui\platforms\common\platform.d -->
This module contains common Plaform definitions.
<br><br>
Platform is abstraction layer for application.
@ -143,6 +143,11 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>does current capture widget want to receive move events even if pointer left it<br><br>
</dd>
<dt><big><a name="Window.isMouseCaptured"></a>bool <u>isMouseCaptured</u>();
</big></dt>
<dd>returns <b>true</b> if mouse is currently captured<br><br>
</dd>
<dt><big><a name="Window.dispatchMouseEvent"></a>bool <u>dispatchMouseEvent</u>(MouseEvent <i>event</i>);
</big></dt>
@ -260,21 +265,11 @@ When returned from this method, application is shutting down.<br><br>
</big></dt>
<dd>get current <u>platform</u> object instance<br><br>
</dd>
<dt><big><a name="openglEnabled"></a>@property bool <u>openglEnabled</u>();
</big></dt>
<dd>check if hardware acceleration is enabled<br><br>
</dd>
<dt><big><a name="setOpenglEnabled"></a>void <u>setOpenglEnabled</u>();
</big></dt>
<dd>call on app initialization if OpenGL support is detected<br><br>
</dd>
<dt><big><a name="APP_ENTRY_POINT"></a>template <u>APP_ENTRY_POINT</u>()</big></dt>
<dd>put "mixin <u>APP_ENTRY_POINT</u>;" to main module of your dlangui based app<br><br>
<dl><dt><big><a name="WinMain"></a>int <u>WinMain</u>(HINSTANCE <i>hInstance</i>, HINSTANCE <i>hPrevInstance</i>, LPSTR <i>lpCmdLine</i>, int <i>nCmdShow</i>);
<dl><dt><big><a name="APP_ENTRY_POINT.WinMain"></a>int <u>WinMain</u>(void* <i>hInstance</i>, void* <i>hPrevInstance</i>, char* <i>lpCmdLine</i>, int <i>nCmdShow</i>);
</big></dt>
<dd>workaround for link issue when <u>WinMain</u> is located in library<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.popup</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/popup.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\popup.d -->
This module contains <u>popup</u> widgets implementation.
<br><br>
Popups appear above other widgets inside window.
@ -71,6 +71,10 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dt><big><a name="PopupAlign.Point"></a><u>Point</u></big></dt>
<dd>align to specified point<br><br>
</dd>
<dt><big><a name="PopupAlign.FitAnchorSize"></a><u>FitAnchorSize</u></big></dt>
<dd>if popup content size is less than anchor's size, increase it to anchor size<br><br>
</dd>
</dl>
</dd>
@ -84,23 +88,28 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="PopupWidget"></a>class <u>PopupWidget</u>: dlangui.widgets.layouts.LinearLayout;
<dt><big><a name="OnPopupCloseHandler"></a>interface <u>OnPopupCloseHandler</u>;
</big></dt>
<dd>interface - slot for onPopupCloseListener<br><br>
</dd>
<dt><big><a name="PopupWidget"></a>class <u>PopupWidget</u>: <u>dlangui.widgets.layouts.LinearLayout</u>;
</big></dt>
<dd>popup widget container<br><br>
<dl><dt><big><a name="PopupWidget.onPopupCloseListener"></a>@property void delegate(PopupWidget popup) <u>onPopupCloseListener</u>();
<dl><dt><big><a name="PopupWidget.onPopupCloseListener"></a>Signal!OnPopupCloseHandler <u>onPopupCloseListener</u>;
</big></dt>
<dd>popup close listener (called right before closing)<br><br>
</dd>
<dt><big><a name="PopupWidget.onPopupCloseListener"></a>@property PopupWidget <u>onPopupCloseListener</u>(void delegate(PopupWidget popup) <i>listener</i>);
</big></dt>
<dd>set popup close <i>listener</i> (to call right before closing)<br><br>
<dd>popup close signal<br><br>
</dd>
<dt><big><a name="PopupWidget.flags"></a>@property uint <u>flags</u>();
</big></dt>
<dd>returns popup behavior <u>flags</u> (combination of PopupFlags)<br><br>
<dd>popup close listener (called right before closing)
<br><br>
set popup close listener (to call right before closing)
<br><br>
returns popup behavior <u>flags</u> (combination of PopupFlags)<br><br>
</dd>
<dt><big><a name="PopupWidget.flags"></a>@property PopupWidget <u>flags</u>(uint <u>flags</u>);

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.graphics.resources</h1>
<!-- Generated by Ddoc from src/dlangui/graphics/resources.d -->
<!-- Generated by Ddoc from src\dlangui\graphics\resources.d -->
This module contains resource management and drawables implementation.
<br><br>
imageCache is RAM cache of decoded images (as DrawBuf).
@ -58,7 +58,7 @@ Boost License 1.0
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="FrameDrawable"></a>class <u>FrameDrawable</u>: dlangui.graphics.resources.Drawable;
<dl><dt><big><a name="FrameDrawable"></a>class <u>FrameDrawable</u>: <u>dlangui.graphics.resources.Drawable</u>;
</big></dt>
<dd>solid borders (may be of different width) and, optionally, solid inner area<br><br>
@ -76,16 +76,22 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dt><big><a name="createColorDrawable"></a>static Drawable <u>createColorDrawable</u>(string <i>s</i>);
</big></dt>
<dd>decode solid color / gradient / frame drawable from string like #AARRGGBB, e.g. #5599AA
<br><br>
<b>SolidFillDrawable:</b><br>
#AARRGGBB - e.g. #8090A0 or #80ffffff
<br><br>
<b>FrameDrawable:</b><br>
#frameColor,frameWidth[,#middleColor]
or #frameColor,leftBorderWidth,topBorderWidth,rightBorderWidth,bottomBorderWidth[,#middleColor]
e.g. #000000,2,#C0FFFFFF - black frame of width 2 with 75% transparent white middle
e.g. #0000FF,2,3,4,5,#FFFFFF - blue frame with left,top,right,bottom borders of width 2,3,4,5 and white inner area<br><br>
<br><br>
or #frameColor,leftBorderWidth,topBorderWidth,rightBorderWidth,bottomBorderWidth[,#middleColor]
<br><br>
e.g. #000000,2,#C0FFFFFF - black frame of width 2 with 75% transparent white middle
<br><br>
e.g. #0000FF,2,3,4,5,#FFFFFF - blue frame with left,top,right,bottom borders of width 2,3,4,5 and white inner area<br><br>
</dd>
<dt><big><a name="extractStateFlags"></a>void <u>extractStateFlags</u>(ref string[string] <i>attr</i>, ref uint <i>stateMask</i>, ref uint <i>stateValue</i>);
@ -93,7 +99,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dd>converts XML attribute name to State (see http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList)<br><br>
</dd>
<dt><big><a name="StateDrawable"></a>class <u>StateDrawable</u>: dlangui.graphics.resources.Drawable;
<dt><big><a name="StateDrawable"></a>class <u>StateDrawable</u>: <u>dlangui.graphics.resources.Drawable</u>;
</big></dt>
<dd>Drawable which is drawn depending on state (see http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList)<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>screenshots</h1>
<!-- Generated by Ddoc from src/screenshots.d -->
<!-- Generated by Ddoc from src\screenshots.d -->
<hr/>

91
scroll.html Normal file
View File

@ -0,0 +1,91 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - dlangui.widgets.scroll</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr>
<section id="main_content">
<h1>dlangui.widgets.scroll</h1>
<!-- Generated by Ddoc from src\dlangui\widgets\scroll.d -->
<br><br>
<dl><dt><big><a name="ScrollBarMode"></a>enum <u>ScrollBarMode</u>: int;
</big></dt>
<dd>Scroll bar visibility mode.<br><br>
<dl><dt><big><a name="ScrollBarMode.Invisible"></a><u>Invisible</u></big></dt>
<dd>always invisible<br><br>
</dd>
<dt><big><a name="ScrollBarMode.Visible"></a><u>Visible</u></big></dt>
<dd>always visible<br><br>
</dd>
<dt><big><a name="ScrollBarMode.Auto"></a><u>Auto</u></big></dt>
<dd>automatically show/hide scrollbar depending on content size<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ScrollWidget"></a>class <u>ScrollWidget</u>: <u>dlangui.widgets.scroll.ScrollWidgetBase</u>;
</big></dt>
<dd>Widget which can show content of widget group with optional scrolling.<br><br>
<dl><dt><big><a name="ScrollWidget.fullContentSize"></a>Point <u>fullContentSize</u>();
</big></dt>
<dd>calculate full content size in pixels<br><br>
</dd>
<dt><big><a name="ScrollWidget.updateScrollBars"></a>protected void <u>updateScrollBars</u>();
</big></dt>
<dd>update scrollbar positions<br><br>
</dd>
<dt><big><a name="ScrollWidget.onHScroll"></a>bool <u>onHScroll</u>(ScrollEvent <i>event</i>);
</big></dt>
<dd>process horizontal scrollbar <i>event</i><br><br>
</dd>
<dt><big><a name="ScrollWidget.onVScroll"></a>bool <u>onVScroll</u>(ScrollEvent <i>event</i>);
</big></dt>
<dd>process vertical scrollbar <i>event</i><br><br>
</dd>
</dl>
</dd>
</dl>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>

View File

@ -10,7 +10,7 @@
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - src.dlangui.platforms.sdl.sdlapp</title>
<title>DlangUI - cross platform GUI library for D programming language - dlangui.platforms.sdl.sdlapp</title>
</head>
<body>
<div id="container">
@ -30,8 +30,8 @@
<hr>
<section id="main_content">
<h1>src.dlangui.platforms.sdl.sdlapp</h1>
<!-- Generated by Ddoc from src/dlangui/platforms/sdl/sdlapp.d -->
<h1>dlangui.platforms.sdl.sdlapp</h1>
<!-- Generated by Ddoc from src\dlangui\platforms\sdl\sdlapp.d -->
This module contains implementation of SDL2 based backend for dlang library.
<br><br>
<b>Synopsis:</b><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.signals</h1>
<!-- Generated by Ddoc from src/dlangui/core/signals.d -->
<!-- Generated by Ddoc from src\dlangui\core\signals.d -->
This module contains definition of <u>signals</u> / listeners.
<br><br>
Similar to std.<u>signals</u>.
@ -139,17 +139,17 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>Single listener; parameter is interface with single method<br><br>
<dl><dt><big><a name="assigned"></a>bool <u>assigned</u>();
<dl><dt><big><a name="Listener.assigned"></a>final bool <u>assigned</u>();
</big></dt>
<dd>returns <b>true</b> if listener is <u>assigned</u><br><br>
</dd>
<dt><big><a name="opAssign"></a>void <u>opAssign</u>(slot_t <i>listenerDelegate</i>);
<dt><big><a name="Listener.opAssign"></a>final void <u>opAssign</u>(slot_t <i>listenerDelegate</i>);
</big></dt>
<dd>assign delegate<br><br>
</dd>
<dt><big><a name="opAssign"></a>void <u>opAssign</u>(T1 <i>listenerObject</i>);
<dt><big><a name="Listener.opAssign"></a>final void <u>opAssign</u>(T1 <i>listenerObject</i>);
</big></dt>
<dd>assign object implementing interface<br><br>
@ -160,7 +160,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>Single listener; implicitly specified return and parameter types<br><br>
<dl><dt><big><a name="assigned"></a>bool <u>assigned</u>();
<dl><dt><big><a name="Listener.assigned"></a>final bool <u>assigned</u>();
</big></dt>
<dd>returns <b>true</b> if listener is <u>assigned</u><br><br>
@ -171,47 +171,47 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>Multiple listeners; implicitly specified return and parameter types<br><br>
<dl><dt><big><a name="assigned"></a>bool <u>assigned</u>();
<dl><dt><big><a name="Signal.assigned"></a>final bool <u>assigned</u>();
</big></dt>
<dd>returns <b>true</b> if listener is <u>assigned</u><br><br>
</dd>
<dt><big><a name="opAssign"></a>void <u>opAssign</u>(slot_t <i>listener</i>);
<dt><big><a name="Signal.opAssign"></a>final void <u>opAssign</u>(slot_t <i>listener</i>);
</big></dt>
<dd>replace all previously assigned listeners with new one (if <b>null</b> passed, remove all listeners)<br><br>
</dd>
<dt><big><a name="opAssign"></a>void <u>opAssign</u>(T1 <i>listener</i>);
<dt><big><a name="Signal.opAssign"></a>final void <u>opAssign</u>(T1 <i>listener</i>);
</big></dt>
<dd>replace all previously assigned listeners with new one (if <b>null</b> passed, remove all listeners)<br><br>
</dd>
<dt><big><a name="opCall"></a>return_t <u>opCall</u>(params_t <i>params</i>);
<dt><big><a name="Signal.opCall"></a>final return_t <u>opCall</u>(params_t <i>params</i>);
</big></dt>
<dd>call all listeners; for signals having non-void return type, stop iterating when first return value is nonzero<br><br>
</dd>
<dt><big><a name="emit"></a>return_t <u>emit</u>(params_t <i>params</i>);
<dt><big><a name="Signal.emit"></a>final return_t <u>emit</u>(params_t <i>params</i>);
</big></dt>
<dd>call all listeners; for signals having non-void return type, stop iterating when first return value is nonzero<br><br>
</dd>
<dt><big><a name="connect"></a>void <u>connect</u>(slot_t <i>listener</i>);
<dt><big><a name="Signal.connect"></a>final void <u>connect</u>(slot_t <i>listener</i>);
</big></dt>
<dd>add <i>listener</i><br><br>
</dd>
<dt><big><a name="disconnect"></a>void <u>disconnect</u>(slot_t <i>listener</i>);
<dt><big><a name="Signal.disconnect"></a>final void <u>disconnect</u>(slot_t <i>listener</i>);
</big></dt>
<dd>remove <i>listener</i><br><br>
</dd>
<dt><big><a name="connect"></a>void <u>connect</u>(T1 <i>listener</i>);
<dt><big><a name="Signal.connect"></a>final void <u>connect</u>(T1 <i>listener</i>);
</big></dt>
<dd>add <i>listener</i> - as interface member<br><br>
</dd>
<dt><big><a name="disconnect"></a>void <u>disconnect</u>(T1 <i>listener</i>);
<dt><big><a name="Signal.disconnect"></a>final void <u>disconnect</u>(T1 <i>listener</i>);
</big></dt>
<dd>add <i>listener</i> - as interface member<br><br>
@ -222,32 +222,32 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>Multiple listeners; implicitly specified return and parameter types<br><br>
<dl><dt><big><a name="assigned"></a>bool <u>assigned</u>();
<dl><dt><big><a name="Signal.assigned"></a>final bool <u>assigned</u>();
</big></dt>
<dd>returns <b>true</b> if listener is <u>assigned</u><br><br>
</dd>
<dt><big><a name="opAssign"></a>void <u>opAssign</u>(slot_t <i>listener</i>);
<dt><big><a name="Signal.opAssign"></a>final void <u>opAssign</u>(slot_t <i>listener</i>);
</big></dt>
<dd>replace all previously assigned listeners with new one (if <b>null</b> passed, remove all listeners)<br><br>
</dd>
<dt><big><a name="opCall"></a>RETURN_T <u>opCall</u>(T1 <i>params</i>);
<dt><big><a name="Signal.opCall"></a>final RETURN_T <u>opCall</u>(T1 <i>params</i>);
</big></dt>
<dd>call all listeners; for signals having non-void return type, stop iterating when first return value is nonzero<br><br>
</dd>
<dt><big><a name="emit"></a>RETURN_T <u>emit</u>(T1 <i>params</i>);
<dt><big><a name="Signal.emit"></a>final RETURN_T <u>emit</u>(T1 <i>params</i>);
</big></dt>
<dd>call all listeners; for signals having non-void return type, stop iterating when first return value is nonzero<br><br>
</dd>
<dt><big><a name="connect"></a>void <u>connect</u>(slot_t <i>listener</i>);
<dt><big><a name="Signal.connect"></a>final void <u>connect</u>(slot_t <i>listener</i>);
</big></dt>
<dd>add <i>listener</i><br><br>
</dd>
<dt><big><a name="disconnect"></a>void <u>disconnect</u>(slot_t <i>listener</i>);
<dt><big><a name="Signal.disconnect"></a>final void <u>disconnect</u>(slot_t <i>listener</i>);
</big></dt>
<dd>remove <i>listener</i><br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.stdaction</h1>
<!-- Generated by Ddoc from src/dlangui/core/stdaction.d -->
<!-- Generated by Ddoc from src\dlangui\core\stdaction.d -->
Definition of standard actions commonly used in dialogs and controls.
<br><br>
<b>Synopsis:</b><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.styles</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/styles.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\styles.d -->
This module contains declaration of themes and <u>styles</u> implementation.
<br><br>
Style - style container
@ -195,12 +195,12 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dd>access to parent style for this style<br><br>
</dd>
<dt><big><a name="Style.customDrawable"></a>@property ref DrawableRef <u>customDrawable</u>(string <i>id</i>);
<dt><big><a name="Style.customDrawable"></a>ref DrawableRef <u>customDrawable</u>(string <i>id</i>);
</big></dt>
<dd>get custom drawable attribute<br><br>
</dd>
<dt><big><a name="Style.customDrawableId"></a>const @property string <u>customDrawableId</u>(string <i>id</i>);
<dt><big><a name="Style.customDrawableId"></a>const string <u>customDrawableId</u>(string <i>id</i>);
</big></dt>
<dd>get custom drawable attribute<br><br>
@ -377,7 +377,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="Theme"></a>class <u>Theme</u>: dlangui.widgets.styles.Style;
<dt><big><a name="Theme"></a>class <u>Theme</u>: <u>dlangui.widgets.styles.Style</u>;
</big></dt>
<dd><u>Theme</u> - root for style hierarhy.<br><br>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.tabs</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/tabs.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\tabs.d -->
This module contains declaration of tabbed view controls.
<br><br>
TabItemWidget - single tab header in tab control
@ -59,7 +59,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dd>tab item metadata<br><br>
</dd>
<dt><big><a name="TabItemWidget"></a>class <u>TabItemWidget</u>: dlangui.widgets.layouts.HorizontalLayout;
<dt><big><a name="TabItemWidget"></a>class <u>TabItemWidget</u>: <u>dlangui.widgets.layouts.HorizontalLayout</u>;
</big></dt>
<dd>tab item widget - to show tab header<br><br>
@ -100,7 +100,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="TabControl"></a>class <u>TabControl</u>: dlangui.widgets.widget.WidgetGroup;
<dt><big><a name="TabControl"></a>class <u>TabControl</u>: <u>dlangui.widgets.widget.WidgetGroup</u>;
</big></dt>
<dd>tab header - tab labels, with optional More button<br><br>
@ -166,7 +166,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="TabHost"></a>class <u>TabHost</u>: dlangui.widgets.layouts.FrameLayout, dlangui.widgets.tabs.TabHandler;
<dt><big><a name="TabHost"></a>class <u>TabHost</u>: <u>dlangui.widgets.layouts.FrameLayout</u>, <u>dlangui.widgets.tabs.TabHandler</u>;
</big></dt>
<dd>container for widgets controlled by TabControl<br><br>
@ -207,7 +207,7 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="TabWidget"></a>class <u>TabWidget</u>: dlangui.widgets.layouts.VerticalLayout, dlangui.widgets.tabs.TabHandler;
<dt><big><a name="TabWidget"></a>class <u>TabWidget</u>: <u>dlangui.widgets.layouts.VerticalLayout</u>, <u>dlangui.widgets.tabs.TabHandler</u>;
</big></dt>
<dd>compound widget - contains from TabControl widget (tabs header) and TabHost (content pages)<br><br>

177
tree.html Normal file
View File

@ -0,0 +1,177 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - dlangui.widgets.tree</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr>
<section id="main_content">
<h1>dlangui.widgets.tree</h1>
<!-- Generated by Ddoc from src\dlangui\widgets\tree.d -->
<br><br>
<dl><dt><big><a name="TreeActions"></a>enum <u>TreeActions</u>: int;
</big></dt>
<dd>grid control action codes<br><br>
<dl><dt><big><a name="TreeActions.None"></a><u>None</u></big></dt>
<dd>no action<br><br>
</dd>
<dt><big><a name="TreeActions.Up"></a><u>Up</u></big></dt>
<dd>move selection up<br><br>
</dd>
<dt><big><a name="TreeActions.Down"></a><u>Down</u></big></dt>
<dd>move selection down<br><br>
</dd>
<dt><big><a name="TreeActions.Left"></a><u>Left</u></big></dt>
<dd>move selection left<br><br>
</dd>
<dt><big><a name="TreeActions.Right"></a><u>Right</u></big></dt>
<dd>move selection right<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollUp"></a><u>ScrollUp</u></big></dt>
<dd>scroll up, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollDown"></a><u>ScrollDown</u></big></dt>
<dd>scroll down, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollLeft"></a><u>ScrollLeft</u></big></dt>
<dd>scroll left, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollRight"></a><u>ScrollRight</u></big></dt>
<dd>scroll right, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollTop"></a><u>ScrollTop</u></big></dt>
<dd>scroll top w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollBottom"></a><u>ScrollBottom</u></big></dt>
<dd>scroll bottom, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollPageUp"></a><u>ScrollPageUp</u></big></dt>
<dd>scroll up, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollPageDown"></a><u>ScrollPageDown</u></big></dt>
<dd>scroll down, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollPageLeft"></a><u>ScrollPageLeft</u></big></dt>
<dd>scroll left, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.ScrollPageRight"></a><u>ScrollPageRight</u></big></dt>
<dd>scroll right, w/o changing selection<br><br>
</dd>
<dt><big><a name="TreeActions.PageUp"></a><u>PageUp</u></big></dt>
<dd>move cursor one page up<br><br>
</dd>
<dt><big><a name="TreeActions.SelectPageUp"></a><u>SelectPageUp</u></big></dt>
<dd>move cursor one page up with selection<br><br>
</dd>
<dt><big><a name="TreeActions.PageDown"></a><u>PageDown</u></big></dt>
<dd>move cursor one page down<br><br>
</dd>
<dt><big><a name="TreeActions.SelectPageDown"></a><u>SelectPageDown</u></big></dt>
<dd>move cursor one page down with selection<br><br>
</dd>
<dt><big><a name="TreeActions.PageBegin"></a><u>PageBegin</u></big></dt>
<dd>move cursor to the beginning of page<br><br>
</dd>
<dt><big><a name="TreeActions.SelectPageBegin"></a><u>SelectPageBegin</u></big></dt>
<dd>move cursor to the beginning of page with selection<br><br>
</dd>
<dt><big><a name="TreeActions.PageEnd"></a><u>PageEnd</u></big></dt>
<dd>move cursor to the end of page<br><br>
</dd>
<dt><big><a name="TreeActions.SelectPageEnd"></a><u>SelectPageEnd</u></big></dt>
<dd>move cursor to the end of page with selection<br><br>
</dd>
<dt><big><a name="TreeActions.LineBegin"></a><u>LineBegin</u></big></dt>
<dd>move cursor to the beginning of line<br><br>
</dd>
<dt><big><a name="TreeActions.SelectLineBegin"></a><u>SelectLineBegin</u></big></dt>
<dd>move cursor to the beginning of line with selection<br><br>
</dd>
<dt><big><a name="TreeActions.LineEnd"></a><u>LineEnd</u></big></dt>
<dd>move cursor to the end of line<br><br>
</dd>
<dt><big><a name="TreeActions.SelectLineEnd"></a><u>SelectLineEnd</u></big></dt>
<dd>move cursor to the end of line with selection<br><br>
</dd>
<dt><big><a name="TreeActions.DocumentBegin"></a><u>DocumentBegin</u></big></dt>
<dd>move cursor to the beginning of document<br><br>
</dd>
<dt><big><a name="TreeActions.SelectDocumentBegin"></a><u>SelectDocumentBegin</u></big></dt>
<dd>move cursor to the beginning of document with selection<br><br>
</dd>
<dt><big><a name="TreeActions.DocumentEnd"></a><u>DocumentEnd</u></big></dt>
<dd>move cursor to the end of document<br><br>
</dd>
<dt><big><a name="TreeActions.SelectDocumentEnd"></a><u>SelectDocumentEnd</u></big></dt>
<dd>move cursor to the end of document with selection<br><br>
</dd>
</dl>
</dd>
</dl>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.core.types</h1>
<!-- Generated by Ddoc from src/dlangui/core/types.d -->
<!-- Generated by Ddoc from src\dlangui\core\types.d -->
This module declares basic data <u>types</u> for usage in dlangui library.
<br><br>
<b>Synopsis:</b><br>
@ -69,16 +69,118 @@ Boost License 1.0
<b>Authors:</b><br>
Vadim Lopatin, coolreader.org@gmail.com<br><br>
<dl><dt><big><a name="Glyph"></a>struct <u>Glyph</u>;
<dl><dt><big><a name="Point"></a>struct <u>Point</u>;
</big></dt>
<dd>2D point<br><br>
<dl><dt><big><a name="Point.x"></a>int <u>x</u>;
</big></dt>
<dd><u>x</u> coordinate<br><br>
</dd>
<dt><big><a name="Point.y"></a>int <u>y</u>;
</big></dt>
<dd><u>y</u> coordinate<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="Rect"></a>struct <u>Rect</u>;
</big></dt>
<dd>2D rectangle<br><br>
<dl><dt><big><a name="Rect.left"></a>int <u>left</u>;
</big></dt>
<dd>x coordinate of top <u>left</u> corner<br><br>
</dd>
<dt><big><a name="Rect.top"></a>int <u>top</u>;
</big></dt>
<dd>y coordinate of <u>top</u> left corner<br><br>
</dd>
<dt><big><a name="Rect.right"></a>int <u>right</u>;
</big></dt>
<dd>x coordinate of bottom <u>right</u> corner<br><br>
</dd>
<dt><big><a name="Rect.bottom"></a>int <u>bottom</u>;
</big></dt>
<dd>y coordinate of <u>bottom</u> right corner<br><br>
</dd>
<dt><big><a name="Rect.middlex"></a>@property int <u>middlex</u>();
</big></dt>
<dd>returns average of left, right<br><br>
</dd>
<dt><big><a name="Rect.middley"></a>@property int <u>middley</u>();
</big></dt>
<dd>returns average of top, bottom<br><br>
</dd>
<dt><big><a name="Rect.offset"></a>void <u>offset</u>(int <i>dx</i>, int <i>dy</i>);
</big></dt>
<dd>add <u>offset</u> to horizontal and vertical coordinates<br><br>
</dd>
<dt><big><a name="Rect.expand"></a>void <u>expand</u>(int <i>dx</i>, int <i>dy</i>);
</big></dt>
<dd><u>expand</u> rectangle dimensions<br><br>
</dd>
<dt><big><a name="Rect.shrink"></a>void <u>shrink</u>(int <i>dx</i>, int <i>dy</i>);
</big></dt>
<dd><u>shrink</u> rectangle dimensions<br><br>
</dd>
<dt><big><a name="Rect.setMax"></a>void <u>setMax</u>(Rect <i>rc</i>);
</big></dt>
<dd>for all fields, sets this.field to <i>rc</i>.field if <i>rc</i>.field &gt; this.field<br><br>
</dd>
<dt><big><a name="Rect.moveBy"></a>void <u>moveBy</u>(int <i>deltax</i>, int <i>deltay</i>);
</big></dt>
<dd>translate rectangle coordinates by (x,y) - add <i>deltax</i> to x coordinates, and <i>deltay</i> to y coordinates<br><br>
</dd>
<dt><big><a name="Rect.moveToFit"></a>void <u>moveToFit</u>(ref Rect <i>rc</i>);
</big></dt>
<dd>moves this rect to fit <i>rc</i> bounds, retaining the same size<br><br>
</dd>
<dt><big><a name="Rect.intersect"></a>bool <u>intersect</u>(Rect <i>rc</i>);
</big></dt>
<dd>updates this rect to intersection with <i>rc</i>, returns <b>true</b> if result is non empty<br><br>
</dd>
<dt><big><a name="Rect.intersects"></a>bool <u>intersects</u>(Rect <i>rc</i>);
</big></dt>
<dd>returns <b>true</b> if this rect has nonempty intersection with <i>rc</i><br><br>
</dd>
<dt><big><a name="Rect.isPointInside"></a>bool <u>isPointInside</u>(Point <i>pt</i>);
</big></dt>
<dd>returns <b>true</b> if point is inside of this rectangle<br><br>
</dd>
<dt><big><a name="Rect.isPointInside"></a>bool <u>isPointInside</u>(int <i>x</i>, int <i>y</i>);
</big></dt>
<dd>returns <b>true</b> if point is inside of this rectangle<br><br>
</dd>
<dt><big><a name="Rect.isInsideOf"></a>bool <u>isInsideOf</u>(Rect <i>rc</i>);
</big></dt>
<dd>this rectangle is completely inside <i>rc</i><br><br>
</dd>
</dl>
</dd>
<dt><big><a name="Glyph"></a>struct <u>Glyph</u>;
</big></dt>
<dd>character glyph<br><br>
<dl><dt><big><a name="Glyph.id"></a>uint <u>id</u>;
</big></dt>
<dd>&lt; 0: unique <u>id</u> of glyph (for drawing in hardware accelerated scenes)<br><br>
</dd>
<dt><big><a name="Glyph.blackBoxX"></a>ubyte <u>blackBoxX</u>;
<dl><dt><big><a name="Glyph.blackBoxX"></a>ubyte <u>blackBoxX</u>;
</big></dt>
<dd>&lt; 4: width of glyph black box<br><br>
@ -119,6 +221,47 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>base class for reference counted objects, maintains reference counter inplace.<br><br>
</dd>
<dt><big><a name="Ref"></a>struct <u>Ref</u>(T);
</big></dt>
<dd>reference counting support<br><br>
<dl><dt><big><a name="Ref.isNull"></a>const @property bool <u>isNull</u>();
</big></dt>
<dd>returns <b>true</b> if object is not assigned<br><br>
</dd>
<dt><big><a name="Ref.refCount"></a>const @property int <u>refCount</u>();
</big></dt>
<dd>returns counter of references<br><br>
</dd>
<dt><big><a name="Ref.clear"></a>void <u>clear</u>();
</big></dt>
<dd>clears reference<br><br>
</dd>
<dt><big><a name="Ref.get"></a>@property T <u>get</u>();
</big></dt>
<dd>returns object reference (<b>null</b> if not assigned)<br><br>
</dd>
<dt><big><a name="Ref.get"></a>const @property const(T) <u>get</u>();
</big></dt>
<dd>returns const reference from const object<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="fromWStringz"></a>wstring <u>fromWStringz</u>(const(wchar[]) <i>s</i>);
</big></dt>
<dd>conversion from wchar z-string<br><br>
</dd>
<dt><big><a name="fromWStringz"></a>wstring <u>fromWStringz</u>(const(wchar)* <i>s</i>);
</big></dt>
<dd>conversion from wchar z-string<br><br>
</dd>
<dt><big><a name="State"></a>enum <u>State</u>: uint;
</big></dt>
@ -164,6 +307,11 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>appends file path parts with proper delimiters (as well converts delimiters inside path to system) to buffer e.g. <u>appendPath</u>("/home/user", ".myapp", "config") =&gt; "/home/user/.myapp/config"<br><br>
</dd>
<dt><big><a name="splitPath"></a>string[] <u>splitPath</u>(string <i>path</i>);
</big></dt>
<dd>split <i>path</i> into elements, e.g. /home/user/dir1 -&gt; ["home", "user", "dir1"], "c:\dir1\dir2" -&gt; ["c:", "dir1", "dir2"]<br><br>
</dd>
</dl>

View File

@ -31,7 +31,7 @@
<hr>
<section id="main_content">
<h1>dlangui.widgets.widget</h1>
<!-- Generated by Ddoc from src/dlangui/widgets/widget.d -->
<!-- Generated by Ddoc from src\dlangui\widgets\widget.d -->
This module contains declaration of Widget class - base class for all widgets.
<br><br>
Widgets are styleable. Use styleId property to set style to use from current Theme.
@ -102,6 +102,16 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</big></dt>
<dd>interface - slot for onFocusChanged<br><br>
</dd>
<dt><big><a name="OnKeyHandler"></a>interface <u>OnKeyHandler</u>;
</big></dt>
<dd>interface - slot for onKey<br><br>
</dd>
<dt><big><a name="OnMouseHandler"></a>interface <u>OnMouseHandler</u>;
</big></dt>
<dd>interface - slot for onMouse<br><br>
</dd>
<dt><big><a name="FocusMovement"></a>enum <u>FocusMovement</u>: int;
</big></dt>
@ -147,55 +157,805 @@ Vadim Lopatin, coolreader.org@gmail.com<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="WidgetList"></a>struct <u>WidgetList</u>;
<dt><big><a name="Widget"></a>class <u>Widget</u>;
</big></dt>
<dd>widget list holder<br><br>
<dd>Base class for all widgets.
<br><br>
<dl><dt><big><a name="WidgetList.count"></a>const @property int <u>count</u>();
<dl><dt><big><a name="Widget._id"></a>protected string <u>_id</u>;
</big></dt>
<dd>widget id<br><br>
</dd>
<dt><big><a name="Widget._pos"></a>protected Rect <u>_pos</u>;
</big></dt>
<dd>current widget position, set by layout()<br><br>
</dd>
<dt><big><a name="Widget._visibility"></a>protected Visibility <u>_visibility</u>;
</big></dt>
<dd>widget visibility: either Visible, Invisible, Gone<br><br>
</dd>
<dt><big><a name="Widget._styleId"></a>protected string <u>_styleId</u>;
</big></dt>
<dd>style id to lookup style in theme<br><br>
</dd>
<dt><big><a name="Widget._ownStyle"></a>protected Style <u>_ownStyle</u>;
</big></dt>
<dd>own copy of style - to override some of style properties, <b>null</b> of no properties overriden<br><br>
</dd>
<dt><big><a name="Widget._state"></a>protected uint <u>_state</u>;
</big></dt>
<dd>widget state (set of flags from State enum)<br><br>
</dd>
<dt><big><a name="Widget._measuredWidth"></a>protected int <u>_measuredWidth</u>;
</big></dt>
<dd>width measured by measure()<br><br>
</dd>
<dt><big><a name="Widget._measuredHeight"></a>protected int <u>_measuredHeight</u>;
</big></dt>
<dd>height measured by measure()<br><br>
</dd>
<dt><big><a name="Widget._needLayout"></a>protected bool <u>_needLayout</u>;
</big></dt>
<dd><b>true</b> to force layout<br><br>
</dd>
<dt><big><a name="Widget._needDraw"></a>protected bool <u>_needDraw</u>;
</big></dt>
<dd><b>true</b> to force redraw<br><br>
</dd>
<dt><big><a name="Widget._parent"></a>protected Widget <u>_parent</u>;
</big></dt>
<dd>parent widget<br><br>
</dd>
<dt><big><a name="Widget._window"></a>protected Window <u>_window</u>;
</big></dt>
<dd>window (to be used for top level widgets only!)<br><br>
</dd>
<dt><big><a name="Widget._trackHover"></a>protected bool <u>_trackHover</u>;
</big></dt>
<dd>does widget need to track mouse Hover<br><br>
</dd>
<dt><big><a name="Widget.trackHover"></a>const @property bool <u>trackHover</u>();
</big></dt>
<dd>mouse movement processing flag (when <b>true</b>, widget will change Hover state while mouse is moving)<br><br>
</dd>
<dt><big><a name="Widget.trackHover"></a>@property Widget <u>trackHover</u>(bool <i>v</i>);
</big></dt>
<dd>set new <u>trackHover</u> flag value (when <b>true</b>, widget will change Hover state while mouse is moving)<br><br>
</dd>
<dt><big><a name="Widget.getCursorType"></a>uint <u>getCursorType</u>(int <i>x</i>, int <i>y</i>);
</big></dt>
<dd>returns mouse cursor type for widget<br><br>
</dd>
<dt><big><a name="Widget.this"></a>this(string <i>ID</i> = null);
</big></dt>
<dd>create widget, with optional id<br><br>
</dd>
<dt><big><a name="Widget.style"></a>protected const @property const(Style) <u>style</u>();
</big></dt>
<dd>accessor to <u>style</u> - by lookup in theme by styleId (if <u>style</u> id is not set, theme base <u>style</u> will be used).<br><br>
</dd>
<dt><big><a name="Widget.style"></a>protected const @property const(Style) <u>style</u>(uint <i>stateFlags</i>);
</big></dt>
<dd>accessor to <u>style</u> - by lookup in theme by styleId (if <u>style</u> id is not set, theme base <u>style</u> will be used).<br><br>
</dd>
<dt><big><a name="Widget.stateStyle"></a>protected const @property const(Style) <u>stateStyle</u>();
</big></dt>
<dd>returns style for current widget state<br><br>
</dd>
<dt><big><a name="Widget.ownStyle"></a>protected @property Style <u>ownStyle</u>();
</big></dt>
<dd>enforces widget's own style - allows override some of style properties<br><br>
</dd>
<dt><big><a name="Widget.id"></a>const @property string <u>id</u>();
</big></dt>
<dd>returns widget <u>id</u>, <b>null</b> if not set<br><br>
</dd>
<dt><big><a name="Widget.id"></a>@property Widget <u>id</u>(string <u>id</u>);
</big></dt>
<dd>set widget <u>id</u><br><br>
</dd>
<dt><big><a name="Widget.compareId"></a>const bool <u>compareId</u>(string <i>id</i>);
</big></dt>
<dd>compare widget <i>id</i> with specified value, returs <b>true</b> if matches<br><br>
</dd>
<dt><big><a name="Widget.state"></a>const @property uint <u>state</u>();
</big></dt>
<dd>widget <u>state</u> (set of flags from State enum)<br><br>
</dd>
<dt><big><a name="Widget.handleFocusChange"></a>protected void <u>handleFocusChange</u>(bool <i>focused</i>);
</big></dt>
<dd>override to handle focus changes<br><br>
</dd>
<dt><big><a name="Widget.handleCheckChange"></a>protected void <u>handleCheckChange</u>(bool <i>checked</i>);
</big></dt>
<dd>override to handle check changes<br><br>
</dd>
<dt><big><a name="Widget.state"></a>@property Widget <u>state</u>(uint <i>newState</i>);
</big></dt>
<dd>set new widget <u>state</u> (set of flags from State enum)<br><br>
</dd>
<dt><big><a name="Widget.setState"></a>@property Widget <u>setState</u>(uint <i>stateFlagsToSet</i>);
</big></dt>
<dd>add state flags (set of flags from State enum)<br><br>
</dd>
<dt><big><a name="Widget.resetState"></a>@property Widget <u>resetState</u>(uint <i>stateFlagsToUnset</i>);
</big></dt>
<dd>remove state flags (set of flags from State enum)<br><br>
</dd>
<dt><big><a name="Widget.styleId"></a>const @property string <u>styleId</u>();
</big></dt>
<dd>returns widget style id, <b>null</b> if not set<br><br>
</dd>
<dt><big><a name="Widget.styleId"></a>@property Widget <u>styleId</u>(string <i>id</i>);
</big></dt>
<dd>set widget style <i>id</i><br><br>
</dd>
<dt><big><a name="Widget.margins"></a>const @property Rect <u>margins</u>();
</big></dt>
<dd>get <u>margins</u> (between widget bounds and its background)<br><br>
</dd>
<dt><big><a name="Widget.margins"></a>@property Widget <u>margins</u>(Rect <i>rc</i>);
</big></dt>
<dd>set <u>margins</u> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.padding"></a>const @property Rect <u>padding</u>();
</big></dt>
<dd>get <u>padding</u> (between background bounds and content of widget)<br><br>
</dd>
<dt><big><a name="Widget.padding"></a>@property Widget <u>padding</u>(Rect <i>rc</i>);
</big></dt>
<dd>set <u>padding</u> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.backgroundColor"></a>const @property uint <u>backgroundColor</u>();
</big></dt>
<dd>returns background color<br><br>
</dd>
<dt><big><a name="Widget.backgroundColor"></a>@property Widget <u>backgroundColor</u>(uint <i>color</i>);
</big></dt>
<dd>set background <i>color</i> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.backgroundImageId"></a>const @property string <u>backgroundImageId</u>();
</big></dt>
<dd>background image id<br><br>
</dd>
<dt><big><a name="Widget.backgroundImageId"></a>@property Widget <u>backgroundImageId</u>(string <i>imageId</i>);
</big></dt>
<dd>background image id<br><br>
</dd>
<dt><big><a name="Widget.backgroundDrawable"></a>const @property DrawableRef <u>backgroundDrawable</u>();
</big></dt>
<dd>background drawable<br><br>
</dd>
<dt><big><a name="Widget.alpha"></a>const @property uint <u>alpha</u>();
</big></dt>
<dd>widget drawing <u>alpha</u> value (0=opaque .. 255=transparent)<br><br>
</dd>
<dt><big><a name="Widget.alpha"></a>@property Widget <u>alpha</u>(uint <i>value</i>);
</big></dt>
<dd>set widget drawing <u>alpha</u> <i>value</i> (0=opaque .. 255=transparent)<br><br>
</dd>
<dt><big><a name="Widget.textColor"></a>const @property uint <u>textColor</u>();
</big></dt>
<dd>get text color (ARGB 32 bit value)<br><br>
</dd>
<dt><big><a name="Widget.textColor"></a>@property Widget <u>textColor</u>(uint <i>value</i>);
</big></dt>
<dd>set text color (ARGB 32 bit <i>value</i>)<br><br>
</dd>
<dt><big><a name="Widget.textFlags"></a>@property uint <u>textFlags</u>();
</big></dt>
<dd>get text flags (bit set of TextFlag enum values)<br><br>
</dd>
<dt><big><a name="Widget.textFlags"></a>@property Widget <u>textFlags</u>(uint <i>value</i>);
</big></dt>
<dd>set text flags (bit set of TextFlag enum values)<br><br>
</dd>
<dt><big><a name="Widget.fontFace"></a>const @property string <u>fontFace</u>();
</big></dt>
<dd>returns font face<br><br>
</dd>
<dt><big><a name="Widget.fontFace"></a>@property Widget <u>fontFace</u>(string <i>face</i>);
</big></dt>
<dd>set font <i>face</i> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.fontItalic"></a>const @property bool <u>fontItalic</u>();
</big></dt>
<dd>returns font style (italic/normal)<br><br>
</dd>
<dt><big><a name="Widget.fontItalic"></a>@property Widget <u>fontItalic</u>(bool <i>italic</i>);
</big></dt>
<dd>set font style (<i>italic</i>/normal) for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.fontWeight"></a>const @property ushort <u>fontWeight</u>();
</big></dt>
<dd>returns font weight<br><br>
</dd>
<dt><big><a name="Widget.fontWeight"></a>@property Widget <u>fontWeight</u>(ushort <i>weight</i>);
</big></dt>
<dd>set font <i>weight</i> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.fontSize"></a>const @property ushort <u>fontSize</u>();
</big></dt>
<dd>returns font size in pixels<br><br>
</dd>
<dt><big><a name="Widget.fontSize"></a>@property Widget <u>fontSize</u>(ushort <i>size</i>);
</big></dt>
<dd>set font <i>size</i> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.fontFamily"></a>const @property FontFamily <u>fontFamily</u>();
</big></dt>
<dd>returns font family<br><br>
</dd>
<dt><big><a name="Widget.fontFamily"></a>@property Widget <u>fontFamily</u>(FontFamily <i>family</i>);
</big></dt>
<dd>set font <i>family</i> for widget - override one from style<br><br>
</dd>
<dt><big><a name="Widget.alignment"></a>const @property ubyte <u>alignment</u>();
</big></dt>
<dd>returns <u>alignment</u> (combined vertical and horizontal)<br><br>
</dd>
<dt><big><a name="Widget.alignment"></a>@property Widget <u>alignment</u>(ubyte <i>value</i>);
</big></dt>
<dd>sets <u>alignment</u> (combined vertical and horizontal)<br><br>
</dd>
<dt><big><a name="Widget.valign"></a>@property Align <u>valign</u>();
</big></dt>
<dd>returns horizontal alignment<br><br>
</dd>
<dt><big><a name="Widget.halign"></a>@property Align <u>halign</u>();
</big></dt>
<dd>returns vertical alignment<br><br>
</dd>
<dt><big><a name="Widget.font"></a>const @property FontRef <u>font</u>();
</big></dt>
<dd>returns <u>font</u> set for widget using style or set manually<br><br>
</dd>
<dt><big><a name="Widget.text"></a>@property dstring <u>text</u>();
</big></dt>
<dd>returns widget content <u>text</u> (override to support this)<br><br>
</dd>
<dt><big><a name="Widget.text"></a>@property Widget <u>text</u>(dstring <i>s</i>);
</big></dt>
<dd>sets widget content <u>text</u> (override to support this)<br><br>
</dd>
<dt><big><a name="Widget.text"></a>@property Widget <u>text</u>(UIString <i>s</i>);
</big></dt>
<dd>sets widget content <u>text</u> (override to support this)<br><br>
</dd>
<dt><big><a name="Widget.needLayout"></a>@property bool <u>needLayout</u>();
</big></dt>
<dd>returns <b>true</b> if layout is required for widget and its children<br><br>
</dd>
<dt><big><a name="Widget.needDraw"></a>@property bool <u>needDraw</u>();
</big></dt>
<dd>returns <b>true</b> if redraw is required for widget and its children<br><br>
</dd>
<dt><big><a name="Widget.animating"></a>@property bool <u>animating</u>();
</big></dt>
<dd>returns <b>true</b> is widget is being animated - need to call animate() and redraw<br><br>
</dd>
<dt><big><a name="Widget.animate"></a>void <u>animate</u>(long <i>interval</i>);
</big></dt>
<dd>animates window; <i>interval</i> is time left from previous draw, in hnsecs (1/10000000 of second)<br><br>
</dd>
<dt><big><a name="Widget.measuredWidth"></a>@property auto <u>measuredWidth</u>();
</big></dt>
<dd>returns measured width (calculated during measure() call)<br><br>
</dd>
<dt><big><a name="Widget.measuredHeight"></a>@property auto <u>measuredHeight</u>();
</big></dt>
<dd>returns measured height (calculated during measure() call)<br><br>
</dd>
<dt><big><a name="Widget.width"></a>@property int <u>width</u>();
</big></dt>
<dd>returns current <u>width</u> of widget in pixels<br><br>
</dd>
<dt><big><a name="Widget.height"></a>@property int <u>height</u>();
</big></dt>
<dd>returns current <u>height</u> of widget in pixels<br><br>
</dd>
<dt><big><a name="Widget.top"></a>@property int <u>top</u>();
</big></dt>
<dd>returns widget rectangle <u>top</u> position<br><br>
</dd>
<dt><big><a name="Widget.left"></a>@property int <u>left</u>();
</big></dt>
<dd>returns widget rectangle <u>left</u> position<br><br>
</dd>
<dt><big><a name="Widget.pos"></a>@property Rect <u>pos</u>();
</big></dt>
<dd>returns widget rectangle<br><br>
</dd>
<dt><big><a name="Widget.minWidth"></a>@property int <u>minWidth</u>();
</big></dt>
<dd>returns min width constraint<br><br>
</dd>
<dt><big><a name="Widget.maxWidth"></a>@property int <u>maxWidth</u>();
</big></dt>
<dd>returns max width constraint (SIZE_UNSPECIFIED if no constraint set)<br><br>
</dd>
<dt><big><a name="Widget.minHeight"></a>@property int <u>minHeight</u>();
</big></dt>
<dd>returns min height constraint<br><br>
</dd>
<dt><big><a name="Widget.maxHeight"></a>@property int <u>maxHeight</u>();
</big></dt>
<dd>returns max height constraint (SIZE_UNSPECIFIED if no constraint set)<br><br>
</dd>
<dt><big><a name="Widget.maxWidth"></a>@property Widget <u>maxWidth</u>(int <i>value</i>);
</big></dt>
<dd>set max width constraint (SIZE_UNSPECIFIED for no constraint)<br><br>
</dd>
<dt><big><a name="Widget.minWidth"></a>@property Widget <u>minWidth</u>(int <i>value</i>);
</big></dt>
<dd>set max width constraint (0 for no constraint)<br><br>
</dd>
<dt><big><a name="Widget.maxHeight"></a>@property Widget <u>maxHeight</u>(int <i>value</i>);
</big></dt>
<dd>set max height constraint (SIZE_UNSPECIFIED for no constraint)<br><br>
</dd>
<dt><big><a name="Widget.minHeight"></a>@property Widget <u>minHeight</u>(int <i>value</i>);
</big></dt>
<dd>set max height constraint (0 for no constraint)<br><br>
</dd>
<dt><big><a name="Widget.layoutWidth"></a>@property int <u>layoutWidth</u>();
</big></dt>
<dd>returns layout width options (WRAP_CONTENT, FILL_PARENT, or some constant value)<br><br>
</dd>
<dt><big><a name="Widget.layoutHeight"></a>@property int <u>layoutHeight</u>();
</big></dt>
<dd>returns layout height options (WRAP_CONTENT, FILL_PARENT, or some constant value)<br><br>
</dd>
<dt><big><a name="Widget.layoutWeight"></a>@property int <u>layoutWeight</u>();
</big></dt>
<dd>returns layout weight (while resizing to fill parent, widget will be resized proportionally to this value)<br><br>
</dd>
<dt><big><a name="Widget.layoutWidth"></a>@property Widget <u>layoutWidth</u>(int <i>value</i>);
</big></dt>
<dd>sets layout width options (WRAP_CONTENT, FILL_PARENT, or some constant <i>value</i>)<br><br>
</dd>
<dt><big><a name="Widget.layoutHeight"></a>@property Widget <u>layoutHeight</u>(int <i>value</i>);
</big></dt>
<dd>sets layout height options (WRAP_CONTENT, FILL_PARENT, or some constant <i>value</i>)<br><br>
</dd>
<dt><big><a name="Widget.layoutWeight"></a>@property Widget <u>layoutWeight</u>(int <i>value</i>);
</big></dt>
<dd>sets layout weight (while resizing to fill parent, widget will be resized proportionally to this <i>value</i>)<br><br>
</dd>
<dt><big><a name="Widget.visibility"></a>@property Visibility <u>visibility</u>();
</big></dt>
<dd>returns widget <u>visibility</u> (Visible, Invisible, Gone)<br><br>
</dd>
<dt><big><a name="Widget.visibility"></a>@property Widget <u>visibility</u>(Visibility <i>visible</i>);
</big></dt>
<dd>sets widget <u>visibility</u> (Visible, Invisible, Gone)<br><br>
</dd>
<dt><big><a name="Widget.isPointInside"></a>bool <u>isPointInside</u>(int <i>x</i>, int <i>y</i>);
</big></dt>
<dd>returns <b>true</b> if point is inside of this widget<br><br>
</dd>
<dt><big><a name="Widget.enabled"></a>@property bool <u>enabled</u>();
</big></dt>
<dd>return <b>true</b> if state has State.Enabled flag set<br><br>
</dd>
<dt><big><a name="Widget.enabled"></a>@property Widget <u>enabled</u>(bool <i>flg</i>);
</big></dt>
<dd>change <u>enabled</u> state<br><br>
</dd>
<dt><big><a name="Widget.clickable"></a>@property bool <u>clickable</u>();
</big></dt>
<dd>when <b>true</b>, user can click this control, and get onClick listeners called<br><br>
</dd>
<dt><big><a name="Widget.checkable"></a>@property bool <u>checkable</u>();
</big></dt>
<dd>when <b>true</b>, control supports Checked state<br><br>
</dd>
<dt><big><a name="Widget.checked"></a>@property bool <u>checked</u>();
</big></dt>
<dd>get <u>checked</u> state<br><br>
</dd>
<dt><big><a name="Widget.checked"></a>@property Widget <u>checked</u>(bool <i>flg</i>);
</big></dt>
<dd>set <u>checked</u> state<br><br>
</dd>
<dt><big><a name="Widget.focusable"></a>@property bool <u>focusable</u>();
</big></dt>
<dd>whether widget can be focused<br><br>
</dd>
<dt><big><a name="Widget.wantsKeyTracking"></a>@property bool <u>wantsKeyTracking</u>();
</big></dt>
<dd>override and return <b>true</b> to track key events even when not focused<br><br>
</dd>
<dt><big><a name="Widget.focusGroup"></a>@property bool <u>focusGroup</u>();
</big></dt>
<dd>When focus group is set for some parent widget, focus from one of containing widgets can be moved using keyboard only to one of other widgets containing in it and cannot bypass bounds of <u>focusGroup</u>.
<br><br>
If focused widget doesn't have any parent with <u>focusGroup</u> == <b>true</b>, focus may be moved to any focusable within window.<br><br>
</dd>
<dt><big><a name="Widget.focusGroup"></a>@property Widget <u>focusGroup</u>(bool <i>flg</i>);
</big></dt>
<dd>set focus group flag for container widget<br><br>
</dd>
<dt><big><a name="Widget.focusGroupWidget"></a>Widget <u>focusGroupWidget</u>();
</big></dt>
<dd>find nearest parent of this widget with focusGroup flag, returns topmost parent if no focusGroup flag set to any of parents.<br><br>
</dd>
<dt><big><a name="Widget.tabOrder"></a>@property ushort <u>tabOrder</u>();
</big></dt>
<dd>tab order - hint for focus movement using Tab/Shift+Tab<br><br>
</dd>
<dt><big><a name="Widget.visible"></a>@property bool <u>visible</u>();
</big></dt>
<dd>returns <b>true</b> if this widget and all its parents are <u>visible</u><br><br>
</dd>
<dt><big><a name="Widget.canFocus"></a>@property bool <u>canFocus</u>();
</big></dt>
<dd>returns <b>true</b> if widget is focusable and visible<br><br>
</dd>
<dt><big><a name="Widget.setFocus"></a>Widget <u>setFocus</u>();
</big></dt>
<dd>sets focus to this widget or suitable focusable child, returns previously focused widget<br><br>
</dd>
<dt><big><a name="Widget.findFocusableChild"></a>Widget <u>findFocusableChild</u>(bool <i>defaultOnly</i>);
</big></dt>
<dd>searches children for first focusable item, returns <b>null</b> if not found<br><br>
</dd>
<dt><big><a name="Widget.handleAction"></a>bool <u>handleAction</u>(const Action <i>a</i>);
</big></dt>
<dd>override to handle specific actions<br><br>
</dd>
<dt><big><a name="Widget.findKeyAction"></a>protected Action <u>findKeyAction</u>(uint <i>keyCode</i>, uint <i>flags</i>);
</big></dt>
<dd>map key to action<br><br>
</dd>
<dt><big><a name="Widget.onKeyEvent"></a>bool <u>onKeyEvent</u>(KeyEvent <i>event</i>);
</big></dt>
<dd>process key <i>event</i>, return <b>true</b> if <i>event</i> is processed.<br><br>
</dd>
<dt><big><a name="Widget.onMouseEvent"></a>bool <u>onMouseEvent</u>(MouseEvent <i>event</i>);
</big></dt>
<dd>process mouse <i>event</i>; return <b>true</b> if <i>event</i> is processed by widget.<br><br>
</dd>
<dt><big><a name="Widget.onClickListener"></a>Signal!OnClickHandler <u>onClickListener</u>;
</big></dt>
<dd>on click event listener (bool delegate(Widget))<br><br>
</dd>
<dt><big><a name="Widget.onCheckChangeListener"></a>Signal!OnCheckHandler <u>onCheckChangeListener</u>;
</big></dt>
<dd>checked state change event listener (bool delegate(Widget, bool))<br><br>
</dd>
<dt><big><a name="Widget.onFocusChangeListener"></a>Signal!OnFocusHandler <u>onFocusChangeListener</u>;
</big></dt>
<dd>focus state change event listener (bool delegate(Widget, bool))<br><br>
</dd>
<dt><big><a name="Widget.onKeyListener"></a>Signal!OnKeyHandler <u>onKeyListener</u>;
</big></dt>
<dd>key event listener (bool delegate(Widget, KeyEvent)) - return <b>true</b> if event is processed by handler<br><br>
</dd>
<dt><big><a name="Widget.onMouseListener"></a>Signal!OnMouseHandler <u>onMouseListener</u>;
</big></dt>
<dd>mouse event listener (bool delegate(Widget, MouseEvent)) - return <b>true</b> if event is processed by handler<br><br>
</dd>
<dt><big><a name="Widget.addOnClickListener"></a>Widget <u>addOnClickListener</u>(bool delegate(Widget) <i>listener</i>);
</big></dt>
<dd>helper function to add onCheckChangeListener in method chain<br><br>
</dd>
<dt><big><a name="Widget.addOnCheckChangeListener"></a>Widget <u>addOnCheckChangeListener</u>(bool delegate(Widget, bool) <i>listener</i>);
</big></dt>
<dd>helper function to add onCheckChangeListener in method chain<br><br>
</dd>
<dt><big><a name="Widget.addOnFocusChangeListener"></a>Widget <u>addOnFocusChangeListener</u>(bool delegate(Widget, bool) <i>listener</i>);
</big></dt>
<dd>helper function to add onFocusChangeListener in method chain<br><br>
</dd>
<dt><big><a name="Widget.requestLayout"></a>void <u>requestLayout</u>();
</big></dt>
<dd>request relayout of widget and its children<br><br>
</dd>
<dt><big><a name="Widget.invalidate"></a>void <u>invalidate</u>();
</big></dt>
<dd>request redraw<br><br>
</dd>
<dt><big><a name="Widget.measuredContent"></a>protected void <u>measuredContent</u>(int <i>parentWidth</i>, int <i>parentHeight</i>, int <i>contentWidth</i>, int <i>contentHeight</i>);
</big></dt>
<dd>helper function for implement measure() when widget's content dimensions are known<br><br>
</dd>
<dt><big><a name="Widget.measure"></a>void <u>measure</u>(int <i>parentWidth</i>, int <i>parentHeight</i>);
</big></dt>
<dd>Measure widget according to desired width and height constraints. (Step 1 of two phase layout).
<br><br>
</dd>
<dt><big><a name="Widget.layout"></a>void <u>layout</u>(Rect <i>rc</i>);
</big></dt>
<dd>Set widget rectangle to specified value and <u>layout</u> widget contents. (Step 2 of two phase <u>layout</u>).<br><br>
</dd>
<dt><big><a name="Widget.onDraw"></a>void <u>onDraw</u>(DrawBuf <i>buf</i>);
</big></dt>
<dd>Draw widget at its position to buffer<br><br>
</dd>
<dt><big><a name="Widget.applyMargins"></a>void <u>applyMargins</u>(ref Rect <i>rc</i>);
</big></dt>
<dd>Helper function: applies margins to rectangle<br><br>
</dd>
<dt><big><a name="Widget.applyPadding"></a>void <u>applyPadding</u>(ref Rect <i>rc</i>);
</big></dt>
<dd>Helper function: applies padding to rectangle<br><br>
</dd>
<dt><big><a name="Widget.applyAlign"></a>static void <u>applyAlign</u>(ref Rect <i>rc</i>, Point <i>sz</i>, Align <i>ha</i>, Align <i>va</i>);
</big></dt>
<dd>Applies alignment for content of size <i>sz</i> - set rectangle <i>rc</i> to aligned value of content inside of initial value of <i>rc</i>.<br><br>
</dd>
<dt><big><a name="Widget.applyAlign"></a>void <u>applyAlign</u>(ref Rect <i>rc</i>, Point <i>sz</i>);
</big></dt>
<dd>Applies alignment for content of size <i>sz</i> - set rectangle <i>rc</i> to aligned value of content inside of initial value of <i>rc</i>.<br><br>
</dd>
<dt><big><a name="Widget.canShowPopupMenu"></a>bool <u>canShowPopupMenu</u>(int <i>x</i>, int <i>y</i>);
</big></dt>
<dd>returns <b>true</b> if widget can show popup menu (e.g. by mouse right click at point <i>x</i>,<i>y</i>)<br><br>
</dd>
<dt><big><a name="Widget.showPopupMenu"></a>void <u>showPopupMenu</u>(int <i>x</i>, int <i>y</i>);
</big></dt>
<dd>shows popup menu at (<i>x</i>,<i>y</i>)<br><br>
</dd>
<dt><big><a name="Widget.isActionEnabled"></a>bool <u>isActionEnabled</u>(const Action <i>action</i>);
</big></dt>
<dd>override to change popup menu items state<br><br>
</dd>
<dt><big><a name="Widget.childCount"></a>@property int <u>childCount</u>();
</big></dt>
<dd>returns number of children of this widget<br><br>
</dd>
<dt><big><a name="Widget.child"></a>Widget <u>child</u>(int <i>index</i>);
</big></dt>
<dd>returns <u>child</u> by <i>index</i><br><br>
</dd>
<dt><big><a name="Widget.addChild"></a>Widget <u>addChild</u>(Widget <i>item</i>);
</big></dt>
<dd>adds child, returns added <i>item</i><br><br>
</dd>
<dt><big><a name="Widget.removeChild"></a>Widget <u>removeChild</u>(int <i>index</i>);
</big></dt>
<dd>removes child, returns removed item<br><br>
</dd>
<dt><big><a name="Widget.removeChild"></a>Widget <u>removeChild</u>(string <i>id</i>);
</big></dt>
<dd>removes child by ID, returns removed item<br><br>
</dd>
<dt><big><a name="Widget.childIndex"></a>int <u>childIndex</u>(Widget <i>item</i>);
</big></dt>
<dd>returns index of widget in child list, -1 if passed widget is not a child of this widget<br><br>
</dd>
<dt><big><a name="Widget.isChild"></a>bool <u>isChild</u>(Widget <i>item</i>, bool <i>deepSearch</i> = true);
</big></dt>
<dd>returns <b>true</b> if <i>item</i> is child of this widget (when <i>deepSearch</i> == <b>true</b> - returns <b>true</b> if <i>item</i> is this widget or one of children inside children tree).<br><br>
</dd>
<dt><big><a name="Widget.childById"></a>Widget <u>childById</u>(string <i>id</i>, bool <i>deepSearch</i> = true);
</big></dt>
<dd>find child by <i>id</i>, returns <b>null</b> if not found<br><br>
</dd>
<dt><big><a name="Widget.parent"></a>@property Widget <u>parent</u>();
</big></dt>
<dd>returns <u>parent</u> widget, <b>null</b> for top level widget<br><br>
</dd>
<dt><big><a name="Widget.parent"></a>@property Widget <u>parent</u>(Widget <u>parent</u>);
</big></dt>
<dd>sets <u>parent</u> for widget<br><br>
</dd>
<dt><big><a name="Widget.window"></a>@property Window <u>window</u>();
</big></dt>
<dd>returns <u>window</u> (if widget or its parent is attached to <u>window</u>)<br><br>
</dd>
<dt><big><a name="Widget.window"></a>@property void <u>window</u>(Window <u>window</u>);
</big></dt>
<dd>sets <u>window</u> (to be used for top level widget from Window implementation). TODO: hide it from API?<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="ObjectList"></a>struct <u>ObjectList</u>(T);
</big></dt>
<dd>object list holder, owning its objects - on destroy of holder, all own objects will be destroyed<br><br>
<dl><dt><big><a name="ObjectList.count"></a>const @property int <u>count</u>();
</big></dt>
<dd>returns <u>count</u> of items<br><br>
</dd>
<dt><big><a name="WidgetList.get"></a>Widget <u>get</u>(int <i>index</i>);
<dt><big><a name="ObjectList.get"></a>T <u>get</u>(int <i>index</i>);
</big></dt>
<dd><u>get</u> item by <i>index</i><br><br>
</dd>
<dt><big><a name="WidgetList.add"></a>Widget <u>add</u>(Widget <i>item</i>);
<dt><big><a name="ObjectList.add"></a>T <u>add</u>(T <i>item</i>);
</big></dt>
<dd><u>add</u> <i>item</i> to list<br><br>
</dd>
<dt><big><a name="WidgetList.insert"></a>Widget <u>insert</u>(Widget <i>item</i>, int <i>index</i> = -1);
<dt><big><a name="ObjectList.insert"></a>T <u>insert</u>(T <i>item</i>, int <i>index</i> = -1);
</big></dt>
<dd>add <i>item</i> to list<br><br>
</dd>
<dt><big><a name="WidgetList.indexOf"></a>int <u>indexOf</u>(Widget <i>item</i>);
<dt><big><a name="ObjectList.indexOf"></a>int <u>indexOf</u>(T <i>item</i>);
</big></dt>
<dd>find child index for <i>item</i>, return -1 if not found<br><br>
</dd>
<dt><big><a name="WidgetList.indexOf"></a>int <u>indexOf</u>(string <i>id</i>);
<dt><big><a name="ObjectList.indexOf"></a>int <u>indexOf</u>(string <i>id</i>);
</big></dt>
<dd>find child index for item by <i>id</i>, return -1 if not found<br><br>
</dd>
<dt><big><a name="WidgetList.remove"></a>Widget <u>remove</u>(int <i>index</i>);
<dt><big><a name="ObjectList.remove"></a>T <u>remove</u>(int <i>index</i>);
</big></dt>
<dd><u>remove</u> item from list, return removed item<br><br>
</dd>
<dt><big><a name="WidgetList.clear"></a>void <u>clear</u>();
<dt><big><a name="ObjectList.replace"></a>void <u>replace</u>(T <i>item</i>, int <i>index</i>);
</big></dt>
<dd>Replace <i>item</i> with another value, destroy old value.<br><br>
</dd>
<dt><big><a name="ObjectList.clear"></a>void <u>clear</u>();
</big></dt>
<dd>remove and destroy all items<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="WidgetGroup"></a>class <u>WidgetGroup</u>: dlangui.widgets.widget.Widget;
<dt><big><a name="WidgetList"></a>alias <u>WidgetList</u> = ObjectList!(Widget).ObjectList;
</big></dt>
<dd>base class for widgets which have children<br><br>
<dd>Widget list holder.<br><br>
</dd>
<dt><big><a name="WidgetGroup"></a>class <u>WidgetGroup</u>: <u>dlangui.widgets.widget.Widget</u>;
</big></dt>
<dd>Base class for widgets which have children.<br><br>
<dl><dt><big><a name="WidgetGroup.childCount"></a>@property int <u>childCount</u>();
</big></dt>

View File

@ -1,10 +1,46 @@
<html><head>
<META http-equiv="content-type" content="text/html; charset=utf-8">
<title>dlangui.platforms.windows.win32drawbuf</title>
</head><body>
<h1>dlangui.platforms.windows.win32drawbuf</h1>
<!-- Generated by Ddoc from src/dlangui/platforms/windows/win32drawbuf.d -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - dlangui.platforms.windows.win32drawbuf</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr>
<section id="main_content">
<h1>dlangui.platforms.windows.win32drawbuf</h1>
<!-- Generated by Ddoc from src\dlangui\platforms\windows\win32drawbuf.d -->
<br><br>
<hr><small>Page generated by <a href="http://dlang.org/ddoc.html">Ddoc</a>. </small>
</body></html>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>

View File

@ -1,10 +1,124 @@
<html><head>
<META http-equiv="content-type" content="text/html; charset=utf-8">
<title>dlangui.platforms.windows.win32fonts</title>
</head><body>
<h1>dlangui.platforms.windows.win32fonts</h1>
<!-- Generated by Ddoc from src/dlangui/platforms/windows/win32fonts.d -->
<br><br>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - dlangui.platforms.windows.win32fonts</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr><small>Page generated by <a href="http://dlang.org/ddoc.html">Ddoc</a>. </small>
</body></html>
<hr>
<section id="main_content">
<h1>dlangui.platforms.windows.win32fonts</h1>
<!-- Generated by Ddoc from src\dlangui\platforms\windows\win32fonts.d -->
<br><br>
<dl><dt><big><a name="Win32Font"></a>class <u>Win32Font</u>: <u>dlangui.graphics.fonts.Font</u>;
</big></dt>
<dd>Font implementation based on Win32 API system fonts.<br><br>
<dl><dt><big><a name="Win32Font.this"></a>this();
</big></dt>
<dd>need to call create() after construction to initialize font<br><br>
</dd>
<dt><big><a name="Win32Font.clear"></a>void <u>clear</u>();
</big></dt>
<dd>cleanup resources<br><br>
</dd>
<dt><big><a name="Win32Font.create"></a>bool <u>create</u>(FontDef* <i>def</i>, int <i>size</i>, int <i>weight</i>, bool <i>italic</i>);
</big></dt>
<dd>init from font definition<br><br>
</dd>
</dl>
</dd>
<dt><big><a name="Win32FontManager"></a>class <u>Win32FontManager</u>: <u>dlangui.graphics.fonts.FontManager</u>;
</big></dt>
<dd>Font manager implementation based on Win32 API system fonts.<br><br>
<dl><dt><big><a name="Win32FontManager.this"></a>this();
</big></dt>
<dd>initialize in constructor<br><br>
</dd>
<dt><big><a name="Win32FontManager.init"></a>bool <u>init</u>();
</big></dt>
<dd>initialize font manager by enumerating of system fonts<br><br>
</dd>
<dt><big><a name="Win32FontManager._emptyFontRef"></a>FontRef <u>_emptyFontRef</u>;
</big></dt>
<dd>for returning of not found font<br><br>
</dd>
<dt><big><a name="Win32FontManager.getFont"></a>ref FontRef <u>getFont</u>(int <i>size</i>, int <i>weight</i>, bool <i>italic</i>, FontFamily <i>family</i>, string <i>face</i>);
</big></dt>
<dd>get font by properties<br><br>
</dd>
<dt><big><a name="Win32FontManager.findFace"></a>FontDef* <u>findFace</u>(FontFamily <i>family</i>);
</big></dt>
<dd>find font face definition by <i>family</i> only (try to get one of defaults for <i>family</i> if possible)<br><br>
</dd>
<dt><big><a name="Win32FontManager.findFace"></a>FontDef* <u>findFace</u>(string <i>face</i>);
</big></dt>
<dd>find font <i>face</i> definition by <i>face</i> only<br><br>
</dd>
<dt><big><a name="Win32FontManager.findFace"></a>FontDef* <u>findFace</u>(FontFamily <i>family</i>, string <i>face</i>);
</big></dt>
<dd>find font <i>face</i> definition by <i>family</i> and <i>face</i><br><br>
</dd>
<dt><big><a name="Win32FontManager.registerFont"></a>bool <u>registerFont</u>(FontFamily <i>family</i>, string <i>fontFace</i>, ubyte <i>pitchAndFamily</i>);
</big></dt>
<dd>register enumerated font<br><br>
</dd>
<dt><big><a name="Win32FontManager.checkpoint"></a>void <u>checkpoint</u>();
</big></dt>
<dd>clear usage flags for all entries<br><br>
</dd>
<dt><big><a name="Win32FontManager.cleanup"></a>void <u>cleanup</u>();
</big></dt>
<dd>removes entries not used after last call of checkpoint() or <u>cleanup</u>()<br><br>
</dd>
</dl>
</dd>
</dl>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>

View File

@ -1,10 +1,52 @@
<html><head>
<META http-equiv="content-type" content="text/html; charset=utf-8">
<title>dlangui.platforms.windows.winapp</title>
</head><body>
<h1>dlangui.platforms.windows.winapp</h1>
<!-- Generated by Ddoc from src/dlangui/platforms/windows/winapp.d -->
<br><br>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - dlangui.platforms.windows.winapp</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr><small>Page generated by <a href="http://dlang.org/ddoc.html">Ddoc</a>. </small>
</body></html>
<hr>
<section id="main_content">
<h1>dlangui.platforms.windows.winapp</h1>
<!-- Generated by Ddoc from src\dlangui\platforms\windows\winapp.d -->
<br><br>
<dl><dt><big><a name="UIAppMain"></a>int <u>UIAppMain</u>(string[] <i>args</i>);
</big></dt>
<dd>this function should be defined in user application!<br><br>
</dd>
</dl>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>

View File

@ -1,10 +1,46 @@
<html><head>
<META http-equiv="content-type" content="text/html; charset=utf-8">
<title>src.dlangui.platforms.x11.x11app</title>
</head><body>
<h1>src.dlangui.platforms.x11.x11app</h1>
<!-- Generated by Ddoc from src/dlangui/platforms/x11/x11app.d -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>DlangUI - cross platform GUI library for D programming language - src.dlangui.platforms.x11.x11app</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>DlangUI</h1>
<h2>Cross Platform GUI for D programming language</h2>
</header>
<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>
</section>
<hr>
<section id="main_content">
<h1>src.dlangui.platforms.x11.x11app</h1>
<!-- Generated by Ddoc from src\dlangui\platforms\x11\x11app.d -->
<br><br>
<hr><small>Page generated by <a href="http://dlang.org/ddoc.html">Ddoc</a>. </small>
</body></html>
</section>
<footer>
Dlangui is maintained by <a href="https://github.com/buggins">buggins</a><br>
This page was generated by <a href="http://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>