diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-05-17 15:48:23 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-05-17 15:48:23 +0200 |
commit | 2872eb224e9f3ec6947542f2d7ac0ad288574cf1 (patch) | |
tree | 718c571b7930afce9e909920366d0a052ddbf698 /GUI | |
parent | e7e6a79f8bf2855b5d1d432613151e48d2d685da (diff) |
Added a console-like window which doesn't do anything interesting yet.
Diffstat (limited to 'GUI')
-rw-r--r-- | GUI/layouts/console.layout | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/GUI/layouts/console.layout b/GUI/layouts/console.layout new file mode 100644 index 0000000..e6ef61b --- /dev/null +++ b/GUI/layouts/console.layout @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<GUILayout> + <Window Type="Vanilla/FrameWindow" Name="ConsoleWindow"> + <Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" /> + <Property Name="UnifiedSize" Value="{{1, 0}, {.3, 0}}" /> + <Window Type="Vanilla/Listbox" Name="console_listbox"> + <Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" /> + <Property Name="UnifiedSize" Value="{{1, 0}, {1, -20}}" /> + </Window> + <Window Type="Vanilla/Editbox" Name="console_editbox"> + <Property Name="UnifiedPosition" Value="{{0, 0}, {1, -20}}" /> + <Property Name="UnifiedSize" Value="{{1, 0}, {0, 20}}" /> + </Window> + </Window> +</GUILayout> |