mirror of https://github.com/buggins/dlangui.git
list item styles
This commit is contained in:
parent
e9085c774b
commit
fc8f1724af
|
@ -35,7 +35,7 @@ extern (C) int UIAppMain(string[] args) {
|
|||
string i18nDir = exePath() ~ "..\\res\\i18n\\";
|
||||
} else {
|
||||
string resourceDir = exePath() ~ "../../res/";
|
||||
string i18nDir = exePath() ~ "../res/i18n/";
|
||||
string i18nDir = exePath() ~ "../../res/i18n/";
|
||||
}
|
||||
string[] imageDirs = [
|
||||
resourceDir
|
||||
|
@ -133,14 +133,14 @@ extern (C) int UIAppMain(string[] args) {
|
|||
|
||||
tabs.addTab(layout, "Tab 1"d);
|
||||
|
||||
static if (false) {
|
||||
static if (true) {
|
||||
ListWidget list = new ListWidget("tab2", Orientation.Vertical);
|
||||
WidgetListAdapter listAdapter = new WidgetListAdapter();
|
||||
for (int i = 0; i < 3000; i++)
|
||||
listAdapter.widgets.add((new TextWidget()).text("List item "d ~ to!dstring(i)));
|
||||
for (int i = 0; i < 1000; i++)
|
||||
listAdapter.widgets.add((new TextWidget()).text("List item "d ~ to!dstring(i)).styleId("LIST_ITEM"));
|
||||
list.ownAdapter = listAdapter;
|
||||
list.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT);
|
||||
tabs.addTab(list, "Lists"d);
|
||||
tabs.addTab(list, "Long List"d);
|
||||
}
|
||||
|
||||
tabs.addTab((new TextWidget()).id("tab3").textColor(0x00802000).text("Tab 3 contents"), "Tab 3"d);
|
||||
|
|
|
@ -674,6 +674,9 @@ Theme createDefaultTheme() {
|
|||
|
||||
Style poopupMenu = res.createSubstyle("POPUP_MENU").backgroundImageId("popup_menu_background_normal");
|
||||
|
||||
Style listItem = res.createSubstyle("LIST_ITEM");
|
||||
listItem.createState(State.Selected, State.Selected).backgroundColor(0xC04040FF).textColor(0x000000);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
|
@ -161,7 +161,7 @@ class Widget {
|
|||
/// returns widget style id, null if not set
|
||||
@property string styleId() const { return _styleId; }
|
||||
/// set widget style id
|
||||
@property void styleId(string id) { _styleId = id; }
|
||||
@property Widget styleId(string id) { _styleId = id; return this; }
|
||||
/// get margins (between widget bounds and its background)
|
||||
@property Rect margins() const { return style.margins; }
|
||||
/// set margins for widget - override one from style
|
||||
|
|
Loading…
Reference in New Issue