dlangui.widgets.combobox

This module contains Combo Box widgets implementation.

More...

Members

Classes

ComboBox
class ComboBox

ComboBox with list of strings.

ComboBoxBase
class ComboBoxBase

Abstract ComboBox.

ComboEdit
class ComboEdit

Editable ComboBox with list of strings.

IconTextComboBox
class IconTextComboBox

ComboBox with list of strings.

Detailed Description

Synopsis:

import dlangui.widgets.combobox;

// creation of simple strings list
ComboBox box = new ComboBox("combo1", ["value 1"d, "value 2"d, "value 3"d]);

// select first item
box.selectedItemIndex = 0;

// get selected item text
println(box.text);

Meta

License

Boost License 1.0

Authors

Vadim Lopatin, coolreader.org@gmail.com