Layout language AST building now complete with recursive parsing referenced XML files

This commit is contained in:
Keavon Chambers
2020-05-31 22:02:41 -07:00
parent 0c7e6bc883
commit 559833be8e
17 changed files with 429 additions and 288 deletions
+4 -4
View File
@@ -1,16 +1,16 @@
<header:window-buttons :maximized="IS_MAXIMIZED: (Bool) = false">
<box height="100%" y-align="50%" x-padding="18px">
<icon :src="window_minimize.svg" />
<icon :svg="`window_minimize.svg`" />
</box>
<box height="100%" y-align="50%" x-padding="18px">
<if :a="{{IS_MAXIMIZED}}">
<icon :src="window_restore_down.svg" />
<icon :svg="`window_restore_down.svg`" />
</if>
<if :a="{{IS_MAXIMIZED}}" b="false">
<icon :src="maximize.svg" />
<icon :svg="`maximize.svg`" />
</if>
</box>
<box height="100%" y-align="50%" x-padding="18px">
<icon :src="window_close.svg" />
<icon :svg="`window_close.svg`" />
</box>
</header:window-buttons>