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/
2 ..\..\FrameXML\UI.xsd">
3  
4 <Script file="localization.en.lua"/>
5 <Script file="localization.de.lua"/>
6 <Script file="localization.fr.lua"/>
7 <Script file="localization.ko.lua"/>
8  
9 <Script file="AutoBuff.lua"/>
10  
11 <Frame name="_AutoBuff">
12 <Scripts>
13 <OnLoad>
14 AutoBuff_OnLoad();
15 </OnLoad>
16 <OnEvent>
17 AutoBuff_OnEvent(event);
18 </OnEvent>
19 </Scripts>
20 </Frame>
21  
22 <Frame parent="UIParent" hide="true">
23 <Frames>
24 <Button name="TitanPanelAutoBuffButton" inherits="TitanPanelIconTemplate" frameStrata="FULLSCREEN" toplevel="true">
25 <Scripts>
26 <OnLoad>
27 if (TitanPanelButton_OnLoad) then
28 TitanPanelAutoBuffButton_OnLoad();
29 TitanPanelButton_OnLoad();
30 end
31 </OnLoad>
32 <OnClick>
33 TitanPanelAutoBuffButton_OnClick(arg1);
34 TitanPanelButton_OnClick(arg1);
35 </OnClick>
36 </Scripts>
37 </Button>
38 </Frames>
39 </Frame>
40  
41 <Button name="AutoBuffOptionsButton" parent="UIParent" toplevel="true" hidden="false" frameStrata="LOW" enableMouse="true" movable="true">
42 <NormalTexture file="Interface\AddOns\AutoBuff\ABEnabled"/>
43 <HighlightTexture alphaMode="ADD" file="Interface\AddOns\AutoBuff\ABEnabled"/>
44 <Size>
45 <AbsDimension x="30" y="30"/>
46 </Size>
47 <Anchors>
48 <Anchor point="CENTER" relativeTo="UIParent">
49 <Offset>
50 <AbsDimension x="200" y="200"/>
51 </Offset>
52 </Anchor>
53 </Anchors>
54 <Scripts>
55 <OnEnter>
56 GameTooltip_SetDefaultAnchor(GameTooltip, UIParent);
57 GameTooltip:SetText(AUTOBUFF_BUTTON_TOOLTIP);
58 </OnEnter>
59 <OnLeave>
60 GameTooltip:Hide();
61 </OnLeave>
62 <OnLoad>
63 AutoBuffOptionsButton_OnLoad(this);
64 </OnLoad>
65 <OnClick>
66 AutoBuffOptionsButton_OnClick(arg1);
67 </OnClick>
68 <OnMouseUp>
69 AutoBuffOptionsButton_OnDragStop(this);
70 </OnMouseUp>
71 <OnDragStart>
72 AutoBuffOptionsButton_OnDragStart(this);
73 </OnDragStart>
74 <OnDragStop>
75 AutoBuffOptionsButton_OnDragStop(this);
76 </OnDragStop>
77 </Scripts>
78 </Button>
79  
80 <Button name = "AutoBuffNameButtonTemplate" virtual="true">
81 <Size>
82 <AbsDimension x="290" y="18" />
83 </Size>
84 <Layers>
85 <Layer level = "BACKGROUND">
86 <FontString name="$parent_Text" inherits="GameFontNormal" wraponspaces="false" justifyH="LEFT" text="PlaceHolder">
87 <Size>
88 <AbsDimension x="280" y="18"/>
89 </Size>
90 <Anchors>
91 <Anchor point="LEFT">
92 <Offset>
93 <AbsDimension x="5" y="0" />
94 </Offset>
95 </Anchor>
96 </Anchors>
97 <Color r="0.9" g="0.9" b="0.9"/>
98 </FontString>
99 </Layer>
100 </Layers>
101 <HighlightTexture file="Interface\QuestFrame\UI-QuestTitleHighlight" alphaMode="ADD"/>
102 </Button>
103  
104 <Slider name="AutoBuff_OptionsSliderTemplate" virtual="true" inherits="OptionsSliderTemplate">
105 <Scripts>
106 <OnEnter>
107 AutoBuffFrame_OnEnter();
108 </OnEnter>
109 <OnValueChanged>
110 AutoBuffFrame_OnValueChanged();
111 </OnValueChanged>
112 <OnLoad>
113 getglobal(this:GetName().."Text"):SetText();
114 getglobal(this:GetName().."High"):SetText();
115 getglobal(this:GetName().."Low"):SetText();
116 this:SetMinMaxValues(1, 99);
117 this:SetValueStep(1);
118 </OnLoad>
119 </Scripts>
120 </Slider>
121  
122 <CheckButton name="AutoBuff_UICheckButtonTemplate" virtual="true" inherits="UICheckButtonTemplate">
123 <Scripts>
124 <OnEnter>
125 AutoBuffFrame_OnEnter();
126 </OnEnter>
127 <OnLeave>
128 GameTooltip:Hide();
129 </OnLeave>
130 <OnClick>
131 AutoBuffFrame_OnClick();
132 </OnClick>
133 </Scripts>
134 </CheckButton>
135  
136 <Frame name="AutoBuffFrame" toplevel="false" enableMouse="true" movable="true" parent="UIParent" hidden="true">
137 <Size>
138 <AbsDimension x="300" y="35"/>
139 </Size>
140 <Anchors>
141 <Anchor point="CENTER">
142 <Offset>
143 <AbsDimension x="0" y="300"/>
144 </Offset>
145 </Anchor>
146 </Anchors>
147 <Backdrop name="AutoBuffbackdrop" bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
148 <BackgroundInsets>
149 <AbsInset left="4" right="4" top="4" bottom="4" />
150 </BackgroundInsets>
151 <TileSize>
152 <AbsValue val="16"/>
153 </TileSize>
154 <EdgeSize>
155 <AbsValue val="16"/>
156 </EdgeSize>
157 </Backdrop>
158 <Layers>
159 <Layer level="ARTWORK">
160 <FontString inherits="GameFontNormal" text="AUTOBUFF_GUI_TITLE">
161 <Anchors>
162 <Anchor point="TOPLEFT">
163 <Offset>
164 <AbsDimension x="16" y="-11"/>
165 </Offset>
166 </Anchor>
167 </Anchors>
168 </FontString>
169 </Layer>
170 </Layers>
171 <Frames>
172 <Button name="AutoBuffFrameCloseButton">
173 <Size>
174 <AbsDimension x="16" y="16"/>
175 </Size>
176 <Anchors>
177 <Anchor point="TOPRIGHT">
178 <Offset>
179 <AbsDimension x="-8" y="-8"/>
180 </Offset>
181 </Anchor>
182 </Anchors>
183 <Scripts>
184 <OnClick>
185 AutoBuffFrameCloseButton_OnClick();
186 </OnClick>
187 </Scripts>
188 <NormalTexture file="Interface\AddOns\AutoBuff\CloseButton-Up"/>
189 <PushedTexture file="Interface\AddOns\AutoBuff\CloseButton-Down"/>
190 <HighlightTexture file="Interface\AddOns\AutoBuff\Status-Idle" alphaMode="ADD"/>
191 </Button>
192 <CheckButton name="AutoBuffFrameCheckButton" inherits="AutoBuff_UICheckButtonTemplate">
193 <Size>
194 <AbsDimension x="20" y="20"/>
195 </Size>
196 <Anchors>
197 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameCloseButton" relativePoint="TOPLEFT">
198 <Offset>
199 <AbsDimension x="-2" y="1"/>
200 </Offset>
201 </Anchor>
202 </Anchors>
203 </CheckButton>
204 </Frames>
205 <Scripts>
206 <OnShow>
207 AutoBuffFrame_OnShow();
208 </OnShow>
209 <OnHide>
210 AutoBuffFrame_OnHide();
211 </OnHide>
212 <OnMouseDown>
213 AutoBuffFrame_OnMouseDown(arg1);
214 </OnMouseDown>
215 <OnMouseUp>
216 AutoBuffFrame_OnMouseUp(arg1);
217 </OnMouseUp>
218 </Scripts>
219  
220 </Frame>
221  
222  
223 <Frame name="AutoBuffFrameAbility" toplevel="false" parent="AutoBuffFrame" hidden="true">
224 <Size>
225 <AbsDimension x="300" y="290"/>
226 <!--<AbsDimension x="300" y="374-93"/>-->
227 </Size>
228 <Anchors>
229 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrame" relativePoint="BOTTOMLEFT">
230 <Offset>
231 <AbsDimension x="0" y="3"/>
232 </Offset>
233 </Anchor>
234 </Anchors>
235 <Backdrop name="AutoBuffBackdrop" bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
236 <BackgroundInsets>
237 <AbsInset left="4" right="4" top="4" bottom="4"/>
238 </BackgroundInsets>
239 <TileSize>
240 <AbsValue val="16"/>
241 </TileSize>
242 <EdgeSize>
243 <AbsValue val="16"/>
244 </EdgeSize>
245 </Backdrop>
246 <Frames>
247 <Button name="AutoBuffName1" inherits="AutoBuffNameButtonTemplate" hidden="true">
248 <Anchors>
249 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameAbility" relativePoint="TOPLEFT">
250 <Offset>
251 <AbsDimension x="5" y="-7"/>
252 </Offset>
253 </Anchor>
254 </Anchors>
255 <Scripts>
256 <OnClick>
257 AutoBuffNameButton_OnClick(1);
258 </OnClick>
259 </Scripts>
260 </Button>
261 <Button name="AutoBuffName2" inherits="AutoBuffNameButtonTemplate" hidden="true">
262 <Anchors>
263 <Anchor point="TOPLEFT" relativeTo="AutoBuffName1" relativePoint="BOTTOMLEFT"/>
264 </Anchors>
265 <Scripts>
266 <OnClick>
267 AutoBuffNameButton_OnClick(2);
268 </OnClick>
269 </Scripts>
270 </Button>
271 <Button name="AutoBuffName3" inherits="AutoBuffNameButtonTemplate" hidden="true">
272 <Anchors>
273 <Anchor point="TOPLEFT" relativeTo="AutoBuffName2" relativePoint="BOTTOMLEFT" />
274 </Anchors>
275 <Scripts>
276 <OnClick>
277 AutoBuffNameButton_OnClick(3);
278 </OnClick>
279 </Scripts>
280 </Button>
281 <Button name="AutoBuffName4" inherits="AutoBuffNameButtonTemplate" hidden="true">
282 <Anchors>
283 <Anchor point="TOPLEFT" relativeTo="AutoBuffName3" relativePoint="BOTTOMLEFT" />
284 </Anchors>
285 <Scripts>
286 <OnClick>
287 AutoBuffNameButton_OnClick(4);
288 </OnClick>
289 </Scripts>
290 </Button>
291 <Button name="AutoBuffName5" inherits="AutoBuffNameButtonTemplate" hidden="true">
292 <Anchors>
293 <Anchor point="TOPLEFT" relativeTo="AutoBuffName4" relativePoint="BOTTOMLEFT" />
294 </Anchors>
295 <Scripts>
296 <OnClick>
297 AutoBuffNameButton_OnClick(5);
298 </OnClick>
299 </Scripts>
300 </Button>
301 <Button name="AutoBuffName6" inherits="AutoBuffNameButtonTemplate" hidden="true">
302 <Anchors>
303 <Anchor point="TOPLEFT" relativeTo="AutoBuffName5" relativePoint="BOTTOMLEFT" />
304 </Anchors>
305 <Scripts>
306 <OnClick>
307 AutoBuffNameButton_OnClick(6);
308 </OnClick>
309 </Scripts>
310 </Button>
311 <Button name="AutoBuffName7" inherits="AutoBuffNameButtonTemplate" hidden="true">
312 <Anchors>
313 <Anchor point="TOPLEFT" relativeTo="AutoBuffName6" relativePoint="BOTTOMLEFT" />
314 </Anchors>
315 <Scripts>
316 <OnClick>
317 AutoBuffNameButton_OnClick(7);
318 </OnClick>
319 </Scripts>
320 </Button>
321 <Button name="AutoBuffName8" inherits="AutoBuffNameButtonTemplate" hidden="true">
322 <Anchors>
323 <Anchor point="TOPLEFT" relativeTo="AutoBuffName7" relativePoint="BOTTOMLEFT" />
324 </Anchors>
325 <Scripts>
326 <OnClick>
327 AutoBuffNameButton_OnClick(8);
328 </OnClick>
329 </Scripts>
330 </Button>
331 <Button name="AutoBuffName9" inherits="AutoBuffNameButtonTemplate" hidden="true">
332 <Anchors>
333 <Anchor point="TOPLEFT" relativeTo="AutoBuffName8" relativePoint="BOTTOMLEFT" />
334 </Anchors>
335 <Scripts>
336 <OnClick>
337 AutoBuffNameButton_OnClick(9);
338 </OnClick>
339 </Scripts>
340 </Button>
341 <Button name="AutoBuffName10" inherits="AutoBuffNameButtonTemplate" hidden="true">
342 <Anchors>
343 <Anchor point="TOPLEFT" relativeTo="AutoBuffName9" relativePoint="BOTTOMLEFT" />
344 </Anchors>
345 <Scripts>
346 <OnClick>
347 AutoBuffNameButton_OnClick(10);
348 </OnClick>
349 </Scripts>
350 </Button>
351 <Button name="AutoBuffName11" inherits="AutoBuffNameButtonTemplate" hidden="true">
352 <Anchors>
353 <Anchor point="TOPLEFT" relativeTo="AutoBuffName10" relativePoint="BOTTOMLEFT" />
354 </Anchors>
355 <Scripts>
356 <OnClick>
357 AutoBuffNameButton_OnClick(11);
358 </OnClick>
359 </Scripts>
360 </Button>
361 <Button name="AutoBuffName12" inherits="AutoBuffNameButtonTemplate" hidden="true">
362 <Anchors>
363 <Anchor point="TOPLEFT" relativeTo="AutoBuffName11" relativePoint="BOTTOMLEFT" />
364 </Anchors>
365 <Scripts>
366 <OnClick>
367 AutoBuffNameButton_OnClick(12);
368 </OnClick>
369 </Scripts>
370 </Button>
371 <Button name="AutoBuffName13" inherits="AutoBuffNameButtonTemplate" hidden="true">
372 <Anchors>
373 <Anchor point="TOPLEFT" relativeTo="AutoBuffName12" relativePoint="BOTTOMLEFT" />
374 </Anchors>
375 <Scripts>
376 <OnClick>
377 AutoBuffNameButton_OnClick(13);
378 </OnClick>
379 </Scripts>
380 </Button>
381 <Button name="AutoBuffName14" inherits="AutoBuffNameButtonTemplate" hidden="true">
382 <Anchors>
383 <Anchor point="TOPLEFT" relativeTo="AutoBuffName13" relativePoint="BOTTOMLEFT" />
384 </Anchors>
385 <Scripts>
386 <OnClick>
387 AutoBuffNameButton_OnClick(14);
388 </OnClick>
389 </Scripts>
390 </Button>
391 <Button name="AutoBuffName15" inherits="AutoBuffNameButtonTemplate" hidden="true">
392 <Anchors>
393 <Anchor point="TOPLEFT" relativeTo="AutoBuffName14" relativePoint="BOTTOMLEFT" />
394 </Anchors>
395 <Scripts>
396 <OnClick>
397 AutoBuffNameButton_OnClick(15);
398 </OnClick>
399 </Scripts>
400 </Button>
401 <Button name="AutoBuffName16" inherits="AutoBuffNameButtonTemplate" hidden="true">
402 <Anchors>
403 <Anchor point="TOPLEFT" relativeTo="AutoBuffName15" relativePoint="BOTTOMLEFT" />
404 </Anchors>
405 <Scripts>
406 <OnClick>
407 AutoBuffNameButton_OnClick(16);
408 </OnClick>
409 </Scripts>
410 </Button>
411 <Button name="AutoBuffName17" inherits="AutoBuffNameButtonTemplate" hidden="true">
412 <Anchors>
413 <Anchor point="TOPLEFT" relativeTo="AutoBuffName16" relativePoint="BOTTOMLEFT" />
414 </Anchors>
415 <Scripts>
416 <OnClick>
417 AutoBuffNameButton_OnClick(17);
418 </OnClick>
419 </Scripts>
420 </Button>
421 <Button name="AutoBuffName18" inherits="AutoBuffNameButtonTemplate" hidden="true">
422 <Anchors>
423 <Anchor point="TOPLEFT" relativeTo="AutoBuffName17" relativePoint="BOTTOMLEFT" />
424 </Anchors>
425 <Scripts>
426 <OnClick>
427 AutoBuffNameButton_OnClick(18);
428 </OnClick>
429 </Scripts>
430 </Button>
431 <Button name="AutoBuffName19" inherits="AutoBuffNameButtonTemplate" hidden="true">
432 <Anchors>
433 <Anchor point="TOPLEFT" relativeTo="AutoBuffName18" relativePoint="BOTTOMLEFT" />
434 </Anchors>
435 <Scripts>
436 <OnClick>
437 AutoBuffNameButton_OnClick(19);
438 </OnClick>
439 </Scripts>
440 </Button>
441 <Button name="AutoBuffName20" inherits="AutoBuffNameButtonTemplate" hidden="true">
442 <Anchors>
443 <Anchor point="TOPLEFT" relativeTo="AutoBuffName19" relativePoint="BOTTOMLEFT" />
444 </Anchors>
445 <Scripts>
446 <OnClick>
447 AutoBuffNameButton_OnClick(20);
448 </OnClick>
449 </Scripts>
450 </Button>
451 <Button name="AutoBuffName21" inherits="AutoBuffNameButtonTemplate" hidden="true">
452 <Anchors>
453 <Anchor point="TOPLEFT" relativeTo="AutoBuffName20" relativePoint="BOTTOMLEFT" />
454 </Anchors>
455 <Scripts>
456 <OnClick>
457 AutoBuffNameButton_OnClick(21);
458 </OnClick>
459 </Scripts>
460 </Button>
461 <Button name="AutoBuffName22" inherits="AutoBuffNameButtonTemplate" hidden="true">
462 <Anchors>
463 <Anchor point="TOPLEFT" relativeTo="AutoBuffName21" relativePoint="BOTTOMLEFT" />
464 </Anchors>
465 <Scripts>
466 <OnClick>
467 AutoBuffNameButton_OnClick(22);
468 </OnClick>
469 </Scripts>
470 </Button>
471 <Button name="AutoBuffName23" inherits="AutoBuffNameButtonTemplate" hidden="true">
472 <Anchors>
473 <Anchor point="TOPLEFT" relativeTo="AutoBuffName22" relativePoint="BOTTOMLEFT" />
474 </Anchors>
475 <Scripts>
476 <OnClick>
477 AutoBuffNameButton_OnClick(23);
478 </OnClick>
479 </Scripts>
480 </Button>
481 <Button name="AutoBuffName24" inherits="AutoBuffNameButtonTemplate" hidden="true">
482 <Anchors>
483 <Anchor point="TOPLEFT" relativeTo="AutoBuffName23" relativePoint="BOTTOMLEFT" />
484 </Anchors>
485 <Scripts>
486 <OnClick>
487 AutoBuffNameButton_OnClick(24);
488 </OnClick>
489 </Scripts>
490 </Button>
491 <Button name="AutoBuffName25" inherits="AutoBuffNameButtonTemplate" hidden="true">
492 <Anchors>
493 <Anchor point="TOPLEFT" relativeTo="AutoBuffName24" relativePoint="BOTTOMLEFT" />
494 </Anchors>
495 <Scripts>
496 <OnClick>
497 AutoBuffNameButton_OnClick(25);
498 </OnClick>
499 </Scripts>
500 </Button>
501 <Button name="AutoBuffName26" inherits="AutoBuffNameButtonTemplate" hidden="true">
502 <Anchors>
503 <Anchor point="TOPLEFT" relativeTo="AutoBuffName25" relativePoint="BOTTOMLEFT" />
504 </Anchors>
505 <Scripts>
506 <OnClick>
507 AutoBuffNameButton_OnClick(26);
508 </OnClick>
509 </Scripts>
510 </Button>
511 <Button name="AutoBuffName27" inherits="AutoBuffNameButtonTemplate" hidden="true">
512 <Anchors>
513 <Anchor point="TOPLEFT" relativeTo="AutoBuffName26" relativePoint="BOTTOMLEFT" />
514 </Anchors>
515 <Scripts>
516 <OnClick>
517 AutoBuffNameButton_OnClick(27);
518 </OnClick>
519 </Scripts>
520 </Button>
521 <Button name="AutoBuffName28" inherits="AutoBuffNameButtonTemplate" hidden="true">
522 <Anchors>
523 <Anchor point="TOPLEFT" relativeTo="AutoBuffName27" relativePoint="BOTTOMLEFT" />
524 </Anchors>
525 <Scripts>
526 <OnClick>
527 AutoBuffNameButton_OnClick(28);
528 </OnClick>
529 </Scripts>
530 </Button>
531 <Button name="AutoBuffName29" inherits="AutoBuffNameButtonTemplate" hidden="true">
532 <Anchors>
533 <Anchor point="TOPLEFT" relativeTo="AutoBuffName28" relativePoint="BOTTOMLEFT" />
534 </Anchors>
535 <Scripts>
536 <OnClick>
537 AutoBuffNameButton_OnClick(29);
538 </OnClick>
539 </Scripts>
540 </Button>
541 <Button name="AutoBuffName30" inherits="AutoBuffNameButtonTemplate" hidden="true">
542 <Anchors>
543 <Anchor point="TOPLEFT" relativeTo="AutoBuffName29" relativePoint="BOTTOMLEFT" />
544 </Anchors>
545 <Scripts>
546 <OnClick>
547 AutoBuffNameButton_OnClick(30);
548 </OnClick>
549 </Scripts>
550 </Button>
551 </Frames>
552 </Frame>
553  
554 <Frame name="AutoBuffFrameOptions" toplevel="false" parent="AutoBuffFrameAbility" hidden="true">
555 <Size>
556 <AbsDimension x="300" y="170"/>
557 </Size>
558 <Anchors>
559 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameAbility" relativePoint="BOTTOMLEFT">
560 <Offset>
561 <AbsDimension x="0" y="3"/>
562 </Offset>
563 </Anchor>
564 </Anchors>
565 <Backdrop name="AutoBuffBackdrop" bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
566 <BackgroundInsets>
567 <AbsInset left="4" right="4" top="4" bottom="4"/>
568 </BackgroundInsets>
569 <TileSize>
570 <AbsValue val="16"/>
571 </TileSize>
572 <EdgeSize>
573 <AbsValue val="16"/>
574 </EdgeSize>
575 </Backdrop>
576 <Layers>
577 <Layer level="ARTWORK">
578 <FontString name="AutoBuffFrameOptionsDefaultAbility" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_DEFAULTABILITY" hidden="true">
579 <Size>
580 <AbsDimension x="200" y="18"/>
581 </Size>
582 <Color r="0.6" g="0.6" b="1"/>
583 <Anchors>
584 <Anchor point="TOP" relativeTo="AutoBuffFrameOptions" relativePoint="TOP">
585 <Offset>
586 <AbsDimension x="0" y="-10"/>
587 </Offset>
588 </Anchor>
589 </Anchors>
590 </FontString>
591  
592 <FontString name="AutoBuffFrameOptionsEnable_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_ENABLE">
593 <Size>
594 <AbsDimension x="68" y="18"/>
595 </Size>
596 <Anchors>
597 <Anchor point="TOP" relativeTo="AutoBuffFrameOptions" relativePoint="TOP">
598 <Offset>
599 <AbsDimension x="-25" y="-10"/>
600 </Offset>
601 </Anchor>
602 </Anchors>
603 </FontString>
604  
605 <FontString name="AutoBuffFrameOptionsTrigger_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_TRIGGER">
606 <Size>
607 <AbsDimension x="68" y="18"/>
608 </Size>
609 <Color r="0.9" g="0.9" b="0.9"/>
610 <Anchors>
611 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptions" relativePoint="TOPLEFT">
612 <Offset>
613 <AbsDimension x="25" y="-40"/>
614 </Offset>
615 </Anchor>
616 </Anchors>
617 </FontString>
618  
619 <FontString name="AutoBuffFrameOptionsTriggerWheelUp_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_TRIGGER_WHEELUP">
620 <Size>
621 <AbsDimension x="140" y="18"/>
622 </Size>
623 <Anchors>
624 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTrigger_Text" relativePoint="TOPRIGHT">
625 <Offset>
626 <AbsDimension x="5" y="0"/>
627 </Offset>
628 </Anchor>
629 </Anchors>
630 </FontString>
631 <FontString name="AutoBuffFrameOptionsTriggerWheelDown_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_TRIGGER_WHEELDOWN">
632 <Size>
633 <AbsDimension x="140" y="18"/>
634 </Size>
635 <Anchors>
636 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTriggerWheelUp_Text" relativePoint="BOTTOMLEFT">
637 <Offset>
638 <AbsDimension x="0" y="-2"/>
639 </Offset>
640 </Anchor>
641 </Anchors>
642 </FontString>
643 <FontString name="AutoBuffFrameOptionsTriggerTarget_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_TRIGGER_TARGET">
644 <Size>
645 <AbsDimension x="140" y="18"/>
646 </Size>
647 <Anchors>
648 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTriggerWheelDown_Text" relativePoint="BOTTOMLEFT">
649 <Offset>
650 <AbsDimension x="0" y="-2"/>
651 </Offset>
652 </Anchor>
653 </Anchors>
654 </FontString>
655  
656  
657 <FontString name="AutoBuffFrameOptionsCombat_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_COMBAT">
658 <Size>
659 <AbsDimension x="68" y="18"/>
660 </Size>
661 <Color r="0.94" g="0.5" b="0.2"/>
662 <Anchors>
663 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTrigger_Text" relativePoint="BOTTOMLEFT">
664 <Offset>
665 <AbsDimension x="0" y="-25"/>
666 </Offset>
667 </Anchor>
668 </Anchors>
669 </FontString>
670  
671 <FontString name="AutoBuffFrameOptionsCombatIn_Text" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_COMBAT_IN">
672 <Size>
673 <AbsDimension x="60" y="18"/>
674 </Size>
675 <Anchors>
676 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsCombat_Text" relativePoint="TOPRIGHT">
677 <Offset>
678 <AbsDimension x="5" y="-20"/>
679 </Offset>
680 </Anchor>
681 </Anchors>
682 </FontString>
683  
684 <FontString name="AutoBuffFrameOptionsCombatOut_Text" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_COMBAT_OUT">
685 <Size>
686 <AbsDimension x="60" y="18"/>
687 </Size>
688 <Anchors>
689 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsCombatIn_Text" relativePoint="TOPRIGHT"/>
690 </Anchors>
691 </FontString>
692  
693 <FontString name="AutoBuffFrameOptionsCombatAlways_Text" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_COMBAT_ALWAYS">
694 <Size>
695 <AbsDimension x="60" y="18"/>
696 </Size>
697 <Anchors>
698 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsCombatOut_Text" relativePoint="TOPRIGHT"/>
699 </Anchors>
700 </FontString>
701  
702 <FontString name="AutoBuffFrameOptionsParty_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_PARTY">
703 <Size>
704 <AbsDimension x="68" y="18"/>
705 </Size>
706 <Color r="0.3" g="0.3" b="0.94"/>
707 <Anchors>
708 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsCombat_Text" relativePoint="BOTTOMLEFT">
709 <Offset>
710 <AbsDimension x="0" y="-25"/>
711 </Offset>
712 </Anchor>
713 </Anchors>
714 </FontString>
715  
716 <FontString name="AutoBuffFrameOptionsPartyIn_Text" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_COMBAT_IN">
717 <Size>
718 <AbsDimension x="60" y="18"/>
719 </Size>
720 <Anchors>
721 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsParty_Text" relativePoint="TOPRIGHT">
722 <Offset>
723 <AbsDimension x="5" y="-20"/>
724 </Offset>
725 </Anchor>
726 </Anchors>
727 </FontString>
728  
729 <FontString name="AutoBuffFrameOptionsPartyOut_Text" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_COMBAT_OUT">
730 <Size>
731 <AbsDimension x="60" y="18"/>
732 </Size>
733 <Anchors>
734 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsPartyIn_Text" relativePoint="TOPRIGHT"/>
735 </Anchors>
736 </FontString>
737  
738 <FontString name="AutoBuffFrameOptionsPartyAlways_Text" inherits="GameFontNormal" justifyH="CENTER" text="AUTOBUFF_GUI_COMBAT_ALWAYS">
739 <Size>
740 <AbsDimension x="60" y="18"/>
741 </Size>
742 <Anchors>
743 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsPartyOut_Text" relativePoint="TOPRIGHT"/>
744 </Anchors>
745 </FontString>
746  
747 <FontString name="AutoBuffFrameOptionsHealth_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_HEALTH">
748 <Size>
749 <AbsDimension x="68" y="18"/>
750 </Size>
751 <Color r="1" g="0.6" b="0.6"/>
752 <Anchors>
753 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsParty_Text" relativePoint="BOTTOMLEFT">
754 <Offset>
755 <AbsDimension x="0" y="-25"/>
756 </Offset>
757 </Anchor>
758 </Anchors>
759 </FontString>
760 <FontString name="AutoBuffFrameOptionsMana_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_MANA">
761 <Size>
762 <AbsDimension x="68" y="18"/>
763 </Size>
764 <Color r="0.6" g="0.6" b="1"/>
765 <Anchors>
766 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsHealth_Text" relativePoint="BOTTOMLEFT">
767 <Offset>
768 <AbsDimension x="0" y="-9"/>
769 </Offset>
770 </Anchor>
771 </Anchors>
772 </FontString>
773  
774 <FontString name="AutoBuffFrameOptionsRebuff_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_REBUFF">
775 <Size>
776 <AbsDimension x="68" y="18"/>
777 </Size>
778 <Color r="0.6" g="0.6" b="0.6"/>
779 <Anchors>
780 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsMana_Text" relativePoint="BOTTOMLEFT">
781 <Offset>
782 <AbsDimension x="0" y="-9"/>
783 </Offset>
784 </Anchor>
785 </Anchors>
786 </FontString>
787  
788 <FontString name="AutoBuffFrameOptionsRebuff_ValueText" inherits="GameFontNormal" justifyH="LEFT" text="##s">
789 <Size>
790 <AbsDimension x="80" y="18"/>
791 </Size>
792 <Anchors>
793 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRebuff_Text" relativePoint="TOPRIGHT">
794 <Offset>
795 <AbsDimension x="137" y="0"/>
796 </Offset>
797 </Anchor>
798 </Anchors>
799 </FontString>
800  
801  
802 <FontString name="AutoBuffFrameOptionsRank_Text" inherits="GameFontNormal" justifyH="RIGHT" text="AUTOBUFF_GUI_RANK">
803 <Size>
804 <AbsDimension x="68" y="18"/>
805 </Size>
806 <Color r="1" g="0.6" b="1"/>
807 <Anchors>
808 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRebuff_Text" relativePoint="BOTTOMLEFT">
809 <Offset>
810 <AbsDimension x="0" y="-9"/>
811 </Offset>
812 </Anchor>
813 </Anchors>
814 </FontString>
815  
816 <FontString name="AutoBuffFrameOptionsRank_ValueText" inherits="GameFontNormal" justifyH="LEFT" text="#">
817 <Size>
818 <AbsDimension x="80" y="18"/>
819 </Size>
820 <Anchors>
821 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRank_Text" relativePoint="TOPRIGHT">
822 <Offset>
823 <AbsDimension x="137" y="0"/>
824 </Offset>
825 </Anchor>
826 </Anchors>
827 </FontString>
828  
829 <FontString name="AutoBuffFrameOptionsHealth_ValueText" inherits="GameFontNormal" justifyH="LEFT" text=">##%">
830 <Size>
831 <AbsDimension x="40" y="18"/>
832 </Size>
833 <Anchors>
834 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsHealth_Text" relativePoint="TOPRIGHT">
835 <Offset>
836 <AbsDimension x="137" y="0"/>
837 </Offset>
838 </Anchor>
839 </Anchors>
840 </FontString>
841 <FontString name="AutoBuffFrameOptionsMana_ValueText" inherits="GameFontNormal" justifyH="LEFT" text=">##%">
842 <Size>
843 <AbsDimension x="40" y="18"/>
844 </Size>
845 <Anchors>
846 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsMana_Text" relativePoint="TOPRIGHT">
847 <Offset>
848 <AbsDimension x="137" y="0"/>
849 </Offset>
850 </Anchor>
851 </Anchors>
852 </FontString>
853  
854 <FontString name="AutoBuffFrameOptionsDefaultTrigger_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
855 <Size>
856 <AbsDimension x="170" y="18"/>
857 </Size>
858 <Anchors>
859 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTrigger_Text" relativePoint="TOPRIGHT">
860 <Offset>
861 <AbsDimension x="5" y="0"/>
862 </Offset>
863 </Anchor>
864 </Anchors>
865 </FontString>
866 <FontString name="AutoBuffFrameOptionsDefaultCombat_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
867 <Size>
868 <AbsDimension x="170" y="18"/>
869 </Size>
870 <Anchors>
871 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsCombat_Text" relativePoint="TOPRIGHT">
872 <Offset>
873 <AbsDimension x="5" y="0"/>
874 </Offset>
875 </Anchor>
876 </Anchors>
877 </FontString>
878 <FontString name="AutoBuffFrameOptionsDefaultParty_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
879 <Size>
880 <AbsDimension x="170" y="18"/>
881 </Size>
882 <Anchors>
883 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsParty_Text" relativePoint="TOPRIGHT">
884 <Offset>
885 <AbsDimension x="5" y="0"/>
886 </Offset>
887 </Anchor>
888 </Anchors>
889 </FontString>
890 <FontString name="AutoBuffFrameOptionsDefaultHealth_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
891 <Size>
892 <AbsDimension x="170" y="18"/>
893 </Size>
894 <Anchors>
895 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsHealth_Text" relativePoint="TOPRIGHT">
896 <Offset>
897 <AbsDimension x="5" y="0"/>
898 </Offset>
899 </Anchor>
900 </Anchors>
901 </FontString>
902 <FontString name="AutoBuffFrameOptionsDefaultMana_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
903 <Size>
904 <AbsDimension x="170" y="18"/>
905 </Size>
906 <Anchors>
907 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsMana_Text" relativePoint="TOPRIGHT">
908 <Offset>
909 <AbsDimension x="5" y="0"/>
910 </Offset>
911 </Anchor>
912 </Anchors>
913 </FontString>
914 <FontString name="AutoBuffFrameOptionsDefaultRebuff_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
915 <Size>
916 <AbsDimension x="170" y="18"/>
917 </Size>
918 <Anchors>
919 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRebuff_Text" relativePoint="TOPRIGHT">
920 <Offset>
921 <AbsDimension x="5" y="0"/>
922 </Offset>
923 </Anchor>
924 </Anchors>
925 </FontString>
926  
927 <FontString name="AutoBuffFrameOptionsDefaultRank_Text" inherits="GameFontNormal" justifyH="LEFT" text="AUTOBUFF_GUI_USINGDEFAULT" hidden="true">
928 <Size>
929 <AbsDimension x="170" y="18"/>
930 </Size>
931 <Anchors>
932 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRank_Text" relativePoint="TOPRIGHT">
933 <Offset>
934 <AbsDimension x="5" y="0"/>
935 </Offset>
936 </Anchor>
937 </Anchors>
938 </FontString>
939  
940 </Layer>
941 </Layers>
942 <Frames>
943 <CheckButton name="AutoBuffFrameOptionsEnableButton" inherits="AutoBuff_UICheckButtonTemplate">
944 <Size>
945 <AbsDimension x="20" y="20"/>
946 </Size>
947 <Anchors>
948 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsEnable_Text" relativePoint="TOPRIGHT">
949 <Offset>
950 <AbsDimension x="7" y="-2"/>
951 </Offset>
952 </Anchor>
953 </Anchors>
954 </CheckButton>
955  
956 <CheckButton name="AutoBuffFrameOptionsCombatDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
957 <Size>
958 <AbsDimension x="20" y="20"/>
959 </Size>
960 <Anchors>
961 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsCombat_Text" relativePoint="TOPLEFT">
962 <Offset>
963 <AbsDimension x="0" y="-1"/>
964 </Offset>
965 </Anchor>
966 </Anchors>
967 </CheckButton>
968 <CheckButton name="AutoBuffFrameOptionsPartyDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
969 <Size>
970 <AbsDimension x="20" y="20"/>
971 </Size>
972 <Anchors>
973 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsParty_Text" relativePoint="TOPLEFT">
974 <Offset>
975 <AbsDimension x="0" y="-1"/>
976 </Offset>
977 </Anchor>
978 </Anchors>
979 </CheckButton>
980 <CheckButton name="AutoBuffFrameOptionsTriggerDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
981 <Size>
982 <AbsDimension x="20" y="20"/>
983 </Size>
984 <Anchors>
985 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsTrigger_Text" relativePoint="TOPLEFT">
986 <Offset>
987 <AbsDimension x="0" y="-1"/>
988 </Offset>
989 </Anchor>
990 </Anchors>
991 </CheckButton>
992  
993 <CheckButton name="AutoBuffFrameOptionsTriggerWheelUpButton" inherits="AutoBuff_UICheckButtonTemplate">
994 <Size>
995 <AbsDimension x="20" y="20"/>
996 </Size>
997 <Anchors>
998 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTriggerWheelUp_Text" relativePoint="TOPRIGHT">
999 <Offset>
1000 <AbsDimension x="2" y="-1"/>
1001 </Offset>
1002 </Anchor>
1003 </Anchors>
1004 </CheckButton>
1005 <CheckButton name="AutoBuffFrameOptionsTriggerWheelDownButton" inherits="AutoBuff_UICheckButtonTemplate">
1006 <Size>
1007 <AbsDimension x="20" y="20"/>
1008 </Size>
1009 <Anchors>
1010 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTriggerWheelDown_Text" relativePoint="TOPRIGHT">
1011 <Offset>
1012 <AbsDimension x="2" y="-1"/>
1013 </Offset>
1014 </Anchor>
1015 </Anchors>
1016 </CheckButton>
1017 <CheckButton name="AutoBuffFrameOptionsTriggerTargetButton" inherits="AutoBuff_UICheckButtonTemplate">
1018 <Size>
1019 <AbsDimension x="20" y="20"/>
1020 </Size>
1021 <Anchors>
1022 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsTriggerTarget_Text" relativePoint="TOPRIGHT">
1023 <Offset>
1024 <AbsDimension x="2" y="-1"/>
1025 </Offset>
1026 </Anchor>
1027 </Anchors>
1028 </CheckButton>
1029  
1030  
1031 <CheckButton name="AutoBuffFrameOptionsHealthDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
1032 <Size>
1033 <AbsDimension x="20" y="20"/>
1034 </Size>
1035 <Anchors>
1036 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsHealth_Text" relativePoint="TOPLEFT">
1037 <Offset>
1038 <AbsDimension x="0" y="-1"/>
1039 </Offset>
1040 </Anchor>
1041 </Anchors>
1042 </CheckButton>
1043 <CheckButton name="AutoBuffFrameOptionsManaDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
1044 <Size>
1045 <AbsDimension x="20" y="20"/>
1046 </Size>
1047 <Anchors>
1048 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsMana_Text" relativePoint="TOPLEFT">
1049 <Offset>
1050 <AbsDimension x="0" y="-1"/>
1051 </Offset>
1052 </Anchor>
1053 </Anchors>
1054 </CheckButton>
1055 <CheckButton name="AutoBuffFrameOptionsRebuffDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
1056 <Size>
1057 <AbsDimension x="20" y="20"/>
1058 </Size>
1059 <Anchors>
1060 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsRebuff_Text" relativePoint="TOPLEFT">
1061 <Offset>
1062 <AbsDimension x="0" y="-1"/>
1063 </Offset>
1064 </Anchor>
1065 </Anchors>
1066 </CheckButton>
1067 <CheckButton name="AutoBuffFrameOptionsRankDefaultButton" inherits="AutoBuff_UICheckButtonTemplate">
1068 <Size>
1069 <AbsDimension x="20" y="20"/>
1070 </Size>
1071 <Anchors>
1072 <Anchor point="TOPRIGHT" relativeTo="AutoBuffFrameOptionsRank_Text" relativePoint="TOPLEFT">
1073 <Offset>
1074 <AbsDimension x="0" y="-1"/>
1075 </Offset>
1076 </Anchor>
1077 </Anchors>
1078 </CheckButton>
1079  
1080 <Slider name="AutoBuffFrameOptionsRebuff" inherits="AutoBuff_OptionsSliderTemplate">
1081 <Anchors>
1082 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRebuff_Text" relativePoint="TOPRIGHT">
1083 <Offset>
1084 <AbsDimension x="7" y="-2"/>
1085 </Offset>
1086 </Anchor>
1087 </Anchors>
1088 <Scripts>
1089 <OnLoad>
1090 getglobal(this:GetName().."Text"):SetText();
1091 getglobal(this:GetName().."High"):SetText();
1092 getglobal(this:GetName().."Low"):SetText();
1093 this:SetMinMaxValues(0, 299);
1094 this:SetValueStep(5);
1095 </OnLoad>
1096 </Scripts>
1097 </Slider>
1098  
1099 <Slider name="AutoBuffFrameOptionsRank" inherits="AutoBuff_OptionsSliderTemplate">
1100 <Anchors>
1101 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsRank_Text" relativePoint="TOPRIGHT">
1102 <Offset>
1103 <AbsDimension x="7" y="-2"/>
1104 </Offset>
1105 </Anchor>
1106 </Anchors>
1107 <Scripts>
1108 <OnLoad>
1109 getglobal(this:GetName().."Text"):SetText();
1110 getglobal(this:GetName().."High"):SetText();
1111 getglobal(this:GetName().."Low"):SetText();
1112 this:SetMinMaxValues(1, 2);
1113 this:SetValueStep(1);
1114 </OnLoad>
1115 </Scripts>
1116 </Slider>
1117  
1118  
1119 <Slider name="AutoBuffFrameOptionsHealth" inherits="AutoBuff_OptionsSliderTemplate">
1120 <Anchors>
1121 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsHealth_Text" relativePoint="TOPRIGHT">
1122 <Offset>
1123 <AbsDimension x="7" y="-2"/>
1124 </Offset>
1125 </Anchor>
1126 </Anchors>
1127 </Slider>
1128 <CheckButton name="AutoBuffFrameOptionsHealthButton" inherits="AutoBuff_UICheckButtonTemplate">
1129 <Size>
1130 <AbsDimension x="20" y="20"/>
1131 </Size>
1132 <Anchors>
1133 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsHealth" relativePoint="TOPRIGHT">
1134 <Offset>
1135 <AbsDimension x="40" y="1"/>
1136 </Offset>
1137 </Anchor>
1138 </Anchors>
1139 </CheckButton>
1140  
1141 <Slider name="AutoBuffFrameOptionsMana" inherits="AutoBuff_OptionsSliderTemplate">
1142 <Anchors>
1143 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsMana_Text" relativePoint="TOPRIGHT">
1144 <Offset>
1145 <AbsDimension x="7" y="-2"/>
1146 </Offset>
1147 </Anchor>
1148 </Anchors>
1149 </Slider>
1150 <CheckButton name="AutoBuffFrameOptionsManaButton" inherits="AutoBuff_UICheckButtonTemplate">
1151 <Size>
1152 <AbsDimension x="20" y="20"/>
1153 </Size>
1154 <Anchors>
1155 <Anchor point="TOPLEFT" relativeTo="AutoBuffFrameOptionsMana" relativePoint="TOPRIGHT">
1156 <Offset>
1157 <AbsDimension x="40" y="1"/>
1158 </Offset>
1159 </Anchor>
1160 </Anchors>
1161 </CheckButton>
1162 <CheckButton name="AutoBuffFrameOptionsCombatInButton" inherits="AutoBuff_UICheckButtonTemplate">
1163 <Size>
1164 <AbsDimension x="20" y="20"/>
1165 </Size>
1166 <Anchors>
1167 <Anchor point="BOTTOM" relativeTo="AutoBuffFrameOptionsCombatIn_Text" relativePoint="TOP">
1168 <Offset>
1169 <AbsDimension x="0" y="0"/>
1170 </Offset>
1171 </Anchor>
1172 </Anchors>
1173 </CheckButton>
1174 <CheckButton name="AutoBuffFrameOptionsCombatOutButton" inherits="AutoBuff_UICheckButtonTemplate">
1175 <Size>
1176 <AbsDimension x="20" y="20"/>
1177 </Size>
1178 <Anchors>
1179 <Anchor point="BOTTOM" relativeTo="AutoBuffFrameOptionsCombatOut_Text" relativePoint="TOP">
1180 <Offset>
1181 <AbsDimension x="0" y="0"/>
1182 </Offset>
1183 </Anchor>
1184 </Anchors>
1185 </CheckButton>
1186 <CheckButton name="AutoBuffFrameOptionsCombatAlwaysButton" inherits="AutoBuff_UICheckButtonTemplate">
1187 <Size>
1188 <AbsDimension x="20" y="20"/>
1189 </Size>
1190 <Anchors>
1191 <Anchor point="BOTTOM" relativeTo="AutoBuffFrameOptionsCombatAlways_Text" relativePoint="TOP">
1192 <Offset>
1193 <AbsDimension x="0" y="0"/>
1194 </Offset>
1195 </Anchor>
1196 </Anchors>
1197 </CheckButton>
1198  
1199 <CheckButton name="AutoBuffFrameOptionsPartyInButton" inherits="AutoBuff_UICheckButtonTemplate">
1200 <Size>
1201 <AbsDimension x="20" y="20"/>
1202 </Size>
1203 <Anchors>
1204 <Anchor point="BOTTOM" relativeTo="AutoBuffFrameOptionsPartyIn_Text" relativePoint="TOP">
1205 <Offset>
1206 <AbsDimension x="0" y="0"/>
1207 </Offset>
1208 </Anchor>
1209 </Anchors>
1210 </CheckButton>
1211 <CheckButton name="AutoBuffFrameOptionsPartyOutButton" inherits="AutoBuff_UICheckButtonTemplate">
1212 <Size>
1213 <AbsDimension x="20" y="20"/>
1214 </Size>
1215 <Anchors>
1216 <Anchor point="BOTTOM" relativeTo="AutoBuffFrameOptionsPartyOut_Text" relativePoint="TOP">
1217 <Offset>
1218 <AbsDimension x="0" y="0"/>
1219 </Offset>
1220 </Anchor>
1221 </Anchors>
1222 </CheckButton>
1223 <CheckButton name="AutoBuffFrameOptionsPartyAlwaysButton" inherits="AutoBuff_UICheckButtonTemplate">
1224 <Size>
1225 <AbsDimension x="20" y="20"/>
1226 </Size>
1227 <Anchors>
1228 <Anchor point="BOTTOM" relativeTo="AutoBuffFrameOptionsPartyAlways_Text" relativePoint="TOP">
1229 <Offset>
1230 <AbsDimension x="0" y="0"/>
1231 </Offset>
1232 </Anchor>
1233 </Anchors>
1234 </CheckButton>
1235  
1236 </Frames>
1237 </Frame>
1238  
1239 <GameTooltip name="AutoBuffTooltip" frameStrata="TOOLTIP" hidden="true" inherits="GameTooltipTemplate">
1240 <Scripts>
1241 <OnLoad>
1242 GameTooltip_OnLoad();
1243 this:SetOwner(WorldFrame, "ANCHOR_NONE");
1244 </OnLoad>
1245 </Scripts>
1246 </GameTooltip>
1247  
1248 </Ui>