-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathQuickLinkFrame.xml
58 lines (58 loc) · 2.15 KB
/
QuickLinkFrame.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
<Ui xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.blizzard.com/wow/ui/">
<Script file="core.lua" />
<Frame name="QuickLinkFrame" parent="UIParent" toplevel="true" enableMouse="true" hidden="true" inherits="BackdropTemplate">
<KeyValues>
<KeyValue key="backdropInfo" value="BACKDROP_DIALOG_32_32" type="global"/>
</KeyValues>
<Size>
<AbsDimension x="600" y="138" />
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset x="0" y="126" />
</Anchor>
</Anchors>
<Frames>
<EditBox name="linkEditBox" inherits="InputBoxTemplate">
<Size>
<AbsDimension x="550" y="32" />
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset x="0" y="0" />
</Anchor>
</Anchors>
<Scripts>
<OnEscapePressed>okButton1_OnClick();</OnEscapePressed>
</Scripts>
</EditBox>
<Button name="okButton1" inherits="UIPanelButtonTemplate" text="OK">
<Size>
<AbsDimension x="75" y="23" />
</Size>
<Anchors>
<Anchor point="BOTTOM">
<Offset x="0" y="20" />
</Anchor>
</Anchors>
<Scripts>
<OnClick>okButton1_OnClick();</OnClick>
</Scripts>
</Button>
</Frames>
<Layers>
<Layer level="OVERLAY">
<FontString name="headlineString" inherits="GameFontNormal" text="placeholder">
<Size>
<AbsDimension x="300" y="20" />
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset x="0" y="40" />
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
</Frame>
</Ui>