Codestile, widget ordering in dmledit

This commit is contained in:
Grim Maple 2023-01-09 21:01:57 +03:00
parent a4f70afdc6
commit d31b5b9f1c
1 changed files with 30 additions and 29 deletions

View File

@ -308,7 +308,8 @@ class EditFrame : AppFrame {
protected DMLSourceEdit _editor; protected DMLSourceEdit _editor;
protected ScrollWidget _preview; protected ScrollWidget _preview;
/// create app body widget /// create app body widget
override protected Widget createBody() { override protected Widget createBody()
{
DockHost dockHost = new DockHost(); DockHost dockHost = new DockHost();
@ -321,41 +322,41 @@ class EditFrame : AppFrame {
auto sla = new StringListAdapter(); auto sla = new StringListAdapter();
auto registeredWidgetList = getRegisteredWidgetsList(); auto registeredWidgetList = getRegisteredWidgetsList();
registeredWidgetList.sort!("a > b"); registeredWidgetList.sort!("a < b");
foreach(const ref widget; registeredWidgetList) { foreach(const ref widget; registeredWidgetList)
{
auto propertyListAdapter = new StringListAdapter(); auto propertyListAdapter = new StringListAdapter();
if ( auto meta = findWidgetMetadata(widget) ) if ( auto meta = findWidgetMetadata(widget) )
{ {
auto mp = meta.properties; auto mp = meta.properties;
mp.sort!("a.name < b.name"); mp.sort!("a.name < b.name");
foreach(const ref prop; mp) foreach(const ref prop; mp)
{ {
propertyListAdapter.add(UIString.fromRaw(prop.name ~ " [" ~ to!string(prop.type) ~ "]" )); propertyListAdapter.add(UIString.fromRaw(prop.name ~ " [" ~ to!string(prop.type) ~ "]" ));
propListsAdapters[widget] = propertyListAdapter; 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.layoutHeight = FILL_PARENT; leftPanel.layoutHeight = FILL_PARENT;
widgetsList.minHeight=800; widgetsList.minHeight=800;
propList.minHeight=600; propList.minHeight=600;
leftPanel.addChild(new TextWidget().text("Widgets").backgroundColor(0xdddddd).minHeight(50) ); leftPanel.addChild(new TextWidget().text("Widgets").backgroundColor(0xdddddd).minHeight(50) );
leftPanel.addChild(widgetsList); leftPanel.addChild(widgetsList);
leftPanel.addChild(new TextWidget().text("Widget properties").backgroundColor(0xdddddd).minHeight(50)); leftPanel.addChild(new TextWidget().text("Widget properties").backgroundColor(0xdddddd).minHeight(50));
leftPanel.addChild(propList); leftPanel.addChild(propList);
auto leftDockWin = new DockWindow("left dock"); auto leftDockWin = new DockWindow("left dock");
leftDockWin.bodyWidget = leftPanel; leftDockWin.bodyWidget = leftPanel;
leftDockWin.dockAlignment = DockAlignment.Left; leftDockWin.dockAlignment = DockAlignment.Left;
leftDockWin.layoutWidth = makePercentSize(25); leftDockWin.layoutWidth = makePercentSize(25);
leftDockWin.layoutHeight = FILL_PARENT; leftDockWin.layoutHeight = FILL_PARENT;
dockHost.addDockedWindow(leftDockWin); dockHost.addDockedWindow(leftDockWin);
@ -363,11 +364,11 @@ class EditFrame : AppFrame {
_editor = new DMLSourceEdit(); _editor = new DMLSourceEdit();
_editor.text = SAMPLE_SOURCE_CODE; _editor.text = SAMPLE_SOURCE_CODE;
auto editorDockWin = new DockWindow("editor"); auto editorDockWin = new DockWindow("editor");
editorDockWin.layoutWidth = makePercentSize(50); editorDockWin.layoutWidth = makePercentSize(50);
editorDockWin.bodyWidget = _editor; editorDockWin.bodyWidget = _editor;
editorDockWin.dockAlignment = DockAlignment.Left; editorDockWin.dockAlignment = DockAlignment.Left;
editorDockWin.layoutHeight = FILL_PARENT; editorDockWin.layoutHeight = FILL_PARENT;
dockHost.addDockedWindow(editorDockWin); dockHost.addDockedWindow(editorDockWin);
VerticalLayout previewLayout = new VerticalLayout(); VerticalLayout previewLayout = new VerticalLayout();
@ -414,12 +415,12 @@ class EditFrame : AppFrame {
previewLayout.addChild(previewControls); previewLayout.addChild(previewControls);
previewLayout.addChild(_preview); previewLayout.addChild(_preview);
auto previewDockWin = new DockWindow("preview"); auto previewDockWin = new DockWindow("preview");
previewDockWin.layoutWidth = makePercentSize(25); previewDockWin.layoutWidth = makePercentSize(25);
previewDockWin.bodyWidget = previewLayout; previewDockWin.bodyWidget = previewLayout;
previewDockWin.dockAlignment = DockAlignment.Right; previewDockWin.dockAlignment = DockAlignment.Right;
previewDockWin.layoutHeight = FILL_PARENT; previewDockWin.layoutHeight = FILL_PARENT;
dockHost.bodyWidget = editorDockWin; dockHost.bodyWidget = editorDockWin;
dockHost.addDockedWindow(previewDockWin); dockHost.addDockedWindow(previewDockWin);