vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | <Ui xmlns="http://www.blizzard.com/wow/ui/" |
2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||
3 | xsi:schemaLocation="http://www.blizzard.com/wow/ui/ |
||
4 | ..\..\FrameXML\UI.xsd"> |
||
5 | <Texture name="YatlasMapTextureTemplate" virtual="true"> |
||
6 | <Size> |
||
7 | <AbsDimension x="64" y="64"/> |
||
8 | </Size> |
||
9 | <Anchors> |
||
10 | <Anchor point="TOPLEFT"> |
||
11 | <Offset> |
||
12 | <AbsDimension x="6" y="-4"/> |
||
13 | </Offset> |
||
14 | </Anchor> |
||
15 | </Anchors> |
||
16 | </Texture> |
||
17 | |||
18 | <Frame name="YatlasFrameTemplate" virtual="true"> |
||
19 | <Scripts> |
||
20 | <OnLoad> |
||
21 | YatlasFrame_Bootstrap(); |
||
22 | </OnLoad> |
||
23 | <OnShow> |
||
24 | if(YatlasOptions and YatlasOptions.Frames) then |
||
25 | local o = YatlasOptions.Frames[this:GetName()]; |
||
26 | if(o.track) then |
||
27 | YatlasFramePlayerJumpButton_Seek(this, o.track); |
||
28 | elseif(o.trackonshow) then |
||
29 | YatlasFramePlayerJumpButton_Seek(this, o.trackonshow); |
||
30 | end |
||
31 | end |
||
32 | </OnShow> |
||
33 | <OnDragStart> |
||
34 | if(YatlasOptions.Frames and not YatlasOptions.Frames[this:GetName()].Locked) then |
||
35 | this:StartMoving(); |
||
36 | this.isMoving = true; |
||
37 | end |
||
38 | </OnDragStart> |
||
39 | <OnDragStop> |
||
40 | if(this.isMoving) then |
||
41 | this:StopMovingOrSizing(); |
||
42 | this.isMoving = false; |
||
43 | end |
||
44 | </OnDragStop> |
||
45 | <OnUpdate> |
||
46 | if(this.OnUpdate) then |
||
47 | this:OnUpdate(arg1); |
||
48 | end |
||
49 | </OnUpdate> |
||
50 | <OnEvent> |
||
51 | this:OnEvent(event); |
||
52 | </OnEvent> |
||
53 | </Scripts> |
||
54 | </Frame> |
||
55 | |||
56 | <Frame name="YatlasFrameViewTemplate" virtual="true"> |
||
57 | <Scripts> |
||
58 | <OnLoad> |
||
59 | this.lastoux = 0; |
||
60 | this.lastouy = 0; |
||
61 | </OnLoad> |
||
62 | <OnEnter> |
||
63 | this.inme = true; |
||
64 | </OnEnter> |
||
65 | <OnLeave> |
||
66 | this.inme = false; |
||
67 | </OnLeave> |
||
68 | <OnDragStart> |
||
69 | this.dragme = true; |
||
70 | ya_lastdragx = nil; |
||
71 | ya_lastdragy = nil; |
||
72 | YA_elapsed = 0; |
||
73 | </OnDragStart> |
||
74 | <OnDragStop> |
||
75 | this.dragme = false; |
||
76 | this:GetParent():UpdateDropDown2(); |
||
77 | </OnDragStop> |
||
78 | <OnHide> |
||
79 | this.dragme = false; |
||
80 | </OnHide> |
||
81 | <OnUpdate> |
||
82 | if(this.dragme) then |
||
83 | YatlasFrameViewFrame_OnDrag(); |
||
84 | end |
||
85 | if(this.inme and this:GetParent() == YatlasFrame and YatlasOptions.ShowCursorCoords) then |
||
86 | YatlasFrameViewFrame_UpdateCursorCoord(); |
||
87 | end |
||
88 | if(this.inpoint) then |
||
89 | YatlasFrameViewFrame_UpdatePointTooltip(); |
||
90 | end |
||
91 | </OnUpdate> |
||
92 | <OnMouseWheel> |
||
93 | this:GetParent():SetZoom(this:GetParent():GetZoom()+arg1*24); |
||
94 | </OnMouseWheel> |
||
95 | </Scripts> |
||
96 | </Frame> |
||
97 | |||
98 | <Frame name="YatlasFrameTemplatePreBuilt" virtual="true" inherits="YatlasFrameTemplate" enableMouse="true"> |
||
99 | <Layers> |
||
100 | <Layer level="BACKGROUND"> |
||
101 | <Texture name="$parentMapTexture1" inherits="YatlasMapTextureTemplate" /> |
||
102 | <Texture name="$parentMapTexture2" inherits="YatlasMapTextureTemplate" /> |
||
103 | <Texture name="$parentMapTexture3" inherits="YatlasMapTextureTemplate" /> |
||
104 | <Texture name="$parentMapTexture4" inherits="YatlasMapTextureTemplate" /> |
||
105 | <Texture name="$parentMapTexture5" inherits="YatlasMapTextureTemplate" /> |
||
106 | <Texture name="$parentMapTexture6" inherits="YatlasMapTextureTemplate" /> |
||
107 | <Texture name="$parentMapTexture7" inherits="YatlasMapTextureTemplate" /> |
||
108 | <Texture name="$parentMapTexture8" inherits="YatlasMapTextureTemplate" /> |
||
109 | <Texture name="$parentMapTexture9" inherits="YatlasMapTextureTemplate" /> |
||
110 | <Texture name="$parentMapTexture10" inherits="YatlasMapTextureTemplate" /> |
||
111 | <Texture name="$parentMapTexture11" inherits="YatlasMapTextureTemplate" /> |
||
112 | <Texture name="$parentMapTexture12" inherits="YatlasMapTextureTemplate" /> |
||
113 | <Texture name="$parentMapTexture13" inherits="YatlasMapTextureTemplate" /> |
||
114 | <Texture name="$parentMapTexture14" inherits="YatlasMapTextureTemplate" /> |
||
115 | <Texture name="$parentMapTexture15" inherits="YatlasMapTextureTemplate" /> |
||
116 | <Texture name="$parentMapTexture16" inherits="YatlasMapTextureTemplate" /> |
||
117 | <Texture name="$parentMapTexture17" inherits="YatlasMapTextureTemplate" /> |
||
118 | <Texture name="$parentMapTexture18" inherits="YatlasMapTextureTemplate" /> |
||
119 | <Texture name="$parentMapTexture19" inherits="YatlasMapTextureTemplate" /> |
||
120 | <Texture name="$parentMapTexture20" inherits="YatlasMapTextureTemplate" /> |
||
121 | <Texture name="$parentMapTexture21" inherits="YatlasMapTextureTemplate" /> |
||
122 | <Texture name="$parentMapTexture22" inherits="YatlasMapTextureTemplate" /> |
||
123 | <Texture name="$parentMapTexture23" inherits="YatlasMapTextureTemplate" /> |
||
124 | <Texture name="$parentMapTexture24" inherits="YatlasMapTextureTemplate" /> |
||
125 | <Texture name="$parentMapTexture25" inherits="YatlasMapTextureTemplate" /> |
||
126 | <Texture name="$parentMapTexture26" inherits="YatlasMapTextureTemplate" /> |
||
127 | <Texture name="$parentMapTexture27" inherits="YatlasMapTextureTemplate" /> |
||
128 | <Texture name="$parentMapTexture28" inherits="YatlasMapTextureTemplate" /> |
||
129 | <Texture name="$parentMapTexture29" inherits="YatlasMapTextureTemplate" /> |
||
130 | <Texture name="$parentMapTexture30" inherits="YatlasMapTextureTemplate" /> |
||
131 | <Texture name="$parentMapTexture31" inherits="YatlasMapTextureTemplate" /> |
||
132 | <Texture name="$parentMapTexture32" inherits="YatlasMapTextureTemplate" /> |
||
133 | <Texture name="$parentMapTexture33" inherits="YatlasMapTextureTemplate" /> |
||
134 | <Texture name="$parentMapTexture34" inherits="YatlasMapTextureTemplate" /> |
||
135 | <Texture name="$parentMapTexture35" inherits="YatlasMapTextureTemplate" /> |
||
136 | <Texture name="$parentMapTexture36" inherits="YatlasMapTextureTemplate" /> |
||
137 | <Texture name="$parentMapTexture37" inherits="YatlasMapTextureTemplate" /> |
||
138 | <Texture name="$parentMapTexture38" inherits="YatlasMapTextureTemplate" /> |
||
139 | <Texture name="$parentMapTexture39" inherits="YatlasMapTextureTemplate" /> |
||
140 | <Texture name="$parentMapTexture40" inherits="YatlasMapTextureTemplate" /> |
||
141 | <Texture name="$parentMapTexture41" inherits="YatlasMapTextureTemplate" /> |
||
142 | <Texture name="$parentMapTexture42" inherits="YatlasMapTextureTemplate" /> |
||
143 | <Texture name="$parentMapTexture43" inherits="YatlasMapTextureTemplate" /> |
||
144 | <Texture name="$parentMapTexture44" inherits="YatlasMapTextureTemplate" /> |
||
145 | <Texture name="$parentMapTexture45" inherits="YatlasMapTextureTemplate" /> |
||
146 | <Texture name="$parentMapTexture46" inherits="YatlasMapTextureTemplate" /> |
||
147 | <Texture name="$parentMapTexture47" inherits="YatlasMapTextureTemplate" /> |
||
148 | <Texture name="$parentMapTexture48" inherits="YatlasMapTextureTemplate" /> |
||
149 | <Texture name="$parentMapTexture49" inherits="YatlasMapTextureTemplate" /> |
||
150 | <Texture name="$parentMapTexture50" inherits="YatlasMapTextureTemplate" /> |
||
151 | <Texture name="$parentMapTexture51" inherits="YatlasMapTextureTemplate" /> |
||
152 | <Texture name="$parentMapTexture52" inherits="YatlasMapTextureTemplate" /> |
||
153 | <Texture name="$parentMapTexture53" inherits="YatlasMapTextureTemplate" /> |
||
154 | <Texture name="$parentMapTexture54" inherits="YatlasMapTextureTemplate" /> |
||
155 | <Texture name="$parentMapTexture55" inherits="YatlasMapTextureTemplate" /> |
||
156 | <Texture name="$parentMapTexture56" inherits="YatlasMapTextureTemplate" /> |
||
157 | <Texture name="$parentMapTexture57" inherits="YatlasMapTextureTemplate" /> |
||
158 | <Texture name="$parentMapTexture58" inherits="YatlasMapTextureTemplate" /> |
||
159 | <Texture name="$parentMapTexture59" inherits="YatlasMapTextureTemplate" /> |
||
160 | <Texture name="$parentMapTexture60" inherits="YatlasMapTextureTemplate" /> |
||
161 | <Texture name="$parentMapTexture61" inherits="YatlasMapTextureTemplate" /> |
||
162 | <Texture name="$parentMapTexture62" inherits="YatlasMapTextureTemplate" /> |
||
163 | <Texture name="$parentMapTexture63" inherits="YatlasMapTextureTemplate" /> |
||
164 | <Texture name="$parentMapTexture64" inherits="YatlasMapTextureTemplate" /> |
||
165 | <Texture name="$parentMapTexture65" inherits="YatlasMapTextureTemplate" /> |
||
166 | <Texture name="$parentMapTexture66" inherits="YatlasMapTextureTemplate" /> |
||
167 | <Texture name="$parentMapTexture67" inherits="YatlasMapTextureTemplate" /> |
||
168 | <Texture name="$parentMapTexture68" inherits="YatlasMapTextureTemplate" /> |
||
169 | <Texture name="$parentMapTexture69" inherits="YatlasMapTextureTemplate" /> |
||
170 | <Texture name="$parentMapTexture70" inherits="YatlasMapTextureTemplate" /> |
||
171 | <Texture name="$parentMapTexture71" inherits="YatlasMapTextureTemplate" /> |
||
172 | <Texture name="$parentMapTexture72" inherits="YatlasMapTextureTemplate" /> |
||
173 | <Texture name="$parentMapTexture73" inherits="YatlasMapTextureTemplate" /> |
||
174 | <Texture name="$parentMapTexture74" inherits="YatlasMapTextureTemplate" /> |
||
175 | <Texture name="$parentMapTexture75" inherits="YatlasMapTextureTemplate" /> |
||
176 | <Texture name="$parentMapTexture76" inherits="YatlasMapTextureTemplate" /> |
||
177 | <Texture name="$parentMapTexture77" inherits="YatlasMapTextureTemplate" /> |
||
178 | <Texture name="$parentMapTexture78" inherits="YatlasMapTextureTemplate" /> |
||
179 | <Texture name="$parentMapTexture79" inherits="YatlasMapTextureTemplate" /> |
||
180 | <Texture name="$parentMapTexture80" inherits="YatlasMapTextureTemplate" /> |
||
181 | <Texture name="$parentMapTexture81" inherits="YatlasMapTextureTemplate" /> |
||
182 | <Texture name="$parentMapTexture82" inherits="YatlasMapTextureTemplate" /> |
||
183 | <Texture name="$parentMapTexture83" inherits="YatlasMapTextureTemplate" /> |
||
184 | <Texture name="$parentMapTexture84" inherits="YatlasMapTextureTemplate" /> |
||
185 | <Texture name="$parentMapTexture85" inherits="YatlasMapTextureTemplate" /> |
||
186 | <Texture name="$parentMapTexture86" inherits="YatlasMapTextureTemplate" /> |
||
187 | <Texture name="$parentMapTexture87" inherits="YatlasMapTextureTemplate" /> |
||
188 | <Texture name="$parentMapTexture88" inherits="YatlasMapTextureTemplate" /> |
||
189 | <Texture name="$parentMapTexture89" inherits="YatlasMapTextureTemplate" /> |
||
190 | <Texture name="$parentMapTexture90" inherits="YatlasMapTextureTemplate" /> |
||
191 | <Texture name="$parentMapTexture91" inherits="YatlasMapTextureTemplate" /> |
||
192 | <Texture name="$parentMapTexture92" inherits="YatlasMapTextureTemplate" /> |
||
193 | <Texture name="$parentMapTexture93" inherits="YatlasMapTextureTemplate" /> |
||
194 | <Texture name="$parentMapTexture94" inherits="YatlasMapTextureTemplate" /> |
||
195 | <Texture name="$parentMapTexture95" inherits="YatlasMapTextureTemplate" /> |
||
196 | <Texture name="$parentMapTexture96" inherits="YatlasMapTextureTemplate" /> |
||
197 | <Texture name="$parentMapTexture97" inherits="YatlasMapTextureTemplate" /> |
||
198 | <Texture name="$parentMapTexture98" inherits="YatlasMapTextureTemplate" /> |
||
199 | <Texture name="$parentMapTexture99" inherits="YatlasMapTextureTemplate" /> |
||
200 | <Texture name="$parentMapTexture100" inherits="YatlasMapTextureTemplate" /> |
||
201 | <Texture name="$parentMapTexture101" inherits="YatlasMapTextureTemplate" /> |
||
202 | <Texture name="$parentMapTexture102" inherits="YatlasMapTextureTemplate" /> |
||
203 | <Texture name="$parentMapTexture103" inherits="YatlasMapTextureTemplate" /> |
||
204 | <Texture name="$parentMapTexture104" inherits="YatlasMapTextureTemplate" /> |
||
205 | <Texture name="$parentMapTexture105" inherits="YatlasMapTextureTemplate" /> |
||
206 | <Texture name="$parentMapTexture106" inherits="YatlasMapTextureTemplate" /> |
||
207 | <Texture name="$parentMapTexture107" inherits="YatlasMapTextureTemplate" /> |
||
208 | <Texture name="$parentMapTexture108" inherits="YatlasMapTextureTemplate" /> |
||
209 | <Texture name="$parentMapTexture109" inherits="YatlasMapTextureTemplate" /> |
||
210 | <Texture name="$parentMapTexture110" inherits="YatlasMapTextureTemplate" /> |
||
211 | <Texture name="$parentMapTexture111" inherits="YatlasMapTextureTemplate" /> |
||
212 | <Texture name="$parentMapTexture112" inherits="YatlasMapTextureTemplate" /> |
||
213 | <Texture name="$parentMapTexture113" inherits="YatlasMapTextureTemplate" /> |
||
214 | <Texture name="$parentMapTexture114" inherits="YatlasMapTextureTemplate" /> |
||
215 | <Texture name="$parentMapTexture115" inherits="YatlasMapTextureTemplate" /> |
||
216 | <Texture name="$parentMapTexture116" inherits="YatlasMapTextureTemplate" /> |
||
217 | <Texture name="$parentMapTexture117" inherits="YatlasMapTextureTemplate" /> |
||
218 | <Texture name="$parentMapTexture118" inherits="YatlasMapTextureTemplate" /> |
||
219 | <Texture name="$parentMapTexture119" inherits="YatlasMapTextureTemplate" /> |
||
220 | <Texture name="$parentMapTexture120" inherits="YatlasMapTextureTemplate" /> |
||
221 | <Texture name="$parentMapTexture121" inherits="YatlasMapTextureTemplate" /> |
||
222 | <Texture name="$parentMapTexture122" inherits="YatlasMapTextureTemplate" /> |
||
223 | <Texture name="$parentMapTexture123" inherits="YatlasMapTextureTemplate" /> |
||
224 | <Texture name="$parentMapTexture124" inherits="YatlasMapTextureTemplate" /> |
||
225 | <Texture name="$parentMapTexture125" inherits="YatlasMapTextureTemplate" /> |
||
226 | <Texture name="$parentMapTexture126" inherits="YatlasMapTextureTemplate" /> |
||
227 | <Texture name="$parentMapTexture127" inherits="YatlasMapTextureTemplate" /> |
||
228 | <Texture name="$parentMapTexture128" inherits="YatlasMapTextureTemplate" /> |
||
229 | <Texture name="$parentMapTexture129" inherits="YatlasMapTextureTemplate" /> |
||
230 | <Texture name="$parentMapTexture130" inherits="YatlasMapTextureTemplate" /> |
||
231 | <Texture name="$parentMapTexture131" inherits="YatlasMapTextureTemplate" /> |
||
232 | <Texture name="$parentMapTexture132" inherits="YatlasMapTextureTemplate" /> |
||
233 | <Texture name="$parentMapTexture133" inherits="YatlasMapTextureTemplate" /> |
||
234 | <Texture name="$parentMapTexture134" inherits="YatlasMapTextureTemplate" /> |
||
235 | <Texture name="$parentMapTexture135" inherits="YatlasMapTextureTemplate" /> |
||
236 | <Texture name="$parentMapTexture136" inherits="YatlasMapTextureTemplate" /> |
||
237 | <Texture name="$parentMapTexture137" inherits="YatlasMapTextureTemplate" /> |
||
238 | <Texture name="$parentMapTexture138" inherits="YatlasMapTextureTemplate" /> |
||
239 | <Texture name="$parentMapTexture139" inherits="YatlasMapTextureTemplate" /> |
||
240 | <Texture name="$parentMapTexture140" inherits="YatlasMapTextureTemplate" /> |
||
241 | <Texture name="$parentMapTexture141" inherits="YatlasMapTextureTemplate" /> |
||
242 | <Texture name="$parentMapTexture142" inherits="YatlasMapTextureTemplate" /> |
||
243 | <Texture name="$parentMapTexture143" inherits="YatlasMapTextureTemplate" /> |
||
244 | <Texture name="$parentMapTexture144" inherits="YatlasMapTextureTemplate" /> |
||
245 | <Texture name="$parentMapTexture145" inherits="YatlasMapTextureTemplate" /> |
||
246 | <Texture name="$parentMapTexture146" inherits="YatlasMapTextureTemplate" /> |
||
247 | <Texture name="$parentMapTexture147" inherits="YatlasMapTextureTemplate" /> |
||
248 | <Texture name="$parentMapTexture148" inherits="YatlasMapTextureTemplate" /> |
||
249 | <Texture name="$parentMapTexture149" inherits="YatlasMapTextureTemplate" /> |
||
250 | <Texture name="$parentMapTexture150" inherits="YatlasMapTextureTemplate" /> |
||
251 | <Texture name="$parentMapTexture151" inherits="YatlasMapTextureTemplate" /> |
||
252 | <Texture name="$parentMapTexture152" inherits="YatlasMapTextureTemplate" /> |
||
253 | <Texture name="$parentMapTexture153" inherits="YatlasMapTextureTemplate" /> |
||
254 | <Texture name="$parentMapTexture154" inherits="YatlasMapTextureTemplate" /> |
||
255 | <Texture name="$parentMapTexture155" inherits="YatlasMapTextureTemplate" /> |
||
256 | <Texture name="$parentMapTexture156" inherits="YatlasMapTextureTemplate" /> |
||
257 | <Texture name="$parentMapTexture157" inherits="YatlasMapTextureTemplate" /> |
||
258 | <Texture name="$parentMapTexture158" inherits="YatlasMapTextureTemplate" /> |
||
259 | <Texture name="$parentMapTexture159" inherits="YatlasMapTextureTemplate" /> |
||
260 | <Texture name="$parentMapTexture160" inherits="YatlasMapTextureTemplate" /> |
||
261 | <Texture name="$parentMapTexture161" inherits="YatlasMapTextureTemplate" /> |
||
262 | <Texture name="$parentMapTexture162" inherits="YatlasMapTextureTemplate" /> |
||
263 | <Texture name="$parentMapTexture163" inherits="YatlasMapTextureTemplate" /> |
||
264 | <Texture name="$parentMapTexture164" inherits="YatlasMapTextureTemplate" /> |
||
265 | <Texture name="$parentMapTexture165" inherits="YatlasMapTextureTemplate" /> |
||
266 | <Texture name="$parentMapTexture166" inherits="YatlasMapTextureTemplate" /> |
||
267 | <Texture name="$parentMapTexture167" inherits="YatlasMapTextureTemplate" /> |
||
268 | <Texture name="$parentMapTexture168" inherits="YatlasMapTextureTemplate" /> |
||
269 | <Texture name="$parentMapTexture169" inherits="YatlasMapTextureTemplate" /> |
||
270 | <Texture name="$parentMapTexture170" inherits="YatlasMapTextureTemplate" /> |
||
271 | <Texture name="$parentMapTexture171" inherits="YatlasMapTextureTemplate" /> |
||
272 | <Texture name="$parentMapTexture172" inherits="YatlasMapTextureTemplate" /> |
||
273 | <Texture name="$parentMapTexture173" inherits="YatlasMapTextureTemplate" /> |
||
274 | <Texture name="$parentMapTexture174" inherits="YatlasMapTextureTemplate" /> |
||
275 | <Texture name="$parentMapTexture175" inherits="YatlasMapTextureTemplate" /> |
||
276 | <Texture name="$parentMapTexture176" inherits="YatlasMapTextureTemplate" /> |
||
277 | <Texture name="$parentMapTexture177" inherits="YatlasMapTextureTemplate" /> |
||
278 | <Texture name="$parentMapTexture178" inherits="YatlasMapTextureTemplate" /> |
||
279 | <Texture name="$parentMapTexture179" inherits="YatlasMapTextureTemplate" /> |
||
280 | <Texture name="$parentMapTexture180" inherits="YatlasMapTextureTemplate" /> |
||
281 | <Texture name="$parentMapTexture181" inherits="YatlasMapTextureTemplate" /> |
||
282 | <Texture name="$parentMapTexture182" inherits="YatlasMapTextureTemplate" /> |
||
283 | <Texture name="$parentMapTexture183" inherits="YatlasMapTextureTemplate" /> |
||
284 | <Texture name="$parentMapTexture184" inherits="YatlasMapTextureTemplate" /> |
||
285 | <Texture name="$parentMapTexture185" inherits="YatlasMapTextureTemplate" /> |
||
286 | <Texture name="$parentMapTexture186" inherits="YatlasMapTextureTemplate" /> |
||
287 | <Texture name="$parentMapTexture187" inherits="YatlasMapTextureTemplate" /> |
||
288 | <Texture name="$parentMapTexture188" inherits="YatlasMapTextureTemplate" /> |
||
289 | <Texture name="$parentMapTexture189" inherits="YatlasMapTextureTemplate" /> |
||
290 | <Texture name="$parentMapTexture190" inherits="YatlasMapTextureTemplate" /> |
||
291 | <Texture name="$parentMapTexture191" inherits="YatlasMapTextureTemplate" /> |
||
292 | <Texture name="$parentMapTexture192" inherits="YatlasMapTextureTemplate" /> |
||
293 | <Texture name="$parentMapTexture193" inherits="YatlasMapTextureTemplate" /> |
||
294 | <Texture name="$parentMapTexture194" inherits="YatlasMapTextureTemplate" /> |
||
295 | <Texture name="$parentMapTexture195" inherits="YatlasMapTextureTemplate" /> |
||
296 | <Texture name="$parentMapTexture196" inherits="YatlasMapTextureTemplate" /> |
||
297 | <Texture name="$parentMapTexture197" inherits="YatlasMapTextureTemplate" /> |
||
298 | <Texture name="$parentMapTexture198" inherits="YatlasMapTextureTemplate" /> |
||
299 | <Texture name="$parentMapTexture199" inherits="YatlasMapTextureTemplate" /> |
||
300 | <Texture name="$parentMapTexture200" inherits="YatlasMapTextureTemplate" /> |
||
301 | <Texture name="$parentMapTexture201" inherits="YatlasMapTextureTemplate" /> |
||
302 | <Texture name="$parentMapTexture202" inherits="YatlasMapTextureTemplate" /> |
||
303 | <Texture name="$parentMapTexture203" inherits="YatlasMapTextureTemplate" /> |
||
304 | <Texture name="$parentMapTexture204" inherits="YatlasMapTextureTemplate" /> |
||
305 | <Texture name="$parentMapTexture205" inherits="YatlasMapTextureTemplate" /> |
||
306 | <Texture name="$parentMapTexture206" inherits="YatlasMapTextureTemplate" /> |
||
307 | <Texture name="$parentMapTexture207" inherits="YatlasMapTextureTemplate" /> |
||
308 | <Texture name="$parentMapTexture208" inherits="YatlasMapTextureTemplate" /> |
||
309 | <Texture name="$parentMapTexture209" inherits="YatlasMapTextureTemplate" /> |
||
310 | <Texture name="$parentMapTexture210" inherits="YatlasMapTextureTemplate" /> |
||
311 | <Texture name="$parentMapTexture211" inherits="YatlasMapTextureTemplate" /> |
||
312 | <Texture name="$parentMapTexture212" inherits="YatlasMapTextureTemplate" /> |
||
313 | <Texture name="$parentMapTexture213" inherits="YatlasMapTextureTemplate" /> |
||
314 | <Texture name="$parentMapTexture214" inherits="YatlasMapTextureTemplate" /> |
||
315 | <Texture name="$parentMapTexture215" inherits="YatlasMapTextureTemplate" /> |
||
316 | <Texture name="$parentMapTexture216" inherits="YatlasMapTextureTemplate" /> |
||
317 | <Texture name="$parentMapTexture217" inherits="YatlasMapTextureTemplate" /> |
||
318 | <Texture name="$parentMapTexture218" inherits="YatlasMapTextureTemplate" /> |
||
319 | <Texture name="$parentMapTexture219" inherits="YatlasMapTextureTemplate" /> |
||
320 | <Texture name="$parentMapTexture220" inherits="YatlasMapTextureTemplate" /> |
||
321 | <Texture name="$parentMapTexture221" inherits="YatlasMapTextureTemplate" /> |
||
322 | <Texture name="$parentMapTexture222" inherits="YatlasMapTextureTemplate" /> |
||
323 | <Texture name="$parentMapTexture223" inherits="YatlasMapTextureTemplate" /> |
||
324 | <Texture name="$parentMapTexture224" inherits="YatlasMapTextureTemplate" /> |
||
325 | <Texture name="$parentMapTexture225" inherits="YatlasMapTextureTemplate" /> |
||
326 | <Texture name="$parentMapTexture226" inherits="YatlasMapTextureTemplate" /> |
||
327 | <Texture name="$parentMapTexture227" inherits="YatlasMapTextureTemplate" /> |
||
328 | <Texture name="$parentMapTexture228" inherits="YatlasMapTextureTemplate" /> |
||
329 | <Texture name="$parentMapTexture229" inherits="YatlasMapTextureTemplate" /> |
||
330 | <Texture name="$parentMapTexture230" inherits="YatlasMapTextureTemplate" /> |
||
331 | <Texture name="$parentMapTexture231" inherits="YatlasMapTextureTemplate" /> |
||
332 | <Texture name="$parentMapTexture232" inherits="YatlasMapTextureTemplate" /> |
||
333 | <Texture name="$parentMapTexture233" inherits="YatlasMapTextureTemplate" /> |
||
334 | <Texture name="$parentMapTexture234" inherits="YatlasMapTextureTemplate" /> |
||
335 | <Texture name="$parentMapTexture235" inherits="YatlasMapTextureTemplate" /> |
||
336 | <Texture name="$parentMapTexture236" inherits="YatlasMapTextureTemplate" /> |
||
337 | <Texture name="$parentMapTexture237" inherits="YatlasMapTextureTemplate" /> |
||
338 | <Texture name="$parentMapTexture238" inherits="YatlasMapTextureTemplate" /> |
||
339 | <Texture name="$parentMapTexture239" inherits="YatlasMapTextureTemplate" /> |
||
340 | <Texture name="$parentMapTexture240" inherits="YatlasMapTextureTemplate" /> |
||
341 | <Texture name="$parentMapTexture241" inherits="YatlasMapTextureTemplate" /> |
||
342 | <Texture name="$parentMapTexture242" inherits="YatlasMapTextureTemplate" /> |
||
343 | <Texture name="$parentMapTexture243" inherits="YatlasMapTextureTemplate" /> |
||
344 | <Texture name="$parentMapTexture244" inherits="YatlasMapTextureTemplate" /> |
||
345 | <Texture name="$parentMapTexture245" inherits="YatlasMapTextureTemplate" /> |
||
346 | <Texture name="$parentMapTexture246" inherits="YatlasMapTextureTemplate" /> |
||
347 | <Texture name="$parentMapTexture247" inherits="YatlasMapTextureTemplate" /> |
||
348 | <Texture name="$parentMapTexture248" inherits="YatlasMapTextureTemplate" /> |
||
349 | <Texture name="$parentMapTexture249" inherits="YatlasMapTextureTemplate" /> |
||
350 | <Texture name="$parentMapTexture250" inherits="YatlasMapTextureTemplate" /> |
||
351 | <Texture name="$parentMapTexture251" inherits="YatlasMapTextureTemplate" /> |
||
352 | <Texture name="$parentMapTexture252" inherits="YatlasMapTextureTemplate" /> |
||
353 | <Texture name="$parentMapTexture253" inherits="YatlasMapTextureTemplate" /> |
||
354 | <Texture name="$parentMapTexture254" inherits="YatlasMapTextureTemplate" /> |
||
355 | <Texture name="$parentMapTexture255" inherits="YatlasMapTextureTemplate" /> |
||
356 | <Texture name="$parentMapTexture256" inherits="YatlasMapTextureTemplate" /> |
||
357 | </Layer> |
||
358 | <Layer level="OVERLAY"> |
||
359 | <!-- --> |
||
360 | <Texture name="$parentPTexture1"> |
||
361 | <Size> |
||
362 | <AbsDimension x="1" y="1"/> |
||
363 | </Size> |
||
364 | <Anchors> |
||
365 | <Anchor point="TOPLEFT"> |
||
366 | <Offset> |
||
367 | <AbsDimension x="0" y="0"/> |
||
368 | </Offset> |
||
369 | </Anchor> |
||
370 | </Anchors> |
||
371 | </Texture> |
||
372 | <Texture name="$parentPTexture2"> |
||
373 | <Size> |
||
374 | <AbsDimension x="1" y="1"/> |
||
375 | </Size> |
||
376 | <Anchors> |
||
377 | <Anchor point="TOPLEFT"> |
||
378 | <Offset> |
||
379 | <AbsDimension x="0" y="0"/> |
||
380 | </Offset> |
||
381 | </Anchor> |
||
382 | </Anchors> |
||
383 | </Texture> |
||
384 | <Texture name="$parentPTexture3"> |
||
385 | <Size> |
||
386 | <AbsDimension x="1" y="1"/> |
||
387 | </Size> |
||
388 | <Anchors> |
||
389 | <Anchor point="TOPLEFT"> |
||
390 | <Offset> |
||
391 | <AbsDimension x="0" y="0"/> |
||
392 | </Offset> |
||
393 | </Anchor> |
||
394 | </Anchors> |
||
395 | </Texture> |
||
396 | <Texture name="$parentPTexture4"> |
||
397 | <Size> |
||
398 | <AbsDimension x="1" y="1"/> |
||
399 | </Size> |
||
400 | <Anchors> |
||
401 | <Anchor point="TOPLEFT"> |
||
402 | <Offset> |
||
403 | <AbsDimension x="0" y="0"/> |
||
404 | </Offset> |
||
405 | </Anchor> |
||
406 | </Anchors> |
||
407 | </Texture> |
||
408 | <Texture name="$parentPTexture5"> |
||
409 | <Size> |
||
410 | <AbsDimension x="1" y="1"/> |
||
411 | </Size> |
||
412 | <Anchors> |
||
413 | <Anchor point="TOPLEFT"> |
||
414 | <Offset> |
||
415 | <AbsDimension x="0" y="0"/> |
||
416 | </Offset> |
||
417 | </Anchor> |
||
418 | </Anchors> |
||
419 | </Texture> |
||
420 | <Texture name="$parentPTexture6"> |
||
421 | <Size> |
||
422 | <AbsDimension x="1" y="1"/> |
||
423 | </Size> |
||
424 | <Anchors> |
||
425 | <Anchor point="TOPLEFT"> |
||
426 | <Offset> |
||
427 | <AbsDimension x="0" y="0"/> |
||
428 | </Offset> |
||
429 | </Anchor> |
||
430 | </Anchors> |
||
431 | </Texture> |
||
432 | <Texture name="$parentPTexture7"> |
||
433 | <Size> |
||
434 | <AbsDimension x="1" y="1"/> |
||
435 | </Size> |
||
436 | <Anchors> |
||
437 | <Anchor point="TOPLEFT"> |
||
438 | <Offset> |
||
439 | <AbsDimension x="0" y="0"/> |
||
440 | </Offset> |
||
441 | </Anchor> |
||
442 | </Anchors> |
||
443 | </Texture> |
||
444 | <Texture name="$parentPTexture8"> |
||
445 | <Size> |
||
446 | <AbsDimension x="1" y="1"/> |
||
447 | </Size> |
||
448 | <Anchors> |
||
449 | <Anchor point="TOPLEFT"> |
||
450 | <Offset> |
||
451 | <AbsDimension x="0" y="0"/> |
||
452 | </Offset> |
||
453 | </Anchor> |
||
454 | </Anchors> |
||
455 | </Texture> |
||
456 | <Texture name="$parentPTexture9"> |
||
457 | <Size> |
||
458 | <AbsDimension x="1" y="1"/> |
||
459 | </Size> |
||
460 | <Anchors> |
||
461 | <Anchor point="TOPLEFT"> |
||
462 | <Offset> |
||
463 | <AbsDimension x="0" y="0"/> |
||
464 | </Offset> |
||
465 | </Anchor> |
||
466 | </Anchors> |
||
467 | </Texture> |
||
468 | <Texture name="$parentPTexture10"> |
||
469 | <Size> |
||
470 | <AbsDimension x="1" y="1"/> |
||
471 | </Size> |
||
472 | <Anchors> |
||
473 | <Anchor point="TOPLEFT"> |
||
474 | <Offset> |
||
475 | <AbsDimension x="0" y="0"/> |
||
476 | </Offset> |
||
477 | </Anchor> |
||
478 | </Anchors> |
||
479 | </Texture> |
||
480 | <Texture name="$parentPTexture11"> |
||
481 | <Size> |
||
482 | <AbsDimension x="1" y="1"/> |
||
483 | </Size> |
||
484 | <Anchors> |
||
485 | <Anchor point="TOPLEFT"> |
||
486 | <Offset> |
||
487 | <AbsDimension x="0" y="0"/> |
||
488 | </Offset> |
||
489 | </Anchor> |
||
490 | </Anchors> |
||
491 | </Texture> |
||
492 | <Texture name="$parentPTexture12"> |
||
493 | <Size> |
||
494 | <AbsDimension x="1" y="1"/> |
||
495 | </Size> |
||
496 | <Anchors> |
||
497 | <Anchor point="TOPLEFT"> |
||
498 | <Offset> |
||
499 | <AbsDimension x="0" y="0"/> |
||
500 | </Offset> |
||
501 | </Anchor> |
||
502 | </Anchors> |
||
503 | </Texture> |
||
504 | <Texture name="$parentPTexture13"> |
||
505 | <Size> |
||
506 | <AbsDimension x="1" y="1"/> |
||
507 | </Size> |
||
508 | <Anchors> |
||
509 | <Anchor point="TOPLEFT"> |
||
510 | <Offset> |
||
511 | <AbsDimension x="0" y="0"/> |
||
512 | </Offset> |
||
513 | </Anchor> |
||
514 | </Anchors> |
||
515 | </Texture> |
||
516 | <Texture name="$parentPTexture14"> |
||
517 | <Size> |
||
518 | <AbsDimension x="1" y="1"/> |
||
519 | </Size> |
||
520 | <Anchors> |
||
521 | <Anchor point="TOPLEFT"> |
||
522 | <Offset> |
||
523 | <AbsDimension x="0" y="0"/> |
||
524 | </Offset> |
||
525 | </Anchor> |
||
526 | </Anchors> |
||
527 | </Texture> |
||
528 | <Texture name="$parentPTexture15"> |
||
529 | <Size> |
||
530 | <AbsDimension x="1" y="1"/> |
||
531 | </Size> |
||
532 | <Anchors> |
||
533 | <Anchor point="TOPLEFT"> |
||
534 | <Offset> |
||
535 | <AbsDimension x="0" y="0"/> |
||
536 | </Offset> |
||
537 | </Anchor> |
||
538 | </Anchors> |
||
539 | </Texture> |
||
540 | <Texture name="$parentPTexture16"> |
||
541 | <Size> |
||
542 | <AbsDimension x="1" y="1"/> |
||
543 | </Size> |
||
544 | <Anchors> |
||
545 | <Anchor point="TOPLEFT"> |
||
546 | <Offset> |
||
547 | <AbsDimension x="0" y="0"/> |
||
548 | </Offset> |
||
549 | </Anchor> |
||
550 | </Anchors> |
||
551 | </Texture> |
||
552 | <Texture name="$parentPTexture17"> |
||
553 | <Size> |
||
554 | <AbsDimension x="1" y="1"/> |
||
555 | </Size> |
||
556 | <Anchors> |
||
557 | <Anchor point="TOPLEFT"> |
||
558 | <Offset> |
||
559 | <AbsDimension x="0" y="0"/> |
||
560 | </Offset> |
||
561 | </Anchor> |
||
562 | </Anchors> |
||
563 | </Texture> |
||
564 | <Texture name="$parentPTexture18"> |
||
565 | <Size> |
||
566 | <AbsDimension x="1" y="1"/> |
||
567 | </Size> |
||
568 | <Anchors> |
||
569 | <Anchor point="TOPLEFT"> |
||
570 | <Offset> |
||
571 | <AbsDimension x="0" y="0"/> |
||
572 | </Offset> |
||
573 | </Anchor> |
||
574 | </Anchors> |
||
575 | </Texture> |
||
576 | <Texture name="$parentPTexture19"> |
||
577 | <Size> |
||
578 | <AbsDimension x="1" y="1"/> |
||
579 | </Size> |
||
580 | <Anchors> |
||
581 | <Anchor point="TOPLEFT"> |
||
582 | <Offset> |
||
583 | <AbsDimension x="0" y="0"/> |
||
584 | </Offset> |
||
585 | </Anchor> |
||
586 | </Anchors> |
||
587 | </Texture> |
||
588 | <Texture name="$parentPTexture20"> |
||
589 | <Size> |
||
590 | <AbsDimension x="1" y="1"/> |
||
591 | </Size> |
||
592 | <Anchors> |
||
593 | <Anchor point="TOPLEFT"> |
||
594 | <Offset> |
||
595 | <AbsDimension x="0" y="0"/> |
||
596 | </Offset> |
||
597 | </Anchor> |
||
598 | </Anchors> |
||
599 | </Texture> |
||
600 | <Texture name="$parentPTexture21"> |
||
601 | <Size> |
||
602 | <AbsDimension x="1" y="1"/> |
||
603 | </Size> |
||
604 | <Anchors> |
||
605 | <Anchor point="TOPLEFT"> |
||
606 | <Offset> |
||
607 | <AbsDimension x="0" y="0"/> |
||
608 | </Offset> |
||
609 | </Anchor> |
||
610 | </Anchors> |
||
611 | </Texture> |
||
612 | <Texture name="$parentPTexture22"> |
||
613 | <Size> |
||
614 | <AbsDimension x="1" y="1"/> |
||
615 | </Size> |
||
616 | <Anchors> |
||
617 | <Anchor point="TOPLEFT"> |
||
618 | <Offset> |
||
619 | <AbsDimension x="0" y="0"/> |
||
620 | </Offset> |
||
621 | </Anchor> |
||
622 | </Anchors> |
||
623 | </Texture> |
||
624 | <Texture name="$parentPTexture23"> |
||
625 | <Size> |
||
626 | <AbsDimension x="1" y="1"/> |
||
627 | </Size> |
||
628 | <Anchors> |
||
629 | <Anchor point="TOPLEFT"> |
||
630 | <Offset> |
||
631 | <AbsDimension x="0" y="0"/> |
||
632 | </Offset> |
||
633 | </Anchor> |
||
634 | </Anchors> |
||
635 | </Texture> |
||
636 | <Texture name="$parentPTexture24"> |
||
637 | <Size> |
||
638 | <AbsDimension x="1" y="1"/> |
||
639 | </Size> |
||
640 | <Anchors> |
||
641 | <Anchor point="TOPLEFT"> |
||
642 | <Offset> |
||
643 | <AbsDimension x="0" y="0"/> |
||
644 | </Offset> |
||
645 | </Anchor> |
||
646 | </Anchors> |
||
647 | </Texture> |
||
648 | <Texture name="$parentPTexture25"> |
||
649 | <Size> |
||
650 | <AbsDimension x="1" y="1"/> |
||
651 | </Size> |
||
652 | <Anchors> |
||
653 | <Anchor point="TOPLEFT"> |
||
654 | <Offset> |
||
655 | <AbsDimension x="0" y="0"/> |
||
656 | </Offset> |
||
657 | </Anchor> |
||
658 | </Anchors> |
||
659 | </Texture> |
||
660 | <Texture name="$parentPTexture26"> |
||
661 | <Size> |
||
662 | <AbsDimension x="1" y="1"/> |
||
663 | </Size> |
||
664 | <Anchors> |
||
665 | <Anchor point="TOPLEFT"> |
||
666 | <Offset> |
||
667 | <AbsDimension x="0" y="0"/> |
||
668 | </Offset> |
||
669 | </Anchor> |
||
670 | </Anchors> |
||
671 | </Texture> |
||
672 | <Texture name="$parentPTexture27"> |
||
673 | <Size> |
||
674 | <AbsDimension x="1" y="1"/> |
||
675 | </Size> |
||
676 | <Anchors> |
||
677 | <Anchor point="TOPLEFT"> |
||
678 | <Offset> |
||
679 | <AbsDimension x="0" y="0"/> |
||
680 | </Offset> |
||
681 | </Anchor> |
||
682 | </Anchors> |
||
683 | </Texture> |
||
684 | <Texture name="$parentPTexture28"> |
||
685 | <Size> |
||
686 | <AbsDimension x="1" y="1"/> |
||
687 | </Size> |
||
688 | <Anchors> |
||
689 | <Anchor point="TOPLEFT"> |
||
690 | <Offset> |
||
691 | <AbsDimension x="0" y="0"/> |
||
692 | </Offset> |
||
693 | </Anchor> |
||
694 | </Anchors> |
||
695 | </Texture> |
||
696 | <Texture name="$parentPTexture29"> |
||
697 | <Size> |
||
698 | <AbsDimension x="1" y="1"/> |
||
699 | </Size> |
||
700 | <Anchors> |
||
701 | <Anchor point="TOPLEFT"> |
||
702 | <Offset> |
||
703 | <AbsDimension x="0" y="0"/> |
||
704 | </Offset> |
||
705 | </Anchor> |
||
706 | </Anchors> |
||
707 | </Texture> |
||
708 | <Texture name="$parentPTexture30"> |
||
709 | <Size> |
||
710 | <AbsDimension x="1" y="1"/> |
||
711 | </Size> |
||
712 | <Anchors> |
||
713 | <Anchor point="TOPLEFT"> |
||
714 | <Offset> |
||
715 | <AbsDimension x="0" y="0"/> |
||
716 | </Offset> |
||
717 | </Anchor> |
||
718 | </Anchors> |
||
719 | </Texture> |
||
720 | <Texture name="$parentPTexture31"> |
||
721 | <Size> |
||
722 | <AbsDimension x="1" y="1"/> |
||
723 | </Size> |
||
724 | <Anchors> |
||
725 | <Anchor point="TOPLEFT"> |
||
726 | <Offset> |
||
727 | <AbsDimension x="0" y="0"/> |
||
728 | </Offset> |
||
729 | </Anchor> |
||
730 | </Anchors> |
||
731 | </Texture> |
||
732 | <Texture name="$parentPTexture32"> |
||
733 | <Size> |
||
734 | <AbsDimension x="1" y="1"/> |
||
735 | </Size> |
||
736 | <Anchors> |
||
737 | <Anchor point="TOPLEFT"> |
||
738 | <Offset> |
||
739 | <AbsDimension x="0" y="0"/> |
||
740 | </Offset> |
||
741 | </Anchor> |
||
742 | </Anchors> |
||
743 | </Texture> |
||
744 | <Texture name="$parentPTexture33"> |
||
745 | <Size> |
||
746 | <AbsDimension x="1" y="1"/> |
||
747 | </Size> |
||
748 | <Anchors> |
||
749 | <Anchor point="TOPLEFT"> |
||
750 | <Offset> |
||
751 | <AbsDimension x="0" y="0"/> |
||
752 | </Offset> |
||
753 | </Anchor> |
||
754 | </Anchors> |
||
755 | </Texture> |
||
756 | <Texture name="$parentPTexture34"> |
||
757 | <Size> |
||
758 | <AbsDimension x="1" y="1"/> |
||
759 | </Size> |
||
760 | <Anchors> |
||
761 | <Anchor point="TOPLEFT"> |
||
762 | <Offset> |
||
763 | <AbsDimension x="0" y="0"/> |
||
764 | </Offset> |
||
765 | </Anchor> |
||
766 | </Anchors> |
||
767 | </Texture> |
||
768 | <Texture name="$parentPTexture35"> |
||
769 | <Size> |
||
770 | <AbsDimension x="1" y="1"/> |
||
771 | </Size> |
||
772 | <Anchors> |
||
773 | <Anchor point="TOPLEFT"> |
||
774 | <Offset> |
||
775 | <AbsDimension x="0" y="0"/> |
||
776 | </Offset> |
||
777 | </Anchor> |
||
778 | </Anchors> |
||
779 | </Texture> |
||
780 | <Texture name="$parentPTexture36"> |
||
781 | <Size> |
||
782 | <AbsDimension x="1" y="1"/> |
||
783 | </Size> |
||
784 | <Anchors> |
||
785 | <Anchor point="TOPLEFT"> |
||
786 | <Offset> |
||
787 | <AbsDimension x="0" y="0"/> |
||
788 | </Offset> |
||
789 | </Anchor> |
||
790 | </Anchors> |
||
791 | </Texture> |
||
792 | <Texture name="$parentPTexture37"> |
||
793 | <Size> |
||
794 | <AbsDimension x="1" y="1"/> |
||
795 | </Size> |
||
796 | <Anchors> |
||
797 | <Anchor point="TOPLEFT"> |
||
798 | <Offset> |
||
799 | <AbsDimension x="0" y="0"/> |
||
800 | </Offset> |
||
801 | </Anchor> |
||
802 | </Anchors> |
||
803 | </Texture> |
||
804 | <Texture name="$parentPTexture38"> |
||
805 | <Size> |
||
806 | <AbsDimension x="1" y="1"/> |
||
807 | </Size> |
||
808 | <Anchors> |
||
809 | <Anchor point="TOPLEFT"> |
||
810 | <Offset> |
||
811 | <AbsDimension x="0" y="0"/> |
||
812 | </Offset> |
||
813 | </Anchor> |
||
814 | </Anchors> |
||
815 | </Texture> |
||
816 | <Texture name="$parentPTexture39"> |
||
817 | <Size> |
||
818 | <AbsDimension x="1" y="1"/> |
||
819 | </Size> |
||
820 | <Anchors> |
||
821 | <Anchor point="TOPLEFT"> |
||
822 | <Offset> |
||
823 | <AbsDimension x="0" y="0"/> |
||
824 | </Offset> |
||
825 | </Anchor> |
||
826 | </Anchors> |
||
827 | </Texture> |
||
828 | <Texture name="$parentPTexture40"> |
||
829 | <Size> |
||
830 | <AbsDimension x="1" y="1"/> |
||
831 | </Size> |
||
832 | <Anchors> |
||
833 | <Anchor point="TOPLEFT"> |
||
834 | <Offset> |
||
835 | <AbsDimension x="0" y="0"/> |
||
836 | </Offset> |
||
837 | </Anchor> |
||
838 | </Anchors> |
||
839 | </Texture> |
||
840 | </Layer> |
||
841 | </Layers> |
||
842 | |||
843 | <!-- Point Buttons are filled in here --> |
||
844 | </Frame> |
||
845 | |||
846 | <Frame name="YatlasZoomTemplate" virtual="true"> |
||
847 | <Size> |
||
848 | <AbsDimension x="48" y="72" /> |
||
849 | </Size> |
||
850 | <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true"> |
||
851 | <EdgeSize> |
||
852 | <AbsValue val="16"/> |
||
853 | </EdgeSize> |
||
854 | <TileSize> |
||
855 | <AbsValue val="16"/> |
||
856 | </TileSize> |
||
857 | <BackgroundInsets> |
||
858 | <AbsInset left="5" right="5" top="5" bottom="5"/> |
||
859 | </BackgroundInsets> |
||
860 | </Backdrop> |
||
861 | <Frames> |
||
862 | <Button name="$parentPlusButton" inherits="UIPanelButtonTemplate" text="YATLAS_ZOOMIN"> |
||
863 | <Size> |
||
864 | <AbsDimension x="24" y="24"/> |
||
865 | </Size> |
||
866 | <Anchors> |
||
867 | <Anchor point="TOPLEFT"> |
||
868 | <Offset> |
||
869 | <AbsDimension x="11" y="-12"/> |
||
870 | </Offset> |
||
871 | </Anchor> |
||
872 | </Anchors> |
||
873 | <Scripts> |
||
874 | <OnClick> |
||
875 | local p = this:GetParent():GetParent():GetParent():GetParent(); |
||
876 | p:SetZoom(p:GetZoom()+24); |
||
877 | </OnClick> |
||
878 | </Scripts> |
||
879 | </Button> |
||
880 | <Button name="$parentMinusButton" inherits="UIPanelButtonTemplate" text="YATLAS_ZOOMOUT"> |
||
881 | <Size> |
||
882 | <AbsDimension x="24" y="24"/> |
||
883 | </Size> |
||
884 | <Anchors> |
||
885 | <Anchor point="TOPLEFT" relativeTo="$parentPlusButton" relativePoint="BOTTOMLEFT"> |
||
886 | <Offset> |
||
887 | <AbsDimension x="0" y="1"/> |
||
888 | </Offset> |
||
889 | </Anchor> |
||
890 | </Anchors> |
||
891 | <Scripts> |
||
892 | <OnClick> |
||
893 | local p = this:GetParent():GetParent():GetParent():GetParent(); |
||
894 | p:SetZoom(p:GetZoom()-24); |
||
895 | </OnClick> |
||
896 | </Scripts> |
||
897 | </Button> |
||
898 | </Frames> |
||
899 | <Scripts> |
||
900 | <OnLoad> |
||
901 | this:SetBackdropBorderColor(1, 1, 1); |
||
902 | this:SetBackdropColor(0, 0, 0, 1); |
||
903 | </OnLoad> |
||
904 | </Scripts> |
||
905 | </Frame> |
||
906 | |||
907 | <Slider name="YatlasOptionsSliderTemplate" orientation="VERTICAL" virtual="true" enableMouse="true"> |
||
908 | <Size> |
||
909 | <AbsDimension x="10" y="120"/> |
||
910 | </Size> |
||
911 | <HitRectInsets> |
||
912 | <AbsInset left="-10" right="-10" top="0" bottom="0"/> |
||
913 | </HitRectInsets> |
||
914 | <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true"> |
||
915 | <EdgeSize> |
||
916 | <AbsValue val="8"/> |
||
917 | </EdgeSize> |
||
918 | <TileSize> |
||
919 | <AbsValue val="8"/> |
||
920 | </TileSize> |
||
921 | <BackgroundInsets> |
||
922 | <AbsInset left="6" right="6" top="3" bottom="3"/> |
||
923 | </BackgroundInsets> |
||
924 | </Backdrop> |
||
925 | <Layers> |
||
926 | <Layer level="ARTWORK"> |
||
927 | <FontString name="$parentText" inherits="GameFontGreenSmall"> |
||
928 | <Anchors> |
||
929 | <Anchor point="LEFT" relativePoint="RIGHT"> |
||
930 | <Offset> |
||
931 | <AbsDimension x="2" y="0" /> |
||
932 | </Offset> |
||
933 | </Anchor> |
||
934 | </Anchors> |
||
935 | </FontString> |
||
936 | <FontString name="$parentLow" inherits="GameFontHighlightSmall" text="LOW"> |
||
937 | <Anchors> |
||
938 | <Anchor point="BOTTOM" relativePoint="TOP"> |
||
939 | <Offset> |
||
940 | <AbsDimension x="0" y="3"/> |
||
941 | </Offset> |
||
942 | </Anchor> |
||
943 | </Anchors> |
||
944 | </FontString> |
||
945 | <FontString name="$parentHigh" inherits="GameFontHighlightSmall" text="HIGH"> |
||
946 | <Anchors> |
||
947 | <Anchor point="TOP" relativePoint="BOTTOM"> |
||
948 | <Offset> |
||
949 | <AbsDimension x="0" y="0"/> |
||
950 | </Offset> |
||
951 | </Anchor> |
||
952 | </Anchors> |
||
953 | </FontString> |
||
954 | </Layer> |
||
955 | </Layers> |
||
956 | <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Vertical"> |
||
957 | <Size> |
||
958 | <AbsDimension x="32" y="32"/> |
||
959 | </Size> |
||
960 | </ThumbTexture> |
||
961 | </Slider> |
||
962 | |||
963 | <Frame name="YatlasTooltipTemplate" virtual="true"> |
||
964 | <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true"> |
||
965 | <EdgeSize> |
||
966 | <AbsValue val="16"/> |
||
967 | </EdgeSize> |
||
968 | <TileSize> |
||
969 | <AbsValue val="16"/> |
||
970 | </TileSize> |
||
971 | <BackgroundInsets> |
||
972 | <AbsInset left="5" right="5" top="5" bottom="5"/> |
||
973 | </BackgroundInsets> |
||
974 | </Backdrop> |
||
975 | |||
976 | <!-- FontStrings are automatically filled into Layers here as needed --> |
||
977 | |||
978 | <Scripts> |
||
979 | <OnLoad> |
||
980 | for h,v in pairs(YatlasTooltipTemplate) do |
||
981 | this[h] = v; |
||
982 | end |
||
983 | this:OnLoad(); |
||
984 | </OnLoad> |
||
985 | </Scripts> |
||
986 | </Frame> |
||
987 | </Ui> |