vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <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">
2 <Script file="localization.lua"/>
3 <Script file="localization.de.lua"/>
4 <Script file="localization.fr.lua"/>
5 <Script file="localization.cn.lua"/>
6 <Script file="localization.tw.lua"/>
7 <Script file="localization.es.lua"/>
8 <Script file="globals.lua"/>
9 <Script file="SHunterTimers.lua"/>
10  
11 <Frame name="SHunterTimersBarTemplate" virtual="true" hidden="true" >
12 <Size>
13 <AbsDimension x="220" y="10"/>
14 </Size>
15 <Frames>
16 <StatusBar name="$parentBar" inherits="TextStatusBar" enableMouse="true" >
17 <Size>
18 <AbsDimension x="220" y="10"/>
19 </Size>
20 <Anchors>
21 <Anchor point="CENTER" relativePoint="CENTER">
22 <Offset>
23 <AbsDimension x="0" y="0"/>
24 </Offset>
25 </Anchor>
26 </Anchors>
27 <BarTexture file="Interface\TargetingFrame\UI-TargetingFrame-BarFill"/>
28 <BarColor r="0" g="0.8" b="0" />
29 <Layers>
30 <Layer level="OVERLAY">
31 <FontString name="$parentLeftText" inherits="GameFontNormal" text="Error!">
32 <Anchors>
33 <Anchor point="LEFT" relativePoint="LEFT">
34 <Offset>
35 <AbsDimension x="10" y="1"/>
36 </Offset>
37 </Anchor>
38 </Anchors>
39 </FontString>
40 <FontString name="$parentRightText" inherits="GameFontNormal" text="Error!">
41 <Anchors>
42 <Anchor point="RIGHT" relativePoint="RIGHT">
43 <Offset>
44 <AbsDimension x="-10" y="1"/>
45 </Offset>
46 </Anchor>
47 </Anchors>
48 </FontString>
49 </Layer>
50 </Layers>
51 <Scripts>
52 <OnEnter>
53 SHunterTimers_Tooltip(this:GetParent());
54 </OnEnter>
55 <OnLeave>
56 GameTooltip:Hide();
57 </OnLeave>
58 </Scripts>
59 </StatusBar>
60  
61 <StatusBar name="$parentBGBar" inherits="TextStatusBar">
62 <Size>
63 <AbsDimension x="200" y="10"/>
64 </Size>
65 <Anchors>
66 <Anchor point="TOP" relativePoint="TOP" relativeTo="$parentBar">
67 <Offset>
68 <AbsDimension x="0" y="0"/>
69 </Offset>
70 </Anchor>
71 </Anchors>
72 <BarTexture file="Interface\TargetingFrame\UI-TargetingFrame-BarFill"/>
73 <BarColor r="0" g="0.8" b="0" a="0.25"/>
74 </StatusBar>
75  
76 </Frames>
77 <Layers>
78 <Layer level="ARTWORK">
79 <Texture name="$parentIcon" hidden="true">
80 <Size>
81 <AbsDimension x="10" y="10"/>
82 </Size>
83 <Anchors>
84 <Anchor point="LEFT" relativePoint="LEFT">
85 <Offset>
86 <AbsDimension x="0" y="0"/>
87 </Offset>
88 </Anchor>
89 </Anchors>
90 </Texture>
91 </Layer>
92 </Layers>
93 <Scripts>
94 <OnLoad>
95 this.texture = nil;
96 this.channeling = false;
97 this.fadeOut = false;
98 this.startTime = nil;
99 this.endTime = nil;
100 this.duration = nil;
101 this.step = 0;
102 this.target = nil;
103 </OnLoad>
104  
105 <OnUpdate>
106 SHunterTimers_OnUpdateBar(this:GetID());
107 </OnUpdate>
108 </Scripts>
109 </Frame>
110 <CheckButton name="SHTCheckBoxTemplate" inherits="OptionsCheckButtonTemplate" virtual="true">
111 <HitRectInsets>
112 <AbsInset left="0" right="-50" top="0" bottom="0"/>
113 </HitRectInsets>
114 <Scripts>
115 <OnClick>
116 if ( this:GetChecked() ) then
117 PlaySound("igMainMenuOptionCheckBoxOff");
118 else
119 PlaySound("igMainMenuOptionCheckBoxOn");
120 end
121 </OnClick>
122 </Scripts>
123 </CheckButton>
124 <Frame name="SHunterTimersAnchor" hidden="true" parent="UIParent" movable="true" enableMouse="true">
125 <Size>
126 <AbsDimension x="16" y="16"/>
127 </Size>
128 <Anchors>
129 <Anchor point="CENTER" relativePoint="CENTER">
130 <Offset>
131 <AbsDimension x="0" y="0"/>
132 </Offset>
133 </Anchor>
134 </Anchors>
135 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
136 <EdgeSize>
137 <AbsValue val="16"/>
138 </EdgeSize>
139 <TileSize>
140 <AbsValue val="16"/>
141 </TileSize>
142 <BackgroundInsets>
143 <AbsInset left="5" right="5" top="5" bottom="5"/>
144 </BackgroundInsets>
145 </Backdrop>
146 <Scripts>
147 <OnLoad>
148 this:RegisterForDrag("LeftButton");
149 </OnLoad>
150 <OnDragStart>
151 this:StartMoving();
152 </OnDragStart>
153 <OnDragStop>
154 this:StopMovingOrSizing();
155 </OnDragStop>
156 <OnEnter>
157 GameTooltip:ClearLines();
158 GameTooltip:AddLine("Hunter Timers Anchor.");
159 GameTooltip:Show();
160 </OnEnter>
161 <OnLeave>
162 GameTooltip:Hide();
163 </OnLeave>
164 </Scripts>
165 </Frame>
166 <Frame name="SHunterTimersFrame" parent="UIParent" hidden="true">
167 <Size>
168 <AbsDimension x="240" y="30"/>
169 </Size>
170 <Anchors>
171 <Anchor point="TOP" relativePoint="CENTER" relativeTo="SHunterTimersAnchor">
172 <Offset>
173 <AbsDimension x="0" y="0"/>
174 </Offset>
175 </Anchor>
176 </Anchors>
177 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
178 <EdgeSize>
179 <AbsValue val="16"/>
180 </EdgeSize>
181 <TileSize>
182 <AbsValue val="16"/>
183 </TileSize>
184 <BackgroundInsets>
185 <AbsInset left="5" right="5" top="5" bottom="5"/>
186 </BackgroundInsets>
187 </Backdrop>
188 <Scripts>
189 <OnLoad>
190 SHunterTimers_OnLoad();
191 this.updateTime = 0;
192 </OnLoad>
193 <OnUpdate>
194 SHunterTimersFrame_OnUpdate(GetTime());
195 </OnUpdate>
196 <OnEvent>
197 SHunterTimersFrame_OnEvent();
198 </OnEvent>
199 <OnDragStart>
200 this:StartMoving();
201 </OnDragStart>
202 <OnDragStop>
203 this:StopMovingOrSizing();
204 </OnDragStop>
205 </Scripts>
206 </Frame>
207 <Frame name="SHunterTimersStatus1" inherits="SHunterTimersBarTemplate" id="1" parent="UIParent">
208 <Anchors>
209 <Anchor point="TOP" relativePoint="TOP" relativeTo="SHunterTimersFrame">
210 <Offset>
211 <AbsDimension x="0" y="-10"/>
212 </Offset>
213 </Anchor>
214 </Anchors>
215 </Frame>
216 <Frame name="SHunterTimersStatus2" inherits="SHunterTimersBarTemplate" id="2" parent="UIParent">
217 <Anchors>
218 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus1">
219 <Offset>
220 <AbsDimension x="0" y="-10"/>
221 </Offset>
222 </Anchor>
223 </Anchors>
224 </Frame>
225 <Frame name="SHunterTimersStatus3" inherits="SHunterTimersBarTemplate" id="3" parent="UIParent">
226 <Anchors>
227 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus2">
228 <Offset>
229 <AbsDimension x="0" y="-10"/>
230 </Offset>
231 </Anchor>
232 </Anchors>
233 </Frame>
234 <Frame name="SHunterTimersStatus4" inherits="SHunterTimersBarTemplate" id="4" parent="UIParent">
235 <Anchors>
236 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus3">
237 <Offset>
238 <AbsDimension x="0" y="-10"/>
239 </Offset>
240 </Anchor>
241 </Anchors>
242 </Frame>
243 <Frame name="SHunterTimersStatus5" inherits="SHunterTimersBarTemplate" id="5" parent="UIParent">
244 <Anchors>
245 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus4">
246 <Offset>
247 <AbsDimension x="0" y="-10"/>
248 </Offset>
249 </Anchor>
250 </Anchors>
251 </Frame>
252 <Frame name="SHunterTimersStatus6" inherits="SHunterTimersBarTemplate" id="6" parent="UIParent">
253 <Anchors>
254 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus5">
255 <Offset>
256 <AbsDimension x="0" y="-10"/>
257 </Offset>
258 </Anchor>
259 </Anchors>
260 </Frame>
261 <Frame name="SHunterTimersStatus7" inherits="SHunterTimersBarTemplate" id="7" parent="UIParent">
262 <Anchors>
263 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus6">
264 <Offset>
265 <AbsDimension x="0" y="-10"/>
266 </Offset>
267 </Anchor>
268 </Anchors>
269 </Frame>
270 <Frame name="SHunterTimersStatus8" inherits="SHunterTimersBarTemplate" id="8" parent="UIParent">
271 <Anchors>
272 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus7">
273 <Offset>
274 <AbsDimension x="0" y="-10"/>
275 </Offset>
276 </Anchor>
277 </Anchors>
278 </Frame>
279 <Frame name="SHunterTimersStatus9" inherits="SHunterTimersBarTemplate" id="9" parent="UIParent">
280 <Anchors>
281 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus8">
282 <Offset>
283 <AbsDimension x="0" y="-10"/>
284 </Offset>
285 </Anchor>
286 </Anchors>
287 </Frame>
288 <Frame name="SHunterTimersStatus10" inherits="SHunterTimersBarTemplate" id="10" parent="UIParent">
289 <Anchors>
290 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus9">
291 <Offset>
292 <AbsDimension x="0" y="-10"/>
293 </Offset>
294 </Anchor>
295 </Anchors>
296 </Frame>
297 <Frame name="SHunterTimersStatus11" inherits="SHunterTimersBarTemplate" id="11" parent="UIParent">
298 <Anchors>
299 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="SHunterTimersStatus10">
300 <Offset>
301 <AbsDimension x="0" y="-10"/>
302 </Offset>
303 </Anchor>
304 </Anchors>
305 </Frame>
306 <GameTooltip name="SHuntersTooltip" frameStrata="TOOLTIP" hidden="true" inherits="GameTooltipTemplate">
307 <Scripts>
308 <OnLoad>
309 this:SetOwner(WorldFrame, "ANCHOR_NONE");
310 </OnLoad>
311 </Scripts>
312 </GameTooltip>
313  
314 -- Main GUI Screen
315 <Frame name="SHunterTimersOptions" hidden="true" movable="true" enableKeyboard="true">
316 <Size>
317 <AbsDimension x="1015" y="581" />
318 </Size>
319 <Anchors>
320 <Anchor point="CENTER" relativeTo="UIParent">
321 <Offset>
322 <AbsDimension x="0" y="0" />
323 </Offset>
324 </Anchor>
325 </Anchors>
326 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
327 <BackgroundInsets>
328 <AbsInset left="11" right="12" top="12" bottom="11" />
329 </BackgroundInsets>
330 <TileSize>
331 <AbsValue val="32" />
332 </TileSize>
333 <EdgeSize>
334 <AbsValue val="32" />
335 </EdgeSize>
336 </Backdrop>
337 <Layers>
338 <Layer>
339 <Texture name="$parentTitleBorder" file="Interface\DialogFrame\UI-DialogBox-Header">
340 <Size>
341 <AbsDimension x="270" y="32" />
342 </Size>
343 <Anchors>
344 <Anchor point="TOP">
345 <Offset>
346 <AbsDimension x="0" y="5" />
347 </Offset>
348 </Anchor>
349 </Anchors>
350 <TexCoords left="0.2" right="0.8" top="0" bottom="0.6" />
351 </Texture>
352 <FontString name="$parentTitleString" inherits="GameFontNormal" text="Sorren's Hunter Timers">
353 <Size>
354 <AbsDimension x="200" y="0" />
355 </Size>
356 <Anchors>
357 <Anchor point="TOP">
358 <Offset>
359 <AbsDimension x="0" y="-6" />
360 </Offset>
361 </Anchor>
362 </Anchors>
363 <FontHeight>
364 <AbsValue val="12" />
365 </FontHeight>
366 <Color r="1" g="0.8196079" b="0" />
367 <Shadow>
368 <Color r="0" g="0" b="0" />
369 <Offset>
370 <AbsDimension x="1" y="-1" />
371 </Offset>
372 </Shadow>
373 </FontString>
374 </Layer>
375 </Layers>
376 <Frames>
377 <Button name="$parentButtonOkay" text="Okay">
378 <Size>
379 <AbsDimension x="66" y="22" />
380 </Size>
381 <Anchors>
382 <Anchor point="TOPLEFT">
383 <Offset>
384 <AbsDimension x="40" y="-535" />
385 </Offset>
386 </Anchor>
387 </Anchors>
388 <Scripts>
389 <OnClick>SHunterTimers_SaveCloseOptions();
390 </OnClick>
391 </Scripts>
392 <NormalTexture file="Interface\Buttons\UI-Panel-Button-Up">
393 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
394 </NormalTexture>
395 <PushedTexture file="Interface\Buttons\UI-Panel-Button-Down">
396 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
397 </PushedTexture>
398 <DisabledTexture file="Interface\Buttons\UI-Panel-Button-Disabled">
399 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
400 </DisabledTexture>
401 <HighlightTexture file="Interface\Buttons\UI-Panel-Button-Highlight" alphaMode="ADD">
402 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
403 </HighlightTexture>
404 <ButtonText>
405 <FontHeight>
406 <AbsValue val="10" />
407 </FontHeight>
408 </ButtonText>
409 <NormalFont name="$parentText" inherits="GameFontNormal">
410 <FontHeight>
411 <AbsValue val="12" />
412 </FontHeight>
413 <Color r="1" g="0.8196079" b="0" />
414 <Shadow>
415 <Color r="0" g="0" b="0" />
416 <Offset>
417 <AbsDimension x="1" y="-1" />
418 </Offset>
419 </Shadow>
420 </NormalFont>
421 <HighlightFont inherits="GameFontNormal">
422 <FontHeight>
423 <AbsValue val="12" />
424 </FontHeight>
425 <Color r="1" g="1" b="1" />
426 <Shadow>
427 <Color r="0" g="0" b="0" />
428 <Offset>
429 <AbsDimension x="1" y="-1" />
430 </Offset>
431 </Shadow>
432 </HighlightFont>
433 <DisabledFont inherits="GameFontNormal">
434 <FontHeight>
435 <AbsValue val="12" />
436 </FontHeight>
437 <Color r="0.4901961" g="0.4901961" b="0.4901961" />
438 <Shadow>
439 <Color r="0" g="0" b="0" />
440 <Offset>
441 <AbsDimension x="1" y="-1" />
442 </Offset>
443 </Shadow>
444 </DisabledFont>
445 <PushedTextOffset x="0" y="0" />
446 </Button>
447 <Button name="$parentButtonApply" text="Apply">
448 <Size>
449 <AbsDimension x="66" y="22" />
450 </Size>
451 <Anchors>
452 <Anchor point="TOPLEFT">
453 <Offset>
454 <AbsDimension x="137" y="-535" />
455 </Offset>
456 </Anchor>
457 </Anchors>
458 <Scripts>
459 <OnClick>SHunterTimers_SaveOptions();
460 </OnClick>
461 </Scripts>
462 <NormalTexture file="Interface\Buttons\UI-Panel-Button-Up">
463 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
464 </NormalTexture>
465 <PushedTexture file="Interface\Buttons\UI-Panel-Button-Down">
466 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
467 </PushedTexture>
468 <DisabledTexture file="Interface\Buttons\UI-Panel-Button-Disabled">
469 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
470 </DisabledTexture>
471 <HighlightTexture file="Interface\Buttons\UI-Panel-Button-Highlight" alphaMode="ADD">
472 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
473 </HighlightTexture>
474 <ButtonText>
475 <FontHeight>
476 <AbsValue val="10" />
477 </FontHeight>
478 </ButtonText>
479 <NormalFont name="$parentText" inherits="GameFontNormal">
480 <FontHeight>
481 <AbsValue val="12" />
482 </FontHeight>
483 <Color r="1" g="0.8196079" b="0" />
484 <Shadow>
485 <Color r="0" g="0" b="0" />
486 <Offset>
487 <AbsDimension x="1" y="-1" />
488 </Offset>
489 </Shadow>
490 </NormalFont>
491 <HighlightFont inherits="GameFontNormal">
492 <FontHeight>
493 <AbsValue val="12" />
494 </FontHeight>
495 <Color r="1" g="1" b="1" />
496 <Shadow>
497 <Color r="0" g="0" b="0" />
498 <Offset>
499 <AbsDimension x="1" y="-1" />
500 </Offset>
501 </Shadow>
502 </HighlightFont>
503 <DisabledFont inherits="GameFontNormal">
504 <FontHeight>
505 <AbsValue val="12" />
506 </FontHeight>
507 <Color r="0.4901961" g="0.4901961" b="0.4901961" />
508 <Shadow>
509 <Color r="0" g="0" b="0" />
510 <Offset>
511 <AbsDimension x="1" y="-1" />
512 </Offset>
513 </Shadow>
514 </DisabledFont>
515 <PushedTextOffset x="0" y="0" />
516 </Button>
517 <Button name="$parentButtonCancel" text="Cancel">
518 <Size>
519 <AbsDimension x="66" y="22" />
520 </Size>
521 <Anchors>
522 <Anchor point="TOPLEFT">
523 <Offset>
524 <AbsDimension x="233" y="-535" />
525 </Offset>
526 </Anchor>
527 </Anchors>
528 <Scripts>
529 <OnClick>SHunterTimersOptions:Hide();
530 </OnClick>
531 </Scripts>
532 <NormalTexture file="Interface\Buttons\UI-Panel-Button-Up">
533 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
534 </NormalTexture>
535 <PushedTexture file="Interface\Buttons\UI-Panel-Button-Down">
536 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
537 </PushedTexture>
538 <DisabledTexture file="Interface\Buttons\UI-Panel-Button-Disabled">
539 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
540 </DisabledTexture>
541 <HighlightTexture file="Interface\Buttons\UI-Panel-Button-Highlight" alphaMode="ADD">
542 <TexCoords left="0" right="0.625" top="0" bottom="0.6875" />
543 </HighlightTexture>
544 <ButtonText>
545 <FontHeight>
546 <AbsValue val="10" />
547 </FontHeight>
548 </ButtonText>
549 <NormalFont name="$parentText" inherits="GameFontNormal">
550 <FontHeight>
551 <AbsValue val="12" />
552 </FontHeight>
553 <Color r="1" g="0.8196079" b="0" />
554 <Shadow>
555 <Color r="0" g="0" b="0" />
556 <Offset>
557 <AbsDimension x="1" y="-1" />
558 </Offset>
559 </Shadow>
560 </NormalFont>
561 <HighlightFont inherits="GameFontNormal">
562 <FontHeight>
563 <AbsValue val="12" />
564 </FontHeight>
565 <Color r="1" g="1" b="1" />
566 <Shadow>
567 <Color r="0" g="0" b="0" />
568 <Offset>
569 <AbsDimension x="1" y="-1" />
570 </Offset>
571 </Shadow>
572 </HighlightFont>
573 <DisabledFont inherits="GameFontNormal">
574 <FontHeight>
575 <AbsValue val="12" />
576 </FontHeight>
577 <Color r="0.4901961" g="0.4901961" b="0.4901961" />
578 <Shadow>
579 <Color r="0" g="0" b="0" />
580 <Offset>
581 <AbsDimension x="1" y="-1" />
582 </Offset>
583 </Shadow>
584 </DisabledFont>
585 <PushedTextOffset x="0" y="0" />
586 </Button>
587  
588 <Frame name="$parentBars">
589 <Size>
590 <AbsDimension x="474" y="462" />
591 </Size>
592 <Anchors>
593 <Anchor point="TOPLEFT">
594 <Offset>
595 <AbsDimension x="520" y="-30" />
596 </Offset>
597 </Anchor>
598 </Anchors>
599 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
600 <BackgroundInsets>
601 <AbsInset left="5" right="5" top="5" bottom="5" />
602 </BackgroundInsets>
603 <TileSize>
604 <AbsValue val="16" />
605 </TileSize>
606 <EdgeSize>
607 <AbsValue val="16" />
608 </EdgeSize>
609 </Backdrop>
610 <Frames>
611 <Frame name="SHunterTimersOptionsBarsLabel1">
612 <Size>
613 <AbsDimension x="75" y="18" />
614 </Size>
615 <Anchors>
616 <Anchor point="TOPLEFT">
617 <Offset>
618 <AbsDimension x="210" y="-10" />
619 </Offset>
620 </Anchor>
621 </Anchors>
622 <Layers>
623 <Layer>
624 <FontString name="$parentLabel" inherits="SystemFont" text="Bars">
625 <Anchors>
626 <Anchor point="TOPLEFT" />
627 <Anchor point="BOTTOMRIGHT" />
628 </Anchors>
629 <FontHeight>
630 <AbsValue val="12" />
631 </FontHeight>
632 <Color r="1" g="0.8196079" b="0" />
633 <Shadow>
634 <Color r="0" g="0" b="0" />
635 <Offset>
636 <AbsDimension x="1" y="-1" />
637 </Offset>
638 </Shadow>
639 </FontString>
640 </Layer>
641 </Layers>
642 </Frame>
643 <CheckButton name="$parentCheckButtonOn">
644 <Size>
645 <AbsDimension x="32" y="32" />
646 </Size>
647 <Anchors>
648 <Anchor point="TOPLEFT">
649 <Offset>
650 <AbsDimension x="20" y="-30" />
651 </Offset>
652 </Anchor>
653 </Anchors>
654 <Layers>
655 <Layer>
656 <FontString name="$parentText" inherits="GameFontNormalSmall" text="On">
657 <Anchors>
658 <Anchor point="LEFT" relativePoint="RIGHT">
659 <Offset>
660 <AbsDimension x="-2" y="0" />
661 </Offset>
662 </Anchor>
663 </Anchors>
664 <FontHeight>
665 <AbsValue val="10" />
666 </FontHeight>
667 <Color r="1" g="0.8196079" b="0" />
668 <Shadow>
669 <Color r="0" g="0" b="0" />
670 <Offset>
671 <AbsDimension x="1" y="-1" />
672 </Offset>
673 </Shadow>
674 </FontString>
675 </Layer>
676 </Layers>
677 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
678 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
679 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
680 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
681 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
682 </CheckButton>
683 <Button name="$parentColor1" id="1">
684 <Size>
685 <AbsDimension x="32" y="32" />
686 </Size>
687 <Anchors>
688 <Anchor point="TOPLEFT">
689 <Offset>
690 <AbsDimension x="170" y="-30" />
691 </Offset>
692 </Anchor>
693 </Anchors>
694 <Scripts>
695 <OnClick>SHT_ColorPicker(this:GetID());
696 </OnClick>
697 </Scripts>
698 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
699 <TexCoords left="0" right="1" top="0" bottom="1" />
700 </NormalTexture>
701 <PushedTextOffset x="0" y="0" />
702 </Button>
703 <Frame name="SHunterTimersOptionsBarsLabel3">
704 <Size>
705 <AbsDimension x="97" y="32" />
706 </Size>
707 <Anchors>
708 <Anchor point="TOPLEFT">
709 <Offset>
710 <AbsDimension x="200" y="-30" />
711 </Offset>
712 </Anchor>
713 </Anchors>
714 <Layers>
715 <Layer>
716 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Bar Start Color" justifyH="LEFT">
717 <Anchors>
718 <Anchor point="TOPLEFT" />
719 <Anchor point="BOTTOMRIGHT" />
720 </Anchors>
721 <FontHeight>
722 <AbsValue val="12" />
723 </FontHeight>
724 <Color r="1" g="0.8196079" b="0" />
725 <Shadow>
726 <Color r="0" g="0" b="0" />
727 <Offset>
728 <AbsDimension x="1" y="-1" />
729 </Offset>
730 </Shadow>
731 </FontString>
732 </Layer>
733 </Layers>
734 </Frame>
735 <Button name="$parentColor5" id="5">
736 <Size>
737 <AbsDimension x="32" y="32" />
738 </Size>
739 <Anchors>
740 <Anchor point="TOPLEFT">
741 <Offset>
742 <AbsDimension x="320" y="-30" />
743 </Offset>
744 </Anchor>
745 </Anchors>
746 <Scripts>
747 <OnClick>SHT_ColorPicker(this:GetID());
748 </OnClick>
749 </Scripts>
750 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
751 <TexCoords left="0" right="1" top="0" bottom="1" />
752 </NormalTexture>
753 <PushedTextOffset x="0" y="0" />
754 </Button>
755 <Frame name="SHunterTimersOptionsBarsLabel4">
756 <Size>
757 <AbsDimension x="97" y="32" />
758 </Size>
759 <Anchors>
760 <Anchor point="TOPLEFT">
761 <Offset>
762 <AbsDimension x="350" y="-30" />
763 </Offset>
764 </Anchor>
765 </Anchors>
766 <Layers>
767 <Layer>
768 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Text Color" justifyH="LEFT">
769 <Anchors>
770 <Anchor point="TOPLEFT" />
771 <Anchor point="BOTTOMRIGHT" />
772 </Anchors>
773 <FontHeight>
774 <AbsValue val="12" />
775 </FontHeight>
776 <Color r="1" g="0.8196079" b="0" />
777 <Shadow>
778 <Color r="0" g="0" b="0" />
779 <Offset>
780 <AbsDimension x="1" y="-1" />
781 </Offset>
782 </Shadow>
783 </FontString>
784 </Layer>
785 </Layers>
786 </Frame>
787 <CheckButton name="SHunterTimersOptionsBarsCheckButton1">
788 <Size>
789 <AbsDimension x="32" y="32" />
790 </Size>
791 <Anchors>
792 <Anchor point="TOPLEFT">
793 <Offset>
794 <AbsDimension x="20" y="-68" />
795 </Offset>
796 </Anchor>
797 </Anchors>
798 <Layers>
799 <Layer>
800 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Lock">
801 <Anchors>
802 <Anchor point="LEFT" relativePoint="RIGHT">
803 <Offset>
804 <AbsDimension x="-2" y="0" />
805 </Offset>
806 </Anchor>
807 </Anchors>
808 <FontHeight>
809 <AbsValue val="10" />
810 </FontHeight>
811 <Color r="1" g="0.8196079" b="0" />
812 <Shadow>
813 <Color r="0" g="0" b="0" />
814 <Offset>
815 <AbsDimension x="1" y="-1" />
816 </Offset>
817 </Shadow>
818 </FontString>
819 </Layer>
820 </Layers>
821 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
822 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
823 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
824 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
825 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
826 </CheckButton>
827 <Button name="$parentColor2" id="2">
828 <Size>
829 <AbsDimension x="32" y="32" />
830 </Size>
831 <Anchors>
832 <Anchor point="TOPLEFT">
833 <Offset>
834 <AbsDimension x="170" y="-68" />
835 </Offset>
836 </Anchor>
837 </Anchors>
838 <Scripts>
839 <OnClick>SHT_ColorPicker(this:GetID());
840 </OnClick>
841 </Scripts>
842 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
843 <TexCoords left="0" right="1" top="0" bottom="1" />
844 </NormalTexture>
845 <PushedTextOffset x="0" y="0" />
846 </Button>
847 <Frame name="SHunterTimersOptionsBarsLabel6">
848 <Size>
849 <AbsDimension x="97" y="32" />
850 </Size>
851 <Anchors>
852 <Anchor point="TOPLEFT">
853 <Offset>
854 <AbsDimension x="200" y="-68" />
855 </Offset>
856 </Anchor>
857 </Anchors>
858 <Layers>
859 <Layer>
860 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Bar End Color" justifyH="LEFT">
861 <Anchors>
862 <Anchor point="TOPLEFT" />
863 <Anchor point="BOTTOMRIGHT" />
864 </Anchors>
865 <FontHeight>
866 <AbsValue val="12" />
867 </FontHeight>
868 <Color r="1" g="0.8196079" b="0" />
869 <Shadow>
870 <Color r="0" g="0" b="0" />
871 <Offset>
872 <AbsDimension x="1" y="-1" />
873 </Offset>
874 </Shadow>
875 </FontString>
876 </Layer>
877 </Layers>
878 </Frame>
879 <Button name="$parentColor6" id="6">
880 <Size>
881 <AbsDimension x="32" y="32" />
882 </Size>
883 <Anchors>
884 <Anchor point="TOPLEFT">
885 <Offset>
886 <AbsDimension x="320" y="-68" />
887 </Offset>
888 </Anchor>
889 </Anchors>
890 <Scripts>
891 <OnClick>SHT_ColorPicker(this:GetID());
892 </OnClick>
893 </Scripts>
894 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
895 <TexCoords left="0" right="1" top="0" bottom="1" />
896 </NormalTexture>
897 <PushedTextOffset x="0" y="0" />
898 </Button>
899 <Frame name="SHunterTimersOptionsBarsLabel7">
900 <Size>
901 <AbsDimension x="97" y="32" />
902 </Size>
903 <Anchors>
904 <Anchor point="TOPLEFT">
905 <Offset>
906 <AbsDimension x="350" y="-68" />
907 </Offset>
908 </Anchor>
909 </Anchors>
910 <Layers>
911 <Layer>
912 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Time Color" justifyH="LEFT">
913 <Anchors>
914 <Anchor point="TOPLEFT" />
915 <Anchor point="BOTTOMRIGHT" />
916 </Anchors>
917 <FontHeight>
918 <AbsValue val="12" />
919 </FontHeight>
920 <Color r="1" g="0.8196079" b="0" />
921 <Shadow>
922 <Color r="0" g="0" b="0" />
923 <Offset>
924 <AbsDimension x="1" y="-1" />
925 </Offset>
926 </Shadow>
927 </FontString>
928 </Layer>
929 </Layers>
930 </Frame>
931 <Frame name="$parentSlider1">
932 <Size>
933 <AbsDimension x="128" y="50" />
934 </Size>
935 <Anchors>
936 <Anchor point="TOPLEFT">
937 <Offset>
938 <AbsDimension x="20" y="-110" />
939 </Offset>
940 </Anchor>
941 </Anchors>
942 <Frames>
943 <Slider name="$parentSlider" enableMouse="true" minValue="0" maxValue="10" defaultValue="5" valueStep="1" orientation="HORIZONTAL">
944 <Size>
945 <AbsDimension x="128" y="17" />
946 </Size>
947 <Anchors>
948 <Anchor point="LEFT" />
949 <Anchor point="RIGHT" />
950 </Anchors>
951 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
952 <BackgroundInsets>
953 <AbsInset left="3" right="3" top="6" bottom="6" />
954 </BackgroundInsets>
955 <TileSize>
956 <AbsValue val="8" />
957 </TileSize>
958 <EdgeSize>
959 <AbsValue val="8" />
960 </EdgeSize>
961 </Backdrop>
962 <Layers>
963 <Layer>
964 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Distance Between Bars">
965 <Anchors>
966 <Anchor point="BOTTOM" relativePoint="TOP" />
967 </Anchors>
968 <FontHeight>
969 <AbsValue val="10" />
970 </FontHeight>
971 <Color r="1" g="0.8196079" b="0" />
972 <Shadow>
973 <Color r="0" g="0" b="0" />
974 <Offset>
975 <AbsDimension x="1" y="-1" />
976 </Offset>
977 </Shadow>
978 </FontString>
979 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
980 <Anchors>
981 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
982 </Anchors>
983 <FontHeight>
984 <AbsValue val="10" />
985 </FontHeight>
986 <Color r="1" g="1" b="1" />
987 <Shadow>
988 <Color r="0" g="0" b="0" />
989 <Offset>
990 <AbsDimension x="1" y="-1" />
991 </Offset>
992 </Shadow>
993 </FontString>
994 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
995 <Anchors>
996 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
997 </Anchors>
998 <FontHeight>
999 <AbsValue val="10" />
1000 </FontHeight>
1001 <Color r="1" g="1" b="1" />
1002 <Shadow>
1003 <Color r="0" g="0" b="0" />
1004 <Offset>
1005 <AbsDimension x="1" y="-1" />
1006 </Offset>
1007 </Shadow>
1008 </FontString>
1009 </Layer>
1010 </Layers>
1011 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1012 <Size>
1013 <AbsDimension x="32" y="32" />
1014 </Size>
1015 </ThumbTexture>
1016 </Slider>
1017 </Frames>
1018 </Frame>
1019 <Frame name="$parentSlider2">
1020 <Size>
1021 <AbsDimension x="128" y="50" />
1022 </Size>
1023 <Anchors>
1024 <Anchor point="TOPLEFT">
1025 <Offset>
1026 <AbsDimension x="170" y="-110" />
1027 </Offset>
1028 </Anchor>
1029 </Anchors>
1030 <Frames>
1031 <Slider name="$parentSlider" enableMouse="true" minValue="0.5" maxValue="1.5" defaultValue="1" valueStep="0.01" orientation="HORIZONTAL">
1032 <Size>
1033 <AbsDimension x="128" y="17" />
1034 </Size>
1035 <Anchors>
1036 <Anchor point="LEFT" />
1037 <Anchor point="RIGHT" />
1038 </Anchors>
1039 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
1040 <BackgroundInsets>
1041 <AbsInset left="3" right="3" top="6" bottom="6" />
1042 </BackgroundInsets>
1043 <TileSize>
1044 <AbsValue val="8" />
1045 </TileSize>
1046 <EdgeSize>
1047 <AbsValue val="8" />
1048 </EdgeSize>
1049 </Backdrop>
1050 <Layers>
1051 <Layer>
1052 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Scale">
1053 <Anchors>
1054 <Anchor point="BOTTOM" relativePoint="TOP" />
1055 </Anchors>
1056 <FontHeight>
1057 <AbsValue val="10" />
1058 </FontHeight>
1059 <Color r="1" g="0.8196079" b="0" />
1060 <Shadow>
1061 <Color r="0" g="0" b="0" />
1062 <Offset>
1063 <AbsDimension x="1" y="-1" />
1064 </Offset>
1065 </Shadow>
1066 </FontString>
1067 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
1068 <Anchors>
1069 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
1070 </Anchors>
1071 <FontHeight>
1072 <AbsValue val="10" />
1073 </FontHeight>
1074 <Color r="1" g="1" b="1" />
1075 <Shadow>
1076 <Color r="0" g="0" b="0" />
1077 <Offset>
1078 <AbsDimension x="1" y="-1" />
1079 </Offset>
1080 </Shadow>
1081 </FontString>
1082 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
1083 <Anchors>
1084 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
1085 </Anchors>
1086 <FontHeight>
1087 <AbsValue val="10" />
1088 </FontHeight>
1089 <Color r="1" g="1" b="1" />
1090 <Shadow>
1091 <Color r="0" g="0" b="0" />
1092 <Offset>
1093 <AbsDimension x="1" y="-1" />
1094 </Offset>
1095 </Shadow>
1096 </FontString>
1097 </Layer>
1098 </Layers>
1099 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1100 <Size>
1101 <AbsDimension x="32" y="32" />
1102 </Size>
1103 </ThumbTexture>
1104 </Slider>
1105 </Frames>
1106 </Frame>
1107 <Frame name="$parentSlider3">
1108 <Size>
1109 <AbsDimension x="128" y="50" />
1110 </Size>
1111 <Anchors>
1112 <Anchor point="TOPLEFT">
1113 <Offset>
1114 <AbsDimension x="320" y="-110" />
1115 </Offset>
1116 </Anchor>
1117 </Anchors>
1118 <Frames>
1119 <Slider name="$parentSlider" enableMouse="true" minValue="0" maxValue="3" defaultValue="2" valueStep="1" orientation="HORIZONTAL">
1120 <Size>
1121 <AbsDimension x="128" y="17" />
1122 </Size>
1123 <Anchors>
1124 <Anchor point="LEFT" />
1125 <Anchor point="RIGHT" />
1126 </Anchors>
1127 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
1128 <BackgroundInsets>
1129 <AbsInset left="3" right="3" top="6" bottom="6" />
1130 </BackgroundInsets>
1131 <TileSize>
1132 <AbsValue val="8" />
1133 </TileSize>
1134 <EdgeSize>
1135 <AbsValue val="8" />
1136 </EdgeSize>
1137 </Backdrop>
1138 <Layers>
1139 <Layer>
1140 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Decimals">
1141 <Anchors>
1142 <Anchor point="BOTTOM" relativePoint="TOP" />
1143 </Anchors>
1144 <FontHeight>
1145 <AbsValue val="10" />
1146 </FontHeight>
1147 <Color r="1" g="0.8196079" b="0" />
1148 <Shadow>
1149 <Color r="0" g="0" b="0" />
1150 <Offset>
1151 <AbsDimension x="1" y="-1" />
1152 </Offset>
1153 </Shadow>
1154 </FontString>
1155 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
1156 <Anchors>
1157 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
1158 </Anchors>
1159 <FontHeight>
1160 <AbsValue val="10" />
1161 </FontHeight>
1162 <Color r="1" g="1" b="1" />
1163 <Shadow>
1164 <Color r="0" g="0" b="0" />
1165 <Offset>
1166 <AbsDimension x="1" y="-1" />
1167 </Offset>
1168 </Shadow>
1169 </FontString>
1170 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
1171 <Anchors>
1172 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
1173 </Anchors>
1174 <FontHeight>
1175 <AbsValue val="10" />
1176 </FontHeight>
1177 <Color r="1" g="1" b="1" />
1178 <Shadow>
1179 <Color r="0" g="0" b="0" />
1180 <Offset>
1181 <AbsDimension x="1" y="-1" />
1182 </Offset>
1183 </Shadow>
1184 </FontString>
1185 </Layer>
1186 </Layers>
1187 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1188 <Size>
1189 <AbsDimension x="32" y="32" />
1190 </Size>
1191 </ThumbTexture>
1192 </Slider>
1193 </Frames>
1194 </Frame>
1195 <Frame name="$parentSlider4">
1196 <Size>
1197 <AbsDimension x="128" y="50" />
1198 </Size>
1199 <Anchors>
1200 <Anchor point="TOPLEFT">
1201 <Offset>
1202 <AbsDimension x="20" y="-155" />
1203 </Offset>
1204 </Anchor>
1205 </Anchors>
1206 <Frames>
1207 <Slider name="$parentSlider" enableMouse="true" minValue="0" maxValue="10" defaultValue="5" valueStep="1" orientation="HORIZONTAL">
1208 <Size>
1209 <AbsDimension x="128" y="17" />
1210 </Size>
1211 <Anchors>
1212 <Anchor point="LEFT" />
1213 <Anchor point="RIGHT" />
1214 </Anchors>
1215 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
1216 <BackgroundInsets>
1217 <AbsInset left="3" right="3" top="6" bottom="6" />
1218 </BackgroundInsets>
1219 <TileSize>
1220 <AbsValue val="8" />
1221 </TileSize>
1222 <EdgeSize>
1223 <AbsValue val="8" />
1224 </EdgeSize>
1225 </Backdrop>
1226 <Layers>
1227 <Layer>
1228 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Flash Time">
1229 <Anchors>
1230 <Anchor point="BOTTOM" relativePoint="TOP" />
1231 </Anchors>
1232 <FontHeight>
1233 <AbsValue val="10" />
1234 </FontHeight>
1235 <Color r="1" g="0.8196079" b="0" />
1236 <Shadow>
1237 <Color r="0" g="0" b="0" />
1238 <Offset>
1239 <AbsDimension x="1" y="-1" />
1240 </Offset>
1241 </Shadow>
1242 </FontString>
1243 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
1244 <Anchors>
1245 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
1246 </Anchors>
1247 <FontHeight>
1248 <AbsValue val="10" />
1249 </FontHeight>
1250 <Color r="1" g="1" b="1" />
1251 <Shadow>
1252 <Color r="0" g="0" b="0" />
1253 <Offset>
1254 <AbsDimension x="1" y="-1" />
1255 </Offset>
1256 </Shadow>
1257 </FontString>
1258 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
1259 <Anchors>
1260 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
1261 </Anchors>
1262 <FontHeight>
1263 <AbsValue val="10" />
1264 </FontHeight>
1265 <Color r="1" g="1" b="1" />
1266 <Shadow>
1267 <Color r="0" g="0" b="0" />
1268 <Offset>
1269 <AbsDimension x="1" y="-1" />
1270 </Offset>
1271 </Shadow>
1272 </FontString>
1273 </Layer>
1274 </Layers>
1275 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1276 <Size>
1277 <AbsDimension x="32" y="32" />
1278 </Size>
1279 </ThumbTexture>
1280 </Slider>
1281 </Frames>
1282 </Frame>
1283 <Frame name="$parentSlider5">
1284 <Size>
1285 <AbsDimension x="128" y="50" />
1286 </Size>
1287 <Anchors>
1288 <Anchor point="TOPLEFT">
1289 <Offset>
1290 <AbsDimension x="170" y="-155" />
1291 </Offset>
1292 </Anchor>
1293 </Anchors>
1294 <Frames>
1295 <Slider name="$parentSlider" enableMouse="true" minValue="0.01" maxValue="0.05" defaultValue="0.015" valueStep="0.005" orientation="HORIZONTAL">
1296 <Size>
1297 <AbsDimension x="128" y="17" />
1298 </Size>
1299 <Anchors>
1300 <Anchor point="LEFT" />
1301 <Anchor point="RIGHT" />
1302 </Anchors>
1303 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
1304 <BackgroundInsets>
1305 <AbsInset left="3" right="3" top="6" bottom="6" />
1306 </BackgroundInsets>
1307 <TileSize>
1308 <AbsValue val="8" />
1309 </TileSize>
1310 <EdgeSize>
1311 <AbsValue val="8" />
1312 </EdgeSize>
1313 </Backdrop>
1314 <Layers>
1315 <Layer>
1316 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Flash Step">
1317 <Anchors>
1318 <Anchor point="BOTTOM" relativePoint="TOP" />
1319 </Anchors>
1320 <FontHeight>
1321 <AbsValue val="10" />
1322 </FontHeight>
1323 <Color r="1" g="0.8196079" b="0" />
1324 <Shadow>
1325 <Color r="0" g="0" b="0" />
1326 <Offset>
1327 <AbsDimension x="1" y="-1" />
1328 </Offset>
1329 </Shadow>
1330 </FontString>
1331 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
1332 <Anchors>
1333 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
1334 </Anchors>
1335 <FontHeight>
1336 <AbsValue val="10" />
1337 </FontHeight>
1338 <Color r="1" g="1" b="1" />
1339 <Shadow>
1340 <Color r="0" g="0" b="0" />
1341 <Offset>
1342 <AbsDimension x="1" y="-1" />
1343 </Offset>
1344 </Shadow>
1345 </FontString>
1346 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
1347 <Anchors>
1348 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
1349 </Anchors>
1350 <FontHeight>
1351 <AbsValue val="10" />
1352 </FontHeight>
1353 <Color r="1" g="1" b="1" />
1354 <Shadow>
1355 <Color r="0" g="0" b="0" />
1356 <Offset>
1357 <AbsDimension x="1" y="-1" />
1358 </Offset>
1359 </Shadow>
1360 </FontString>
1361 </Layer>
1362 </Layers>
1363 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1364 <Size>
1365 <AbsDimension x="32" y="32" />
1366 </Size>
1367 </ThumbTexture>
1368 </Slider>
1369 </Frames>
1370 </Frame>
1371 <Frame name="$parentSlider6">
1372 <Size>
1373 <AbsDimension x="128" y="50" />
1374 </Size>
1375 <Anchors>
1376 <Anchor point="TOPLEFT">
1377 <Offset>
1378 <AbsDimension x="320" y="-155" />
1379 </Offset>
1380 </Anchor>
1381 </Anchors>
1382 <Frames>
1383 <Slider name="$parentSlider" enableMouse="true" minValue="0" maxValue="1" defaultValue="1" valueStep="0.01" orientation="HORIZONTAL">
1384 <Size>
1385 <AbsDimension x="128" y="17" />
1386 </Size>
1387 <Anchors>
1388 <Anchor point="LEFT" />
1389 <Anchor point="RIGHT" />
1390 </Anchors>
1391 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
1392 <BackgroundInsets>
1393 <AbsInset left="3" right="3" top="6" bottom="6" />
1394 </BackgroundInsets>
1395 <TileSize>
1396 <AbsValue val="8" />
1397 </TileSize>
1398 <EdgeSize>
1399 <AbsValue val="8" />
1400 </EdgeSize>
1401 </Backdrop>
1402 <Layers>
1403 <Layer>
1404 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Overall Opacity">
1405 <Anchors>
1406 <Anchor point="BOTTOM" relativePoint="TOP" />
1407 </Anchors>
1408 <FontHeight>
1409 <AbsValue val="10" />
1410 </FontHeight>
1411 <Color r="1" g="0.8196079" b="0" />
1412 <Shadow>
1413 <Color r="0" g="0" b="0" />
1414 <Offset>
1415 <AbsDimension x="1" y="-1" />
1416 </Offset>
1417 </Shadow>
1418 </FontString>
1419 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
1420 <Anchors>
1421 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
1422 </Anchors>
1423 <FontHeight>
1424 <AbsValue val="10" />
1425 </FontHeight>
1426 <Color r="1" g="1" b="1" />
1427 <Shadow>
1428 <Color r="0" g="0" b="0" />
1429 <Offset>
1430 <AbsDimension x="1" y="-1" />
1431 </Offset>
1432 </Shadow>
1433 </FontString>
1434 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
1435 <Anchors>
1436 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
1437 </Anchors>
1438 <FontHeight>
1439 <AbsValue val="10" />
1440 </FontHeight>
1441 <Color r="1" g="1" b="1" />
1442 <Shadow>
1443 <Color r="0" g="0" b="0" />
1444 <Offset>
1445 <AbsDimension x="1" y="-1" />
1446 </Offset>
1447 </Shadow>
1448 </FontString>
1449 </Layer>
1450 </Layers>
1451 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1452 <Size>
1453 <AbsDimension x="32" y="32" />
1454 </Size>
1455 </ThumbTexture>
1456 </Slider>
1457 </Frames>
1458 </Frame>
1459 <Frame name="SHunterTimersOptionsBarsLabel8">
1460 <Size>
1461 <AbsDimension x="83" y="32" />
1462 </Size>
1463 <Anchors>
1464 <Anchor point="TOPLEFT">
1465 <Offset>
1466 <AbsDimension x="2" y="-220" />
1467 </Offset>
1468 </Anchor>
1469 </Anchors>
1470 <Layers>
1471 <Layer>
1472 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Aimed Delay" justifyH="RIGHT">
1473 <Anchors>
1474 <Anchor point="TOPLEFT" />
1475 <Anchor point="BOTTOMRIGHT" />
1476 </Anchors>
1477 <FontHeight>
1478 <AbsValue val="12" />
1479 </FontHeight>
1480 <Color r="1" g="0.8196079" b="0" />
1481 <Shadow>
1482 <Color r="0" g="0" b="0" />
1483 <Offset>
1484 <AbsDimension x="1" y="-1" />
1485 </Offset>
1486 </Shadow>
1487 </FontString>
1488 </Layer>
1489 </Layers>
1490 </Frame>
1491 <EditBox name="$parentEditBox1" autoFocus="false" enableMouse="true" inherits="InputBoxTemplate">
1492 <Size>
1493 <AbsDimension x="34" y="32" />
1494 </Size>
1495 <Anchors>
1496 <Anchor point="TOPLEFT">
1497 <Offset>
1498 <AbsDimension x="99" y="-220" />
1499 </Offset>
1500 </Anchor>
1501 </Anchors>
1502 <FontString inherits="GameFontNormal">
1503 <FontHeight>
1504 <AbsValue val="14" />
1505 </FontHeight>
1506 <Color r="1" g="1" b="1" />
1507 <Shadow>
1508 <Color r="0" g="0" b="0" />
1509 <Offset>
1510 <AbsDimension x="1" y="-1" />
1511 </Offset>
1512 </Shadow>
1513 </FontString>
1514 <Scripts>
1515 <OnClick>
1516 this:SetFocus();
1517 </OnClick>
1518 <OnEnterPressed>
1519 this:ClearFocus();
1520 </OnEnterPressed>
1521 <OnEscapePressed>
1522 this:ClearFocus();
1523 </OnEscapePressed>
1524 </Scripts>
1525 </EditBox>
1526 <Frame name="SHunterTimersOptionsBarsLabel9">
1527 <Size>
1528 <AbsDimension x="21" y="32" />
1529 </Size>
1530 <Anchors>
1531 <Anchor point="TOPLEFT">
1532 <Offset>
1533 <AbsDimension x="141" y="-220" />
1534 </Offset>
1535 </Anchor>
1536 </Anchors>
1537 <Layers>
1538 <Layer>
1539 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="ms" justifyH="LEFT">
1540 <Anchors>
1541 <Anchor point="TOPLEFT" />
1542 <Anchor point="BOTTOMRIGHT" />
1543 </Anchors>
1544 <FontHeight>
1545 <AbsValue val="12" />
1546 </FontHeight>
1547 <Color r="1" g="0.8196079" b="0" />
1548 <Shadow>
1549 <Color r="0" g="0" b="0" />
1550 <Offset>
1551 <AbsDimension x="1" y="-1" />
1552 </Offset>
1553 </Shadow>
1554 </FontString>
1555 </Layer>
1556 </Layers>
1557 </Frame>
1558 <Button name="$parentColor4" id="4">
1559 <Size>
1560 <AbsDimension x="32" y="32" />
1561 </Size>
1562 <Anchors>
1563 <Anchor point="TOPLEFT">
1564 <Offset>
1565 <AbsDimension x="170" y="-220" />
1566 </Offset>
1567 </Anchor>
1568 </Anchors>
1569 <Scripts>
1570 <OnClick>SHT_ColorPicker(this:GetID());
1571 </OnClick>
1572 </Scripts>
1573 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
1574 <TexCoords left="0" right="1" top="0" bottom="1" />
1575 </NormalTexture>
1576 <PushedTextOffset x="0" y="0" />
1577 </Button>
1578 <Frame name="SHunterTimersOptionsBarsLabel2">
1579 <Size>
1580 <AbsDimension x="97" y="32" />
1581 </Size>
1582 <Anchors>
1583 <Anchor point="TOPLEFT">
1584 <Offset>
1585 <AbsDimension x="200" y="-220" />
1586 </Offset>
1587 </Anchor>
1588 </Anchors>
1589 <Layers>
1590 <Layer>
1591 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Border Color" justifyH="LEFT">
1592 <Anchors>
1593 <Anchor point="TOPLEFT" />
1594 <Anchor point="BOTTOMRIGHT" />
1595 </Anchors>
1596 <FontHeight>
1597 <AbsValue val="12" />
1598 </FontHeight>
1599 <Color r="1" g="0.8196079" b="0" />
1600 <Shadow>
1601 <Color r="0" g="0" b="0" />
1602 <Offset>
1603 <AbsDimension x="1" y="-1" />
1604 </Offset>
1605 </Shadow>
1606 </FontString>
1607 </Layer>
1608 </Layers>
1609 </Frame>
1610 <Frame name="$parentSlider7">
1611 <Size>
1612 <AbsDimension x="128" y="50" />
1613 </Size>
1614 <Anchors>
1615 <Anchor point="TOPLEFT">
1616 <Offset>
1617 <AbsDimension x="320" y="-200" />
1618 </Offset>
1619 </Anchor>
1620 </Anchors>
1621 <Frames>
1622 <Slider name="$parentSlider" enableMouse="true" minValue="10" maxValue="32" defaultValue="10" valueStep="1" orientation="HORIZONTAL">
1623 <Size>
1624 <AbsDimension x="128" y="17" />
1625 </Size>
1626 <Anchors>
1627 <Anchor point="LEFT" />
1628 <Anchor point="RIGHT" />
1629 </Anchors>
1630 <Backdrop bgFile="Interface\Buttons\UI-SliderBar-Background" edgeFile="Interface\Buttons\UI-SliderBar-Border" tile="true">
1631 <BackgroundInsets>
1632 <AbsInset left="3" right="3" top="6" bottom="6" />
1633 </BackgroundInsets>
1634 <TileSize>
1635 <AbsValue val="8" />
1636 </TileSize>
1637 <EdgeSize>
1638 <AbsValue val="8" />
1639 </EdgeSize>
1640 </Backdrop>
1641 <Layers>
1642 <Layer>
1643 <FontString name="$parentTitle" inherits="GameFontNormalSmall" text="Bar Thickness">
1644 <Anchors>
1645 <Anchor point="BOTTOM" relativePoint="TOP" />
1646 </Anchors>
1647 <FontHeight>
1648 <AbsValue val="10" />
1649 </FontHeight>
1650 <Color r="1" g="0.8196079" b="0" />
1651 <Shadow>
1652 <Color r="0" g="0" b="0" />
1653 <Offset>
1654 <AbsDimension x="1" y="-1" />
1655 </Offset>
1656 </Shadow>
1657 </FontString>
1658 <FontString name="$parentLow" inherits="GameFontNormalSmall" text="Low">
1659 <Anchors>
1660 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" />
1661 </Anchors>
1662 <FontHeight>
1663 <AbsValue val="10" />
1664 </FontHeight>
1665 <Color r="1" g="1" b="1" />
1666 <Shadow>
1667 <Color r="0" g="0" b="0" />
1668 <Offset>
1669 <AbsDimension x="1" y="-1" />
1670 </Offset>
1671 </Shadow>
1672 </FontString>
1673 <FontString name="$parentHigh" inherits="GameFontNormalSmall" text="High">
1674 <Anchors>
1675 <Anchor point="TOPRIGHT" relativePoint="BOTTOMRIGHT" />
1676 </Anchors>
1677 <FontHeight>
1678 <AbsValue val="10" />
1679 </FontHeight>
1680 <Color r="1" g="1" b="1" />
1681 <Shadow>
1682 <Color r="0" g="0" b="0" />
1683 <Offset>
1684 <AbsDimension x="1" y="-1" />
1685 </Offset>
1686 </Shadow>
1687 </FontString>
1688 </Layer>
1689 </Layers>
1690 <ThumbTexture name="$parentThumb" file="Interface\Buttons\UI-SliderBar-Button-Horizontal">
1691 <Size>
1692 <AbsDimension x="32" y="32" />
1693 </Size>
1694 </ThumbTexture>
1695 </Slider>
1696 </Frames>
1697 </Frame>
1698 <Frame name="SHunterTimersOptionsBarsLabel10">
1699 <Size>
1700 <AbsDimension x="83" y="32" />
1701 </Size>
1702 <Anchors>
1703 <Anchor point="TOPLEFT">
1704 <Offset>
1705 <AbsDimension x="0" y="-258" />
1706 </Offset>
1707 </Anchor>
1708 </Anchors>
1709 <Layers>
1710 <Layer>
1711 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Shot Delay" justifyH="RIGHT">
1712 <Anchors>
1713 <Anchor point="TOPLEFT" />
1714 <Anchor point="BOTTOMRIGHT" />
1715 </Anchors>
1716 <FontHeight>
1717 <AbsValue val="12" />
1718 </FontHeight>
1719 <Color r="1" g="0.8196079" b="0" />
1720 <Shadow>
1721 <Color r="0" g="0" b="0" />
1722 <Offset>
1723 <AbsDimension x="1" y="-1" />
1724 </Offset>
1725 </Shadow>
1726 </FontString>
1727 </Layer>
1728 </Layers>
1729 </Frame>
1730 <EditBox name="$parentEditBox2" autoFocus="false" enableMouse="true" inherits="InputBoxTemplate">
1731 <Size>
1732 <AbsDimension x="34" y="32" />
1733 </Size>
1734 <Anchors>
1735 <Anchor point="TOPLEFT">
1736 <Offset>
1737 <AbsDimension x="99" y="-258" />
1738 </Offset>
1739 </Anchor>
1740 </Anchors>
1741 <FontString inherits="GameFontNormal">
1742 <FontHeight>
1743 <AbsValue val="14" />
1744 </FontHeight>
1745 <Color r="1" g="1" b="1" />
1746 <Shadow>
1747 <Color r="0" g="0" b="0" />
1748 <Offset>
1749 <AbsDimension x="1" y="-1" />
1750 </Offset>
1751 </Shadow>
1752 </FontString>
1753 <Scripts>
1754 <OnClick>
1755 this:SetFocus();
1756 </OnClick>
1757 <OnEnterPressed>
1758 this:ClearFocus();
1759 </OnEnterPressed>
1760 <OnEscapePressed>
1761 this:ClearFocus();
1762 </OnEscapePressed>
1763 </Scripts>
1764 </EditBox>
1765 <Frame name="SHunterTimersOptionsBarsLabel11">
1766 <Size>
1767 <AbsDimension x="21" y="32" />
1768 </Size>
1769 <Anchors>
1770 <Anchor point="TOPLEFT">
1771 <Offset>
1772 <AbsDimension x="141" y="-258" />
1773 </Offset>
1774 </Anchor>
1775 </Anchors>
1776 <Layers>
1777 <Layer>
1778 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="ms" justifyH="LEFT">
1779 <Anchors>
1780 <Anchor point="TOPLEFT" />
1781 <Anchor point="BOTTOMRIGHT" />
1782 </Anchors>
1783 <FontHeight>
1784 <AbsValue val="12" />
1785 </FontHeight>
1786 <Color r="1" g="0.8196079" b="0" />
1787 <Shadow>
1788 <Color r="0" g="0" b="0" />
1789 <Offset>
1790 <AbsDimension x="1" y="-1" />
1791 </Offset>
1792 </Shadow>
1793 </FontString>
1794 </Layer>
1795 </Layers>
1796 </Frame>
1797 <Button name="$parentColor3" id="3">
1798 <Size>
1799 <AbsDimension x="32" y="32" />
1800 </Size>
1801 <Anchors>
1802 <Anchor point="TOPLEFT">
1803 <Offset>
1804 <AbsDimension x="170" y="-258" />
1805 </Offset>
1806 </Anchor>
1807 </Anchors>
1808 <Scripts>
1809 <OnClick>SHT_ColorPicker(this:GetID());
1810 </OnClick>
1811 </Scripts>
1812 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
1813 <TexCoords left="0" right="1" top="0" bottom="1" />
1814 </NormalTexture>
1815 <PushedTextOffset x="0" y="0" />
1816 </Button>
1817 <Frame name="SHunterTimersOptionsBarsLabel5">
1818 <Size>
1819 <AbsDimension x="97" y="32" />
1820 </Size>
1821 <Anchors>
1822 <Anchor point="TOPLEFT">
1823 <Offset>
1824 <AbsDimension x="200" y="-258" />
1825 </Offset>
1826 </Anchor>
1827 </Anchors>
1828 <Layers>
1829 <Layer>
1830 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Backdrop Color" justifyH="LEFT">
1831 <Anchors>
1832 <Anchor point="TOPLEFT" />
1833 <Anchor point="BOTTOMRIGHT" />
1834 </Anchors>
1835 <FontHeight>
1836 <AbsValue val="12" />
1837 </FontHeight>
1838 <Color r="1" g="0.8196079" b="0" />
1839 <Shadow>
1840 <Color r="0" g="0" b="0" />
1841 <Offset>
1842 <AbsDimension x="1" y="-1" />
1843 </Offset>
1844 </Shadow>
1845 </FontString>
1846 </Layer>
1847 </Layers>
1848 </Frame>
1849 <CheckButton name="SHunterTimersOptionsBarsCheckButton2">
1850 <Size>
1851 <AbsDimension x="32" y="32" />
1852 </Size>
1853 <Anchors>
1854 <Anchor point="TOPLEFT">
1855 <Offset>
1856 <AbsDimension x="320" y="-258" />
1857 </Offset>
1858 </Anchor>
1859 </Anchors>
1860 <Layers>
1861 <Layer>
1862 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Color Change">
1863 <Anchors>
1864 <Anchor point="LEFT" relativePoint="RIGHT">
1865 <Offset>
1866 <AbsDimension x="-2" y="0" />
1867 </Offset>
1868 </Anchor>
1869 </Anchors>
1870 <FontHeight>
1871 <AbsValue val="10" />
1872 </FontHeight>
1873 <Color r="1" g="0.8196079" b="0" />
1874 <Shadow>
1875 <Color r="0" g="0" b="0" />
1876 <Offset>
1877 <AbsDimension x="1" y="-1" />
1878 </Offset>
1879 </Shadow>
1880 </FontString>
1881 </Layer>
1882 </Layers>
1883 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
1884 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
1885 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
1886 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
1887 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
1888 </CheckButton>
1889 <CheckButton name="SHunterTimersOptionsBarsCheckButton3">
1890 <Size>
1891 <AbsDimension x="32" y="32" />
1892 </Size>
1893 <Anchors>
1894 <Anchor point="TOPLEFT">
1895 <Offset>
1896 <AbsDimension x="20" y="-296" />
1897 </Offset>
1898 </Anchor>
1899 </Anchors>
1900 <Layers>
1901 <Layer>
1902 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Show Textures">
1903 <Anchors>
1904 <Anchor point="LEFT" relativePoint="RIGHT">
1905 <Offset>
1906 <AbsDimension x="-2" y="0" />
1907 </Offset>
1908 </Anchor>
1909 </Anchors>
1910 <FontHeight>
1911 <AbsValue val="10" />
1912 </FontHeight>
1913 <Color r="1" g="0.8196079" b="0" />
1914 <Shadow>
1915 <Color r="0" g="0" b="0" />
1916 <Offset>
1917 <AbsDimension x="1" y="-1" />
1918 </Offset>
1919 </Shadow>
1920 </FontString>
1921 </Layer>
1922 </Layers>
1923 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
1924 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
1925 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
1926 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
1927 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
1928 </CheckButton>
1929 <CheckButton name="SHunterTimersOptionsBarsCheckButton4">
1930 <Size>
1931 <AbsDimension x="32" y="32" />
1932 </Size>
1933 <Anchors>
1934 <Anchor point="TOPLEFT">
1935 <Offset>
1936 <AbsDimension x="170" y="-296" />
1937 </Offset>
1938 </Anchor>
1939 </Anchors>
1940 <Layers>
1941 <Layer>
1942 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Large Textures">
1943 <Anchors>
1944 <Anchor point="LEFT" relativePoint="RIGHT">
1945 <Offset>
1946 <AbsDimension x="-2" y="0" />
1947 </Offset>
1948 </Anchor>
1949 </Anchors>
1950 <FontHeight>
1951 <AbsValue val="10" />
1952 </FontHeight>
1953 <Color r="1" g="0.8196079" b="0" />
1954 <Shadow>
1955 <Color r="0" g="0" b="0" />
1956 <Offset>
1957 <AbsDimension x="1" y="-1" />
1958 </Offset>
1959 </Shadow>
1960 </FontString>
1961 </Layer>
1962 </Layers>
1963 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
1964 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
1965 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
1966 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
1967 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
1968 </CheckButton>
1969 <CheckButton name="SHunterTimersOptionsBarsCheckButton5">
1970 <Size>
1971 <AbsDimension x="32" y="32" />
1972 </Size>
1973 <Anchors>
1974 <Anchor point="TOPLEFT">
1975 <Offset>
1976 <AbsDimension x="320" y="-296" />
1977 </Offset>
1978 </Anchor>
1979 </Anchors>
1980 <Layers>
1981 <Layer>
1982 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Hide Gap">
1983 <Anchors>
1984 <Anchor point="LEFT" relativePoint="RIGHT">
1985 <Offset>
1986 <AbsDimension x="-2" y="0" />
1987 </Offset>
1988 </Anchor>
1989 </Anchors>
1990 <FontHeight>
1991 <AbsValue val="10" />
1992 </FontHeight>
1993 <Color r="1" g="0.8196079" b="0" />
1994 <Shadow>
1995 <Color r="0" g="0" b="0" />
1996 <Offset>
1997 <AbsDimension x="1" y="-1" />
1998 </Offset>
1999 </Shadow>
2000 </FontString>
2001 </Layer>
2002 </Layers>
2003 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2004 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2005 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2006 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2007 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2008 </CheckButton>
2009 <CheckButton name="SHunterTimersOptionsBarsCheckButton6">
2010 <Size>
2011 <AbsDimension x="32" y="32" />
2012 </Size>
2013 <Anchors>
2014 <Anchor point="TOPLEFT">
2015 <Offset>
2016 <AbsDimension x="20" y="-334" />
2017 </Offset>
2018 </Anchor>
2019 </Anchors>
2020 <Layers>
2021 <Layer>
2022 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Append Target">
2023 <Anchors>
2024 <Anchor point="LEFT" relativePoint="RIGHT">
2025 <Offset>
2026 <AbsDimension x="-2" y="0" />
2027 </Offset>
2028 </Anchor>
2029 </Anchors>
2030 <FontHeight>
2031 <AbsValue val="10" />
2032 </FontHeight>
2033 <Color r="1" g="0.8196079" b="0" />
2034 <Shadow>
2035 <Color r="0" g="0" b="0" />
2036 <Offset>
2037 <AbsDimension x="1" y="-1" />
2038 </Offset>
2039 </Shadow>
2040 </FontString>
2041 </Layer>
2042 </Layers>
2043 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2044 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2045 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2046 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2047 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2048 </CheckButton>
2049 <Button name="$parentColor7" id="7">
2050 <Size>
2051 <AbsDimension x="32" y="32" />
2052 </Size>
2053 <Anchors>
2054 <Anchor point="TOPLEFT">
2055 <Offset>
2056 <AbsDimension x="170" y="-334" />
2057 </Offset>
2058 </Anchor>
2059 </Anchors>
2060 <Scripts>
2061 <OnClick>SHT_ColorPicker(this:GetID());
2062 </OnClick>
2063 </Scripts>
2064 <NormalTexture name="$parentSwatch" file="Interface\ChatFrame\ChatFrameColorSwatch">
2065 <TexCoords left="0" right="1" top="0" bottom="1" />
2066 </NormalTexture>
2067 <PushedTextOffset x="0" y="0" />
2068 </Button>
2069 <Frame name="SHunterTimersOptionsBarsLabel12">
2070 <Size>
2071 <AbsDimension x="100" y="32" />
2072 </Size>
2073 <Anchors>
2074 <Anchor point="TOPLEFT">
2075 <Offset>
2076 <AbsDimension x="200" y="-334" />
2077 </Offset>
2078 </Anchor>
2079 </Anchors>
2080 <Layers>
2081 <Layer>
2082 <FontString name="$parentLabel" inherits="GameFontNormalSmall" text="Target Text Color" justifyH="LEFT">
2083 <Anchors>
2084 <Anchor point="TOPLEFT" />
2085 <Anchor point="BOTTOMRIGHT" />
2086 </Anchors>
2087 <FontHeight>
2088 <AbsValue val="12" />
2089 </FontHeight>
2090 <Color r="1" g="0.8196079" b="0" />
2091 <Shadow>
2092 <Color r="0" g="0" b="0" />
2093 <Offset>
2094 <AbsDimension x="1" y="-1" />
2095 </Offset>
2096 </Shadow>
2097 </FontString>
2098 </Layer>
2099 </Layers>
2100 </Frame>
2101 <CheckButton name="SHunterTimersOptionsBarsCheckButton7">
2102 <Size>
2103 <AbsDimension x="32" y="32" />
2104 </Size>
2105 <Anchors>
2106 <Anchor point="TOPLEFT">
2107 <Offset>
2108 <AbsDimension x="320" y="-334" />
2109 </Offset>
2110 </Anchor>
2111 </Anchors>
2112 <Layers>
2113 <Layer>
2114 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Hide Padding">
2115 <Anchors>
2116 <Anchor point="LEFT" relativePoint="RIGHT">
2117 <Offset>
2118 <AbsDimension x="-2" y="0" />
2119 </Offset>
2120 </Anchor>
2121 </Anchors>
2122 <FontHeight>
2123 <AbsValue val="10" />
2124 </FontHeight>
2125 <Color r="1" g="0.8196079" b="0" />
2126 <Shadow>
2127 <Color r="0" g="0" b="0" />
2128 <Offset>
2129 <AbsDimension x="1" y="-1" />
2130 </Offset>
2131 </Shadow>
2132 </FontString>
2133 </Layer>
2134 </Layers>
2135 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2136 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2137 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2138 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2139 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2140 </CheckButton>
2141 <CheckButton name="SHunterTimersOptionsBarsCheckButton8">
2142 <Size>
2143 <AbsDimension x="32" y="32" />
2144 </Size>
2145 <Anchors>
2146 <Anchor point="TOPLEFT">
2147 <Offset>
2148 <AbsDimension x="20" y="-372" />
2149 </Offset>
2150 </Anchor>
2151 </Anchors>
2152 <Layers>
2153 <Layer>
2154 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Hide Text">
2155 <Anchors>
2156 <Anchor point="LEFT" relativePoint="RIGHT">
2157 <Offset>
2158 <AbsDimension x="-2" y="0" />
2159 </Offset>
2160 </Anchor>
2161 </Anchors>
2162 <FontHeight>
2163 <AbsValue val="10" />
2164 </FontHeight>
2165 <Color r="1" g="0.8196079" b="0" />
2166 <Shadow>
2167 <Color r="0" g="0" b="0" />
2168 <Offset>
2169 <AbsDimension x="1" y="-1" />
2170 </Offset>
2171 </Shadow>
2172 </FontString>
2173 </Layer>
2174 </Layers>
2175 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2176 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2177 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2178 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2179 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2180 </CheckButton>
2181 <CheckButton name="SHunterTimersOptionsBarsCheckButton9">
2182 <Size>
2183 <AbsDimension x="32" y="32" />
2184 </Size>
2185 <Anchors>
2186 <Anchor point="TOPLEFT">
2187 <Offset>
2188 <AbsDimension x="170" y="-372" />
2189 </Offset>
2190 </Anchor>
2191 </Anchors>
2192 <Layers>
2193 <Layer>
2194 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Hide Time">
2195 <Anchors>
2196 <Anchor point="LEFT" relativePoint="RIGHT">
2197 <Offset>
2198 <AbsDimension x="-2" y="0" />
2199 </Offset>
2200 </Anchor>
2201 </Anchors>
2202 <FontHeight>
2203 <AbsValue val="10" />
2204 </FontHeight>
2205 <Color r="1" g="0.8196079" b="0" />
2206 <Shadow>
2207 <Color r="0" g="0" b="0" />
2208 <Offset>
2209 <AbsDimension x="1" y="-1" />
2210 </Offset>
2211 </Shadow>
2212 </FontString>
2213 </Layer>
2214 </Layers>
2215 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2216 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2217 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2218 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2219 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2220 </CheckButton>
2221 <CheckButton name="SHunterTimersOptionsBarsCheckButton10">
2222 <Size>
2223 <AbsDimension x="32" y="32" />
2224 </Size>
2225 <Anchors>
2226 <Anchor point="TOPLEFT">
2227 <Offset>
2228 <AbsDimension x="320" y="-372" />
2229 </Offset>
2230 </Anchor>
2231 </Anchors>
2232 <Layers>
2233 <Layer>
2234 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Sticky Auto Shot">
2235 <Anchors>
2236 <Anchor point="LEFT" relativePoint="RIGHT">
2237 <Offset>
2238 <AbsDimension x="-2" y="0" />
2239 </Offset>
2240 </Anchor>
2241 </Anchors>
2242 <FontHeight>
2243 <AbsValue val="10" />
2244 </FontHeight>
2245 <Color r="1" g="0.8196079" b="0" />
2246 <Shadow>
2247 <Color r="0" g="0" b="0" />
2248 <Offset>
2249 <AbsDimension x="1" y="-1" />
2250 </Offset>
2251 </Shadow>
2252 </FontString>
2253 </Layer>
2254 </Layers>
2255 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2256 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2257 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2258 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2259 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2260 </CheckButton>
2261 <CheckButton name="SHunterTimersOptionsBarsCheckButton11">
2262 <Size>
2263 <AbsDimension x="32" y="32" />
2264 </Size>
2265 <Anchors>
2266 <Anchor point="TOPLEFT">
2267 <Offset>
2268 <AbsDimension x="20" y="-410" />
2269 </Offset>
2270 </Anchor>
2271 </Anchors>
2272 <Layers>
2273 <Layer>
2274 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Cascade Bars Down">
2275 <Anchors>
2276 <Anchor point="LEFT" relativePoint="RIGHT">
2277 <Offset>
2278 <AbsDimension x="-2" y="0" />
2279 </Offset>
2280 </Anchor>
2281 </Anchors>
2282 <FontHeight>
2283 <AbsValue val="10" />
2284 </FontHeight>
2285 <Color r="1" g="0.8196079" b="0" />
2286 <Shadow>
2287 <Color r="0" g="0" b="0" />
2288 <Offset>
2289 <AbsDimension x="1" y="-1" />
2290 </Offset>
2291 </Shadow>
2292 </FontString>
2293 </Layer>
2294 </Layers>
2295 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2296 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2297 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2298 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2299 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2300 </CheckButton>
2301 </Frames>
2302 </Frame>
2303  
2304 <Frame name="$parentTimers">
2305 <Size>
2306 <AbsDimension x="490" y="493" />
2307 </Size>
2308 <Anchors>
2309 <Anchor point="TOPLEFT">
2310 <Offset>
2311 <AbsDimension x="22" y="-30" />
2312 </Offset>
2313 </Anchor>
2314 </Anchors>
2315 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
2316 <BackgroundInsets>
2317 <AbsInset left="5" right="5" top="5" bottom="5" />
2318 </BackgroundInsets>
2319 <TileSize>
2320 <AbsValue val="16" />
2321 </TileSize>
2322 <EdgeSize>
2323 <AbsValue val="16" />
2324 </EdgeSize>
2325 </Backdrop>
2326  
2327 <Frames>
2328 <Frame name="SHunterTimersOptionsTimersLabel1">
2329 <Size>
2330 <AbsDimension x="75" y="18" />
2331 </Size>
2332 <Anchors>
2333 <Anchor point="TOPLEFT">
2334 <Offset>
2335 <AbsDimension x="190" y="-9" />
2336 </Offset>
2337 </Anchor>
2338 </Anchors>
2339 <Layers>
2340 <Layer>
2341 <FontString name="$parentLabel" inherits="SystemFont" text="Timers">
2342 <Anchors>
2343 <Anchor point="TOPLEFT" />
2344 <Anchor point="BOTTOMRIGHT" />
2345 </Anchors>
2346 <FontHeight>
2347 <AbsValue val="12" />
2348 </FontHeight>
2349 <Color r="1" g="0.8196079" b="0" />
2350 <Shadow>
2351 <Color r="0" g="0" b="0" />
2352 <Offset>
2353 <AbsDimension x="1" y="-1" />
2354 </Offset>
2355 </Shadow>
2356 </FontString>
2357 </Layer>
2358 </Layers>
2359 </Frame>
2360 <CheckButton name="SHunterTimersOptionsTimersCheckButton1">
2361 <Size>
2362 <AbsDimension x="32" y="32" />
2363 </Size>
2364 <Anchors>
2365 <Anchor point="TOPLEFT">
2366 <Offset>
2367 <AbsDimension x="20" y="-30" />
2368 </Offset>
2369 </Anchor>
2370 </Anchors>
2371 <Layers>
2372 <Layer>
2373 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Auto Shot">
2374 <Anchors>
2375 <Anchor point="LEFT" relativePoint="RIGHT">
2376 <Offset>
2377 <AbsDimension x="-2" y="0" />
2378 </Offset>
2379 </Anchor>
2380 </Anchors>
2381 <FontHeight>
2382 <AbsValue val="10" />
2383 </FontHeight>
2384 <Color r="1" g="0.8196079" b="0" />
2385 <Shadow>
2386 <Color r="0" g="0" b="0" />
2387 <Offset>
2388 <AbsDimension x="1" y="-1" />
2389 </Offset>
2390 </Shadow>
2391 </FontString>
2392 </Layer>
2393 </Layers>
2394 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2395 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2396 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2397 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2398 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2399 </CheckButton>
2400 <CheckButton name="SHunterTimersOptionsTimersCheckButton2">
2401 <Size>
2402 <AbsDimension x="32" y="32" />
2403 </Size>
2404 <Anchors>
2405 <Anchor point="TOPLEFT">
2406 <Offset>
2407 <AbsDimension x="20" y="-68" />
2408 </Offset>
2409 </Anchor>
2410 </Anchors>
2411 <Layers>
2412 <Layer>
2413 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Aimed Shot">
2414 <Anchors>
2415 <Anchor point="LEFT" relativePoint="RIGHT">
2416 <Offset>
2417 <AbsDimension x="-2" y="0" />
2418 </Offset>
2419 </Anchor>
2420 </Anchors>
2421 <FontHeight>
2422 <AbsValue val="10" />
2423 </FontHeight>
2424 <Color r="1" g="0.8196079" b="0" />
2425 <Shadow>
2426 <Color r="0" g="0" b="0" />
2427 <Offset>
2428 <AbsDimension x="1" y="-1" />
2429 </Offset>
2430 </Shadow>
2431 </FontString>
2432 </Layer>
2433 </Layers>
2434 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2435 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2436 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2437 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2438 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2439 </CheckButton>
2440 <CheckButton name="SHunterTimersOptionsTimersCheckButton3">
2441 <Size>
2442 <AbsDimension x="32" y="32" />
2443 </Size>
2444 <Anchors>
2445 <Anchor point="TOPLEFT">
2446 <Offset>
2447 <AbsDimension x="20" y="-106" />
2448 </Offset>
2449 </Anchor>
2450 </Anchors>
2451 <Layers>
2452 <Layer>
2453 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Hunter's Mark">
2454 <Anchors>
2455 <Anchor point="LEFT" relativePoint="RIGHT">
2456 <Offset>
2457 <AbsDimension x="-2" y="0" />
2458 </Offset>
2459 </Anchor>
2460 </Anchors>
2461 <FontHeight>
2462 <AbsValue val="10" />
2463 </FontHeight>
2464 <Color r="1" g="0.8196079" b="0" />
2465 <Shadow>
2466 <Color r="0" g="0" b="0" />
2467 <Offset>
2468 <AbsDimension x="1" y="-1" />
2469 </Offset>
2470 </Shadow>
2471 </FontString>
2472 </Layer>
2473 </Layers>
2474 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2475 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2476 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2477 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2478 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2479 </CheckButton>
2480 <CheckButton name="SHunterTimersOptionsTimersCheckButton4">
2481 <Size>
2482 <AbsDimension x="32" y="32" />
2483 </Size>
2484 <Anchors>
2485 <Anchor point="TOPLEFT">
2486 <Offset>
2487 <AbsDimension x="20" y="-144" />
2488 </Offset>
2489 </Anchor>
2490 </Anchors>
2491 <Layers>
2492 <Layer>
2493 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Flare">
2494 <Anchors>
2495 <Anchor point="LEFT" relativePoint="RIGHT">
2496 <Offset>
2497 <AbsDimension x="-2" y="0" />
2498 </Offset>
2499 </Anchor>
2500 </Anchors>
2501 <FontHeight>
2502 <AbsValue val="10" />
2503 </FontHeight>
2504 <Color r="1" g="0.8196079" b="0" />
2505 <Shadow>
2506 <Color r="0" g="0" b="0" />
2507 <Offset>
2508 <AbsDimension x="1" y="-1" />
2509 </Offset>
2510 </Shadow>
2511 </FontString>
2512 </Layer>
2513 </Layers>
2514 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2515 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2516 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2517 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2518 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2519 </CheckButton>
2520 <CheckButton name="SHunterTimersOptionsTimersCheckButton5">
2521 <Size>
2522 <AbsDimension x="32" y="32" />
2523 </Size>
2524 <Anchors>
2525 <Anchor point="TOPLEFT">
2526 <Offset>
2527 <AbsDimension x="20" y="-182" />
2528 </Offset>
2529 </Anchor>
2530 </Anchors>
2531 <Layers>
2532 <Layer>
2533 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Concussive Shot">
2534 <Anchors>
2535 <Anchor point="LEFT" relativePoint="RIGHT">
2536 <Offset>
2537 <AbsDimension x="-2" y="0" />
2538 </Offset>
2539 </Anchor>
2540 </Anchors>
2541 <FontHeight>
2542 <AbsValue val="10" />
2543 </FontHeight>
2544 <Color r="1" g="0.8196079" b="0" />
2545 <Shadow>
2546 <Color r="0" g="0" b="0" />
2547 <Offset>
2548 <AbsDimension x="1" y="-1" />
2549 </Offset>
2550 </Shadow>
2551 </FontString>
2552 </Layer>
2553 </Layers>
2554 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2555 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2556 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2557 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2558 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2559 </CheckButton>
2560 <CheckButton name="SHunterTimersOptionsTimersCheckButton6">
2561 <Size>
2562 <AbsDimension x="32" y="32" />
2563 </Size>
2564 <Anchors>
2565 <Anchor point="TOPLEFT">
2566 <Offset>
2567 <AbsDimension x="20" y="-220" />
2568 </Offset>
2569 </Anchor>
2570 </Anchors>
2571 <Layers>
2572 <Layer>
2573 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Scatter Shot">
2574 <Anchors>
2575 <Anchor point="LEFT" relativePoint="RIGHT">
2576 <Offset>
2577 <AbsDimension x="-2" y="0" />
2578 </Offset>
2579 </Anchor>
2580 </Anchors>
2581 <FontHeight>
2582 <AbsValue val="10" />
2583 </FontHeight>
2584 <Color r="1" g="0.8196079" b="0" />
2585 <Shadow>
2586 <Color r="0" g="0" b="0" />
2587 <Offset>
2588 <AbsDimension x="1" y="-1" />
2589 </Offset>
2590 </Shadow>
2591 </FontString>
2592 </Layer>
2593 </Layers>
2594 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2595 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2596 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2597 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2598 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2599 </CheckButton>
2600 <CheckButton name="SHunterTimersOptionsTimersCheckButton7">
2601 <Size>
2602 <AbsDimension x="32" y="32" />
2603 </Size>
2604 <Anchors>
2605 <Anchor point="TOPLEFT">
2606 <Offset>
2607 <AbsDimension x="20" y="-258" />
2608 </Offset>
2609 </Anchor>
2610 </Anchors>
2611 <Layers>
2612 <Layer>
2613 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Intimidation">
2614 <Anchors>
2615 <Anchor point="LEFT" relativePoint="RIGHT">
2616 <Offset>
2617 <AbsDimension x="-2" y="0" />
2618 </Offset>
2619 </Anchor>
2620 </Anchors>
2621 <FontHeight>
2622 <AbsValue val="10" />
2623 </FontHeight>
2624 <Color r="1" g="0.8196079" b="0" />
2625 <Shadow>
2626 <Color r="0" g="0" b="0" />
2627 <Offset>
2628 <AbsDimension x="1" y="-1" />
2629 </Offset>
2630 </Shadow>
2631 </FontString>
2632 </Layer>
2633 </Layers>
2634 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2635 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2636 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2637 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2638 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2639 </CheckButton>
2640 <CheckButton name="SHunterTimersOptionsTimersCheckButton8">
2641 <Size>
2642 <AbsDimension x="32" y="32" />
2643 </Size>
2644 <Anchors>
2645 <Anchor point="TOPLEFT">
2646 <Offset>
2647 <AbsDimension x="20" y="-296" />
2648 </Offset>
2649 </Anchor>
2650 </Anchors>
2651 <Layers>
2652 <Layer>
2653 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Bestial Wrath">
2654 <Anchors>
2655 <Anchor point="LEFT" relativePoint="RIGHT">
2656 <Offset>
2657 <AbsDimension x="-2" y="0" />
2658 </Offset>
2659 </Anchor>
2660 </Anchors>
2661 <FontHeight>
2662 <AbsValue val="10" />
2663 </FontHeight>
2664 <Color r="1" g="0.8196079" b="0" />
2665 <Shadow>
2666 <Color r="0" g="0" b="0" />
2667 <Offset>
2668 <AbsDimension x="1" y="-1" />
2669 </Offset>
2670 </Shadow>
2671 </FontString>
2672 </Layer>
2673 </Layers>
2674 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2675 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2676 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2677 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2678 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2679 </CheckButton>
2680 <CheckButton name="SHunterTimersOptionsTimersCheckButton9">
2681 <Size>
2682 <AbsDimension x="32" y="32" />
2683 </Size>
2684 <Anchors>
2685 <Anchor point="TOPLEFT">
2686 <Offset>
2687 <AbsDimension x="20" y="-334" />
2688 </Offset>
2689 </Anchor>
2690 </Anchors>
2691 <Layers>
2692 <Layer>
2693 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Scare Beast">
2694 <Anchors>
2695 <Anchor point="LEFT" relativePoint="RIGHT">
2696 <Offset>
2697 <AbsDimension x="-2" y="0" />
2698 </Offset>
2699 </Anchor>
2700 </Anchors>
2701 <FontHeight>
2702 <AbsValue val="10" />
2703 </FontHeight>
2704 <Color r="1" g="0.8196079" b="0" />
2705 <Shadow>
2706 <Color r="0" g="0" b="0" />
2707 <Offset>
2708 <AbsDimension x="1" y="-1" />
2709 </Offset>
2710 </Shadow>
2711 </FontString>
2712 </Layer>
2713 </Layers>
2714 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2715 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2716 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2717 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2718 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2719 </CheckButton>
2720 <CheckButton name="SHunterTimersOptionsTimersCheckButton10">
2721 <Size>
2722 <AbsDimension x="32" y="32" />
2723 </Size>
2724 <Anchors>
2725 <Anchor point="TOPLEFT">
2726 <Offset>
2727 <AbsDimension x="20" y="-372" />
2728 </Offset>
2729 </Anchor>
2730 </Anchors>
2731 <Layers>
2732 <Layer>
2733 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Wing Clip">
2734 <Anchors>
2735 <Anchor point="LEFT" relativePoint="RIGHT">
2736 <Offset>
2737 <AbsDimension x="-2" y="0" />
2738 </Offset>
2739 </Anchor>
2740 </Anchors>
2741 <FontHeight>
2742 <AbsValue val="10" />
2743 </FontHeight>
2744 <Color r="1" g="0.8196079" b="0" />
2745 <Shadow>
2746 <Color r="0" g="0" b="0" />
2747 <Offset>
2748 <AbsDimension x="1" y="-1" />
2749 </Offset>
2750 </Shadow>
2751 </FontString>
2752 </Layer>
2753 </Layers>
2754 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2755 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2756 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2757 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2758 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2759 </CheckButton>
2760 <CheckButton name="SHunterTimersOptionsTimersCheckButton11">
2761 <Size>
2762 <AbsDimension x="32" y="32" />
2763 </Size>
2764 <Anchors>
2765 <Anchor point="TOPLEFT">
2766 <Offset>
2767 <AbsDimension x="20" y="-410" />
2768 </Offset>
2769 </Anchor>
2770 </Anchors>
2771 <Layers>
2772 <Layer>
2773 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Counterattack">
2774 <Anchors>
2775 <Anchor point="LEFT" relativePoint="RIGHT">
2776 <Offset>
2777 <AbsDimension x="-2" y="0" />
2778 </Offset>
2779 </Anchor>
2780 </Anchors>
2781 <FontHeight>
2782 <AbsValue val="10" />
2783 </FontHeight>
2784 <Color r="1" g="0.8196079" b="0" />
2785 <Shadow>
2786 <Color r="0" g="0" b="0" />
2787 <Offset>
2788 <AbsDimension x="1" y="-1" />
2789 </Offset>
2790 </Shadow>
2791 </FontString>
2792 </Layer>
2793 </Layers>
2794 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2795 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2796 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2797 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2798 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2799 </CheckButton>
2800 <CheckButton name="SHunterTimersOptionsTimersCheckButton12">
2801 <Size>
2802 <AbsDimension x="32" y="32" />
2803 </Size>
2804 <Anchors>
2805 <Anchor point="TOPLEFT">
2806 <Offset>
2807 <AbsDimension x="20" y="-448" />
2808 </Offset>
2809 </Anchor>
2810 </Anchors>
2811 <Layers>
2812 <Layer>
2813 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Deterrence">
2814 <Anchors>
2815 <Anchor point="LEFT" relativePoint="RIGHT">
2816 <Offset>
2817 <AbsDimension x="-2" y="0" />
2818 </Offset>
2819 </Anchor>
2820 </Anchors>
2821 <FontHeight>
2822 <AbsValue val="10" />
2823 </FontHeight>
2824 <Color r="1" g="0.8196079" b="0" />
2825 <Shadow>
2826 <Color r="0" g="0" b="0" />
2827 <Offset>
2828 <AbsDimension x="1" y="-1" />
2829 </Offset>
2830 </Shadow>
2831 </FontString>
2832 </Layer>
2833 </Layers>
2834 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2835 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2836 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2837 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2838 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2839 </CheckButton>
2840 <CheckButton name="SHunterTimersOptionsTimersCheckButton13">
2841 <Size>
2842 <AbsDimension x="32" y="32" />
2843 </Size>
2844 <Anchors>
2845 <Anchor point="TOPLEFT">
2846 <Offset>
2847 <AbsDimension x="150" y="-30" />
2848 </Offset>
2849 </Anchor>
2850 </Anchors>
2851 <Layers>
2852 <Layer>
2853 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Serpent Sting">
2854 <Anchors>
2855 <Anchor point="LEFT" relativePoint="RIGHT">
2856 <Offset>
2857 <AbsDimension x="-2" y="0" />
2858 </Offset>
2859 </Anchor>
2860 </Anchors>
2861 <FontHeight>
2862 <AbsValue val="10" />
2863 </FontHeight>
2864 <Color r="1" g="0.8196079" b="0" />
2865 <Shadow>
2866 <Color r="0" g="0" b="0" />
2867 <Offset>
2868 <AbsDimension x="1" y="-1" />
2869 </Offset>
2870 </Shadow>
2871 </FontString>
2872 </Layer>
2873 </Layers>
2874 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2875 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2876 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2877 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2878 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2879 </CheckButton>
2880 <CheckButton name="SHunterTimersOptionsTimersCheckButton14">
2881 <Size>
2882 <AbsDimension x="32" y="32" />
2883 </Size>
2884 <Anchors>
2885 <Anchor point="TOPLEFT">
2886 <Offset>
2887 <AbsDimension x="150" y="-68" />
2888 </Offset>
2889 </Anchor>
2890 </Anchors>
2891 <Layers>
2892 <Layer>
2893 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Viper Sting">
2894 <Anchors>
2895 <Anchor point="LEFT" relativePoint="RIGHT">
2896 <Offset>
2897 <AbsDimension x="-2" y="0" />
2898 </Offset>
2899 </Anchor>
2900 </Anchors>
2901 <FontHeight>
2902 <AbsValue val="10" />
2903 </FontHeight>
2904 <Color r="1" g="0.8196079" b="0" />
2905 <Shadow>
2906 <Color r="0" g="0" b="0" />
2907 <Offset>
2908 <AbsDimension x="1" y="-1" />
2909 </Offset>
2910 </Shadow>
2911 </FontString>
2912 </Layer>
2913 </Layers>
2914 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2915 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2916 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2917 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2918 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2919 </CheckButton>
2920 <CheckButton name="SHunterTimersOptionsTimersCheckButton15">
2921 <Size>
2922 <AbsDimension x="32" y="32" />
2923 </Size>
2924 <Anchors>
2925 <Anchor point="TOPLEFT">
2926 <Offset>
2927 <AbsDimension x="150" y="-106" />
2928 </Offset>
2929 </Anchor>
2930 </Anchors>
2931 <Layers>
2932 <Layer>
2933 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Scorpid Sting">
2934 <Anchors>
2935 <Anchor point="LEFT" relativePoint="RIGHT">
2936 <Offset>
2937 <AbsDimension x="-2" y="0" />
2938 </Offset>
2939 </Anchor>
2940 </Anchors>
2941 <FontHeight>
2942 <AbsValue val="10" />
2943 </FontHeight>
2944 <Color r="1" g="0.8196079" b="0" />
2945 <Shadow>
2946 <Color r="0" g="0" b="0" />
2947 <Offset>
2948 <AbsDimension x="1" y="-1" />
2949 </Offset>
2950 </Shadow>
2951 </FontString>
2952 </Layer>
2953 </Layers>
2954 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2955 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2956 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2957 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2958 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2959 </CheckButton>
2960 <CheckButton name="SHunterTimersOptionsTimersCheckButton16">
2961 <Size>
2962 <AbsDimension x="32" y="32" />
2963 </Size>
2964 <Anchors>
2965 <Anchor point="TOPLEFT">
2966 <Offset>
2967 <AbsDimension x="150" y="-144" />
2968 </Offset>
2969 </Anchor>
2970 </Anchors>
2971 <Layers>
2972 <Layer>
2973 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Wyvern Sting">
2974 <Anchors>
2975 <Anchor point="LEFT" relativePoint="RIGHT">
2976 <Offset>
2977 <AbsDimension x="-2" y="0" />
2978 </Offset>
2979 </Anchor>
2980 </Anchors>
2981 <FontHeight>
2982 <AbsValue val="10" />
2983 </FontHeight>
2984 <Color r="1" g="0.8196079" b="0" />
2985 <Shadow>
2986 <Color r="0" g="0" b="0" />
2987 <Offset>
2988 <AbsDimension x="1" y="-1" />
2989 </Offset>
2990 </Shadow>
2991 </FontString>
2992 </Layer>
2993 </Layers>
2994 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
2995 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
2996 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
2997 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
2998 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
2999 </CheckButton>
3000 <CheckButton name="SHunterTimersOptionsTimersCheckButton17">
3001 <Size>
3002 <AbsDimension x="32" y="32" />
3003 </Size>
3004 <Anchors>
3005 <Anchor point="TOPLEFT">
3006 <Offset>
3007 <AbsDimension x="150" y="-182" />
3008 </Offset>
3009 </Anchor>
3010 </Anchors>
3011 <Layers>
3012 <Layer>
3013 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Freezing Trap">
3014 <Anchors>
3015 <Anchor point="LEFT" relativePoint="RIGHT">
3016 <Offset>
3017 <AbsDimension x="-2" y="0" />
3018 </Offset>
3019 </Anchor>
3020 </Anchors>
3021 <FontHeight>
3022 <AbsValue val="10" />
3023 </FontHeight>
3024 <Color r="1" g="0.8196079" b="0" />
3025 <Shadow>
3026 <Color r="0" g="0" b="0" />
3027 <Offset>
3028 <AbsDimension x="1" y="-1" />
3029 </Offset>
3030 </Shadow>
3031 </FontString>
3032 </Layer>
3033 </Layers>
3034 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3035 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3036 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3037 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3038 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3039 </CheckButton>
3040 <CheckButton name="SHunterTimersOptionsTimersCheckButton18">
3041 <Size>
3042 <AbsDimension x="32" y="32" />
3043 </Size>
3044 <Anchors>
3045 <Anchor point="TOPLEFT">
3046 <Offset>
3047 <AbsDimension x="150" y="-220" />
3048 </Offset>
3049 </Anchor>
3050 </Anchors>
3051 <Layers>
3052 <Layer>
3053 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Frost Trap">
3054 <Anchors>
3055 <Anchor point="LEFT" relativePoint="RIGHT">
3056 <Offset>
3057 <AbsDimension x="-2" y="0" />
3058 </Offset>
3059 </Anchor>
3060 </Anchors>
3061 <FontHeight>
3062 <AbsValue val="10" />
3063 </FontHeight>
3064 <Color r="1" g="0.8196079" b="0" />
3065 <Shadow>
3066 <Color r="0" g="0" b="0" />
3067 <Offset>
3068 <AbsDimension x="1" y="-1" />
3069 </Offset>
3070 </Shadow>
3071 </FontString>
3072 </Layer>
3073 </Layers>
3074 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3075 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3076 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3077 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3078 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3079 </CheckButton>
3080 <CheckButton name="SHunterTimersOptionsTimersCheckButton19">
3081 <Size>
3082 <AbsDimension x="32" y="32" />
3083 </Size>
3084 <Anchors>
3085 <Anchor point="TOPLEFT">
3086 <Offset>
3087 <AbsDimension x="150" y="-258" />
3088 </Offset>
3089 </Anchor>
3090 </Anchors>
3091 <Layers>
3092 <Layer>
3093 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Explosive Trap">
3094 <Anchors>
3095 <Anchor point="LEFT" relativePoint="RIGHT">
3096 <Offset>
3097 <AbsDimension x="-2" y="0" />
3098 </Offset>
3099 </Anchor>
3100 </Anchors>
3101 <FontHeight>
3102 <AbsValue val="10" />
3103 </FontHeight>
3104 <Color r="1" g="0.8196079" b="0" />
3105 <Shadow>
3106 <Color r="0" g="0" b="0" />
3107 <Offset>
3108 <AbsDimension x="1" y="-1" />
3109 </Offset>
3110 </Shadow>
3111 </FontString>
3112 </Layer>
3113 </Layers>
3114 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3115 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3116 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3117 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3118 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3119 </CheckButton>
3120 <CheckButton name="SHunterTimersOptionsTimersCheckButton20">
3121 <Size>
3122 <AbsDimension x="32" y="32" />
3123 </Size>
3124 <Anchors>
3125 <Anchor point="TOPLEFT">
3126 <Offset>
3127 <AbsDimension x="150" y="-296" />
3128 </Offset>
3129 </Anchor>
3130 </Anchors>
3131 <Layers>
3132 <Layer>
3133 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Immolation Trap">
3134 <Anchors>
3135 <Anchor point="LEFT" relativePoint="RIGHT">
3136 <Offset>
3137 <AbsDimension x="-2" y="0" />
3138 </Offset>
3139 </Anchor>
3140 </Anchors>
3141 <FontHeight>
3142 <AbsValue val="10" />
3143 </FontHeight>
3144 <Color r="1" g="0.8196079" b="0" />
3145 <Shadow>
3146 <Color r="0" g="0" b="0" />
3147 <Offset>
3148 <AbsDimension x="1" y="-1" />
3149 </Offset>
3150 </Shadow>
3151 </FontString>
3152 </Layer>
3153 </Layers>
3154 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3155 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3156 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3157 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3158 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3159 </CheckButton>
3160 <CheckButton name="SHunterTimersOptionsTimersCheckButton21">
3161 <Size>
3162 <AbsDimension x="32" y="32" />
3163 </Size>
3164 <Anchors>
3165 <Anchor point="TOPLEFT">
3166 <Offset>
3167 <AbsDimension x="150" y="-334" />
3168 </Offset>
3169 </Anchor>
3170 </Anchors>
3171 <Layers>
3172 <Layer>
3173 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Entrapment">
3174 <Anchors>
3175 <Anchor point="LEFT" relativePoint="RIGHT">
3176 <Offset>
3177 <AbsDimension x="-2" y="0" />
3178 </Offset>
3179 </Anchor>
3180 </Anchors>
3181 <FontHeight>
3182 <AbsValue val="10" />
3183 </FontHeight>
3184 <Color r="1" g="0.8196079" b="0" />
3185 <Shadow>
3186 <Color r="0" g="0" b="0" />
3187 <Offset>
3188 <AbsDimension x="1" y="-1" />
3189 </Offset>
3190 </Shadow>
3191 </FontString>
3192 </Layer>
3193 </Layers>
3194 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3195 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3196 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3197 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3198 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3199 </CheckButton>
3200 <CheckButton name="SHunterTimersOptionsTimersCheckButton22">
3201 <Size>
3202 <AbsDimension x="32" y="32" />
3203 </Size>
3204 <Anchors>
3205 <Anchor point="TOPLEFT">
3206 <Offset>
3207 <AbsDimension x="150" y="-372" />
3208 </Offset>
3209 </Anchor>
3210 </Anchors>
3211 <Layers>
3212 <Layer>
3213 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Frenzy">
3214 <Anchors>
3215 <Anchor point="LEFT" relativePoint="RIGHT">
3216 <Offset>
3217 <AbsDimension x="-2" y="0" />
3218 </Offset>
3219 </Anchor>
3220 </Anchors>
3221 <FontHeight>
3222 <AbsValue val="10" />
3223 </FontHeight>
3224 <Color r="1" g="0.8196079" b="0" />
3225 <Shadow>
3226 <Color r="0" g="0" b="0" />
3227 <Offset>
3228 <AbsDimension x="1" y="-1" />
3229 </Offset>
3230 </Shadow>
3231 </FontString>
3232 </Layer>
3233 </Layers>
3234 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3235 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3236 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3237 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3238 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3239 </CheckButton>
3240 <CheckButton name="SHunterTimersOptionsTimersCheckButton23">
3241 <Size>
3242 <AbsDimension x="32" y="32" />
3243 </Size>
3244 <Anchors>
3245 <Anchor point="TOPLEFT">
3246 <Offset>
3247 <AbsDimension x="150" y="-410" />
3248 </Offset>
3249 </Anchor>
3250 </Anchors>
3251 <Layers>
3252 <Layer>
3253 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Rapid Fire">
3254 <Anchors>
3255 <Anchor point="LEFT" relativePoint="RIGHT">
3256 <Offset>
3257 <AbsDimension x="-2" y="0" />
3258 </Offset>
3259 </Anchor>
3260 </Anchors>
3261 <FontHeight>
3262 <AbsValue val="10" />
3263 </FontHeight>
3264 <Color r="1" g="0.8196079" b="0" />
3265 <Shadow>
3266 <Color r="0" g="0" b="0" />
3267 <Offset>
3268 <AbsDimension x="1" y="-1" />
3269 </Offset>
3270 </Shadow>
3271 </FontString>
3272 </Layer>
3273 </Layers>
3274 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3275 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3276 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3277 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3278 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3279 </CheckButton>
3280 <CheckButton name="SHunterTimersOptionsTimersCheckButton24">
3281 <Size>
3282 <AbsDimension x="32" y="32" />
3283 </Size>
3284 <Anchors>
3285 <Anchor point="TOPLEFT">
3286 <Offset>
3287 <AbsDimension x="150" y="-448" />
3288 </Offset>
3289 </Anchor>
3290 </Anchors>
3291 <Layers>
3292 <Layer>
3293 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Berserking">
3294 <Anchors>
3295 <Anchor point="LEFT" relativePoint="RIGHT">
3296 <Offset>
3297 <AbsDimension x="-2" y="0" />
3298 </Offset>
3299 </Anchor>
3300 </Anchors>
3301 <FontHeight>
3302 <AbsValue val="10" />
3303 </FontHeight>
3304 <Color r="1" g="0.8196079" b="0" />
3305 <Shadow>
3306 <Color r="0" g="0" b="0" />
3307 <Offset>
3308 <AbsDimension x="1" y="-1" />
3309 </Offset>
3310 </Shadow>
3311 </FontString>
3312 </Layer>
3313 </Layers>
3314 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3315 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3316 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3317 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3318 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3319 </CheckButton>
3320 <CheckButton name="SHunterTimersOptionsTimersCheckButton25">
3321 <Size>
3322 <AbsDimension x="32" y="32" />
3323 </Size>
3324 <Anchors>
3325 <Anchor point="TOPLEFT">
3326 <Offset>
3327 <AbsDimension x="280" y="-30" />
3328 </Offset>
3329 </Anchor>
3330 </Anchors>
3331 <Layers>
3332 <Layer>
3333 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Quick Shots">
3334 <Anchors>
3335 <Anchor point="LEFT" relativePoint="RIGHT">
3336 <Offset>
3337 <AbsDimension x="-2" y="0" />
3338 </Offset>
3339 </Anchor>
3340 </Anchors>
3341 <FontHeight>
3342 <AbsValue val="10" />
3343 </FontHeight>
3344 <Color r="1" g="0.8196079" b="0" />
3345 <Shadow>
3346 <Color r="0" g="0" b="0" />
3347 <Offset>
3348 <AbsDimension x="1" y="-1" />
3349 </Offset>
3350 </Shadow>
3351 </FontString>
3352 </Layer>
3353 </Layers>
3354 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3355 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3356 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3357 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3358 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3359 </CheckButton>
3360 <CheckButton name="SHunterTimersOptionsTimersCheckButton26">
3361 <Size>
3362 <AbsDimension x="32" y="32" />
3363 </Size>
3364 <Anchors>
3365 <Anchor point="TOPLEFT">
3366 <Offset>
3367 <AbsDimension x="280" y="-68" />
3368 </Offset>
3369 </Anchor>
3370 </Anchors>
3371 <Layers>
3372 <Layer>
3373 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Expose Weakness">
3374 <Anchors>
3375 <Anchor point="LEFT" relativePoint="RIGHT">
3376 <Offset>
3377 <AbsDimension x="-2" y="0" />
3378 </Offset>
3379 </Anchor>
3380 </Anchors>
3381 <FontHeight>
3382 <AbsValue val="10" />
3383 </FontHeight>
3384 <Color r="1" g="0.8196079" b="0" />
3385 <Shadow>
3386 <Color r="0" g="0" b="0" />
3387 <Offset>
3388 <AbsDimension x="1" y="-1" />
3389 </Offset>
3390 </Shadow>
3391 </FontString>
3392 </Layer>
3393 </Layers>
3394 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3395 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3396 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3397 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3398 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3399 </CheckButton>
3400 <CheckButton name="SHunterTimersOptionsTimersCheckButton27">
3401 <Size>
3402 <AbsDimension x="32" y="32" />
3403 </Size>
3404 <Anchors>
3405 <Anchor point="TOPLEFT">
3406 <Offset>
3407 <AbsDimension x="280" y="-106" />
3408 </Offset>
3409 </Anchor>
3410 </Anchors>
3411 <Layers>
3412 <Layer>
3413 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Primal Blessing">
3414 <Anchors>
3415 <Anchor point="LEFT" relativePoint="RIGHT">
3416 <Offset>
3417 <AbsDimension x="-2" y="0" />
3418 </Offset>
3419 </Anchor>
3420 </Anchors>
3421 <FontHeight>
3422 <AbsValue val="10" />
3423 </FontHeight>
3424 <Color r="1" g="0.8196079" b="0" />
3425 <Shadow>
3426 <Color r="0" g="0" b="0" />
3427 <Offset>
3428 <AbsDimension x="1" y="-1" />
3429 </Offset>
3430 </Shadow>
3431 </FontString>
3432 </Layer>
3433 </Layers>
3434 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3435 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3436 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3437 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3438 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3439 </CheckButton>
3440 <CheckButton name="SHunterTimersOptionsTimersCheckButton28">
3441 <Size>
3442 <AbsDimension x="32" y="32" />
3443 </Size>
3444 <Anchors>
3445 <Anchor point="TOPLEFT">
3446 <Offset>
3447 <AbsDimension x="280" y="-144" />
3448 </Offset>
3449 </Anchor>
3450 </Anchors>
3451 <Layers>
3452 <Layer>
3453 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Devilsaur Eye">
3454 <Anchors>
3455 <Anchor point="LEFT" relativePoint="RIGHT">
3456 <Offset>
3457 <AbsDimension x="-2" y="0" />
3458 </Offset>
3459 </Anchor>
3460 </Anchors>
3461 <FontHeight>
3462 <AbsValue val="10" />
3463 </FontHeight>
3464 <Color r="1" g="0.8196079" b="0" />
3465 <Shadow>
3466 <Color r="0" g="0" b="0" />
3467 <Offset>
3468 <AbsDimension x="1" y="-1" />
3469 </Offset>
3470 </Shadow>
3471 </FontString>
3472 </Layer>
3473 </Layers>
3474 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3475 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3476 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3477 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3478 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3479 </CheckButton>
3480 <CheckButton name="SHunterTimersOptionsTimersCheckButton29">
3481 <Size>
3482 <AbsDimension x="32" y="32" />
3483 </Size>
3484 <Anchors>
3485 <Anchor point="TOPLEFT">
3486 <Offset>
3487 <AbsDimension x="280" y="-182" />
3488 </Offset>
3489 </Anchor>
3490 </Anchors>
3491 <Layers>
3492 <Layer>
3493 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Zandalarian Hero Medallion">
3494 <Anchors>
3495 <Anchor point="LEFT" relativePoint="RIGHT">
3496 <Offset>
3497 <AbsDimension x="-2" y="0" />
3498 </Offset>
3499 </Anchor>
3500 </Anchors>
3501 <FontHeight>
3502 <AbsValue val="10" />
3503 </FontHeight>
3504 <Color r="1" g="0.8196079" b="0" />
3505 <Shadow>
3506 <Color r="0" g="0" b="0" />
3507 <Offset>
3508 <AbsDimension x="1" y="-1" />
3509 </Offset>
3510 </Shadow>
3511 </FontString>
3512 </Layer>
3513 </Layers>
3514 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3515 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3516 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3517 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3518 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3519 </CheckButton>
3520 <CheckButton name="SHunterTimersOptionsTimersCheckButton30">
3521 <Size>
3522 <AbsDimension x="32" y="32" />
3523 </Size>
3524 <Anchors>
3525 <Anchor point="TOPLEFT">
3526 <Offset>
3527 <AbsDimension x="280" y="-220" />
3528 </Offset>
3529 </Anchor>
3530 </Anchors>
3531 <Layers>
3532 <Layer>
3533 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Earthstrike">
3534 <Anchors>
3535 <Anchor point="LEFT" relativePoint="RIGHT">
3536 <Offset>
3537 <AbsDimension x="-2" y="0" />
3538 </Offset>
3539 </Anchor>
3540 </Anchors>
3541 <FontHeight>
3542 <AbsValue val="10" />
3543 </FontHeight>
3544 <Color r="1" g="0.8196079" b="0" />
3545 <Shadow>
3546 <Color r="0" g="0" b="0" />
3547 <Offset>
3548 <AbsDimension x="1" y="-1" />
3549 </Offset>
3550 </Shadow>
3551 </FontString>
3552 </Layer>
3553 </Layers>
3554 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3555 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3556 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3557 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3558 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3559 </CheckButton>
3560 <CheckButton name="SHunterTimersOptionsTimersCheckButton31">
3561 <Size>
3562 <AbsDimension x="32" y="32" />
3563 </Size>
3564 <Anchors>
3565 <Anchor point="TOPLEFT">
3566 <Offset>
3567 <AbsDimension x="280" y="-258" />
3568 </Offset>
3569 </Anchor>
3570 </Anchors>
3571 <Layers>
3572 <Layer>
3573 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Badge of the Swarmguard">
3574 <Anchors>
3575 <Anchor point="LEFT" relativePoint="RIGHT">
3576 <Offset>
3577 <AbsDimension x="-2" y="0" />
3578 </Offset>
3579 </Anchor>
3580 </Anchors>
3581 <FontHeight>
3582 <AbsValue val="10" />
3583 </FontHeight>
3584 <Color r="1" g="0.8196079" b="0" />
3585 <Shadow>
3586 <Color r="0" g="0" b="0" />
3587 <Offset>
3588 <AbsDimension x="1" y="-1" />
3589 </Offset>
3590 </Shadow>
3591 </FontString>
3592 </Layer>
3593 </Layers>
3594 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3595 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3596 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3597 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3598 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3599 </CheckButton>
3600 <CheckButton name="SHunterTimersOptionsTimersCheckButton32">
3601 <Size>
3602 <AbsDimension x="32" y="32" />
3603 </Size>
3604 <Anchors>
3605 <Anchor point="TOPLEFT">
3606 <Offset>
3607 <AbsDimension x="280" y="-296" />
3608 </Offset>
3609 </Anchor>
3610 </Anchors>
3611 <Layers>
3612 <Layer>
3613 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Jom Gabbar">
3614 <Anchors>
3615 <Anchor point="LEFT" relativePoint="RIGHT">
3616 <Offset>
3617 <AbsDimension x="-2" y="0" />
3618 </Offset>
3619 </Anchor>
3620 </Anchors>
3621 <FontHeight>
3622 <AbsValue val="10" />
3623 </FontHeight>
3624 <Color r="1" g="0.8196079" b="0" />
3625 <Shadow>
3626 <Color r="0" g="0" b="0" />
3627 <Offset>
3628 <AbsDimension x="1" y="-1" />
3629 </Offset>
3630 </Shadow>
3631 </FontString>
3632 </Layer>
3633 </Layers>
3634 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3635 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3636 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3637 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3638 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3639 </CheckButton>
3640 <CheckButton name="SHunterTimersOptionsTimersCheckButton33">
3641 <Size>
3642 <AbsDimension x="32" y="32" />
3643 </Size>
3644 <Anchors>
3645 <Anchor point="TOPLEFT">
3646 <Offset>
3647 <AbsDimension x="280" y="-334" />
3648 </Offset>
3649 </Anchor>
3650 </Anchors>
3651 <Layers>
3652 <Layer>
3653 <FontString name="$parentText" inherits="GameFontNormalSmall" text="Kiss of the Spider">
3654 <Anchors>
3655 <Anchor point="LEFT" relativePoint="RIGHT">
3656 <Offset>
3657 <AbsDimension x="-2" y="0" />
3658 </Offset>
3659 </Anchor>
3660 </Anchors>
3661 <FontHeight>
3662 <AbsValue val="10" />
3663 </FontHeight>
3664 <Color r="1" g="0.8196079" b="0" />
3665 <Shadow>
3666 <Color r="0" g="0" b="0" />
3667 <Offset>
3668 <AbsDimension x="1" y="-1" />
3669 </Offset>
3670 </Shadow>
3671 </FontString>
3672 </Layer>
3673 </Layers>
3674 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up" />
3675 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down" />
3676 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD" />
3677 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check" />
3678 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled" />
3679 </CheckButton>
3680 </Frames>
3681 </Frame>
3682 </Frames>
3683 <Scripts>
3684 <OnLoad>this:RegisterForDrag("LeftButton");</OnLoad>
3685 <OnDragStart>this:StartMoving();</OnDragStart>
3686 <OnDragStop>this:StopMovingOrSizing();</OnDragStop>
3687 </Scripts>
3688 </Frame>
3689 </Ui>
3690  
3691