-
Notifications
You must be signed in to change notification settings - Fork 0
/
LockoutPlannerOptions.xml
111 lines (111 loc) · 3.58 KB
/
LockoutPlannerOptions.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<Ui xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd" xmlns="http://www.blizzard.com/wow/ui/">
<script file="LockoutPlannerOptions.lua" />
<Frame name="lopOptionsFrame" inherits="BackdropTemplate" hidden="true" parent="UIParent" toplevel="true" movable="true" frameStrata="DIALOG" enableMouse="true">
<Size>
<AbsDimension x="403" y="253" />
</Size>
<Anchors>
<Anchor point="CENTER" x="71" y="14" />
</Anchors>
<KeyValues>
<KeyValue key="backdropInfo" value="BACKDROP_DIALOG_32_32" keyType="string" type="global" />
</KeyValues>
<Layers>
<Layer>
<Texture name="texHeader" file="Interface\DialogFrame\UI-DialogBox-Header">
<Size>
<AbsDimension x="400" y="64" />
</Size>
<Anchors>
<Anchor point="TOP">
<Offset x="7" />
</Anchor>
</Anchors>
</Texture>
</Layer>
<Layer level="OVERLAY">
<FontString name="lblTitle" inherits="GameFontNormal" text="Lockout Planner Options">
<Anchors>
<Anchor point="TOP" relativeTo="lopOptionsFrame" relativePoint="TOP" x="0" y="-16" />
</Anchors>
</FontString>
<FontString name="lblCommand" inherits="GameFontNormalRight" text="Default Command">
<Size x="134" y="20" />
<Anchors>
<Anchor point="TOPLEFT" x="28" y="-74" />
</Anchors>
</FontString>
<FontString name="lblInstanceType" inherits="GameFontNormalRight" text="Default Instance Type">
<Size x="134" y="20" />
<Anchors>
<Anchor point="TOPLEFT" x="28" y="-101" />
</Anchors>
</FontString>
<FontString name="lblAddon" inherits="GameFontNormalRight" text="Default AddOn">
<Size x="134" y="20" />
<Anchors>
<Anchor point="TOPLEFT" x="28" y="-128" />
</Anchors>
</FontString>
<FontString name="lblInfo" inherits="GameFontNormalSmall" text="All options are bound to the Character">
<Size x="190" y="20" />
<Anchors>
<Anchor point="TOPLEFT" x="66" y="-214" />
</Anchors>
</FontString>
<FontString name="lblBroadcast" inherits="GameFontNormal" text="I want to broadcast my lockouts to my group">
<Size x="266" y="20" />
<Anchors>
<Anchor point="TOPLEFT" x="90" y="-176" />
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Button name="btnClose" inherits="UIPanelCloseButton" text="Close">
<Anchors>
<Anchor point="TOPRIGHT" />
</Anchors>
</Button>
<Button name="btnSave" inherits="UIPanelButtonTemplate" text="Save">
<Size x="78" y="24" />
<Anchors>
<Anchor point="BOTTOMRIGHT" x="-18" y="19" />
</Anchors>
<Scripts>
<OnClick>
LOP.configFrameOnSave()
</OnClick>
</Scripts>
</Button>
<EditBox name="editCommand" inherits="InputBoxTemplate">
<Size x="100" y="32" />
<Anchors>
<Anchor point="TOPLEFT" x="169" y="-61" />
</Anchors>
</EditBox>
<EditBox name="editInstanceType" inherits="InputBoxTemplate">
<Size x="100" y="32" />
<Anchors>
<Anchor point="TOPLEFT" x="169" y="-88" />
</Anchors>
</EditBox>
<EditBox name="editAddOn" inherits="InputBoxTemplate">
<Size x="100" y="32" />
<Anchors>
<Anchor point="TOPLEFT" x="169" y="-115" />
</Anchors>
</EditBox>
<CheckButton name="cbBroadcast" inherits="UICheckButtonTemplate" text="CheckButton1" checked="true">
<Anchors>
<Anchor point="TOPLEFT" x="52" y="-170" />
</Anchors>
</CheckButton>
</Frames>
<Scripts>
<OnShow>
LOP.configFrame_OnShow();
</OnShow>
</Scripts>
</Frame>
</Ui>