-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWarBoard_Session.xml
30 lines (30 loc) · 1.41 KB
/
WarBoard_Session.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<Interface xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../Interface.xsd">
<Windows>
<Window name="WarBoard_Session" inherits="EA_Window_Default" movable="false" layer="secondary" savesettings="false" >
<!-- Anchors are not necessary, WarBoard sets them -->
<Size>
<AbsPoint x="120" y="30" /><!-- You can make the size anything you like but the height should probably stay at 30. -->
</Size>
<EventHandlers>
<EventHandler event="OnMouseOver" function="WarBoard_Session.OnMouseOver" />
<EventHandler event="OnLButtonUp" function="WarBoard_Session.OnLClick" />
<EventHandler event="OnRButtonUp" function="WarBoard_Session.OnRClick" />
</EventHandlers>
<Windows>
<FullResizeImage name="$parentBackground" inherits="ModBackgroundTemplate" /><!-- Inherits this template so if I find a way to hack in some rounded corners all mods will have it -->
<!-- Add any sort of windows, buttons, status bars, images etc. you need -->
<Label name="$parentText" inherits="EA_Settings_ItemTitle" skipinput="true" textalign="center" font="font_clear_small_bold">
<Size>
<AbsPoint x="120" y="30" />
</Size>
<Anchors>
<Anchor point="center" relativeTo="" relativePoint="center" >
<AbsPoint x="" y="2" />
</Anchor>
</Anchors>
</Label>
</Windows>
</Window>
</Windows>
</Interface>