mirror of https://github.com/buggins/dlangui.git
better dml: Sort object attributes; DockWin allow left column width draggable
This commit is contained in:
parent
c1287b5859
commit
e4f24c5495
|
@ -6,6 +6,10 @@ import dlangui.dialogs.dialog;
|
||||||
import dlangui.dml.dmlhighlight;
|
import dlangui.dml.dmlhighlight;
|
||||||
import dlangui.widgets.metadata;
|
import dlangui.widgets.metadata;
|
||||||
import std.array : replaceFirst;
|
import std.array : replaceFirst;
|
||||||
|
import std.algorithm;
|
||||||
|
import std.stdio;
|
||||||
|
import std.array;
|
||||||
|
import std.file;
|
||||||
|
|
||||||
mixin APP_ENTRY_POINT;
|
mixin APP_ENTRY_POINT;
|
||||||
|
|
||||||
|
@ -305,41 +309,70 @@ class EditFrame : AppFrame {
|
||||||
protected ScrollWidget _preview;
|
protected ScrollWidget _preview;
|
||||||
/// create app body widget
|
/// create app body widget
|
||||||
override protected Widget createBody() {
|
override protected Widget createBody() {
|
||||||
VerticalLayout bodyWidget = new VerticalLayout();
|
|
||||||
bodyWidget.layoutWidth = FILL_PARENT;
|
DockHost dockHost = new DockHost();
|
||||||
bodyWidget.layoutHeight = FILL_PARENT;
|
|
||||||
HorizontalLayout hlayout = new HorizontalLayout();
|
dockHost.layoutWidth = FILL_PARENT;
|
||||||
hlayout.layoutWidth = FILL_PARENT;
|
dockHost.layoutHeight = FILL_PARENT;
|
||||||
hlayout.layoutHeight = FILL_PARENT;
|
|
||||||
WidgetsList widgetsList = new WidgetsList();
|
WidgetsList widgetsList = new WidgetsList();
|
||||||
StringListWidget propList = new StringListWidget();
|
StringListWidget propList = new StringListWidget();
|
||||||
|
|
||||||
auto sla = new StringListAdapter();
|
auto sla = new StringListAdapter();
|
||||||
foreach(const ref widget; getRegisteredWidgetsList())
|
|
||||||
{
|
auto registeredWidgetList = getRegisteredWidgetsList();
|
||||||
auto propertyListAdapter = new StringListAdapter();
|
registeredWidgetList.sort!("a > b");
|
||||||
if ( auto meta = findWidgetMetadata(widget) )
|
|
||||||
{
|
foreach(const ref widget; registeredWidgetList) {
|
||||||
foreach(prop; meta.properties)
|
|
||||||
{
|
auto propertyListAdapter = new StringListAdapter();
|
||||||
propertyListAdapter.add(UIString.fromRaw(prop.name ~ " [" ~ to!string(prop.type) ~ "]" ));
|
if ( auto meta = findWidgetMetadata(widget) )
|
||||||
propListsAdapters[widget] = propertyListAdapter;
|
{
|
||||||
}
|
auto mp = meta.properties;
|
||||||
}
|
mp.sort!("a.name < b.name");
|
||||||
|
foreach(const ref prop; mp)
|
||||||
|
{
|
||||||
|
propertyListAdapter.add(UIString.fromRaw(prop.name ~ " [" ~ to!string(prop.type) ~ "]" ));
|
||||||
|
propListsAdapters[widget] = propertyListAdapter;
|
||||||
|
}
|
||||||
|
}
|
||||||
sla.add(UIString.fromRaw(widget));
|
sla.add(UIString.fromRaw(widget));
|
||||||
}
|
}
|
||||||
|
|
||||||
widgetsList.adapter = sla;
|
widgetsList.adapter = sla;
|
||||||
|
|
||||||
auto leftPanel = new VerticalLayout();
|
auto leftPanel = new VerticalLayout();
|
||||||
leftPanel.addChild(new TextWidget().text("Widgets").backgroundColor(0x7F7F7F) );
|
leftPanel.layoutHeight = FILL_PARENT;
|
||||||
|
|
||||||
|
widgetsList.minHeight=800;
|
||||||
|
propList.minHeight=600;
|
||||||
|
|
||||||
|
leftPanel.addChild(new TextWidget().text("Widgets").backgroundColor(0xdddddd).minHeight(50) );
|
||||||
leftPanel.addChild(widgetsList);
|
leftPanel.addChild(widgetsList);
|
||||||
leftPanel.addChild(new TextWidget().text("Widget properties").backgroundColor(0x7F7F7F));
|
leftPanel.addChild(new TextWidget().text("Widget properties").backgroundColor(0xdddddd).minHeight(50));
|
||||||
leftPanel.addChild(propList);
|
leftPanel.addChild(propList);
|
||||||
hlayout.addChild(leftPanel);
|
|
||||||
|
auto leftDockWin = new DockWindow("left dock");
|
||||||
|
|
||||||
|
leftDockWin.bodyWidget = leftPanel;
|
||||||
|
leftDockWin.dockAlignment = DockAlignment.Left;
|
||||||
|
leftDockWin.layoutWidth = makePercentSize(25);
|
||||||
|
leftDockWin.layoutHeight = FILL_PARENT;
|
||||||
|
dockHost.addDockedWindow(leftDockWin);
|
||||||
|
|
||||||
_editor = new DMLSourceEdit();
|
_editor = new DMLSourceEdit();
|
||||||
hlayout.addChild(_editor);
|
|
||||||
_editor.text = SAMPLE_SOURCE_CODE;
|
_editor.text = SAMPLE_SOURCE_CODE;
|
||||||
|
|
||||||
|
auto editorDockWin = new DockWindow("editor");
|
||||||
|
editorDockWin.layoutWidth = makePercentSize(50);
|
||||||
|
editorDockWin.bodyWidget = _editor;
|
||||||
|
editorDockWin.dockAlignment = DockAlignment.Left;
|
||||||
|
editorDockWin.layoutHeight = FILL_PARENT;
|
||||||
|
dockHost.addDockedWindow(editorDockWin);
|
||||||
|
|
||||||
VerticalLayout previewLayout = new VerticalLayout();
|
VerticalLayout previewLayout = new VerticalLayout();
|
||||||
previewLayout.layoutWidth = makePercentSize(50);
|
|
||||||
previewLayout.layoutHeight = FILL_PARENT;
|
previewLayout.layoutHeight = FILL_PARENT;
|
||||||
|
|
||||||
auto previewControls = new HorizontalLayout();
|
auto previewControls = new HorizontalLayout();
|
||||||
auto cbFillHorizontal = new CheckBox(null, "Fill Horizontal"d);
|
auto cbFillHorizontal = new CheckBox(null, "Fill Horizontal"d);
|
||||||
auto cbFillVertical = new CheckBox(null, "Fill Vertical"d);
|
auto cbFillVertical = new CheckBox(null, "Fill Vertical"d);
|
||||||
|
@ -380,11 +413,18 @@ class EditFrame : AppFrame {
|
||||||
_preview.backgroundImageId = "tx_fabric.tiled";
|
_preview.backgroundImageId = "tx_fabric.tiled";
|
||||||
previewLayout.addChild(previewControls);
|
previewLayout.addChild(previewControls);
|
||||||
previewLayout.addChild(_preview);
|
previewLayout.addChild(_preview);
|
||||||
hlayout.addChild(previewLayout);
|
|
||||||
bodyWidget.addChild(hlayout);
|
|
||||||
return bodyWidget;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
auto previewDockWin = new DockWindow("preview");
|
||||||
|
previewDockWin.layoutWidth = makePercentSize(25);
|
||||||
|
previewDockWin.bodyWidget = previewLayout;
|
||||||
|
previewDockWin.dockAlignment = DockAlignment.Right;
|
||||||
|
|
||||||
|
previewDockWin.layoutHeight = FILL_PARENT;
|
||||||
|
dockHost.bodyWidget = editorDockWin;
|
||||||
|
dockHost.addDockedWindow(previewDockWin);
|
||||||
|
|
||||||
|
return dockHost;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
alias onItemDoubleClickHandler = void delegate (Widget source, int itemIndex);
|
alias onItemDoubleClickHandler = void delegate (Widget source, int itemIndex);
|
||||||
|
@ -419,7 +459,6 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
// create some widget to show in window
|
// create some widget to show in window
|
||||||
window.windowIcon = drawableCache.getImage("dlangui-logo1");
|
window.windowIcon = drawableCache.getImage("dlangui-logo1");
|
||||||
|
|
||||||
|
|
||||||
// create some widget to show in window
|
// create some widget to show in window
|
||||||
window.mainWidget = new EditFrame();
|
window.mainWidget = new EditFrame();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue