mirror of https://github.com/buggins/dlangui.git
91 lines
3.7 KiB
HTML
91 lines
3.7 KiB
HTML
<!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>
|