-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLockoutPlannerOptions.xml
More file actions
111 lines (111 loc) · 3.64 KB
/
Copy pathLockoutPlannerOptions.xml
File metadata and controls
111 lines (111 loc) · 3.64 KB
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:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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="500" y="300" />
</Size>
<Anchors>
<Anchor point="CENTER" />
</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="72" />
</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 y="-16" point="TOP" relativeTo="lopOptionsFrame" relativePoint="TOP" />
</Anchors>
</FontString>
<FontString name="lblCommand" inherits="OptionsFontLarge" text="Default Command" justifyH="RIGHT">
<Size x="172" y="40" />
<Anchors>
<Anchor x="28" y="-61" point="TOPLEFT" />
</Anchors>
</FontString>
<FontString name="lblInstanceType" inherits="OptionsFontLarge" text="Default Instance Type" justifyH="RIGHT">
<Size x="172" y="40" />
<Anchors>
<Anchor x="28" y="-107" point="TOPLEFT" />
</Anchors>
</FontString>
<FontString name="lblAddon" inherits="OptionsFontLarge" text="Default AddOn" justifyH="RIGHT">
<Size x="172" y="40" />
<Anchors>
<Anchor x="28" y="-153" point="TOPLEFT" />
</Anchors>
</FontString>
<FontString name="lblInfo" inherits="GameFontNormalSmall" text="All options are saved on a by character basis" justifyH="LEFT">
<Size x="301" y="20" />
<Anchors>
<Anchor x="28" y="-257" point="TOPLEFT" />
</Anchors>
</FontString>
<FontString name="lblBroadcast" inherits="GameFontNormal" text="I want to broadcast my lockouts to my group">
<Size x="266" y="32" />
<Anchors>
<Anchor x="57" y="-211" point="TOPLEFT" />
</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 x="-18" y="19" point="BOTTOMRIGHT" />
</Anchors>
<Scripts>
<OnClick>
LOP.configFrameOnSave()
</OnClick>
</Scripts>
</Button>
<EditBox name="editCommand" inherits="LargeInputBoxTemplate">
<Size x="170" y="40" />
<Anchors>
<Anchor x="234" y="-61" point="TOPLEFT" />
</Anchors>
</EditBox>
<EditBox name="editInstanceType" inherits="LargeInputBoxTemplate">
<Size x="170" y="40" />
<Anchors>
<Anchor x="234" y="-107" point="TOPLEFT" />
</Anchors>
</EditBox>
<EditBox name="editAddOn" inherits="LargeInputBoxTemplate">
<Size x="170" y="40" />
<Anchors>
<Anchor x="234" y="-153" point="TOPLEFT" />
</Anchors>
</EditBox>
<CheckButton name="cbBroadcast" inherits="UICheckButtonTemplate" text="CheckButton1" checked="true">
<Anchors>
<Anchor x="19" y="-211" point="TOPLEFT" />
</Anchors>
</CheckButton>
</Frames>
<Scripts>
<OnShow>
LOP.configFrame_OnShow();
</OnShow>
</Scripts>
</Frame>
</Ui>