diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-06-02 00:22:05 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-06-02 00:22:05 +0200 |
commit | 6304a3afdcf747468dc125991b3313887c2af941 (patch) | |
tree | 807358c0483ef3ea284872ef6f5e7eb77a2e74a2 /GUI/layouts | |
parent | 1d106a249648b2c39c1256c80325b18ffe91f7f3 (diff) |
Added a new transparent scheme based on Vanilla and a simple chat window, which displays text strings received from the server.
Diffstat (limited to 'GUI/layouts')
-rw-r--r-- | GUI/layouts/chat.layout | 13 | ||||
-rw-r--r-- | GUI/layouts/console.layout | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/GUI/layouts/chat.layout b/GUI/layouts/chat.layout new file mode 100644 index 0000000..d37d03c --- /dev/null +++ b/GUI/layouts/chat.layout @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<GUILayout> + <Window Type="Transparent/FrameWindow"> + <Property Name="UnifiedPosition" Value="{{0, 0}, {1, -100}}" /> + <Property Name="UnifiedSize" Value="{{.3, 0}, {0, 100}}" /> + <Property Name="CloseButtonEnabled" Value="False" /> + <Property Name="TitlebarEnabled" Value="False" /> + <Window Type="Transparent/Listbox" Name="chat_listbox"> + <Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" /> + <Property Name="UnifiedSize" Value="{{1, 0}, {1, 0}}" /> + </Window> + </Window> +</GUILayout> diff --git a/GUI/layouts/console.layout b/GUI/layouts/console.layout index e6ef61b..879af94 100644 --- a/GUI/layouts/console.layout +++ b/GUI/layouts/console.layout @@ -3,6 +3,8 @@ <Window Type="Vanilla/FrameWindow" Name="ConsoleWindow"> <Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" /> <Property Name="UnifiedSize" Value="{{1, 0}, {.3, 0}}" /> + <Property Name="CloseButtonEnabled" Value="False" /> + <Property Name="TitlebarEnabled" Value="False" /> <Window Type="Vanilla/Listbox" Name="console_listbox"> <Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" /> <Property Name="UnifiedSize" Value="{{1, 0}, {1, -20}}" /> |