-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTextInputDialogFrame.xml
More file actions
118 lines (117 loc) · 3 KB
/
Copy pathTextInputDialogFrame.xml
File metadata and controls
118 lines (117 loc) · 3 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
112
113
114
115
116
117
118
<Ui xmlns="http://www.blizzard.com/wow/ui/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
<Frame name="StriLi_TextInputDialogFrame_Template" virtual="true" toplevel="true"
movable="false" enableMouse="true" hidden="true" frameStrata = "DIALOG">
<Size>
<AbsDimension x="430" y="200"/>
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Backdrop tile="true"
bgFile="Interface\DialogFrame\UI-DialogBox-Background"
edgeFile="Interface/BUTTONS/UI-SliderBar-Border">
<BackgroundInsets>
<AbsInset left="1" right="1" top="3" bottom="3"/>
</BackgroundInsets>
<BorderColor a="1" r="0" g="0" b="0" />
<TileSize>
<AbsValue val="32"/>
</TileSize>
<EdgeSize>
<AbsValue val="8"/>
</EdgeSize>
</Backdrop>
<Layers>
<Layer>
<FontString name="$parent_FontString" inherits="GameFontNormal" text="StriLi">
<Anchors>
<Anchor point="CENTER">
<Offset>
<AbsDimension x="0" y="70"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Frame name="$parent_Frame">
<Size>
<AbsDimension x="200" y="35"/>
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Backdrop tile="true"
bgFile="Interface\DialogFrame\UI-DialogBox-Background"
edgeFile="Interface/BUTTONS/UI-SliderBar-Border">
<BackgroundInsets>
<AbsInset left="1" right="1" top="3" bottom="3"/>
</BackgroundInsets>
<BorderColor a="1" r="0" g="0" b="0" />
<TileSize>
<AbsValue val="32"/>
</TileSize>
<EdgeSize>
<AbsValue val="8"/>
</EdgeSize>
</Backdrop>
<Frames>
<EditBox name="$parent_EditBox" letters="255">
<Size>
<AbsDimension x="190" y="30"/>
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<FontString inherits="GameFontNormal"/>
</EditBox>
</Frames>
</Frame>
<Button name="$parent_ConfirmButton" inherits="UIPanelButtonTemplate" text="Ok">
<Size>
<AbsDimension x="60" y="20"/>
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset>
<AbsDimension x="-40" y="-80"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnLoad>self:SetText(StriLi.Lang.XML.ButtonOk)</OnLoad>
</Scripts>
</Button>
<Button name="$parent_CancelButton" inherits="UIPanelButtonTemplate" text="Cancel">
<Size>
<AbsDimension x="60" y="20"/>
</Size>
<Anchors>
<Anchor point="CENTER">
<Offset>
<AbsDimension x="40" y="-80"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnLoad>self:SetText(StriLi.Lang.XML.ButtonCancel)</OnLoad>
</Scripts>
</Button>
</Frames>
</Frame>
</Ui>