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 C:\Projects\WoW\Bin\Interface\FrameXML\UI.xsd">
3 <Script file="CT_RAMenu.lua"/>
4 <Button name="CT_RA_PriorityTemplate" virtual="true" movable="true" hidden="false">
5 <Size>
6 <AbsDimension x="190" y="32"/>
7 </Size>
8 <Backdrop name="$parentBackdrop" bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
9 <EdgeSize>
10 <AbsValue val="16"/>
11 </EdgeSize>
12 <TileSize>
13 <AbsValue val="16"/>
14 </TileSize>
15 <BackgroundInsets>
16 <AbsInset left="5" right="5" top="5" bottom="5"/>
17 </BackgroundInsets>
18 </Backdrop>
19 <Layers>
20 <Layer level="ARTWORK">
21 <FontString name="$parentName" inherits="ChatFontNormal" text="Player">
22 <Anchors>
23 <Anchor point="CENTER"/>
24 </Anchors>
25 </FontString>
26 </Layer>
27 </Layers>
28 <Scripts>
29 <OnMouseDown>
30 this:StartMoving();
31 CT_RA_PriorityFrame.moving = this;
32 </OnMouseDown>
33 <OnMouseUp>
34 CT_RA_PriorityFrame.moving = nil;
35 this:StopMovingOrSizing();
36 CT_RA_Priority_SetPosition();
37 </OnMouseUp>
38 </Scripts>
39 </Button>
40 <Button name="CT_RA_DebuffSetTemplate" virtual="true" hidden="true">
41 <Size>
42 <AbsDimension x="192" y="25"/>
43 </Size>
44 <Layers>
45 <Layer level="ARTWORK">
46 <FontString name="$parentName" justifyH="LEFT" inherits="ChatFontNormal">
47 <Anchors>
48 <Anchor point="LEFT">
49 <Offset>
50 <AbsDimension x="10" y="0"/>
51 </Offset>
52 </Anchor>
53 </Anchors>
54 </FontString>
55 </Layer>
56 <Layer level="BACKGROUND">
57 <Texture name="$parentMO" hidden="true">
58 <Anchors>
59 <Anchor point="TOPLEFT"/>
60 <Anchor point="BOTTOMRIGHT"/>
61 </Anchors>
62 <Color r="1" g="1" b="1" a="1"/>
63 </Texture>
64 </Layer>
65 </Layers>
66 <Frames>
67 <Button name="$parentMoveUp" inherits="UIPanelScrollUpButtonTemplate" hidden="false">
68 <Anchors>
69 <Anchor point="LEFT">
70 <Offset>
71 <AbsDimension x="150" y="0"/>
72 </Offset>
73 </Anchor>
74 </Anchors>
75 <Scripts>
76 <OnClick>
77 if ( not CT_RA_PriorityFrame:IsVisible() ) then
78 CT_RAMenuDebuff_MoveSetUp();
79 end
80 </OnClick>
81 <OnEnter>
82 if ( not CT_RA_PriorityFrame:IsVisible() ) then
83 if ( not this:GetParent().isHighlighted ) then
84 getglobal(this:GetParent():GetName() .. "MO"):SetVertexColor(1, 1, 1, 0.1);
85 end
86 getglobal(this:GetParent():GetName() .. "MO"):Show();
87 this:GetParent().isOver = 1;
88 end
89 </OnEnter>
90 <OnLeave>
91 this:GetParent().isOver = nil;
92 if ( not this:GetParent().isHighlighted ) then
93 getglobal(this:GetParent():GetName() .. "MO"):Hide();
94 end
95 </OnLeave>
96 </Scripts>
97 </Button>
98 <Button name="$parentMoveDown" inherits="UIPanelScrollDownButtonTemplate" hidden="false">
99 <Anchors>
100 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentMoveUp">
101 <Offset>
102 <AbsDimension x="3" y="0"/>
103 </Offset>
104 </Anchor>
105 </Anchors>
106 <Scripts>
107 <OnClick>
108 if ( not CT_RA_PriorityFrame:IsVisible() ) then
109 CT_RAMenuDebuff_MoveSetDown();
110 end
111 </OnClick>
112 <OnEnter>
113 if ( not CT_RA_PriorityFrame:IsVisible() ) then
114 if ( not this:GetParent().isHighlighted ) then
115 getglobal(this:GetParent():GetName() .. "MO"):SetVertexColor(1, 1, 1, 0.1);
116 end
117 getglobal(this:GetParent():GetName() .. "MO"):Show();
118 this:GetParent().isOver = 1;
119 end
120 </OnEnter>
121 <OnLeave>
122 this:GetParent().isOver = nil;
123 if ( not this:GetParent().isHighlighted ) then
124 getglobal(this:GetParent():GetName() .. "MO"):Hide();
125 end
126 </OnLeave>
127 </Scripts>
128 </Button>
129 </Frames>
130 <Scripts>
131 <OnEnter>
132 if ( not CT_RA_PriorityFrame:IsVisible() ) then
133 if ( not this.isHighlighted ) then
134 getglobal(this:GetName() .. "MO"):SetVertexColor(1, 1, 1, 0.1);
135 end
136 getglobal(this:GetName() .. "MO"):Show();
137 this.isOver = 1;
138 end
139 </OnEnter>
140 <OnLeave>
141 this.isOver = nil;
142 if ( not this.isHighlighted ) then
143 getglobal(this:GetName() .. "MO"):Hide();
144 end
145 </OnLeave>
146 <OnClick>
147 if ( not CT_RA_PriorityFrame:IsVisible() ) then
148 CT_RAMenuFrameDebuffSettingsNameEB:ClearFocus();
149 CT_RAMenuFrameDebuffSettingsDebuffTitleEB:ClearFocus();
150 CT_RAMenuFrameDebuffSettingsDebuffTypeEB:ClearFocus();
151 CT_RAMenuFrameDebuffSettingsDebuffDescriptEB:ClearFocus();
152 CT_RAMenuFrameDebuff.selectedIndex = this:GetID()+FauxScrollFrame_GetOffset(CT_RAMenuFrameDebuffUseScrollFrame);
153 CT_RAMenuFrameDebuff_UpdateSet();
154 end
155 </OnClick>
156 </Scripts>
157 </Button>
158 <Frame name="CT_RAMenuOptionSetTemplate" virtual="true" hidden="false">
159 <Size>
160 <AbsDimension x="550" y="25"/>
161 </Size>
162 <Layers>
163 <Layer level="ARTWORK">
164 <FontString name="$parentName" inherits="ChatFontNormal" hidden="false">
165 <Anchors>
166 <Anchor point="LEFT"/>
167 </Anchors>
168 </FontString>
169 <Texture name="$parentLine" file="Interface\Tooltips\UI-Tooltip-Background" hidden="false">
170 <Size>
171 <AbsDimension x="550" y="1"/>
172 </Size>
173 <Anchors>
174 <Anchor point="BOTTOM">
175 <Offset>
176 <AbsDimension x="0" y="-5"/>
177 </Offset>
178 </Anchor>
179 </Anchors>
180 </Texture>
181 </Layer>
182 </Layers>
183 <Frames>
184 <Button name="$parentDelete" inherits="GameMenuButtonTemplate" text="Delete" hidden="false">
185 <Size>
186 <AbsDimension x="80" y="20"/>
187 </Size>
188 <Anchors>
189 <Anchor point="RIGHT"/>
190 </Anchors>
191 <Scripts>
192 <OnClick>
193 CT_RAMenu_DeleteSetFrame.name = this:GetParent().setName;
194 ShowUIPanel(CT_RAMenu_DeleteSetFrame);
195 </OnClick>
196 </Scripts>
197 </Button>
198 <Button name="$parentCopy" inherits="GameMenuButtonTemplate" text="Copy" hidden="false">
199 <Size>
200 <AbsDimension x="80" y="20"/>
201 </Size>
202 <Anchors>
203 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentDelete">
204 <Offset>
205 <AbsDimension x="-5" y="0"/>
206 </Offset>
207 </Anchor>
208 </Anchors>
209 <Scripts>
210 <OnClick>
211 CT_RAMenu_NewSetFrame.from = this:GetParent().setName;
212 CT_RAMenu_NewSetFrame.type = "Copy";
213 ShowUIPanel(CT_RAMenu_NewSetFrame);
214 </OnClick>
215 </Scripts>
216 </Button>
217 <Button name="$parentLoad" inherits="GameMenuButtonTemplate" text="Load" hidden="false">
218 <Size>
219 <AbsDimension x="80" y="20"/>
220 </Size>
221 <Anchors>
222 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentCopy">
223 <Offset>
224 <AbsDimension x="-5" y="0"/>
225 </Offset>
226 </Anchor>
227 </Anchors>
228 <Scripts>
229 <OnClick>
230 CT_RAMenu_CurrSet = this:GetParent().setName;
231 CT_RAMenu_Options["temp"] = CT_RAMenu_CopyTable(CT_RAMenu_Options[CT_RAMenu_CurrSet]);
232 CT_RAMenu_UpdateOptionSets();
233 CT_RA_UpdateRaidGroup(0);
234 CT_RA_UpdateMTs();
235 CT_RAMenu_UpdateMenu();
236 CT_RAOptions_Update();
237 </OnClick>
238 </Scripts>
239 </Button>
240 </Frames>
241 </Frame>
242 <Button name="CT_RAMenuHelpTemplateSub" virtual="true" hidden="false">
243 <Size>
244 <AbsDimension x="18" y="16"/>
245 </Size>
246 <Anchors>
247 <Anchor point="BOTTOMRIGHT" relativePoint="TOPRIGHT">
248 <Offset>
249 <AbsDimension x="-5" y="0"/>
250 </Offset>
251 </Anchor>
252 </Anchors>
253 <Layers>
254 <Layer level="OVERLAY">
255 <FontString name="$parentText" inherits="GameFontNormal" justifyH="RIGHT" text="[?]">
256 <Anchors>
257 <Anchor point="RIGHT">
258 <Offset>
259 <AbsDimension x="0" y="0"/>
260 </Offset>
261 </Anchor>
262 </Anchors>
263 </FontString>
264 </Layer>
265 </Layers>
266 <Scripts>
267 <OnEnter>
268 getglobal(this:GetName() .. "Text"):SetTextColor(1, 1, 0);
269 CT_RAMenuHelp_SetTooltip()
270 GameTooltip:SetText(this.text, 1, 0.72, 0, nil, 1);
271 GameTooltip:Show();
272 </OnEnter>
273 <OnLeave>
274 getglobal(this:GetName() .. "Text"):SetTextColor(1, 0.82, 0);
275 GameTooltip:Hide();
276 </OnLeave>
277 <OnLoad>
278 this.text = "";
279 CT_RAMenuHelp_LoadText();
280 </OnLoad>
281 </Scripts>
282 </Button>
283 <Button name="CT_RAMenuHelpTemplateTitle" virtual="true" hidden="false">
284 <Size>
285 <AbsDimension x="18" y="16"/>
286 </Size>
287 <Layers>
288 <Layer level="OVERLAY">
289 <FontString name="$parentText" inherits="GameFontHighlightSmall" justifyH="RIGHT" text="[?]">
290 <Anchors>
291 <Anchor point="RIGHT">
292 <Offset>
293 <AbsDimension x="0" y="0"/>
294 </Offset>
295 </Anchor>
296 </Anchors>
297 </FontString>
298 </Layer>
299 </Layers>
300 <Scripts>
301 <OnEnter>
302 getglobal(this:GetName() .. "Text"):SetTextColor(1, 0.82, 0);
303 CT_RAMenuHelp_SetTooltip()
304 GameTooltip:SetText(this.text, 1, 0.72, 0, nil, 1);
305 </OnEnter>
306 <OnLeave>
307 getglobal(this:GetName() .. "Text"):SetTextColor(1, 1, 1);
308 GameTooltip:Hide();
309 </OnLeave>
310 <OnLoad>
311 this.text = "";
312 CT_RAMenuHelp_LoadText();
313 </OnLoad>
314 </Scripts>
315 </Button>
316 <Button name="CT_RAMenuHelpTemplateBuffs" virtual="true" hidden="false">
317 <Size>
318 <AbsDimension x="18" y="16"/>
319 </Size>
320 <Layers>
321 <Layer level="OVERLAY">
322 <FontString name="$parentText" inherits="GameFontNormalSmall" justifyH="RIGHT" text="[?]">
323 <Anchors>
324 <Anchor point="RIGHT">
325 <Offset>
326 <AbsDimension x="0" y="0"/>
327 </Offset>
328 </Anchor>
329 </Anchors>
330 </FontString>
331 </Layer>
332 </Layers>
333 <Scripts>
334 <OnEnter>
335 getglobal(this:GetName() .. "Text"):SetTextColor(1, 1, 1);
336 CT_RAMenuHelp_SetTooltip()
337 GameTooltip:SetText(this.text, 1, 0.72, 0, nil, 1);
338 </OnEnter>
339 <OnLeave>
340 getglobal(this:GetName() .. "Text"):SetTextColor(1, 0.82, 0);
341 GameTooltip:Hide();
342 </OnLeave>
343 <OnLoad>
344 this.text = "";
345 CT_RAMenuHelp_LoadText();
346 </OnLoad>
347 </Scripts>
348 </Button>
349 <Button name="CT_RAMenuHelpTemplateFAQ" virtual="true" hidden="false">
350 <Size>
351 <AbsDimension x="48" y="16"/>
352 </Size>
353 <Layers>
354 <Layer level="OVERLAY">
355 <FontString name="$parentText" inherits="ChatFontNormal" justifyH="RIGHT" text="[Answer]">
356 <Anchors>
357 <Anchor point="RIGHT">
358 <Offset>
359 <AbsDimension x="0" y="0"/>
360 </Offset>
361 </Anchor>
362 </Anchors>
363 </FontString>
364 </Layer>
365 </Layers>
366 <Scripts>
367 <OnEnter>
368 getglobal(this:GetName() .. "Text"):SetTextColor(0.82, 0.82, 0.82);
369 CT_RAMenuHelp_SetTooltip()
370 GameTooltip:SetText(this.text, 1, 0.72, 0, nil, 1);
371 </OnEnter>
372 <OnLeave>
373 getglobal(this:GetName() .. "Text"):SetTextColor(1, 1, 1);
374 GameTooltip:Hide();
375 </OnLeave>
376 <OnLoad>
377 this.text = "";
378 CT_RAMenuHelp_LoadText();
379 </OnLoad>
380 </Scripts>
381 </Button>
382 <Frame name="CT_RAMenuFrameBulletPointTemplate" virtual="true">
383 <Size>
384 <AbsDimension x="550" y="12"/>
385 </Size>
386 <Layers>
387 <Layer level="BACKGROUND">
388 <Texture file="Interface\QuestFrame\UI-Quest-BulletPoint">
389 <Size>
390 <AbsDimension x="16" y="16"/>
391 </Size>
392 <Anchors>
393 <Anchor point="TOPLEFT">
394 <Offset>
395 <AbsDimension x="0" y="0"/>
396 </Offset>
397 </Anchor>
398 </Anchors>
399 </Texture>
400 <FontString name="$parentText" inherits="GameFontHighlightSmall" justifyH="LEFT">
401 <Size>
402 <AbsDimension x="548" y="0"/>
403 </Size>
404 <Anchors>
405 <Anchor point="TOPLEFT">
406 <Offset>
407 <AbsDimension x="17" y="-3"/>
408 </Offset>
409 </Anchor>
410 </Anchors>
411 </FontString>
412 </Layer>
413 </Layers>
414 </Frame>
415 <Slider name="CT_RAMenuFrameSliderTemplate" virtual="true" inherits="OptionsSliderTemplate">
416 <Size>
417 <AbsDimension x="170" y="17"/>
418 </Size>
419 <Scripts>
420 <OnShow>
421 CT_RAMenuMisc_Slider_OnShow();
422 </OnShow>
423 <OnValueChanged>
424 CT_RAMenuMisc_Slider_OnChange();
425 </OnValueChanged>
426 <OnEvent>
427 CT_RAMenuMisc_Slider_OnEvent();
428 </OnEvent>
429 </Scripts>
430 </Slider>
431 <Button name="CT_RAMenuFrameButtonTemplate" inherits="HelpFrameHomeButtonTemplate" virtual="true">
432 <Size>
433 <AbsDimension x="623" y="37"/>
434 </Size>
435 <Scripts>
436 <OnClick>
437 CT_RAMenuButton_OnClick();
438 </OnClick>
439 </Scripts>
440 </Button>
441  
442 <Frame name="CT_RAMenuBuffTemplate" virtual="true" hidden="false">
443 <Size>
444 <AbsDimension x="200" y="16"/>
445 </Size>
446 <Frames>
447 <CheckButton name="$parentCheckButton" hidden="false" inherits="OptionsCheckButtonTemplate">
448 <Anchors>
449 <Anchor point="TOPLEFT"/>
450 </Anchors>
451 <HitRectInsets>
452 <AbsInset left="0" right="0" top="0" bottom="0"/>
453 </HitRectInsets>
454 <Size>
455 <AbsDimension x="24" y="24"/>
456 </Size>
457 <Scripts>
458 <OnClick>
459 CT_RAMenuBuff_ShowToggle();
460 </OnClick>
461 </Scripts>
462 </CheckButton>
463 <Button name="$parentMoveUp" inherits="UIPanelScrollUpButtonTemplate" hidden="false">
464 <Anchors>
465 <Anchor point="LEFT">
466 <Offset>
467 <AbsDimension x="165" y="-5"/>
468 </Offset>
469 </Anchor>
470 </Anchors>
471 <Scripts>
472 <OnClick>
473 CT_RAMenuBuff_Move(-1);
474 </OnClick>
475 </Scripts>
476 </Button>
477 <Button name="$parentMoveDown" inherits="UIPanelScrollDownButtonTemplate" hidden="false">
478 <Anchors>
479 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentMoveUp">
480 <Offset>
481 <AbsDimension x="3" y="0"/>
482 </Offset>
483 </Anchor>
484 </Anchors>
485 <Scripts>
486 <OnClick>
487 CT_RAMenuBuff_Move(1);
488 </OnClick>
489 </Scripts>
490 </Button>
491 </Frames>
492 <Layers>
493 <Layer level="ARTWORK">
494 <FontString name="$parentText" justifyV="top" justifyH="left" inherits="ChatFontNormal" text="">
495 <Anchors>
496 <Anchor point="TOPLEFT">
497 <Offset>
498 <AbsDimension x="25" y="-5"/>
499 </Offset>
500 </Anchor>
501 </Anchors>
502 </FontString>
503 </Layer>
504 </Layers>
505 <Scripts>
506 <OnEnter>
507 if ( this.tooltip ) then
508 CT_RAMenuHelp_SetTooltip();
509 GameTooltip:SetText(this.tooltip);
510 end
511 </OnEnter>
512 <OnLeave>
513 GameTooltip:Hide();
514 </OnLeave>
515 </Scripts>
516 </Frame>
517 <Frame name="CT_RAMenuNotifyGroupTemplate" virtual="true" hidden="false">
518 <Size>
519 <AbsDimension x="100" y="16"/>
520 </Size>
521 <Frames>
522 <CheckButton name="$parentCheckButton" hidden="false" inherits="OptionsCheckButtonTemplate">
523 <Anchors>
524 <Anchor point="TOPLEFT"/>
525 </Anchors>
526 <HitRectInsets>
527 <AbsInset left="0" right="0" top="0" bottom="0"/>
528 </HitRectInsets>
529 <Size>
530 <AbsDimension x="24" y="24"/>
531 </Size>
532 <Scripts>
533 <OnClick>
534 CT_RAMenuNotifyGroup_SetChecked();
535 </OnClick>
536 </Scripts>
537 </CheckButton>
538 </Frames>
539 <Layers>
540 <Layer level="ARTWORK">
541 <FontString name="$parentText" justifyV="top" justifyH="left" inherits="ChatFontNormal" text="">
542 <Anchors>
543 <Anchor point="TOPLEFT">
544 <Offset>
545 <AbsDimension x="25" y="-5"/>
546 </Offset>
547 </Anchor>
548 </Anchors>
549 </FontString>
550 </Layer>
551 </Layers>
552 </Frame>
553 <Frame name="CT_RAMenuNotifyClassTemplate" virtual="true" hidden="false">
554 <Size>
555 <AbsDimension x="100" y="16"/>
556 </Size>
557 <Frames>
558 <CheckButton name="$parentCheckButton" hidden="false" inherits="OptionsCheckButtonTemplate">
559 <Anchors>
560 <Anchor point="TOPLEFT"/>
561 </Anchors>
562 <HitRectInsets>
563 <AbsInset left="0" right="0" top="0" bottom="0"/>
564 </HitRectInsets>
565 <Size>
566 <AbsDimension x="24" y="24"/>
567 </Size>
568 <Scripts>
569 <OnClick>
570 CT_RAMenuNotifyClass_SetChecked();
571 </OnClick>
572 </Scripts>
573 </CheckButton>
574 </Frames>
575 <Layers>
576 <Layer level="ARTWORK">
577 <FontString name="$parentText" justifyV="top" justifyH="left" inherits="ChatFontNormal" text="">
578 <Anchors>
579 <Anchor point="TOPLEFT">
580 <Offset>
581 <AbsDimension x="25" y="-5"/>
582 </Offset>
583 </Anchor>
584 </Anchors>
585 </FontString>
586 </Layer>
587 </Layers>
588 </Frame>
589  
590 <Frame name="CT_RAMenuDebuffTemplate" inherits="CT_RAMenuBuffTemplate" virtual="true" hidden="false">
591 <Frames>
592 <Button name="$parentSwatch" hidden="false">
593 <Size>
594 <AbsDimension x="16" y="16"/>
595 </Size>
596 <Anchors>
597 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentCheckButton">
598 <Offset>
599 <AbsDimension x="120" y="0"/>
600 </Offset>
601 </Anchor>
602 </Anchors>
603 <Layers>
604 <Layer level="BACKGROUND">
605 <Texture name="$parentBG">
606 <Size>
607 <AbsDimension x="14" y="14"/>
608 </Size>
609 <Color r="1.0" g="1.0" b="1.0"/>
610 <Anchors>
611 <Anchor point="CENTER"/>
612 </Anchors>
613 </Texture>
614 </Layer>
615 </Layers>
616 <Scripts>
617 <OnClick>
618 CT_RAMenuDebuff_OnClick();
619 </OnClick>
620 <OnEnter>
621 getglobal(this:GetName().."BG"):SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
622 </OnEnter>
623 <OnLeave>
624 getglobal(this:GetName().."BG"):SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
625 </OnLeave>
626 </Scripts>
627 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
628 </Button>
629 </Frames>
630 </Frame>
631  
632 <Frame name="CT_RAMenuFrame" toplevel="true" parent="UIParent" movable="true" enableMouse="true" hidden="true">
633 <Size>
634 <AbsDimension x="640" y="512"/>
635 </Size>
636 <Anchors>
637 <Anchor point="CENTER">
638 <Offset>
639 <AbsDimension x="0" y="0"/>
640 </Offset>
641 </Anchor>
642 </Anchors>
643 <HitRectInsets>
644 <AbsInset left="0" right="44" top="0" bottom="13"/>
645 </HitRectInsets>
646 <Layers>
647 <Layer level="BACKGROUND">
648 <Texture file="Interface\HelpFrame\HelpFrame-TopLeft">
649 <Size>
650 <AbsDimension x="256" y="256"/>
651 </Size>
652 <Anchors>
653 <Anchor point="TOPLEFT"/>
654 </Anchors>
655 </Texture>
656 <Texture file="Interface\HelpFrame\HelpFrame-Top">
657 <Size>
658 <AbsDimension x="256" y="256"/>
659 </Size>
660 <Anchors>
661 <Anchor point="TOPLEFT">
662 <Offset>
663 <AbsDimension x="256" y="0"/>
664 </Offset>
665 </Anchor>
666 </Anchors>
667 </Texture>
668 <Texture file="Interface\HelpFrame\HelpFrame-TopRight">
669 <Size>
670 <AbsDimension x="128" y="256"/>
671 </Size>
672 <Anchors>
673 <Anchor point="TOPRIGHT"/>
674 </Anchors>
675 </Texture>
676 <Texture file="Interface\HelpFrame\HelpFrame-BotLeft">
677 <Size>
678 <AbsDimension x="256" y="256"/>
679 </Size>
680 <Anchors>
681 <Anchor point="BOTTOMLEFT"/>
682 </Anchors>
683 </Texture>
684 <Texture file="Interface\HelpFrame\HelpFrame-Bottom">
685 <Size>
686 <AbsDimension x="256" y="256"/>
687 </Size>
688 <Anchors>
689 <Anchor point="BOTTOMLEFT">
690 <Offset>
691 <AbsDimension x="256" y="0"/>
692 </Offset>
693 </Anchor>
694 </Anchors>
695 </Texture>
696 <Texture file="Interface\HelpFrame\HelpFrame-BotRight">
697 <Size>
698 <AbsDimension x="128" y="256"/>
699 </Size>
700 <Anchors>
701 <Anchor point="BOTTOMRIGHT"/>
702 </Anchors>
703 </Texture>
704 </Layer>
705 <Layer level="ARTWORK">
706 <Texture name="CT_RAMenuFrameHeader" file="Interface\DialogFrame\UI-DialogBox-Header">
707 <Size>
708 <AbsDimension x="336" y="64"/>
709 </Size>
710 <Anchors>
711 <Anchor point="TOP">
712 <Offset>
713 <AbsDimension x="-12" y="12"/>
714 </Offset>
715 </Anchor>
716 </Anchors>
717 </Texture>
718 <FontString inherits="GameFontNormal" text="CT_RaidAssist">
719 <Anchors>
720 <Anchor point="TOP" relativeTo="CT_RAMenuFrameHeader">
721 <Offset>
722 <AbsDimension x="0" y="-14"/>
723 </Offset>
724 </Anchor>
725 </Anchors>
726 </FontString>
727 </Layer>
728 </Layers>
729 <Frames>
730 <Button name="CT_RAMenuFrameCloseButton" inherits="UIPanelCloseButton">
731 <Anchors>
732 <Anchor point="TOPRIGHT">
733 <Offset>
734 <AbsDimension x="-42" y="-3"/>
735 </Offset>
736 </Anchor>
737 </Anchors>
738 </Button>
739 <Frame name="CT_RAMenuFrameDrag">
740 <Size>
741 <AbsDimension x="336" y="64"/>
742 </Size>
743 <Anchors>
744 <Anchor point="TOP">
745 <Offset>
746 <AbsDimension x="-12" y="12"/>
747 </Offset>
748 </Anchor>
749 </Anchors>
750 <Scripts>
751 <OnMouseDown>
752 if ( arg1 == "LeftButton" ) then
753 if ( CT_RAMenu_Locked == 0 ) then
754 this:GetParent():StartMoving();
755 end
756 elseif ( arg1 == "RightButton" ) then
757 this:GetParent():ClearAllPoints();
758 this:GetParent():SetPoint("CENTER", "UIParent", "CENTER");
759 end
760 </OnMouseDown>
761 <OnMouseUp>
762 this:GetParent():StopMovingOrSizing();
763 </OnMouseUp>
764 <OnEnter>
765 if ( CT_RAMenu_Locked == 0 ) then
766 CT_RAMenuHelp_SetTooltip();
767 GameTooltip:SetText("Left-click to drag\nRight-click to reset");
768 end
769 </OnEnter>
770 <OnLeave>
771 GameTooltip:Hide();
772 </OnLeave>
773 </Scripts>
774 </Frame>
775 <Frame name="CT_RAMenuFrameHome" setAllPoints="true" hidden="true">
776 <Layers>
777 <Layer level="BACKGROUND">
778 <FontString inherits="GameFontHighlightSmall" text="Thank you!">
779 <Anchors>
780 <Anchor point="TOP">
781 <Offset>
782 <AbsDimension x="0" y="-60"/>
783 </Offset>
784 </Anchor>
785 </Anchors>
786 </FontString>
787 <FontString name="$parentDescript" inherits="GameFontNormal" text="CT_RAMENU_HOME" justifyH="LEFT" justifyV="TOP">
788 <Size>
789 <AbsDimension x="545" y="85"/>
790 </Size>
791 <Anchors>
792 <Anchor point="TOPLEFT">
793 <Offset>
794 <AbsDimension x="25" y="-75"/>
795 </Offset>
796 </Anchor>
797 </Anchors>
798 </FontString>
799 </Layer>
800 </Layers>
801 <Frames>
802 <Button name="$parentButton1" inherits="CT_RAMenuFrameButtonTemplate" id="1"> <!-- General Options -->
803 <Anchors>
804 <Anchor point="TOPLEFT">
805 <Offset>
806 <AbsDimension x="20" y="-225"/>
807 </Offset>
808 </Anchor>
809 </Anchors>
810 </Button>
811 <Button name="$parentButton2" inherits="CT_RAMenuFrameButtonTemplate" id="2"> <!-- Buff Options -->
812 <Anchors>
813 <Anchor point="TOPLEFT" relativeTo="$parentButton1" relativePoint="BOTTOMLEFT">
814 <Offset>
815 <AbsDimension x="0" y="0"/>
816 </Offset>
817 </Anchor>
818 </Anchors>
819 </Button>
820 <Button name="$parentButton3" inherits="CT_RAMenuFrameButtonTemplate" id="3"> <!--Misc -->
821 <Anchors>
822 <Anchor point="TOPLEFT" relativeTo="$parentButton2" relativePoint="BOTTOMLEFT">
823 <Offset>
824 <AbsDimension x="0" y="0"/>
825 </Offset>
826 </Anchor>
827 </Anchors>
828 </Button>
829 <Button name="$parentButton4" inherits="CT_RAMenuFrameButtonTemplate" id="4"> <!--Additional Options -->
830 <Anchors>
831 <Anchor point="TOPLEFT" relativeTo="$parentButton3" relativePoint="BOTTOMLEFT">
832 <Offset>
833 <AbsDimension x="0" y="0"/>
834 </Offset>
835 </Anchor>
836 </Anchors>
837 </Button>
838 <Button name="$parentButton5" inherits="CT_RAMenuFrameButtonTemplate" id="5"> <!--Debuff Curing-->
839 <Anchors>
840 <Anchor point="TOPLEFT" relativeTo="$parentButton4" relativePoint="BOTTOMLEFT">
841 <Offset>
842 <AbsDimension x="0" y="0"/>
843 </Offset>
844 </Anchor>
845 </Anchors>
846 </Button>
847 <Button name="$parentButton6" inherits="CT_RAMenuFrameButtonTemplate" id="6"> <!--Option Sets-->
848 <Anchors>
849 <Anchor point="TOPLEFT" relativeTo="$parentButton5" relativePoint="BOTTOMLEFT">
850 <Offset>
851 <AbsDimension x="0" y="0"/>
852 </Offset>
853 </Anchor>
854 </Anchors>
855 </Button>
856  
857 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
858 <Anchors>
859 <Anchor point="BOTTOMRIGHT">
860 <Offset>
861 <AbsDimension x="-53" y="21"/>
862 </Offset>
863 </Anchor>
864 </Anchors>
865 <Scripts>
866 <OnClick>
867 HideUIPanel(CT_RAMenuFrame);
868 </OnClick>
869 </Scripts>
870 </Button>
871 <Button name="$parentLock" inherits="GameMenuButtonTemplate" text="Unlock" hidden="false">
872 <Anchors>
873 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
874 <Offset>
875 <AbsDimension x="-5" y="0"/>
876 </Offset>
877 </Anchor>
878 </Anchors>
879 <Scripts>
880 <OnClick>
881 if ( CT_RAMenu_Locked == 0 ) then
882 CT_RAMenu_Locked = 1;
883 this:SetText("Unlock");
884 else
885 CT_RAMenu_Locked = 0;
886 this:SetText("Lock");
887 end
888 </OnClick>
889 </Scripts>
890 </Button>
891 </Frames>
892 </Frame>
893 <Frame name="CT_RAMenuFrameGeneral" setAllPoints="true" hidden="true">
894 <Layers>
895 <Layer level="BACKGROUND">
896 <FontString name="$parentTitle" inherits="GameFontHighlightSmall" text="General Options">
897 <Anchors>
898 <Anchor point="TOP">
899 <Offset>
900 <AbsDimension x="0" y="-60"/>
901 </Offset>
902 </Anchor>
903 </Anchors>
904 </FontString>
905 <FontString inherits="GameFontNormal" justifyH="LEFT" text="CT_RAMENU_GENERALDESCRIPT">
906 <Size>
907 <AbsDimension x="550" y="100"/>
908 </Size>
909 <Anchors>
910 <Anchor point="TOPLEFT">
911 <Offset>
912 <AbsDimension x="25" y="-60"/>
913 </Offset>
914 </Anchor>
915 </Anchors>
916 </FontString>
917 </Layer>
918 </Layers>
919 <Frames>
920 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
921 <Anchors>
922 <Anchor point="BOTTOMRIGHT">
923 <Offset>
924 <AbsDimension x="-53" y="21"/>
925 </Offset>
926 </Anchor>
927 </Anchors>
928 <Scripts>
929 <OnClick>
930 HideUIPanel(CT_RAMenuFrame);
931 </OnClick>
932 </Scripts>
933 </Button>
934 <Button name="$parentBack" inherits="GameMenuButtonTemplate" text="Back">
935 <Anchors>
936 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
937 <Offset>
938 <AbsDimension x="-5" y="0"/>
939 </Offset>
940 </Anchor>
941 </Anchors>
942 <Scripts>
943 <OnClick>
944 CT_RAMenu_ShowHome();
945 </OnClick>
946 </Scripts>
947 </Button>
948 <Frame name="$parentDisplay">
949 <Size>
950 <AbsDimension x="250" y="170"/>
951 </Size>
952 <Anchors>
953 <Anchor point="TOPLEFT">
954 <Offset>
955 <AbsDimension x="35" y="-165"/>
956 </Offset>
957 </Anchor>
958 </Anchors>
959 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
960 <EdgeSize>
961 <AbsValue val="16"/>
962 </EdgeSize>
963 <TileSize>
964 <AbsValue val="16"/>
965 </TileSize>
966 <BackgroundInsets>
967 <AbsInset left="5" right="5" top="5" bottom="5"/>
968 </BackgroundInsets>
969 </Backdrop>
970 <Layers>
971 <Layer level="ARTWORK">
972 <FontString name="$parentName" inherits="GameFontNormal" text="Display">
973 <Anchors>
974 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
975 <Offset>
976 <AbsDimension x="15" y="0"/>
977 </Offset>
978 </Anchor>
979 </Anchors>
980 </FontString>
981 <FontString name="$parentShowGroupsText" inherits="ChatFontNormal" text="Show Group Names">
982 <Anchors>
983 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
984 <Offset>
985 <AbsDimension x="35" y="-10"/>
986 </Offset>
987 </Anchor>
988 </Anchors>
989 </FontString>
990 <FontString name="$parentLockGroupsText" inherits="ChatFontNormal" text="Lock Group Positions">
991 <Anchors>
992 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
993 <Offset>
994 <AbsDimension x="35" y="-30"/>
995 </Offset>
996 </Anchor>
997 </Anchors>
998 </FontString>
999 <FontString name="$parentShowMPText" inherits="ChatFontNormal" text="Hide Mana Bars">
1000 <Anchors>
1001 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1002 <Offset>
1003 <AbsDimension x="35" y="-50"/>
1004 </Offset>
1005 </Anchor>
1006 </Anchors>
1007 </FontString>
1008 <FontString name="$parentShowHPText" inherits="ChatFontNormal" text="Hide Health Bars">
1009 <Anchors>
1010 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1011 <Offset>
1012 <AbsDimension x="35" y="-70"/>
1013 </Offset>
1014 </Anchor>
1015 </Anchors>
1016 </FontString>
1017 <FontString name="$parentShowRPText" inherits="ChatFontNormal" text="Hide Rage/Energy Bars">
1018 <Anchors>
1019 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1020 <Offset>
1021 <AbsDimension x="35" y="-90"/>
1022 </Offset>
1023 </Anchor>
1024 </Anchors>
1025 </FontString>
1026 <FontString name="$parentHealthText" inherits="ChatFontNormal" text="Health:">
1027 <Anchors>
1028 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1029 <Offset>
1030 <AbsDimension x="15" y="-110"/>
1031 </Offset>
1032 </Anchor>
1033 </Anchors>
1034 </FontString>
1035 <FontString name="$parentWindowColorText" inherits="ChatFontNormal" text="Window BG Color">
1036 <Anchors>
1037 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1038 <Offset>
1039 <AbsDimension x="35" y="-130"/>
1040 </Offset>
1041 </Anchor>
1042 </Anchors>
1043 </FontString>
1044 <FontString name="$parentAlertColorText" inherits="ChatFontNormal" text="Alert Message Color">
1045 <Anchors>
1046 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1047 <Offset>
1048 <AbsDimension x="35" y="-150"/>
1049 </Offset>
1050 </Anchor>
1051 </Anchors>
1052 </FontString>
1053 </Layer>
1054 </Layers>
1055 <Frames>
1056 <CheckButton name="$parentShowGroupsCB" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
1057 <Anchors>
1058 <Anchor point="TOPLEFT">
1059 <Offset>
1060 <AbsDimension x="10" y="-7"/>
1061 </Offset>
1062 </Anchor>
1063 </Anchors>
1064 <HitRectInsets>
1065 <AbsInset left="0" right="0" top="0" bottom="0"/>
1066 </HitRectInsets>
1067 <Size>
1068 <AbsDimension x="24" y="24"/>
1069 </Size>
1070 <Scripts>
1071 <OnClick>
1072 CT_RAMenuDisplay_ShowGroupNames();
1073 </OnClick>
1074 </Scripts>
1075 </CheckButton>
1076 <CheckButton name="$parentLockGroupsCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1077 <Anchors>
1078 <Anchor point="TOPLEFT">
1079 <Offset>
1080 <AbsDimension x="10" y="-27"/>
1081 </Offset>
1082 </Anchor>
1083 </Anchors>
1084 <HitRectInsets>
1085 <AbsInset left="0" right="0" top="0" bottom="0"/>
1086 </HitRectInsets>
1087 <Size>
1088 <AbsDimension x="24" y="24"/>
1089 </Size>
1090 <Scripts>
1091 <OnClick>
1092 CT_RAMenuDisplay_LockGroups();
1093 </OnClick>
1094 </Scripts>
1095 </CheckButton>
1096  
1097 <CheckButton name="$parentShowMPCB" checked="false" hidden="false" inherits="OptionsCheckButtonTemplate">
1098 <Anchors>
1099 <Anchor point="TOPLEFT">
1100 <Offset>
1101 <AbsDimension x="10" y="-47"/>
1102 </Offset>
1103 </Anchor>
1104 </Anchors>
1105 <HitRectInsets>
1106 <AbsInset left="0" right="0" top="0" bottom="0"/>
1107 </HitRectInsets>
1108 <Size>
1109 <AbsDimension x="24" y="24"/>
1110 </Size>
1111 <Scripts>
1112 <OnClick>
1113 CT_RAMenuDisplay_ShowMP();
1114 </OnClick>
1115 </Scripts>
1116 </CheckButton>
1117 <CheckButton name="$parentShowRPCB" checked="false" hidden="false" inherits="OptionsCheckButtonTemplate">
1118 <Anchors>
1119 <Anchor point="TOPLEFT">
1120 <Offset>
1121 <AbsDimension x="10" y="-87"/>
1122 </Offset>
1123 </Anchor>
1124 </Anchors>
1125 <HitRectInsets>
1126 <AbsInset left="0" right="0" top="0" bottom="0"/>
1127 </HitRectInsets>
1128 <Size>
1129 <AbsDimension x="24" y="24"/>
1130 </Size>
1131 <Scripts>
1132 <OnClick>
1133 CT_RAMenuDisplay_ShowRP();
1134 </OnClick>
1135 </Scripts>
1136 </CheckButton>
1137 <Frame name="$parentHealthDropDown" inherits="UIDropDownMenuTemplate" hidden="false">
1138 <Size>
1139 <AbsDimension x="128" y="16"/>
1140 </Size>
1141 <Anchors>
1142 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentHealthText">
1143 <Offset>
1144 <AbsDimension x="-10" y="-3"/>
1145 </Offset>
1146 </Anchor>
1147 </Anchors>
1148 <Scripts>
1149 <OnLoad>
1150 CT_RAMenuFrameGeneralDisplayHealthDropDown_OnLoad();
1151 </OnLoad>
1152 </Scripts>
1153 </Frame>
1154 <CheckButton name="$parentShowHealthCB" checked="false" hidden="false" inherits="OptionsCheckButtonTemplate">
1155 <Anchors>
1156 <Anchor point="TOPLEFT">
1157 <Offset>
1158 <AbsDimension x="10" y="-67"/>
1159 </Offset>
1160 </Anchor>
1161 </Anchors>
1162 <HitRectInsets>
1163 <AbsInset left="0" right="0" top="0" bottom="0"/>
1164 </HitRectInsets>
1165 <Size>
1166 <AbsDimension x="24" y="24"/>
1167 </Size>
1168 <Scripts>
1169 <OnClick>
1170 CT_RAMenuDisplay_ShowHealth();
1171 </OnClick>
1172 </Scripts>
1173 </CheckButton>
1174 <Button name="$parentShowHPSwatch" hidden="false">
1175 <Size>
1176 <AbsDimension x="16" y="16"/>
1177 </Size>
1178 <Anchors>
1179 <Anchor point="TOPRIGHT">
1180 <Offset>
1181 <AbsDimension x="-14" y="-110"/>
1182 </Offset>
1183 </Anchor>
1184 </Anchors>
1185 <Layers>
1186 <Layer level="BACKGROUND">
1187 <Texture name="$parentBG">
1188 <Size>
1189 <AbsDimension x="14" y="14"/>
1190 </Size>
1191 <Color r="1.0" g="1.0" b="1.0"/>
1192 <Anchors>
1193 <Anchor point="CENTER"/>
1194 </Anchors>
1195 </Texture>
1196 </Layer>
1197 </Layers>
1198 <Scripts>
1199 <OnClick>
1200 CT_RAMenuDisplay_ChangeTC();
1201 </OnClick>
1202 <OnEnter>
1203 getglobal(this:GetName().."BG"):SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
1204 </OnEnter>
1205 <OnLeave>
1206 getglobal(this:GetName().."BG"):SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
1207 </OnLeave>
1208 </Scripts>
1209 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
1210 </Button>
1211 <Button name="$parentWindowColorSwatch" hidden="false">
1212 <Size>
1213 <AbsDimension x="16" y="16"/>
1214 </Size>
1215 <Anchors>
1216 <Anchor point="TOPLEFT">
1217 <Offset>
1218 <AbsDimension x="14" y="-129"/>
1219 </Offset>
1220 </Anchor>
1221 </Anchors>
1222 <Layers>
1223 <Layer level="BACKGROUND">
1224 <Texture name="$parentBG">
1225 <Size>
1226 <AbsDimension x="14" y="14"/>
1227 </Size>
1228 <Color r="1.0" g="1.0" b="1.0"/>
1229 <Anchors>
1230 <Anchor point="CENTER"/>
1231 </Anchors>
1232 </Texture>
1233 </Layer>
1234 </Layers>
1235 <Scripts>
1236 <OnClick>
1237 CT_RAMenuDisplay_ChangeWC();
1238 </OnClick>
1239 <OnEnter>
1240 getglobal(this:GetName().."BG"):SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
1241 </OnEnter>
1242 <OnLeave>
1243 getglobal(this:GetName().."BG"):SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
1244 </OnLeave>
1245 </Scripts>
1246 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
1247 </Button>
1248 <Button name="$parentAlertColorSwatch" hidden="false">
1249 <Size>
1250 <AbsDimension x="16" y="16"/>
1251 </Size>
1252 <Anchors>
1253 <Anchor point="TOPLEFT">
1254 <Offset>
1255 <AbsDimension x="14" y="-149"/>
1256 </Offset>
1257 </Anchor>
1258 </Anchors>
1259 <Layers>
1260 <Layer level="BACKGROUND">
1261 <Texture name="$parentBG">
1262 <Size>
1263 <AbsDimension x="14" y="14"/>
1264 </Size>
1265 <Color r="1.0" g="1.0" b="1.0"/>
1266 <Anchors>
1267 <Anchor point="CENTER"/>
1268 </Anchors>
1269 </Texture>
1270 </Layer>
1271 </Layers>
1272 <Scripts>
1273 <OnClick>
1274 CT_RAMenuDisplay_ChangeAC();
1275 </OnClick>
1276 <OnEnter>
1277 getglobal(this:GetName().."BG"):SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
1278 </OnEnter>
1279 <OnLeave>
1280 getglobal(this:GetName().."BG"):SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
1281 </OnLeave>
1282 </Scripts>
1283 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
1284 </Button>
1285 </Frames>
1286 </Frame>
1287 <Frame name="$parentMisc">
1288 <Size>
1289 <AbsDimension x="250" y="200"/>
1290 </Size>
1291 <Anchors>
1292 <Anchor point="TOPRIGHT">
1293 <Offset>
1294 <AbsDimension x="-70" y="-160"/>
1295 </Offset>
1296 </Anchor>
1297 </Anchors>
1298 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
1299 <EdgeSize>
1300 <AbsValue val="16"/>
1301 </EdgeSize>
1302 <TileSize>
1303 <AbsValue val="16"/>
1304 </TileSize>
1305 <BackgroundInsets>
1306 <AbsInset left="5" right="5" top="5" bottom="5"/>
1307 </BackgroundInsets>
1308 </Backdrop>
1309 <Layers>
1310 <Layer level="ARTWORK">
1311 <FontString name="$parentName" inherits="GameFontNormal" text="Misc.">
1312 <Anchors>
1313 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
1314 <Offset>
1315 <AbsDimension x="15" y="0"/>
1316 </Offset>
1317 </Anchor>
1318 </Anchors>
1319 </FontString>
1320 <FontString name="$parentHideOfflineText" inherits="ChatFontNormal" text="Hide offline members">
1321 <Anchors>
1322 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1323 <Offset>
1324 <AbsDimension x="35" y="-10"/>
1325 </Offset>
1326 </Anchor>
1327 </Anchors>
1328 </FontString>
1329 <FontString name="$parentSortAlphaText" inherits="ChatFontNormal" text="Sort players in groups alphabetically">
1330 <Anchors>
1331 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1332 <Offset>
1333 <AbsDimension x="35" y="-30"/>
1334 </Offset>
1335 </Anchor>
1336 </Anchors>
1337 </FontString>
1338 <FontString name="$parentBorderText" inherits="ChatFontNormal" text="Hide border">
1339 <Anchors>
1340 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1341 <Offset>
1342 <AbsDimension x="35" y="-50"/>
1343 </Offset>
1344 </Anchor>
1345 </Anchors>
1346 </FontString>
1347 <FontString name="$parentRemoveSpacingText" inherits="ChatFontNormal" text="Remove spacing">
1348 <Anchors>
1349 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1350 <Offset>
1351 <AbsDimension x="60" y="-70"/>
1352 </Offset>
1353 </Anchor>
1354 </Anchors>
1355 </FontString>
1356 <FontString name="$parentShowMTsText" inherits="ChatFontNormal" text="Display Main Tanks">
1357 <Anchors>
1358 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1359 <Offset>
1360 <AbsDimension x="35" y="-90"/>
1361 </Offset>
1362 </Anchor>
1363 </Anchors>
1364 </FontString>
1365 <FontString name="$parentShowMetersText" inherits="ChatFontNormal" text="Display RaidStatus">
1366 <Anchors>
1367 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1368 <Offset>
1369 <AbsDimension x="35" y="-110"/>
1370 </Offset>
1371 </Anchor>
1372 </Anchors>
1373 </FontString>
1374 <FontString name="$parentShowHorizontalText" inherits="ChatFontNormal" text="Show groups horizontally">
1375 <Anchors>
1376 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1377 <Offset>
1378 <AbsDimension x="35" y="-130"/>
1379 </Offset>
1380 </Anchor>
1381 </Anchors>
1382 </FontString>
1383 <FontString name="$parentShowReversedText" inherits="ChatFontNormal" text="Expand Groups Upwards">
1384 <Anchors>
1385 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1386 <Offset>
1387 <AbsDimension x="35" y="-150"/>
1388 </Offset>
1389 </Anchor>
1390 </Anchors>
1391 </FontString>
1392 <FontString name="$parentSortText" inherits="ChatFontNormal" text="Sort Type:">
1393 <Anchors>
1394 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1395 <Offset>
1396 <AbsDimension x="15" y="-170"/>
1397 </Offset>
1398 </Anchor>
1399 </Anchors>
1400 </FontString>
1401 </Layer>
1402 </Layers>
1403 <Frames>
1404 <CheckButton name="$parentHideOfflineCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1405 <Anchors>
1406 <Anchor point="TOPLEFT">
1407 <Offset>
1408 <AbsDimension x="10" y="-7"/>
1409 </Offset>
1410 </Anchor>
1411 </Anchors>
1412 <HitRectInsets>
1413 <AbsInset left="0" right="0" top="0" bottom="0"/>
1414 </HitRectInsets>
1415 <Size>
1416 <AbsDimension x="24" y="24"/>
1417 </Size>
1418 <Scripts>
1419 <OnClick>
1420 CT_RAMenuGeneral_HideOffline();
1421 </OnClick>
1422 </Scripts>
1423 </CheckButton>
1424 <CheckButton name="$parentSortAlphaCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1425 <Anchors>
1426 <Anchor point="TOPLEFT">
1427 <Offset>
1428 <AbsDimension x="10" y="-27"/>
1429 </Offset>
1430 </Anchor>
1431 </Anchors>
1432 <HitRectInsets>
1433 <AbsInset left="0" right="0" top="0" bottom="0"/>
1434 </HitRectInsets>
1435 <Size>
1436 <AbsDimension x="24" y="24"/>
1437 </Size>
1438 <Scripts>
1439 <OnClick>
1440 CT_RAMenuGeneral_SortAlpha();
1441 </OnClick>
1442 </Scripts>
1443 </CheckButton>
1444 <CheckButton name="$parentBorderCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1445 <Anchors>
1446 <Anchor point="TOPLEFT">
1447 <Offset>
1448 <AbsDimension x="10" y="-47"/>
1449 </Offset>
1450 </Anchor>
1451 </Anchors>
1452 <HitRectInsets>
1453 <AbsInset left="0" right="0" top="0" bottom="0"/>
1454 </HitRectInsets>
1455 <Size>
1456 <AbsDimension x="24" y="24"/>
1457 </Size>
1458 <Scripts>
1459 <OnClick>
1460 CT_RAMenuGeneral_HideBorder();
1461 </OnClick>
1462 </Scripts>
1463 </CheckButton>
1464 <CheckButton name="$parentRemoveSpacingCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1465 <Anchors>
1466 <Anchor point="TOPLEFT">
1467 <Offset>
1468 <AbsDimension x="35" y="-67"/>
1469 </Offset>
1470 </Anchor>
1471 </Anchors>
1472 <HitRectInsets>
1473 <AbsInset left="0" right="0" top="0" bottom="0"/>
1474 </HitRectInsets>
1475 <Size>
1476 <AbsDimension x="24" y="24"/>
1477 </Size>
1478 <Scripts>
1479 <OnClick>
1480 CT_RAMenuGeneral_RemoveSpacing();
1481 </OnClick>
1482 </Scripts>
1483 </CheckButton>
1484 <CheckButton name="$parentShowMTsCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1485 <Anchors>
1486 <Anchor point="TOPLEFT">
1487 <Offset>
1488 <AbsDimension x="10" y="-87"/>
1489 </Offset>
1490 </Anchor>
1491 </Anchors>
1492 <HitRectInsets>
1493 <AbsInset left="0" right="0" top="0" bottom="0"/>
1494 </HitRectInsets>
1495 <Size>
1496 <AbsDimension x="24" y="24"/>
1497 </Size>
1498 <Scripts>
1499 <OnClick>
1500 CT_RAMenuGeneral_ShowMTs();
1501 </OnClick>
1502 </Scripts>
1503 </CheckButton>
1504 <CheckButton name="$parentShowMetersCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1505 <Anchors>
1506 <Anchor point="TOPLEFT">
1507 <Offset>
1508 <AbsDimension x="10" y="-107"/>
1509 </Offset>
1510 </Anchor>
1511 </Anchors>
1512 <HitRectInsets>
1513 <AbsInset left="0" right="0" top="0" bottom="0"/>
1514 </HitRectInsets>
1515 <Size>
1516 <AbsDimension x="24" y="24"/>
1517 </Size>
1518 <Scripts>
1519 <OnClick>
1520 CT_RAMenuGeneral_ShowMeters();
1521 </OnClick>
1522 </Scripts>
1523 </CheckButton>
1524 <CheckButton name="$parentShowHorizontalCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1525 <Anchors>
1526 <Anchor point="TOPLEFT">
1527 <Offset>
1528 <AbsDimension x="10" y="-127"/>
1529 </Offset>
1530 </Anchor>
1531 </Anchors>
1532 <HitRectInsets>
1533 <AbsInset left="0" right="0" top="0" bottom="0"/>
1534 </HitRectInsets>
1535 <Size>
1536 <AbsDimension x="24" y="24"/>
1537 </Size>
1538 <Scripts>
1539 <OnClick>
1540 CT_RAMenuGeneral_ShowHorizontal();
1541 </OnClick>
1542 </Scripts>
1543 </CheckButton>
1544 <CheckButton name="$parentShowReversedCB" hidden="false" inherits="OptionsCheckButtonTemplate">
1545 <Anchors>
1546 <Anchor point="TOPLEFT">
1547 <Offset>
1548 <AbsDimension x="10" y="-147"/>
1549 </Offset>
1550 </Anchor>
1551 </Anchors>
1552 <HitRectInsets>
1553 <AbsInset left="0" right="0" top="0" bottom="0"/>
1554 </HitRectInsets>
1555 <Size>
1556 <AbsDimension x="24" y="24"/>
1557 </Size>
1558 <Scripts>
1559 <OnClick>
1560 CT_RAMenuGeneral_ShowReversed();
1561 </OnClick>
1562 </Scripts>
1563 </CheckButton>
1564 <Frame name="$parentDropDown" inherits="UIDropDownMenuTemplate" hidden="false">
1565 <Size>
1566 <AbsDimension x="128" y="16"/>
1567 </Size>
1568 <Anchors>
1569 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentSortText">
1570 <Offset>
1571 <AbsDimension x="5" y="-3"/>
1572 </Offset>
1573 </Anchor>
1574 </Anchors>
1575 <Scripts>
1576 <OnLoad>
1577 CT_RAMenuFrameGeneralMiscDropDown_OnLoad();
1578 </OnLoad>
1579 </Scripts>
1580 </Frame>
1581 </Frames>
1582 </Frame>
1583 <Frame name="$parentMTs">
1584 <Size>
1585 <AbsDimension x="250" y="43"/>
1586 </Size>
1587 <Anchors>
1588 <Anchor point="TOPLEFT">
1589 <Offset>
1590 <AbsDimension x="35" y="-355"/>
1591 </Offset>
1592 </Anchor>
1593 </Anchors>
1594 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
1595 <EdgeSize>
1596 <AbsValue val="16"/>
1597 </EdgeSize>
1598 <TileSize>
1599 <AbsValue val="16"/>
1600 </TileSize>
1601 <BackgroundInsets>
1602 <AbsInset left="5" right="5" top="5" bottom="5"/>
1603 </BackgroundInsets>
1604 </Backdrop>
1605 <Layers>
1606 <Layer level="ARTWORK">
1607 <FontString name="$parentName" inherits="GameFontNormal" text="Main Tanks">
1608 <Anchors>
1609 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
1610 <Offset>
1611 <AbsDimension x="15" y="0"/>
1612 </Offset>
1613 </Anchor>
1614 </Anchors>
1615 </FontString>
1616 <FontString name="$parentShowMTsText" inherits="ChatFontNormal" text="Show number of main tanks:">
1617 <Anchors>
1618 <Anchor point="TOPLEFT" relativePoint="TOPLEFT">
1619 <Offset>
1620 <AbsDimension x="10" y="-13"/>
1621 </Offset>
1622 </Anchor>
1623 </Anchors>
1624 </FontString>
1625 <FontString name="$parentNum" inherits="GameFontNormalLarge" text="10">
1626 <Anchors>
1627 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentShowMTsText">
1628 <Offset>
1629 <AbsDimension x="20" y="0"/>
1630 </Offset>
1631 </Anchor>
1632 </Anchors>
1633 </FontString>
1634 </Layer>
1635 </Layers>
1636 <Frames>
1637 <Button name="$parentAdd" inherits="UIPanelScrollUpButtonTemplate" hidden="false">
1638 <Anchors>
1639 <Anchor point="TOPRIGHT">
1640 <Offset>
1641 <AbsDimension x="-5" y="-5"/>
1642 </Offset>
1643 </Anchor>
1644 </Anchors>
1645 <Scripts>
1646 <OnClick>
1647 CT_RAMenuGeneralMisc_AddMTs()
1648 </OnClick>
1649 </Scripts>
1650 </Button>
1651 <Button name="$parentSubtract" inherits="UIPanelScrollDownButtonTemplate" hidden="false">
1652 <Anchors>
1653 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentAdd">
1654 <Offset>
1655 <AbsDimension x="0" y="-2"/>
1656 </Offset>
1657 </Anchor>
1658 </Anchors>
1659 <Scripts>
1660 <OnClick>
1661 CT_RAMenuGeneralMisc_SubtractMTs()
1662 </OnClick>
1663 </Scripts>
1664 </Button>
1665 </Frames>
1666 </Frame>
1667 <Button name="$parentUpdate" inherits="GameMenuButtonTemplate" text="Update Status">
1668 <Size>
1669 <AbsDimension x="175" y="27"/>
1670 </Size>
1671 <Anchors>
1672 <Anchor relativePoint="TOP" point="TOPLEFT">
1673 <Offset>
1674 <AbsDimension x="40" y="-405"/>
1675 </Offset>
1676 </Anchor>
1677 </Anchors>
1678 <Scripts>
1679 <OnClick>
1680 SlashCmdList["RAUPDATE"]();
1681 </OnClick>
1682 </Scripts>
1683 </Button>
1684 <Button name="$parentResetPositions" inherits="GameMenuButtonTemplate" text="Reset CTRaid Positions">
1685 <Size>
1686 <AbsDimension x="175" y="27"/>
1687 </Size>
1688 <Anchors>
1689 <Anchor relativePoint="TOP" point="TOPLEFT">
1690 <Offset>
1691 <AbsDimension x="40" y="-375"/>
1692 </Offset>
1693 </Anchor>
1694 </Anchors>
1695 <Scripts>
1696 <OnClick>
1697 CT_RAMenu_General_ResetWindows();
1698 </OnClick>
1699 </Scripts>
1700 </Button>
1701 </Frames>
1702 </Frame>
1703 <Frame name="CT_RAMenuFrameMisc" setAllPoints="true" hidden="true">
1704 <Layers>
1705 <Layer level="BACKGROUND">
1706 <FontString name="$parentTitle" inherits="GameFontHighlightSmall" text="Misc Options">
1707 <Anchors>
1708 <Anchor point="TOP">
1709 <Offset>
1710 <AbsDimension x="0" y="-60"/>
1711 </Offset>
1712 </Anchor>
1713 </Anchors>
1714 </FontString>
1715 </Layer>
1716 </Layers>
1717 <Frames>
1718 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
1719 <Anchors>
1720 <Anchor point="BOTTOMRIGHT">
1721 <Offset>
1722 <AbsDimension x="-53" y="21"/>
1723 </Offset>
1724 </Anchor>
1725  
1726 </Anchors>
1727 <Scripts>
1728 <OnClick>
1729 HideUIPanel(CT_RAMenuFrame);
1730 </OnClick>
1731 </Scripts>
1732 </Button>
1733 <Button name="$parentBack" inherits="GameMenuButtonTemplate" text="Back">
1734 <Anchors>
1735 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
1736 <Offset>
1737 <AbsDimension x="-5" y="0"/>
1738 </Offset>
1739 </Anchor>
1740 </Anchors>
1741 <Scripts>
1742 <OnClick>
1743 CT_RAMenu_ShowHome();
1744 </OnClick>
1745 </Scripts>
1746 </Button>
1747 <Slider name="$parentSetsSlider" inherits="OptionsSliderTemplate">
1748 <Size>
1749 <AbsDimension x="290" y="17"/>
1750 </Size>
1751 <Anchors>
1752 <Anchor point="TOP" relativePoint="TOP">
1753 <Offset>
1754 <AbsDimension x="0" y="-100"/>
1755 </Offset>
1756 </Anchor>
1757 </Anchors>
1758 <Scripts>
1759 <OnLoad>
1760 getglobal(this:GetName().."Text"):SetText("Option Sets Button Placement");
1761 getglobal(this:GetName().."High"):SetText();
1762 getglobal(this:GetName().."Low"):SetText();
1763 this:SetMinMaxValues(0, 360);
1764 this:SetValueStep(1);
1765 this.tooltipText = "Drag the slider to change the position of the Option Sets button";
1766 </OnLoad>
1767 <OnShow>
1768 if (CT_RASets_ButtonPosition) then
1769 this:SetValue(CT_RASets_ButtonPosition);
1770 end
1771 </OnShow>
1772 <OnValueChanged>
1773 CT_RASets_ButtonPosition = this:GetValue();
1774 getglobal(this:GetName().."Text"):SetText("Option Sets Button Placement - "..this:GetValue().."\194\176");
1775 CT_RASets_Button:SetPoint("TOPLEFT", "Minimap", "TOPLEFT", 52 - (80 * cos(this:GetValue())), (80 * sin(this:GetValue())) - 52);
1776 </OnValueChanged>
1777 </Scripts>
1778 </Slider>
1779 <Frame name="$parentNotifications">
1780 <Size>
1781 <AbsDimension x="550" y="120"/>
1782 </Size>
1783 <Anchors>
1784 <Anchor point="TOP">
1785 <Offset>
1786 <AbsDimension x="-15" y="-130"/>
1787 </Offset>
1788 </Anchor>
1789 </Anchors>
1790 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
1791 <EdgeSize>
1792 <AbsValue val="16"/>
1793 </EdgeSize>
1794 <TileSize>
1795 <AbsValue val="16"/>
1796 </TileSize>
1797 <BackgroundInsets>
1798 <AbsInset left="5" right="5" top="5" bottom="5"/>
1799 </BackgroundInsets>
1800 </Backdrop>
1801 <Layers>
1802 <Layer level="ARTWORK">
1803 <FontString name="$parentName" inherits="GameFontNormal" text="Notifications">
1804 <Anchors>
1805 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
1806 <Offset>
1807 <AbsDimension x="15" y="0"/>
1808 </Offset>
1809 </Anchor>
1810 </Anchors>
1811 </FontString>
1812 <FontString name="$parentShowTankDeath" inherits="ChatFontNormal" text="Notify on Tank Death">
1813 <Anchors>
1814 <Anchor point="TOPLEFT">
1815 <Offset>
1816 <AbsDimension x="35" y="-15"/>
1817 </Offset>
1818 </Anchor>
1819 </Anchors>
1820 </FontString>
1821 <FontString name="$parentSendRARS" inherits="ChatFontNormal" text="Send /rs messages to /ra">
1822 <Anchors>
1823 <Anchor point="TOPLEFT">
1824 <Offset>
1825 <AbsDimension x="35" y="-40"/>
1826 </Offset>
1827 </Anchor>
1828 </Anchors>
1829 </FontString>
1830 <FontString name="$parentPlayRSSoundText" inherits="ChatFontNormal" text="Play sound on /rs messages">
1831 <Anchors>
1832 <Anchor point="TOPLEFT">
1833 <Offset>
1834 <AbsDimension x="35" y="-65"/>
1835 </Offset>
1836 </Anchor>
1837 </Anchors>
1838 </FontString>
1839 <FontString name="$parentDisableQuery" inherits="ChatFontNormal" text="Disable item/resists query replies">
1840 <Anchors>
1841 <Anchor point="TOPLEFT">
1842 <Offset>
1843 <AbsDimension x="35" y="-90"/>
1844 </Offset>
1845 </Anchor>
1846 </Anchors>
1847 </FontString>
1848 <FontString name="$parentAggroNotifier" inherits="ChatFontNormal" text="Notify on aggro gain">
1849 <Anchors>
1850 <Anchor point="TOPLEFT">
1851 <Offset>
1852 <AbsDimension x="285" y="-15"/>
1853 </Offset>
1854 </Anchor>
1855 </Anchors>
1856 </FontString>
1857 <FontString name="$parentAggroNotifierSound" inherits="ChatFontNormal" text="Play sound">
1858 <Anchors>
1859 <Anchor point="TOPLEFT">
1860 <Offset>
1861 <AbsDimension x="315" y="-40"/>
1862 </Offset>
1863 </Anchor>
1864 </Anchors>
1865 </FontString>
1866 <FontString name="$parentNotifyGroupChange" inherits="ChatFontNormal" text="Notify on group changes">
1867 <Anchors>
1868 <Anchor point="TOPLEFT">
1869 <Offset>
1870 <AbsDimension x="285" y="-65"/>
1871 </Offset>
1872 </Anchor>
1873 </Anchors>
1874 </FontString>
1875 <FontString name="$parentNotifyGroupChangeSound" inherits="ChatFontNormal" text="Audible notification">
1876 <Anchors>
1877 <Anchor point="TOPLEFT">
1878 <Offset>
1879 <AbsDimension x="315" y="-90"/>
1880 </Offset>
1881 </Anchor>
1882 </Anchors>
1883 </FontString>
1884 </Layer>
1885 </Layers>
1886 <Frames>
1887 <CheckButton name="$parentPlayRSSoundCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
1888 <Anchors>
1889 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentPlayRSSoundText">
1890 <Offset>
1891 <AbsDimension x="0" y="0"/>
1892 </Offset>
1893 </Anchor>
1894 </Anchors>
1895 <HitRectInsets>
1896 <AbsInset left="0" right="0" top="0" bottom="0"/>
1897 </HitRectInsets>
1898 <Size>
1899 <AbsDimension x="24" y="24"/>
1900 </Size>
1901 <Scripts>
1902 <OnClick>
1903 CT_RAMenu_Misc_PlaySound();
1904 </OnClick>
1905 </Scripts>
1906 </CheckButton>
1907 <CheckButton name="$parentShowTankDeathCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
1908 <Anchors>
1909 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowTankDeath">
1910 <Offset>
1911 <AbsDimension x="0" y="0"/>
1912 </Offset>
1913 </Anchor>
1914 </Anchors>
1915 <HitRectInsets>
1916 <AbsInset left="0" right="0" top="0" bottom="0"/>
1917 </HitRectInsets>
1918 <Size>
1919 <AbsDimension x="24" y="24"/>
1920 </Size>
1921 <Scripts>
1922 <OnClick>
1923 CT_RAMenu_Misc_ShowTankDeath();
1924 </OnClick>
1925 </Scripts>
1926 </CheckButton>
1927 <CheckButton name="$parentSendRARSCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
1928 <Anchors>
1929 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentSendRARS">
1930 <Offset>
1931 <AbsDimension x="0" y="0"/>
1932 </Offset>
1933 </Anchor>
1934 </Anchors>
1935 <HitRectInsets>
1936 <AbsInset left="0" right="0" top="0" bottom="0"/>
1937 </HitRectInsets>
1938 <Size>
1939 <AbsDimension x="24" y="24"/>
1940 </Size>
1941 <Scripts>
1942 <OnClick>
1943 CT_RAMenu_Misc_SendRARS();
1944 </OnClick>
1945 </Scripts>
1946 </CheckButton>
1947 <CheckButton name="$parentNotifyGroupChangeCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
1948 <Anchors>
1949 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentNotifyGroupChange">
1950 <Offset>
1951 <AbsDimension x="0" y="0"/>
1952 </Offset>
1953 </Anchor>
1954 </Anchors>
1955 <HitRectInsets>
1956 <AbsInset left="0" right="0" top="0" bottom="0"/>
1957 </HitRectInsets>
1958 <Size>
1959 <AbsDimension x="24" y="24"/>
1960 </Size>
1961 <Scripts>
1962 <OnClick>
1963 CT_RAMenu_Misc_NotifyGroupChange();
1964 </OnClick>
1965 </Scripts>
1966 </CheckButton>
1967 <CheckButton name="$parentNotifyGroupChangeCBSound" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
1968 <Anchors>
1969 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentNotifyGroupChangeSound">
1970 <Offset>
1971 <AbsDimension x="0" y="0"/>
1972 </Offset>
1973 </Anchor>
1974 </Anchors>
1975 <HitRectInsets>
1976 <AbsInset left="0" right="0" top="0" bottom="0"/>
1977 </HitRectInsets>
1978 <Size>
1979 <AbsDimension x="24" y="24"/>
1980 </Size>
1981 <Scripts>
1982 <OnClick>
1983 CT_RAMenu_Misc_NotifyGroupChangeSound();
1984 </OnClick>
1985 </Scripts>
1986 </CheckButton>
1987 <CheckButton name="$parentDisableQueryCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
1988 <Anchors>
1989 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentDisableQuery">
1990 <Offset>
1991 <AbsDimension x="0" y="0"/>
1992 </Offset>
1993 </Anchor>
1994 </Anchors>
1995 <HitRectInsets>
1996 <AbsInset left="0" right="0" top="0" bottom="0"/>
1997 </HitRectInsets>
1998 <Size>
1999 <AbsDimension x="24" y="24"/>
2000 </Size>
2001 <Scripts>
2002 <OnClick>
2003 CT_RAMenu_Misc_DisableQuery();
2004 </OnClick>
2005 </Scripts>
2006 </CheckButton>
2007 <CheckButton name="$parentAggroNotifierCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2008 <Anchors>
2009 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentAggroNotifier">
2010 <Offset>
2011 <AbsDimension x="0" y="0"/>
2012 </Offset>
2013 </Anchor>
2014 </Anchors>
2015 <HitRectInsets>
2016 <AbsInset left="0" right="0" top="0" bottom="0"/>
2017 </HitRectInsets>
2018 <Size>
2019 <AbsDimension x="24" y="24"/>
2020 </Size>
2021 <Scripts>
2022 <OnClick>
2023 CT_RAMenu_Misc_AggroNotifier();
2024 </OnClick>
2025 </Scripts>
2026 </CheckButton>
2027 <CheckButton name="$parentAggroNotifierSoundCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2028 <Anchors>
2029 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentAggroNotifierSound">
2030 <Offset>
2031 <AbsDimension x="0" y="0"/>
2032 </Offset>
2033 </Anchor>
2034 </Anchors>
2035 <HitRectInsets>
2036 <AbsInset left="0" right="0" top="0" bottom="0"/>
2037 </HitRectInsets>
2038 <Size>
2039 <AbsDimension x="24" y="24"/>
2040 </Size>
2041 <Scripts>
2042 <OnClick>
2043 CT_RAMenu_Misc_AggroNotifierSound();
2044 </OnClick>
2045 </Scripts>
2046 </CheckButton>
2047 </Frames>
2048 </Frame>
2049 <Frame name="$parentDisplay">
2050 <Size>
2051 <AbsDimension x="550" y="120"/>
2052 </Size>
2053 <Anchors>
2054 <Anchor point="TOP">
2055 <Offset>
2056 <AbsDimension x="-15" y="-270"/>
2057 </Offset>
2058 </Anchor>
2059 </Anchors>
2060 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
2061 <EdgeSize>
2062 <AbsValue val="16"/>
2063 </EdgeSize>
2064 <TileSize>
2065 <AbsValue val="16"/>
2066 </TileSize>
2067 <BackgroundInsets>
2068 <AbsInset left="5" right="5" top="5" bottom="5"/>
2069 </BackgroundInsets>
2070 </Backdrop>
2071 <Layers>
2072 <Layer level="ARTWORK">
2073 <FontString name="$parentName" inherits="GameFontNormal" text="Display">
2074 <Anchors>
2075 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
2076 <Offset>
2077 <AbsDimension x="15" y="0"/>
2078 </Offset>
2079 </Anchor>
2080 </Anchors>
2081 </FontString>
2082 <FontString name="$parentShowTooltipText" inherits="ChatFontNormal" text="Show raid mouseover tooltip">
2083 <Anchors>
2084 <Anchor point="TOPLEFT">
2085 <Offset>
2086 <AbsDimension x="35" y="-15"/>
2087 </Offset>
2088 </Anchor>
2089 </Anchors>
2090 </FontString>
2091 <FontString name="$parentShowAFKText" inherits="ChatFontNormal" text="Show AFK status">
2092 <Anchors>
2093 <Anchor point="TOPLEFT">
2094 <Offset>
2095 <AbsDimension x="35" y="-40"/>
2096 </Offset>
2097 </Anchor>
2098 </Anchors>
2099 </FontString>
2100 <FontString name="$parentShowResMonitor" inherits="ChatFontNormal" text="Show resurrection monitor">
2101 <Anchors>
2102 <Anchor point="TOPLEFT">
2103 <Offset>
2104 <AbsDimension x="35" y="-65"/>
2105 </Offset>
2106 </Anchor>
2107 </Anchors>
2108 </FontString>
2109 <FontString name="$parentColorLeader" inherits="ChatFontNormal" text="Color Raid Leader in chat">
2110 <Anchors>
2111 <Anchor point="TOPLEFT">
2112 <Offset>
2113 <AbsDimension x="35" y="-90"/>
2114 </Offset>
2115 </Anchor>
2116 </Anchors>
2117 </FontString>
2118 <FontString name="$parentHideButton" inherits="ChatFontNormal" text="Hide minimap button">
2119 <Anchors>
2120 <Anchor point="TOPLEFT">
2121 <Offset>
2122 <AbsDimension x="285" y="-15"/>
2123 </Offset>
2124 </Anchor>
2125 </Anchors>
2126 </FontString>
2127 <FontString name="$parentShowPTT" inherits="ChatFontNormal" text="Show Player Target's Target">
2128 <Anchors>
2129 <Anchor point="TOPLEFT">
2130 <Offset>
2131 <AbsDimension x="285" y="-40"/>
2132 </Offset>
2133 </Anchor>
2134 </Anchors>
2135 </FontString>
2136 <FontString name="$parentShowMTTT" inherits="ChatFontNormal" text="Show MT's Target's Target">
2137 <Anchors>
2138 <Anchor point="TOPLEFT">
2139 <Offset>
2140 <AbsDimension x="285" y="-65"/>
2141 </Offset>
2142 </Anchor>
2143 </Anchors>
2144 </FontString>
2145 <FontString name="$parentNoColorChange" inherits="ChatFontNormal" text="Hide target change notifier">
2146 <Anchors>
2147 <Anchor point="TOPLEFT">
2148 <Offset>
2149 <AbsDimension x="315" y="-90"/>
2150 </Offset>
2151 </Anchor>
2152 </Anchors>
2153 </FontString>
2154 </Layer>
2155 </Layers>
2156 <Frames>
2157 <CheckButton name="$parentShowTooltipCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2158 <Anchors>
2159 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowTooltipText">
2160 <Offset>
2161 <AbsDimension x="0" y="0"/>
2162 </Offset>
2163 </Anchor>
2164 </Anchors>
2165 <HitRectInsets>
2166 <AbsInset left="0" right="0" top="0" bottom="0"/>
2167 </HitRectInsets>
2168 <Size>
2169 <AbsDimension x="24" y="24"/>
2170 </Size>
2171 <Scripts>
2172 <OnClick>
2173 CT_RAMenu_Misc_ShowTooltip();
2174 </OnClick>
2175 </Scripts>
2176 </CheckButton>
2177 <CheckButton name="$parentColorLeaderCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2178 <Anchors>
2179 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentColorLeader">
2180 <Offset>
2181 <AbsDimension x="0" y="0"/>
2182 </Offset>
2183 </Anchor>
2184 </Anchors>
2185 <HitRectInsets>
2186 <AbsInset left="0" right="0" top="0" bottom="0"/>
2187 </HitRectInsets>
2188 <Size>
2189 <AbsDimension x="24" y="24"/>
2190 </Size>
2191 <Scripts>
2192 <OnClick>
2193 CT_RAMenu_Misc_ColorLeader();
2194 </OnClick>
2195 </Scripts>
2196 </CheckButton>
2197 <Button name="$parentColorLeaderColorSwatch" hidden="false">
2198 <Size>
2199 <AbsDimension x="16" y="16"/>
2200 </Size>
2201 <Anchors>
2202 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentColorLeader">
2203 <Offset>
2204 <AbsDimension x="10" y="0"/>
2205 </Offset>
2206 </Anchor>
2207 </Anchors>
2208 <Layers>
2209 <Layer level="BACKGROUND">
2210 <Texture name="$parentBG">
2211 <Size>
2212 <AbsDimension x="14" y="14"/>
2213 </Size>
2214 <Color r="1.0" g="1.0" b="1.0"/>
2215 <Anchors>
2216 <Anchor point="CENTER"/>
2217 </Anchors>
2218 </Texture>
2219 </Layer>
2220 </Layers>
2221 <Scripts>
2222 <OnClick>
2223 CT_RAMenu_Misc_ColorLeader_ShowColorPicker(this);
2224 </OnClick>
2225 <OnEnter>
2226 getglobal(this:GetName().."BG"):SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
2227 </OnEnter>
2228 <OnLeave>
2229 getglobal(this:GetName().."BG"):SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
2230 </OnLeave>
2231 </Scripts>
2232 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
2233 </Button>
2234 <CheckButton name="$parentShowAFKCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2235 <Anchors>
2236 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowAFKText">
2237 <Offset>
2238 <AbsDimension x="0" y="0"/>
2239 </Offset>
2240 </Anchor>
2241 </Anchors>
2242 <HitRectInsets>
2243 <AbsInset left="0" right="0" top="0" bottom="0"/>
2244 </HitRectInsets>
2245 <Size>
2246 <AbsDimension x="24" y="24"/>
2247 </Size>
2248 <Scripts>
2249 <OnClick>
2250 CT_RAMenu_Misc_ShowAFK();
2251 </OnClick>
2252 </Scripts>
2253 </CheckButton>
2254 <CheckButton name="$parentShowResMonitorCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2255 <Anchors>
2256 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowResMonitor">
2257 <Offset>
2258 <AbsDimension x="0" y="0"/>
2259 </Offset>
2260 </Anchor>
2261 </Anchors>
2262 <HitRectInsets>
2263 <AbsInset left="0" right="0" top="0" bottom="0"/>
2264 </HitRectInsets>
2265 <Size>
2266 <AbsDimension x="24" y="24"/>
2267 </Size>
2268 <Scripts>
2269 <OnClick>
2270 CT_RAMenu_Misc_ShowResMonitor();
2271 </OnClick>
2272 </Scripts>
2273 </CheckButton>
2274 <CheckButton name="$parentHideButtonCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2275 <Anchors>
2276 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentHideButton">
2277 <Offset>
2278 <AbsDimension x="0" y="0"/>
2279 </Offset>
2280 </Anchor>
2281 </Anchors>
2282 <HitRectInsets>
2283 <AbsInset left="0" right="0" top="0" bottom="0"/>
2284 </HitRectInsets>
2285 <Size>
2286 <AbsDimension x="24" y="24"/>
2287 </Size>
2288 <Scripts>
2289 <OnClick>
2290 CT_RAMenu_Misc_HideButton();
2291 </OnClick>
2292 </Scripts>
2293 </CheckButton>
2294 <CheckButton name="$parentShowPTTCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2295 <Anchors>
2296 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowPTT">
2297 <Offset>
2298 <AbsDimension x="0" y="0"/>
2299 </Offset>
2300 </Anchor>
2301 </Anchors>
2302 <HitRectInsets>
2303 <AbsInset left="0" right="0" top="0" bottom="0"/>
2304 </HitRectInsets>
2305 <Size>
2306 <AbsDimension x="24" y="24"/>
2307 </Size>
2308 <Scripts>
2309 <OnClick>
2310 CT_RAMenu_Misc_ShowPTT();
2311 </OnClick>
2312 </Scripts>
2313 </CheckButton>
2314 <CheckButton name="$parentShowMTTTCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2315 <Anchors>
2316 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowMTTT">
2317 <Offset>
2318 <AbsDimension x="0" y="0"/>
2319 </Offset>
2320 </Anchor>
2321 </Anchors>
2322 <HitRectInsets>
2323 <AbsInset left="0" right="0" top="0" bottom="0"/>
2324 </HitRectInsets>
2325 <Size>
2326 <AbsDimension x="24" y="24"/>
2327 </Size>
2328 <Scripts>
2329 <OnClick>
2330 CT_RAMenu_Misc_ShowMTTT();
2331 </OnClick>
2332 </Scripts>
2333 </CheckButton>
2334 <CheckButton name="$parentNoColorChangeCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
2335 <Anchors>
2336 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentNoColorChange">
2337 <Offset>
2338 <AbsDimension x="0" y="0"/>
2339 </Offset>
2340 </Anchor>
2341 </Anchors>
2342 <HitRectInsets>
2343 <AbsInset left="0" right="0" top="0" bottom="0"/>
2344 </HitRectInsets>
2345 <Size>
2346 <AbsDimension x="24" y="24"/>
2347 </Size>
2348 <Scripts>
2349 <OnClick>
2350 CT_RAMenu_Misc_NoColorChange();
2351 </OnClick>
2352 </Scripts>
2353 </CheckButton>
2354 </Frames>
2355 </Frame>
2356 </Frames>
2357 </Frame>
2358 <Frame name="CT_RAMenuFrameBuffs" setAllPoints="true" hidden="true">
2359 <Layers>
2360 <Layer level="BACKGROUND">
2361 <FontString name="$parentTitle" inherits="GameFontHighlightSmall" justifyH="CENTER" text="Buff Options">
2362 <Anchors>
2363 <Anchor point="TOP">
2364 <Offset>
2365 <AbsDimension x="-20" y="-60"/>
2366 </Offset>
2367 </Anchor>
2368 </Anchors>
2369 </FontString>
2370 <FontString name="$parentDebuffsText" inherits="GameFontNormalSmall" text="Debuffs">
2371 <Anchors>
2372 <Anchor relativePoint="TOPRIGHT" point="TOPLEFT">
2373 <Offset>
2374 <AbsDimension x="-260" y="-60"/>
2375 </Offset>
2376 </Anchor>
2377 </Anchors>
2378 </FontString>
2379 <FontString name="$parentBuffsText" inherits="GameFontNormalSmall" text="Buffs">
2380 <Anchors>
2381 <Anchor point="TOPLEFT">
2382 <Offset>
2383 <AbsDimension x="130" y="-60"/>
2384 </Offset>
2385 </Anchor>
2386 </Anchors>
2387 </FontString>
2388 </Layer>
2389 </Layers>
2390 <Frames>
2391 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
2392 <Anchors>
2393 <Anchor point="BOTTOMRIGHT">
2394 <Offset>
2395 <AbsDimension x="-53" y="21"/>
2396 </Offset>
2397 </Anchor>
2398 </Anchors>
2399 <Scripts>
2400 <OnClick>
2401 HideUIPanel(CT_RAMenuFrame);
2402 </OnClick>
2403 </Scripts>
2404 </Button>
2405 <Button name="$parentBack" inherits="GameMenuButtonTemplate" text="Back">
2406 <Anchors>
2407 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
2408 <Offset>
2409 <AbsDimension x="-5" y="0"/>
2410 </Offset>
2411 </Anchor>
2412 </Anchors>
2413 <Scripts>
2414 <OnClick>
2415 CT_RAMenu_ShowHome();
2416 </OnClick>
2417 </Scripts>
2418 </Button>
2419  
2420 <Frame name="$parentDebuff1" id="1" inherits="CT_RAMenuDebuffTemplate">
2421 <Anchors>
2422 <Anchor relativePoint="TOPRIGHT" point="TOPLEFT">
2423 <Offset>
2424 <AbsDimension x="-335" y="-75"/>
2425 </Offset>
2426 </Anchor>
2427 </Anchors>
2428 </Frame>
2429 <Frame name="$parentDebuff2" id="2" inherits="CT_RAMenuDebuffTemplate">
2430 <Anchors>
2431 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuff1">
2432 <Offset>
2433 <AbsDimension x="0" y="-3"/>
2434 </Offset>
2435 </Anchor>
2436 </Anchors>
2437 </Frame>
2438 <Frame name="$parentDebuff3" id="3" inherits="CT_RAMenuDebuffTemplate">
2439 <Anchors>
2440 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuff2">
2441 <Offset>
2442 <AbsDimension x="0" y="-3"/>
2443 </Offset>
2444 </Anchor>
2445 </Anchors>
2446 </Frame>
2447 <Frame name="$parentDebuff4" id="4" inherits="CT_RAMenuDebuffTemplate">
2448 <Anchors>
2449 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuff3">
2450 <Offset>
2451 <AbsDimension x="0" y="-3"/>
2452 </Offset>
2453 </Anchor>
2454 </Anchors>
2455 </Frame>
2456 <Frame name="$parentDebuff5" id="5" inherits="CT_RAMenuDebuffTemplate">
2457 <Anchors>
2458 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuff4">
2459 <Offset>
2460 <AbsDimension x="0" y="-3"/>
2461 </Offset>
2462 </Anchor>
2463 </Anchors>
2464 </Frame>
2465 <Frame name="$parentDebuff6" id="6" inherits="CT_RAMenuDebuffTemplate">
2466 <Anchors>
2467 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuff5">
2468 <Offset>
2469 <AbsDimension x="0" y="-3"/>
2470 </Offset>
2471 </Anchor>
2472 </Anchors>
2473 </Frame>
2474  
2475 <Frame name="$parentNotify">
2476 <Size>
2477 <AbsDimension x="325" y="240"/>
2478 </Size>
2479 <Anchors>
2480 <Anchor point="BOTTOMRIGHT">
2481 <Offset>
2482 <AbsDimension x="-65" y="73"/>
2483 </Offset>
2484 </Anchor>
2485 </Anchors>
2486 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
2487 <EdgeSize>
2488 <AbsValue val="16"/>
2489 </EdgeSize>
2490 <TileSize>
2491 <AbsValue val="16"/>
2492 </TileSize>
2493 <BackgroundInsets>
2494 <AbsInset left="5" right="5" top="5" bottom="5"/>
2495 </BackgroundInsets>
2496 </Backdrop>
2497 <Layers>
2498 <Layer level="OVERLAY">
2499 <FontString name="$parentName" inherits="GameFontNormal" text="Notifications">
2500 <Anchors>
2501 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
2502 <Offset>
2503 <AbsDimension x="15" y="0"/>
2504 </Offset>
2505 </Anchor>
2506 </Anchors>
2507 </FontString>
2508 <FontString inherits="GameFontNormalSmall" text="Notify me when someone is debuffed with selected">
2509 <Anchors>
2510 <Anchor point="TOPLEFT">
2511 <Offset>
2512 <AbsDimension x="36" y="-10"/>
2513 </Offset>
2514 </Anchor>
2515 </Anchors>
2516 </FontString>
2517 <FontString inherits="GameFontNormalSmall" text="Notify when a buff you can cast has faded">
2518 <Anchors>
2519 <Anchor point="TOPLEFT">
2520 <Offset>
2521 <AbsDimension x="36" y="-31"/>
2522 </Offset>
2523 </Anchor>
2524 </Anchors>
2525 </FontString>
2526 <FontString inherits="GameFontNormalSmall" text="Note that both class and group must fit the requirements">
2527 <Color r="1.0" g="1.0" b="1.0"/>
2528 <Anchors>
2529 <Anchor point="TOPLEFT">
2530 <Offset>
2531 <AbsDimension x="11" y="-50"/>
2532 </Offset>
2533 </Anchor>
2534 </Anchors>
2535 </FontString>
2536 </Layer>
2537 </Layers>
2538 <Frames>
2539 <CheckButton name="$parentDebuffs" hidden="false" inherits="OptionsCheckButtonTemplate">
2540 <Anchors>
2541 <Anchor point="TOPLEFT">
2542 <Offset>
2543 <AbsDimension x="10" y="-5"/>
2544 </Offset>
2545 </Anchor>
2546 </Anchors>
2547 <HitRectInsets>
2548 <AbsInset left="0" right="0" top="0" bottom="0"/>
2549 </HitRectInsets>
2550 <Size>
2551 <AbsDimension x="24" y="24"/>
2552 </Size>
2553 <Scripts>
2554 <OnClick>
2555 CT_RAMenuNotify_SetChecked();
2556 </OnClick>
2557 </Scripts>
2558 </CheckButton>
2559 <CheckButton name="$parentBuffs" hidden="false" inherits="OptionsCheckButtonTemplate">
2560 <Anchors>
2561 <Anchor point="TOPLEFT">
2562 <Offset>
2563 <AbsDimension x="10" y="-25"/>
2564 </Offset>
2565 </Anchor>
2566 </Anchors>
2567 <HitRectInsets>
2568 <AbsInset left="0" right="0" top="0" bottom="0"/>
2569 </HitRectInsets>
2570 <Size>
2571 <AbsDimension x="24" y="24"/>
2572 </Size>
2573 <Scripts>
2574 <OnClick>
2575 CT_RAMenuNotify_SetChecked();
2576 </OnClick>
2577 </Scripts>
2578 </CheckButton>
2579  
2580 <Frame name="$parentDebuffsGroup1" id="1" inherits="CT_RAMenuNotifyGroupTemplate">
2581 <Anchors>
2582 <Anchor point="TOPLEFT">
2583 <Offset>
2584 <AbsDimension x="10" y="-65"/>
2585 </Offset>
2586 </Anchor>
2587 </Anchors>
2588 </Frame>
2589 <Frame name="$parentDebuffsGroup2" id="2" inherits="CT_RAMenuNotifyGroupTemplate">
2590 <Anchors>
2591 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentDebuffsGroup1">
2592 <Offset>
2593 <AbsDimension x="3" y="0"/>
2594 </Offset>
2595 </Anchor>
2596 </Anchors>
2597 </Frame>
2598 <Frame name="$parentDebuffsGroup3" id="3" inherits="CT_RAMenuNotifyGroupTemplate">
2599 <Anchors>
2600 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsGroup1">
2601 <Offset>
2602 <AbsDimension x="0" y="-3"/>
2603 </Offset>
2604 </Anchor>
2605 </Anchors>
2606 </Frame>
2607 <Frame name="$parentDebuffsGroup4" id="4" inherits="CT_RAMenuNotifyGroupTemplate">
2608 <Anchors>
2609 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsGroup2">
2610 <Offset>
2611 <AbsDimension x="0" y="-3"/>
2612 </Offset>
2613 </Anchor>
2614 </Anchors>
2615 </Frame>
2616 <Frame name="$parentDebuffsGroup5" id="5" inherits="CT_RAMenuNotifyGroupTemplate">
2617 <Anchors>
2618 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsGroup3">
2619 <Offset>
2620 <AbsDimension x="0" y="-3"/>
2621 </Offset>
2622 </Anchor>
2623 </Anchors>
2624 </Frame>
2625 <Frame name="$parentDebuffsGroup6" id="6" inherits="CT_RAMenuNotifyGroupTemplate">
2626 <Anchors>
2627 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsGroup4">
2628 <Offset>
2629 <AbsDimension x="0" y="-3"/>
2630 </Offset>
2631 </Anchor>
2632 </Anchors>
2633 </Frame>
2634 <Frame name="$parentDebuffsGroup7" id="7" inherits="CT_RAMenuNotifyGroupTemplate">
2635 <Anchors>
2636 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsGroup5">
2637 <Offset>
2638 <AbsDimension x="0" y="-3"/>
2639 </Offset>
2640 </Anchor>
2641 </Anchors>
2642 </Frame>
2643 <Frame name="$parentDebuffsGroup8" id="8" inherits="CT_RAMenuNotifyGroupTemplate">
2644 <Anchors>
2645 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsGroup6">
2646 <Offset>
2647 <AbsDimension x="0" y="-3"/>
2648 </Offset>
2649 </Anchor>
2650 </Anchors>
2651 </Frame>
2652 <Frame name="$parentDebuffsClass1" id="1" inherits="CT_RAMenuNotifyClassTemplate">
2653 <Anchors>
2654 <Anchor point="TOPLEFT">
2655 <Offset>
2656 <AbsDimension x="10" y="-150"/>
2657 </Offset>
2658 </Anchor>
2659 </Anchors>
2660 </Frame>
2661 <Frame name="$parentDebuffsClass2" id="2" inherits="CT_RAMenuNotifyClassTemplate">
2662 <Anchors>
2663 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentDebuffsClass1">
2664 <Offset>
2665 <AbsDimension x="3" y="0"/>
2666 </Offset>
2667 </Anchor>
2668 </Anchors>
2669 </Frame>
2670 <Frame name="$parentDebuffsClass3" id="3" inherits="CT_RAMenuNotifyClassTemplate">
2671 <Anchors>
2672 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsClass1">
2673 <Offset>
2674 <AbsDimension x="0" y="-3"/>
2675 </Offset>
2676 </Anchor>
2677 </Anchors>
2678 </Frame>
2679 <Frame name="$parentDebuffsClass4" id="4" inherits="CT_RAMenuNotifyClassTemplate">
2680 <Anchors>
2681 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsClass2">
2682 <Offset>
2683 <AbsDimension x="0" y="-3"/>
2684 </Offset>
2685 </Anchor>
2686 </Anchors>
2687 </Frame>
2688 <Frame name="$parentDebuffsClass5" id="5" inherits="CT_RAMenuNotifyClassTemplate">
2689 <Anchors>
2690 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsClass3">
2691 <Offset>
2692 <AbsDimension x="0" y="-3"/>
2693 </Offset>
2694 </Anchor>
2695 </Anchors>
2696 </Frame>
2697 <Frame name="$parentDebuffsClass6" id="6" inherits="CT_RAMenuNotifyClassTemplate">
2698 <Anchors>
2699 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsClass4">
2700 <Offset>
2701 <AbsDimension x="0" y="-3"/>
2702 </Offset>
2703 </Anchor>
2704 </Anchors>
2705 </Frame>
2706 <Frame name="$parentDebuffsClass7" id="7" inherits="CT_RAMenuNotifyClassTemplate">
2707 <Anchors>
2708 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsClass5">
2709 <Offset>
2710 <AbsDimension x="0" y="-3"/>
2711 </Offset>
2712 </Anchor>
2713 </Anchors>
2714 </Frame>
2715 <Frame name="$parentDebuffsClass8" id="8" inherits="CT_RAMenuNotifyClassTemplate">
2716 <Anchors>
2717 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentDebuffsClass6">
2718 <Offset>
2719 <AbsDimension x="0" y="-3"/>
2720 </Offset>
2721 </Anchor>
2722 </Anchors>
2723 </Frame>
2724 </Frames>
2725 </Frame>
2726  
2727 <Frame name="$parentBuff1" id="1" inherits="CT_RAMenuBuffTemplate">
2728 <Anchors>
2729 <Anchor point="TOPLEFT">
2730 <Offset>
2731 <AbsDimension x="35" y="-75"/>
2732 </Offset>
2733 </Anchor>
2734 </Anchors>
2735 </Frame>
2736 <Frame name="$parentBuff2" id="2" inherits="CT_RAMenuBuffTemplate">
2737 <Anchors>
2738 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff1">
2739 <Offset>
2740 <AbsDimension x="0" y="-3"/>
2741 </Offset>
2742 </Anchor>
2743 </Anchors>
2744 </Frame>
2745 <Frame name="$parentBuff3" id="3" inherits="CT_RAMenuBuffTemplate">
2746 <Anchors>
2747 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff2">
2748 <Offset>
2749 <AbsDimension x="0" y="-3"/>
2750 </Offset>
2751 </Anchor>
2752 </Anchors>
2753 </Frame>
2754 <Frame name="$parentBuff4" id="4" inherits="CT_RAMenuBuffTemplate">
2755 <Anchors>
2756 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff3">
2757 <Offset>
2758 <AbsDimension x="0" y="-3"/>
2759 </Offset>
2760 </Anchor>
2761 </Anchors>
2762 </Frame>
2763 <Frame name="$parentBuff5" id="5" inherits="CT_RAMenuBuffTemplate">
2764 <Anchors>
2765 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff4">
2766 <Offset>
2767 <AbsDimension x="0" y="-3"/>
2768 </Offset>
2769 </Anchor>
2770 </Anchors>
2771 </Frame>
2772 <Frame name="$parentBuff6" id="6" inherits="CT_RAMenuBuffTemplate">
2773 <Anchors>
2774 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff5">
2775 <Offset>
2776 <AbsDimension x="0" y="-3"/>
2777 </Offset>
2778 </Anchor>
2779 </Anchors>
2780 </Frame>
2781 <Frame name="$parentBuff7" id="7" inherits="CT_RAMenuBuffTemplate">
2782 <Anchors>
2783 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff6">
2784 <Offset>
2785 <AbsDimension x="0" y="-3"/>
2786 </Offset>
2787 </Anchor>
2788 </Anchors>
2789 </Frame>
2790 <Frame name="$parentBuff8" id="8" inherits="CT_RAMenuBuffTemplate">
2791 <Anchors>
2792 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff7">
2793 <Offset>
2794 <AbsDimension x="0" y="-3"/>
2795 </Offset>
2796 </Anchor>
2797 </Anchors>
2798 </Frame>
2799 <Frame name="$parentBuff9" id="9" inherits="CT_RAMenuBuffTemplate">
2800 <Anchors>
2801 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff8">
2802 <Offset>
2803 <AbsDimension x="0" y="-3"/>
2804 </Offset>
2805 </Anchor>
2806 </Anchors>
2807 </Frame>
2808 <Frame name="$parentBuff10" id="10" inherits="CT_RAMenuBuffTemplate">
2809 <Anchors>
2810 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff9">
2811 <Offset>
2812 <AbsDimension x="0" y="-3"/>
2813 </Offset>
2814 </Anchor>
2815 </Anchors>
2816 </Frame>
2817 <Frame name="$parentBuff11" id="11" inherits="CT_RAMenuBuffTemplate">
2818 <Anchors>
2819 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff10">
2820 <Offset>
2821 <AbsDimension x="0" y="-3"/>
2822 </Offset>
2823 </Anchor>
2824 </Anchors>
2825 </Frame>
2826 <Frame name="$parentBuff12" id="12" inherits="CT_RAMenuBuffTemplate">
2827 <Anchors>
2828 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff11">
2829 <Offset>
2830 <AbsDimension x="0" y="-3"/>
2831 </Offset>
2832 </Anchor>
2833 </Anchors>
2834 </Frame>
2835 <Frame name="$parentBuff13" id="13" inherits="CT_RAMenuBuffTemplate">
2836 <Anchors>
2837 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff12">
2838 <Offset>
2839 <AbsDimension x="0" y="-3"/>
2840 </Offset>
2841 </Anchor>
2842 </Anchors>
2843 </Frame>
2844 <Frame name="$parentBuff14" id="14" inherits="CT_RAMenuBuffTemplate">
2845 <Anchors>
2846 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff13">
2847 <Offset>
2848 <AbsDimension x="0" y="-3"/>
2849 </Offset>
2850 </Anchor>
2851 </Anchors>
2852 </Frame>
2853 <Frame name="$parentBuff15" id="15" inherits="CT_RAMenuBuffTemplate">
2854 <Anchors>
2855 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff14">
2856 <Offset>
2857 <AbsDimension x="0" y="-3"/>
2858 </Offset>
2859 </Anchor>
2860 </Anchors>
2861 </Frame>
2862 <Frame name="$parentBuff16" id="16" inherits="CT_RAMenuBuffTemplate">
2863 <Anchors>
2864 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff15">
2865 <Offset>
2866 <AbsDimension x="0" y="-3"/>
2867 </Offset>
2868 </Anchor>
2869 </Anchors>
2870 </Frame>
2871 <Frame name="$parentBuff17" id="17" inherits="CT_RAMenuBuffTemplate">
2872 <Anchors>
2873 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff16">
2874 <Offset>
2875 <AbsDimension x="0" y="-3"/>
2876 </Offset>
2877 </Anchor>
2878 </Anchors>
2879 </Frame>
2880 <Frame name="$parentBuff18" id="18" inherits="CT_RAMenuBuffTemplate">
2881 <Anchors>
2882 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff17">
2883 <Offset>
2884 <AbsDimension x="0" y="-3"/>
2885 </Offset>
2886 </Anchor>
2887 </Anchors>
2888 </Frame>
2889 <Frame name="$parentBuff19" id="19" inherits="CT_RAMenuBuffTemplate">
2890 <Anchors>
2891 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff18">
2892 <Offset>
2893 <AbsDimension x="0" y="-3"/>
2894 </Offset>
2895 </Anchor>
2896 </Anchors>
2897 </Frame>
2898 <Frame name="$parentBuff20" id="20" inherits="CT_RAMenuBuffTemplate">
2899 <Anchors>
2900 <Anchor point="TOPLEFT" relativePoint="BOTTOMLEFT" relativeTo="$parentBuff19">
2901 <Offset>
2902 <AbsDimension x="0" y="-3"/>
2903 </Offset>
2904 </Anchor>
2905 </Anchors>
2906 </Frame>
2907  
2908 <Frame name="$parentBuffsDropDown" inherits="UIDropDownMenuTemplate" hidden="false">
2909 <Anchors>
2910 <Anchor point="BOTTOMLEFT">
2911 <Offset>
2912 <AbsDimension x="230" y="40"/>
2913 </Offset>
2914 </Anchor>
2915 </Anchors>
2916 <Size>
2917 <AbsDimension x="180" y="16"/>
2918 </Size>
2919 <Scripts>
2920 <OnLoad>
2921 CT_RAMenuFrameBuffsBuffsDropDown_OnLoad();
2922 </OnLoad>
2923 </Scripts>
2924 </Frame>
2925 </Frames>
2926 <Scripts>
2927 <OnLoad>
2928 this:RegisterEvent("VARIABLES_LOADED");
2929 </OnLoad>
2930 <OnEvent>
2931 CT_RAMenuBuffs_OnEvent();
2932 </OnEvent>
2933 </Scripts>
2934 </Frame>
2935 <Frame name="CT_RAMenuFrameAdditional" setAllPoints="true" hidden="true">
2936 <Layers>
2937 <Layer level="BACKGROUND">
2938 <FontString name="$parentTitle" inherits="GameFontHighlightSmall" text="Additional Options">
2939 <Anchors>
2940 <Anchor point="TOP">
2941 <Offset>
2942 <AbsDimension x="0" y="-60"/>
2943 </Offset>
2944 </Anchor>
2945 </Anchors>
2946 </FontString>
2947 </Layer>
2948 </Layers>
2949 <Frames>
2950 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
2951 <Anchors>
2952 <Anchor point="BOTTOMRIGHT">
2953 <Offset>
2954 <AbsDimension x="-53" y="21"/>
2955 </Offset>
2956 </Anchor>
2957 </Anchors>
2958 <Scripts>
2959 <OnClick>
2960 HideUIPanel(CT_RAMenuFrame);
2961 </OnClick>
2962 </Scripts>
2963 </Button>
2964 <Button name="$parentBack" inherits="GameMenuButtonTemplate" text="Back">
2965 <Anchors>
2966 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
2967 <Offset>
2968 <AbsDimension x="-5" y="0"/>
2969 </Offset>
2970 </Anchor>
2971 </Anchors>
2972 <Scripts>
2973 <OnClick>
2974 CT_RAMenu_ShowHome();
2975 </OnClick>
2976 </Scripts>
2977 </Button>
2978 <Frame name="$parentScaling">
2979 <Size>
2980 <AbsDimension x="550" y="80"/>
2981 </Size>
2982 <Anchors>
2983 <Anchor point="TOP">
2984 <Offset>
2985 <AbsDimension x="-15" y="-75"/>
2986 </Offset>
2987 </Anchor>
2988 </Anchors>
2989 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
2990 <EdgeSize>
2991 <AbsValue val="16"/>
2992 </EdgeSize>
2993 <TileSize>
2994 <AbsValue val="16"/>
2995 </TileSize>
2996 <BackgroundInsets>
2997 <AbsInset left="5" right="5" top="5" bottom="5"/>
2998 </BackgroundInsets>
2999 </Backdrop>
3000 <Layers>
3001 <Layer level="ARTWORK">
3002 <FontString name="$parentName" inherits="GameFontNormal" text="Window Scaling">
3003 <Anchors>
3004 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
3005 <Offset>
3006 <AbsDimension x="15" y="0"/>
3007 </Offset>
3008 </Anchor>
3009 </Anchors>
3010 </FontString>
3011 <FontString name="$parentPlayerInfo" hidden="false" inherits="GameFontNormal" text="Sets the scale of raid windows.">
3012 <Color r="1" g="1" b="1"/>
3013 <Anchors>
3014 <Anchor point="TOP">
3015 <Offset>
3016 <AbsDimension x="0" y="-5"/>
3017 </Offset>
3018 </Anchor>
3019 </Anchors>
3020 </FontString>
3021 </Layer>
3022 </Layers>
3023 <Frames>
3024 <Slider name="$parentSlider1" id="1" inherits="OptionsSliderTemplate">
3025 <Size>
3026 <AbsDimension x="230" y="17"/>
3027 </Size>
3028 <Anchors>
3029 <Anchor point="RIGHT" relativePoint="TOP">
3030 <Offset>
3031 <AbsDimension x="-10" y="-40"/>
3032 </Offset>
3033 </Anchor>
3034 </Anchors>
3035 <Scripts>
3036 <OnValueChanged>
3037 CT_RAMenuAdditional_Scaling_OnValueChanged();
3038 </OnValueChanged>
3039 <OnShow>
3040 CT_RAMenuAdditional_Scaling_OnShow();
3041 </OnShow>
3042 </Scripts>
3043 </Slider>
3044 <Slider name="$parentSlider2" id="2" inherits="OptionsSliderTemplate">
3045 <Size>
3046 <AbsDimension x="230" y="17"/>
3047 </Size>
3048 <Anchors>
3049 <Anchor point="LEFT" relativePoint="TOP">
3050 <Offset>
3051 <AbsDimension x="10" y="-40"/>
3052 </Offset>
3053 </Anchor>
3054 </Anchors>
3055 <Scripts>
3056 <OnValueChanged>
3057 CT_RAMenuAdditional_ScalingMT_OnValueChanged();
3058 </OnValueChanged>
3059 <OnShow>
3060 CT_RAMenuAdditional_ScalingMT_OnShow();
3061 </OnShow>
3062 </Scripts>
3063 </Slider>
3064 </Frames>
3065 </Frame>
3066 <Frame name="$parentEM">
3067 <Size>
3068 <AbsDimension x="550" y="130"/>
3069 </Size>
3070 <Anchors>
3071 <Anchor point="TOP">
3072 <Offset>
3073 <AbsDimension x="-15" y="-167"/>
3074 </Offset>
3075 </Anchor>
3076 </Anchors>
3077 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
3078 <EdgeSize>
3079 <AbsValue val="16"/>
3080 </EdgeSize>
3081 <TileSize>
3082 <AbsValue val="16"/>
3083 </TileSize>
3084 <BackgroundInsets>
3085 <AbsInset left="5" right="5" top="5" bottom="5"/>
3086 </BackgroundInsets>
3087 </Backdrop>
3088 <Layers>
3089 <Layer level="ARTWORK">
3090 <FontString name="$parentThresholdInfo" hidden="false" inherits="GameFontNormal" text="Displays up to 5 health bars of the party/raid members with the lowest health.">
3091 <Color r="1" g="1" b="1"/>
3092 <Anchors>
3093 <Anchor point="TOP">
3094 <Offset>
3095 <AbsDimension x="0" y="-5"/>
3096 </Offset>
3097 </Anchor>
3098 </Anchors>
3099 </FontString>
3100 <FontString name="$parentName" inherits="GameFontNormal" text="Emergency Monitor">
3101 <Anchors>
3102 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
3103 <Offset>
3104 <AbsDimension x="15" y="0"/>
3105 </Offset>
3106 </Anchor>
3107 </Anchors>
3108 </FontString>
3109 <FontString name="$parentShowText" inherits="ChatFontNormal" text="Show Emergency Monitor">
3110 <Anchors>
3111 <Anchor point="TOPLEFT">
3112 <Offset>
3113 <AbsDimension x="55" y="-105"/>
3114 </Offset>
3115 </Anchor>
3116 </Anchors>
3117 </FontString>
3118 <FontString name="$parentPartyText" inherits="ChatFontNormal" text="Show only own party">
3119 <Anchors>
3120 <Anchor point="TOPLEFT">
3121 <Offset>
3122 <AbsDimension x="235" y="-105"/>
3123 </Offset>
3124 </Anchor>
3125 </Anchors>
3126 </FontString>
3127 <FontString name="$parentOutsideRaidText" inherits="ChatFontNormal" text="Show outside raid">
3128 <Anchors>
3129 <Anchor point="TOPLEFT">
3130 <Offset>
3131 <AbsDimension x="385" y="-105"/>
3132 </Offset>
3133 </Anchor>
3134 </Anchors>
3135 </FontString>
3136 </Layer>
3137 </Layers>
3138 <Frames>
3139 <CheckButton name="$parentShowCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
3140 <Anchors>
3141 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentShowText">
3142 <Offset>
3143 <AbsDimension x="0" y="0"/>
3144 </Offset>
3145 </Anchor>
3146 </Anchors>
3147 <HitRectInsets>
3148 <AbsInset left="0" right="0" top="0" bottom="0"/>
3149 </HitRectInsets>
3150 <Size>
3151 <AbsDimension x="24" y="24"/>
3152 </Size>
3153 <Scripts>
3154 <OnClick>
3155 CT_RAMenu_Additional_ShowEmergency();
3156 </OnClick>
3157 </Scripts>
3158 </CheckButton>
3159 <CheckButton name="$parentPartyCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
3160 <Anchors>
3161 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentPartyText">
3162 <Offset>
3163 <AbsDimension x="0" y="0"/>
3164 </Offset>
3165 </Anchor>
3166 </Anchors>
3167 <HitRectInsets>
3168 <AbsInset left="0" right="0" top="0" bottom="0"/>
3169 </HitRectInsets>
3170 <Size>
3171 <AbsDimension x="24" y="24"/>
3172 </Size>
3173 <Scripts>
3174 <OnClick>
3175 CT_RAMenu_Additional_ShowEmergencyParty();
3176 </OnClick>
3177 </Scripts>
3178 </CheckButton>
3179 <CheckButton name="$parentOutsideRaidCB" hidden="false" id="4" inherits="OptionsCheckButtonTemplate">
3180 <Anchors>
3181 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentOutsideRaidText">
3182 <Offset>
3183 <AbsDimension x="0" y="0"/>
3184 </Offset>
3185 </Anchor>
3186 </Anchors>
3187 <HitRectInsets>
3188 <AbsInset left="0" right="0" top="0" bottom="0"/>
3189 </HitRectInsets>
3190 <Size>
3191 <AbsDimension x="24" y="24"/>
3192 </Size>
3193 <Scripts>
3194 <OnClick>
3195 CT_RAMenu_Additional_ShowEmergencyOutsideRaid();
3196 </OnClick>
3197 </Scripts>
3198 </CheckButton>
3199 <Slider name="$parentSlider" id="1" inherits="OptionsSliderTemplate">
3200 <Size>
3201 <AbsDimension x="450" y="17"/>
3202 </Size>
3203 <Anchors>
3204 <Anchor point="TOP" relativePoint="TOP">
3205 <Offset>
3206 <AbsDimension x="0" y="-30"/>
3207 </Offset>
3208 </Anchor>
3209 </Anchors>
3210 <Scripts>
3211 <OnValueChanged>
3212 CT_RAMenuAdditional_EM_OnValueChanged();
3213 </OnValueChanged>
3214 <OnShow>
3215 CT_RAMenuAdditional_EM_OnShow();
3216 </OnShow>
3217 </Scripts>
3218 </Slider>
3219 <Slider name="$parentSlider2" id="2" inherits="OptionsSliderTemplate">
3220 <Size>
3221 <AbsDimension x="450" y="17"/>
3222 </Size>
3223 <Anchors>
3224 <Anchor point="TOP" relativePoint="TOP">
3225 <Offset>
3226 <AbsDimension x="0" y="-65"/>
3227 </Offset>
3228 </Anchor>
3229 </Anchors>
3230 <Scripts>
3231 <OnValueChanged>
3232 CT_RAMenuAdditional_EM_OnValueChanged();
3233 </OnValueChanged>
3234 <OnShow>
3235 CT_RAMenuAdditional_EM_OnShow();
3236 </OnShow>
3237 </Scripts>
3238 </Slider>
3239 </Frames>
3240 </Frame>
3241 <Frame name="$parentBG">
3242 <Size>
3243 <AbsDimension x="550" y="65"/>
3244 </Size>
3245 <Anchors>
3246 <Anchor point="TOP">
3247 <Offset>
3248 <AbsDimension x="-15" y="-315"/>
3249 </Offset>
3250 </Anchor>
3251 </Anchors>
3252 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
3253 <EdgeSize>
3254 <AbsValue val="16"/>
3255 </EdgeSize>
3256 <TileSize>
3257 <AbsValue val="16"/>
3258 </TileSize>
3259 <BackgroundInsets>
3260 <AbsInset left="5" right="5" top="5" bottom="5"/>
3261 </BackgroundInsets>
3262 </Backdrop>
3263 <Layers>
3264 <Layer level="ARTWORK">
3265 <FontString name="$parentInfo" hidden="false" inherits="GameFontNormal" text="Changes the health and mana bars' background opacity.">
3266 <Color r="1" g="1" b="1"/>
3267 <Anchors>
3268 <Anchor point="TOP">
3269 <Offset>
3270 <AbsDimension x="0" y="-5"/>
3271 </Offset>
3272 </Anchor>
3273 </Anchors>
3274 </FontString>
3275 <FontString name="$parentName" inherits="GameFontNormal" text="Health and Mana Bars' Background Opacity">
3276 <Anchors>
3277 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
3278 <Offset>
3279 <AbsDimension x="15" y="0"/>
3280 </Offset>
3281 </Anchor>
3282 </Anchors>
3283 </FontString>
3284 </Layer>
3285 </Layers>
3286 <Frames>
3287 <Slider name="$parentSlider" id="1" inherits="OptionsSliderTemplate">
3288 <Size>
3289 <AbsDimension x="450" y="17"/>
3290 </Size>
3291 <Anchors>
3292 <Anchor point="TOP" relativePoint="TOP">
3293 <Offset>
3294 <AbsDimension x="0" y="-30"/>
3295 </Offset>
3296 </Anchor>
3297 </Anchors>
3298 <Scripts>
3299 <OnValueChanged>
3300 CT_RAMenuAdditional_BG_OnValueChanged();
3301 </OnValueChanged>
3302 <OnShow>
3303 CT_RAMenuAdditional_BG_OnShow();
3304 </OnShow>
3305 </Scripts>
3306 </Slider>
3307 </Frames>
3308 </Frame>
3309 <Frame name="$parentAlpha">
3310 <Size>
3311 <AbsDimension x="550" y="65"/>
3312 </Size>
3313 <Anchors>
3314 <Anchor point="TOP">
3315 <Offset>
3316 <AbsDimension x="-15" y="-395"/>
3317 </Offset>
3318 </Anchor>
3319 </Anchors>
3320 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
3321 <EdgeSize>
3322 <AbsValue val="16"/>
3323 </EdgeSize>
3324 <TileSize>
3325 <AbsValue val="16"/>
3326 </TileSize>
3327 <BackgroundInsets>
3328 <AbsInset left="5" right="5" top="5" bottom="5"/>
3329 </BackgroundInsets>
3330 </Backdrop>
3331 <Layers>
3332 <Layer level="ARTWORK">
3333 <FontString name="$parentInfo" hidden="false" inherits="GameFontNormal" text="Modifies the minimum alpha of the frames (see [?]).">
3334 <Color r="1" g="1" b="1"/>
3335 <Anchors>
3336 <Anchor point="TOP">
3337 <Offset>
3338 <AbsDimension x="0" y="-5"/>
3339 </Offset>
3340 </Anchor>
3341 </Anchors>
3342 </FontString>
3343 <FontString name="$parentName" inherits="GameFontNormal" text="Frame Alpha">
3344 <Anchors>
3345 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
3346 <Offset>
3347 <AbsDimension x="15" y="0"/>
3348 </Offset>
3349 </Anchor>
3350 </Anchors>
3351 </FontString>
3352 </Layer>
3353 </Layers>
3354 <Frames>
3355 <Slider name="$parentSlider" id="1" inherits="OptionsSliderTemplate">
3356 <Size>
3357 <AbsDimension x="450" y="17"/>
3358 </Size>
3359 <Anchors>
3360 <Anchor point="TOP" relativePoint="TOP">
3361 <Offset>
3362 <AbsDimension x="0" y="-30"/>
3363 </Offset>
3364 </Anchor>
3365 </Anchors>
3366 <Scripts>
3367 <OnValueChanged>
3368 CT_RAMenuAdditional_Alpha_OnValueChanged();
3369 </OnValueChanged>
3370 <OnShow>
3371 CT_RAMenuAdditional_Alpha_OnShow();
3372 </OnShow>
3373 </Scripts>
3374 </Slider>
3375 </Frames>
3376 </Frame>
3377 </Frames>
3378 </Frame>
3379 <Frame name="CT_RAMenuFrameDebuff" setAllPoints="true" hidden="true">
3380 <Layers>
3381 <Layer level="BACKGROUND">
3382 <FontString name="$parentTitle" inherits="GameFontHighlightSmall" text="Debuff Curing">
3383 <Anchors>
3384 <Anchor point="TOP">
3385 <Offset>
3386 <AbsDimension x="0" y="-60"/>
3387 </Offset>
3388 </Anchor>
3389 </Anchors>
3390 </FontString>
3391 <FontString name="$parentInfo" inherits="GameFontNormal" text="CT_RAMENU_DEBUFFCURING" justifyH="LEFT" justifyV="TOP">
3392 <Size>
3393 <AbsDimension x="545" y="65"/>
3394 </Size>
3395 <Anchors>
3396 <Anchor point="TOPLEFT">
3397 <Offset>
3398 <AbsDimension x="25" y="-75"/>
3399 </Offset>
3400 </Anchor>
3401 </Anchors>
3402 </FontString>
3403 </Layer>
3404 </Layers>
3405 <Frames>
3406 <Frame name="$parentSettings">
3407 <Size>
3408 <AbsDimension x="280" y="115"/>
3409 </Size>
3410 <Anchors>
3411 <Anchor point="TOPLEFT">
3412 <Offset>
3413 <AbsDimension x="290" y="-140"/>
3414 </Offset>
3415 </Anchor>
3416 </Anchors>
3417 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
3418 <EdgeSize>
3419 <AbsValue val="16"/>
3420 </EdgeSize>
3421 <TileSize>
3422 <AbsValue val="16"/>
3423 </TileSize>
3424 <BackgroundInsets>
3425 <AbsInset left="5" right="5" top="5" bottom="5"/>
3426 </BackgroundInsets>
3427 </Backdrop>
3428 <Layers>
3429 <Layer level="ARTWORK">
3430 <FontString name="$parentTitle" inherits="GameFontNormal" text="Set Details">
3431 <Anchors>
3432 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
3433 <Offset>
3434 <AbsDimension x="15" y="0"/>
3435 </Offset>
3436 </Anchor>
3437 </Anchors>
3438 </FontString>
3439 <FontString name="$parentName" inherits="ChatFontNormal" justifyH="LEFT" text="Set Name:">
3440 <Size>
3441 <AbsDimension x="270" y="25"/>
3442 </Size>
3443 <Anchors>
3444 <Anchor point="TOPLEFT">
3445 <Offset>
3446 <AbsDimension x="10" y="-8"/>
3447 </Offset>
3448 </Anchor>
3449 </Anchors>
3450 </FontString>
3451 <FontString name="$parentDebuffTitle" inherits="ChatFontNormal" justifyH="LEFT" text="Debuff Title:">
3452 <Size>
3453 <AbsDimension x="270" y="25"/>
3454 </Size>
3455 <Anchors>
3456 <Anchor point="TOPLEFT">
3457 <Offset>
3458 <AbsDimension x="10" y="-33"/>
3459 </Offset>
3460 </Anchor>
3461 </Anchors>
3462 </FontString>
3463 <FontString name="$parentDebuffType" inherits="ChatFontNormal" justifyH="LEFT" text="Debuff Type:">
3464 <Size>
3465 <AbsDimension x="270" y="25"/>
3466 </Size>
3467 <Anchors>
3468 <Anchor point="TOPLEFT">
3469 <Offset>
3470 <AbsDimension x="10" y="-58"/>
3471 </Offset>
3472 </Anchor>
3473 </Anchors>
3474 </FontString>
3475 <FontString name="$parentDebuffDescript" inherits="ChatFontNormal" justifyH="LEFT" text="Debuff Description:">
3476 <Size>
3477 <AbsDimension x="270" y="25"/>
3478 </Size>
3479 <Anchors>
3480 <Anchor point="TOPLEFT">
3481 <Offset>
3482 <AbsDimension x="10" y="-83"/>
3483 </Offset>
3484 </Anchor>
3485 </Anchors>
3486 </FontString>
3487 </Layer>
3488 </Layers>
3489 <Frames>
3490 <EditBox name="$parentNameEB" autoFocus="false" historyLines="0" letters="30">
3491 <Size>
3492 <AbsDimension x="125" y="25"/>
3493 </Size>
3494 <Anchors>
3495 <Anchor point="RIGHT" relativeTo="$parentName">
3496 <Offset>
3497 <AbsDimension x="-15" y="-0"/>
3498 </Offset>
3499 </Anchor>
3500 </Anchors>
3501 <Layers>
3502 <Layer level="BACKGROUND">
3503 <Texture name="$parentLeft" file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3504 <Size>
3505 <AbsDimension x="65" y="32"/>
3506 </Size>
3507 <Anchors>
3508 <Anchor point="LEFT">
3509 <Offset>
3510 <AbsDimension x="-10" y="0"/>
3511 </Offset>
3512 </Anchor>
3513 </Anchors>
3514 <TexCoords left="0" right="0.2539" top="0" bottom="1.0"/>
3515 </Texture>
3516 <Texture name="$parentRight" file="Interface\ChatFrame\UI-ChatInputBorder-Right">
3517 <Size>
3518 <AbsDimension x="25" y="32"/>
3519 </Size>
3520 <Anchors>
3521 <Anchor point="RIGHT">
3522 <Offset>
3523 <AbsDimension x="10" y="0"/>
3524 </Offset>
3525 </Anchor>
3526 </Anchors>
3527 <TexCoords left="0.9" right="1.0" top="0" bottom="1.0"/>
3528 </Texture>
3529 <Texture file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3530 <Size>
3531 <AbsDimension x="5" y="32"/>
3532 </Size>
3533 <Anchors>
3534 <Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT">
3535 <Offset>
3536 <AbsDimension x="0" y="0"/>
3537 </Offset>
3538 </Anchor>
3539 <Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT">
3540 <Offset>
3541 <AbsDimension x="0" y="0"/>
3542 </Offset>
3543 </Anchor>
3544 </Anchors>
3545 <TexCoords left="0.29296875" right="1.0" top="0" bottom="1.0"/>
3546 </Texture>
3547 </Layer>
3548 </Layers>
3549 <FontString inherits="ChatFontNormal"/>
3550 <Scripts>
3551 <OnEscapePressed>
3552 this:ClearFocus();
3553 </OnEscapePressed>
3554 <OnTabPressed>
3555 if ( IsShiftKeyDown() ) then
3556 getglobal(this:GetParent():GetName() .. "DebuffDescriptEB"):SetFocus();
3557 else
3558 getglobal(this:GetParent():GetName() .. "DebuffTitleEB"):SetFocus();
3559 end
3560 </OnTabPressed>
3561 <OnTextChanged>
3562 CT_RADebuff_SaveName();
3563 </OnTextChanged>
3564 </Scripts>
3565 </EditBox>
3566 <EditBox name="$parentDebuffTitleEB" autoFocus="false" historyLines="0" letters="30">
3567 <Size>
3568 <AbsDimension x="125" y="25"/>
3569 </Size>
3570 <Anchors>
3571 <Anchor point="RIGHT" relativeTo="$parentDebuffTitle">
3572 <Offset>
3573 <AbsDimension x="-15" y="-0"/>
3574 </Offset>
3575 </Anchor>
3576 </Anchors>
3577 <Layers>
3578 <Layer level="BACKGROUND">
3579 <Texture name="$parentLeft" file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3580 <Size>
3581 <AbsDimension x="65" y="32"/>
3582 </Size>
3583 <Anchors>
3584 <Anchor point="LEFT">
3585 <Offset>
3586 <AbsDimension x="-10" y="0"/>
3587 </Offset>
3588 </Anchor>
3589 </Anchors>
3590 <TexCoords left="0" right="0.2539" top="0" bottom="1.0"/>
3591 </Texture>
3592 <Texture name="$parentRight" file="Interface\ChatFrame\UI-ChatInputBorder-Right">
3593 <Size>
3594 <AbsDimension x="25" y="32"/>
3595 </Size>
3596 <Anchors>
3597 <Anchor point="RIGHT">
3598 <Offset>
3599 <AbsDimension x="10" y="0"/>
3600 </Offset>
3601 </Anchor>
3602 </Anchors>
3603 <TexCoords left="0.9" right="1.0" top="0" bottom="1.0"/>
3604 </Texture>
3605 <Texture file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3606 <Size>
3607 <AbsDimension x="5" y="32"/>
3608 </Size>
3609 <Anchors>
3610 <Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT">
3611 <Offset>
3612 <AbsDimension x="0" y="0"/>
3613 </Offset>
3614 </Anchor>
3615 <Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT">
3616 <Offset>
3617 <AbsDimension x="0" y="0"/>
3618 </Offset>
3619 </Anchor>
3620 </Anchors>
3621 <TexCoords left="0.29296875" right="1.0" top="0" bottom="1.0"/>
3622 </Texture>
3623 </Layer>
3624 </Layers>
3625 <FontString inherits="ChatFontNormal"/>
3626 <Scripts>
3627 <OnEscapePressed>
3628 this:ClearFocus();
3629 </OnEscapePressed>
3630 <OnTabPressed>
3631 if ( IsShiftKeyDown() ) then
3632 getglobal(this:GetParent():GetName() .. "NameEB"):SetFocus();
3633 else
3634 getglobal(this:GetParent():GetName() .. "DebuffTypeEB"):SetFocus();
3635 end
3636 </OnTabPressed>
3637 <OnTextChanged>
3638 CT_RADebuff_SaveTitle();
3639 </OnTextChanged>
3640 </Scripts>
3641 </EditBox>
3642 <EditBox name="$parentDebuffTypeEB" autoFocus="false" historyLines="0" letters="30">
3643 <Size>
3644 <AbsDimension x="125" y="25"/>
3645 </Size>
3646 <Anchors>
3647 <Anchor point="RIGHT" relativeTo="$parentDebuffType">
3648 <Offset>
3649 <AbsDimension x="-15" y="-0"/>
3650 </Offset>
3651 </Anchor>
3652 </Anchors>
3653 <Layers>
3654 <Layer level="BACKGROUND">
3655 <Texture name="$parentLeft" file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3656 <Size>
3657 <AbsDimension x="65" y="32"/>
3658 </Size>
3659 <Anchors>
3660 <Anchor point="LEFT">
3661 <Offset>
3662 <AbsDimension x="-10" y="0"/>
3663 </Offset>
3664 </Anchor>
3665 </Anchors>
3666 <TexCoords left="0" right="0.2539" top="0" bottom="1.0"/>
3667 </Texture>
3668 <Texture name="$parentRight" file="Interface\ChatFrame\UI-ChatInputBorder-Right">
3669 <Size>
3670 <AbsDimension x="25" y="32"/>
3671 </Size>
3672 <Anchors>
3673 <Anchor point="RIGHT">
3674 <Offset>
3675 <AbsDimension x="10" y="0"/>
3676 </Offset>
3677 </Anchor>
3678 </Anchors>
3679 <TexCoords left="0.9" right="1.0" top="0" bottom="1.0"/>
3680 </Texture>
3681 <Texture file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3682 <Size>
3683 <AbsDimension x="5" y="32"/>
3684 </Size>
3685 <Anchors>
3686 <Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT">
3687 <Offset>
3688 <AbsDimension x="0" y="0"/>
3689 </Offset>
3690 </Anchor>
3691 <Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT">
3692 <Offset>
3693 <AbsDimension x="0" y="0"/>
3694 </Offset>
3695 </Anchor>
3696 </Anchors>
3697 <TexCoords left="0.29296875" right="1.0" top="0" bottom="1.0"/>
3698 </Texture>
3699 </Layer>
3700 </Layers>
3701 <FontString inherits="ChatFontNormal"/>
3702 <Scripts>
3703 <OnEscapePressed>
3704 this:ClearFocus();
3705 </OnEscapePressed>
3706 <OnTabPressed>
3707 if ( IsShiftKeyDown() ) then
3708 getglobal(this:GetParent():GetName() .. "DebuffTitleEB"):SetFocus();
3709 else
3710 getglobal(this:GetParent():GetName() .. "DebuffDescriptEB"):SetFocus();
3711 end
3712 </OnTabPressed>
3713 <OnTextChanged>
3714 CT_RADebuff_SaveType();
3715 </OnTextChanged>
3716 </Scripts>
3717 </EditBox>
3718 <EditBox name="$parentDebuffDescriptEB" autoFocus="false" historyLines="0" letters="30">
3719 <Size>
3720 <AbsDimension x="125" y="25"/>
3721 </Size>
3722 <Anchors>
3723 <Anchor point="RIGHT" relativeTo="$parentDebuffDescript">
3724 <Offset>
3725 <AbsDimension x="-15" y="-0"/>
3726 </Offset>
3727 </Anchor>
3728 </Anchors>
3729 <Layers>
3730 <Layer level="BACKGROUND">
3731 <Texture name="$parentLeft" file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3732 <Size>
3733 <AbsDimension x="65" y="32"/>
3734 </Size>
3735 <Anchors>
3736 <Anchor point="LEFT">
3737 <Offset>
3738 <AbsDimension x="-10" y="0"/>
3739 </Offset>
3740 </Anchor>
3741 </Anchors>
3742 <TexCoords left="0" right="0.2539" top="0" bottom="1.0"/>
3743 </Texture>
3744 <Texture name="$parentRight" file="Interface\ChatFrame\UI-ChatInputBorder-Right">
3745 <Size>
3746 <AbsDimension x="25" y="32"/>
3747 </Size>
3748 <Anchors>
3749 <Anchor point="RIGHT">
3750 <Offset>
3751 <AbsDimension x="10" y="0"/>
3752 </Offset>
3753 </Anchor>
3754 </Anchors>
3755 <TexCoords left="0.9" right="1.0" top="0" bottom="1.0"/>
3756 </Texture>
3757 <Texture file="Interface\ChatFrame\UI-ChatInputBorder-Left">
3758 <Size>
3759 <AbsDimension x="5" y="32"/>
3760 </Size>
3761 <Anchors>
3762 <Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT">
3763 <Offset>
3764 <AbsDimension x="0" y="0"/>
3765 </Offset>
3766 </Anchor>
3767 <Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT">
3768 <Offset>
3769 <AbsDimension x="0" y="0"/>
3770 </Offset>
3771 </Anchor>
3772 </Anchors>
3773 <TexCoords left="0.29296875" right="1.0" top="0" bottom="1.0"/>
3774 </Texture>
3775 </Layer>
3776 </Layers>
3777 <FontString inherits="ChatFontNormal"/>
3778 <Scripts>
3779 <OnEscapePressed>
3780 this:ClearFocus();
3781 </OnEscapePressed>
3782 <OnTabPressed>
3783 if ( IsShiftKeyDown() ) then
3784 getglobal(this:GetParent():GetName() .. "DebuffTypeEB"):SetFocus();
3785 else
3786 getglobal(this:GetParent():GetName() .. "NameEB"):SetFocus();
3787 end
3788 </OnTabPressed>
3789 <OnTextChanged>
3790 CT_RADebuff_SaveDescript();
3791 </OnTextChanged>
3792 </Scripts>
3793 </EditBox>
3794 </Frames>
3795 </Frame>
3796 <Frame name="$parentClasses">
3797 <Size>
3798 <AbsDimension x="280" y="138"/>
3799 </Size>
3800 <Anchors>
3801 <Anchor point="TOPLEFT">
3802 <Offset>
3803 <AbsDimension x="290" y="-270"/>
3804 </Offset>
3805 </Anchor>
3806 </Anchors>
3807 <Backdrop edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
3808 <EdgeSize>
3809 <AbsValue val="16"/>
3810 </EdgeSize>
3811 <TileSize>
3812 <AbsValue val="16"/>
3813 </TileSize>
3814 <BackgroundInsets>
3815 <AbsInset left="5" right="5" top="5" bottom="5"/>
3816 </BackgroundInsets>
3817 </Backdrop>
3818 <Layers>
3819 <Layer level="ARTWORK">
3820 <FontString name="$parentTitle" inherits="GameFontNormal" text="Class Regulations">
3821 <Anchors>
3822 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
3823 <Offset>
3824 <AbsDimension x="15" y="0"/>
3825 </Offset>
3826 </Anchor>
3827 </Anchors>
3828 </FontString>
3829 <FontString name="$parentClass1" inherits="ChatFontNormal" text="Warrior">
3830 <Anchors>
3831 <Anchor point="TOPLEFT">
3832 <Offset>
3833 <AbsDimension x="35" y="-10"/>
3834 </Offset>
3835 </Anchor>
3836 </Anchors>
3837 </FontString>
3838 <FontString name="$parentClass2" inherits="ChatFontNormal" text="Paladin">
3839 <Anchors>
3840 <Anchor point="TOPLEFT">
3841 <Offset>
3842 <AbsDimension x="160" y="-10"/>
3843 </Offset>
3844 </Anchor>
3845 </Anchors>
3846 </FontString>
3847 <FontString name="$parentClass3" inherits="ChatFontNormal" text="Hunter">
3848 <Anchors>
3849 <Anchor point="TOPLEFT">
3850 <Offset>
3851 <AbsDimension x="35" y="-35"/>
3852 </Offset>
3853 </Anchor>
3854 </Anchors>
3855 </FontString>
3856 <FontString name="$parentClass4" inherits="ChatFontNormal" text="Rogue">
3857 <Anchors>
3858 <Anchor point="TOPLEFT">
3859 <Offset>
3860 <AbsDimension x="160" y="-35"/>
3861 </Offset>
3862 </Anchor>
3863 </Anchors>
3864 </FontString>
3865 <FontString name="$parentClass5" inherits="ChatFontNormal" text="Mage">
3866 <Anchors>
3867 <Anchor point="TOPLEFT">
3868 <Offset>
3869 <AbsDimension x="35" y="-60"/>
3870 </Offset>
3871 </Anchor>
3872 </Anchors>
3873 </FontString>
3874 <FontString name="$parentClass6" inherits="ChatFontNormal" text="Warlock">
3875 <Anchors>
3876 <Anchor point="TOPLEFT">
3877 <Offset>
3878 <AbsDimension x="160" y="-60"/>
3879 </Offset>
3880 </Anchor>
3881 </Anchors>
3882 </FontString>
3883 <FontString name="$parentClass7" inherits="ChatFontNormal" text="Priest">
3884 <Anchors>
3885 <Anchor point="TOPLEFT">
3886 <Offset>
3887 <AbsDimension x="35" y="-85"/>
3888 </Offset>
3889 </Anchor>
3890 </Anchors>
3891 </FontString>
3892 <FontString name="$parentClass8" inherits="ChatFontNormal" text="Druid">
3893 <Anchors>
3894 <Anchor point="TOPLEFT">
3895 <Offset>
3896 <AbsDimension x="160" y="-85"/>
3897 </Offset>
3898 </Anchor>
3899 </Anchors>
3900 </FontString>
3901 <FontString name="$parentClass9" inherits="ChatFontNormal" text="Shaman">
3902 <Anchors>
3903 <Anchor point="TOPLEFT">
3904 <Offset>
3905 <AbsDimension x="35" y="-110"/>
3906 </Offset>
3907 </Anchor>
3908 </Anchors>
3909 </FontString>
3910 <FontString name="$parentClass10" inherits="ChatFontNormal" text="Pets">
3911 <Anchors>
3912 <Anchor point="TOPLEFT">
3913 <Offset>
3914 <AbsDimension x="160" y="-110"/>
3915 </Offset>
3916 </Anchor>
3917 </Anchors>
3918 </FontString>
3919 </Layer>
3920 </Layers>
3921 <Frames>
3922 <CheckButton name="$parentClass1CB" id="1" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
3923 <Anchors>
3924 <Anchor point="TOPLEFT">
3925 <Offset>
3926 <AbsDimension x="10" y="-7"/>
3927 </Offset>
3928 </Anchor>
3929 </Anchors>
3930 <HitRectInsets>
3931 <AbsInset left="0" right="0" top="0" bottom="0"/>
3932 </HitRectInsets>
3933 <Size>
3934 <AbsDimension x="24" y="24"/>
3935 </Size>
3936 <Scripts>
3937 <OnClick>
3938 CT_RADebuff_SaveClass();
3939 </OnClick>
3940 </Scripts>
3941 </CheckButton>
3942 <CheckButton name="$parentClass2CB" id="2" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
3943 <Anchors>
3944 <Anchor point="TOPLEFT">
3945 <Offset>
3946 <AbsDimension x="135" y="-7"/>
3947 </Offset>
3948 </Anchor>
3949 </Anchors>
3950 <HitRectInsets>
3951 <AbsInset left="0" right="0" top="0" bottom="0"/>
3952 </HitRectInsets>
3953 <Size>
3954 <AbsDimension x="24" y="24"/>
3955 </Size>
3956 <Scripts>
3957 <OnClick>
3958 CT_RADebuff_SaveClass();
3959 </OnClick>
3960 </Scripts>
3961 </CheckButton>
3962 <CheckButton name="$parentClass3CB" id="3" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
3963 <Anchors>
3964 <Anchor point="TOPLEFT">
3965 <Offset>
3966 <AbsDimension x="10" y="-32"/>
3967 </Offset>
3968 </Anchor>
3969 </Anchors>
3970 <HitRectInsets>
3971 <AbsInset left="0" right="0" top="0" bottom="0"/>
3972 </HitRectInsets>
3973 <Size>
3974 <AbsDimension x="24" y="24"/>
3975 </Size>
3976 <Scripts>
3977 <OnClick>
3978 CT_RADebuff_SaveClass();
3979 </OnClick>
3980 </Scripts>
3981 </CheckButton>
3982 <CheckButton name="$parentClass4CB" id="4" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
3983 <Anchors>
3984 <Anchor point="TOPLEFT">
3985 <Offset>
3986 <AbsDimension x="135" y="-32"/>
3987 </Offset>
3988 </Anchor>
3989 </Anchors>
3990 <HitRectInsets>
3991 <AbsInset left="0" right="0" top="0" bottom="0"/>
3992 </HitRectInsets>
3993 <Size>
3994 <AbsDimension x="24" y="24"/>
3995 </Size>
3996 <Scripts>
3997 <OnClick>
3998 CT_RADebuff_SaveClass();
3999 </OnClick>
4000 </Scripts>
4001 </CheckButton>
4002 <CheckButton name="$parentClass5CB" id="5" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
4003 <Anchors>
4004 <Anchor point="TOPLEFT">
4005 <Offset>
4006 <AbsDimension x="10" y="-57"/>
4007 </Offset>
4008 </Anchor>
4009 </Anchors>
4010 <HitRectInsets>
4011 <AbsInset left="0" right="0" top="0" bottom="0"/>
4012 </HitRectInsets>
4013 <Size>
4014 <AbsDimension x="24" y="24"/>
4015 </Size>
4016 <Scripts>
4017 <OnClick>
4018 CT_RADebuff_SaveClass();
4019 </OnClick>
4020 </Scripts>
4021 </CheckButton>
4022 <CheckButton name="$parentClass6CB" id="6" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
4023 <Anchors>
4024 <Anchor point="TOPLEFT">
4025 <Offset>
4026 <AbsDimension x="135" y="-57"/>
4027 </Offset>
4028 </Anchor>
4029 </Anchors>
4030 <HitRectInsets>
4031 <AbsInset left="0" right="0" top="0" bottom="0"/>
4032 </HitRectInsets>
4033 <Size>
4034 <AbsDimension x="24" y="24"/>
4035 </Size>
4036 <Scripts>
4037 <OnClick>
4038 CT_RADebuff_SaveClass();
4039 </OnClick>
4040 </Scripts>
4041 </CheckButton>
4042 <CheckButton name="$parentClass7CB" id="7" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
4043 <Anchors>
4044 <Anchor point="TOPLEFT">
4045 <Offset>
4046 <AbsDimension x="10" y="-82"/>
4047 </Offset>
4048 </Anchor>
4049 </Anchors>
4050 <HitRectInsets>
4051 <AbsInset left="0" right="0" top="0" bottom="0"/>
4052 </HitRectInsets>
4053 <Size>
4054 <AbsDimension x="24" y="24"/>
4055 </Size>
4056 <Scripts>
4057 <OnClick>
4058 CT_RADebuff_SaveClass();
4059 </OnClick>
4060 </Scripts>
4061 </CheckButton>
4062 <CheckButton name="$parentClass8CB" id="8" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
4063 <Anchors>
4064 <Anchor point="TOPLEFT">
4065 <Offset>
4066 <AbsDimension x="135" y="-82"/>
4067 </Offset>
4068 </Anchor>
4069 </Anchors>
4070 <HitRectInsets>
4071 <AbsInset left="0" right="0" top="0" bottom="0"/>
4072 </HitRectInsets>
4073 <Size>
4074 <AbsDimension x="24" y="24"/>
4075 </Size>
4076 <Scripts>
4077 <OnClick>
4078 CT_RADebuff_SaveClass();
4079 </OnClick>
4080 </Scripts>
4081 </CheckButton>
4082 <CheckButton name="$parentClass9CB" id="9" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
4083 <Anchors>
4084 <Anchor point="TOPLEFT">
4085 <Offset>
4086 <AbsDimension x="10" y="-107"/>
4087 </Offset>
4088 </Anchor>
4089 </Anchors>
4090 <HitRectInsets>
4091 <AbsInset left="0" right="0" top="0" bottom="0"/>
4092 </HitRectInsets>
4093 <Size>
4094 <AbsDimension x="24" y="24"/>
4095 </Size>
4096 <Scripts>
4097 <OnClick>
4098 CT_RADebuff_SaveClass();
4099 </OnClick>
4100 </Scripts>
4101 </CheckButton>
4102 <CheckButton name="$parentClass10CB" id="10" checked="true" hidden="false" inherits="OptionsCheckButtonTemplate">
4103 <Anchors>
4104 <Anchor point="TOPLEFT">
4105 <Offset>
4106 <AbsDimension x="135" y="-107"/>
4107 </Offset>
4108 </Anchor>
4109 </Anchors>
4110 <HitRectInsets>
4111 <AbsInset left="0" right="0" top="0" bottom="0"/>
4112 </HitRectInsets>
4113 <Size>
4114 <AbsDimension x="24" y="24"/>
4115 </Size>
4116 <Scripts>
4117 <OnClick>
4118 CT_RADebuff_SaveClass();
4119 </OnClick>
4120 </Scripts>
4121 </CheckButton>
4122 </Frames>
4123 </Frame>
4124 <Frame name="$parentUse">
4125 <Size>
4126 <AbsDimension x="200" y="325"/>
4127 </Size>
4128 <Anchors>
4129 <Anchor point="TOPRIGHT" relativePoint="TOP">
4130 <Offset>
4131 <AbsDimension x="-60" y="-125"/>
4132 </Offset>
4133 </Anchor>
4134 </Anchors>
4135 <Backdrop name="$parentBackdrop" bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
4136 <EdgeSize>
4137 <AbsValue val="16"/>
4138 </EdgeSize>
4139 <TileSize>
4140 <AbsValue val="16"/>
4141 </TileSize>
4142 <BackgroundInsets>
4143 <AbsInset left="5" right="5" top="5" bottom="5"/>
4144 </BackgroundInsets>
4145 </Backdrop>
4146 <Frames>
4147 <Button name="$parentSet1" id="1" inherits="CT_RA_DebuffSetTemplate">
4148 <Anchors>
4149 <Anchor point="TOP">
4150 <Offset>
4151 <AbsDimension x="0" y="-13"/>
4152 </Offset>
4153 </Anchor>
4154 </Anchors>
4155 </Button>
4156 <Button name="$parentSet2" id="2" inherits="CT_RA_DebuffSetTemplate">
4157 <Anchors>
4158 <Anchor point="TOP" relativeTo="$parentSet1" relativePoint="BOTTOM"/>
4159 </Anchors>
4160 </Button>
4161 <Button name="$parentSet3" id="3" inherits="CT_RA_DebuffSetTemplate">
4162 <Anchors>
4163 <Anchor point="TOP" relativeTo="$parentSet2" relativePoint="BOTTOM"/>
4164 </Anchors>
4165 </Button>
4166 <Button name="$parentSet4" id="4" inherits="CT_RA_DebuffSetTemplate">
4167 <Anchors>
4168 <Anchor point="TOP" relativeTo="$parentSet3" relativePoint="BOTTOM"/>
4169 </Anchors>
4170 </Button>
4171 <Button name="$parentSet5" id="5" inherits="CT_RA_DebuffSetTemplate">
4172 <Anchors>
4173 <Anchor point="TOP" relativeTo="$parentSet4" relativePoint="BOTTOM"/>
4174 </Anchors>
4175 </Button>
4176 <Button name="$parentSet6" id="6" inherits="CT_RA_DebuffSetTemplate">
4177 <Anchors>
4178 <Anchor point="TOP" relativeTo="$parentSet5" relativePoint="BOTTOM"/>
4179 </Anchors>
4180 </Button>
4181 <Button name="$parentSet7" id="7" inherits="CT_RA_DebuffSetTemplate">
4182 <Anchors>
4183 <Anchor point="TOP" relativeTo="$parentSet6" relativePoint="BOTTOM"/>
4184 </Anchors>
4185 </Button>
4186 <Button name="$parentSet8" id="8" inherits="CT_RA_DebuffSetTemplate">
4187 <Anchors>
4188 <Anchor point="TOP" relativeTo="$parentSet7" relativePoint="BOTTOM"/>
4189 </Anchors>
4190 </Button>
4191 <Button name="$parentSet9" id="9" inherits="CT_RA_DebuffSetTemplate">
4192 <Anchors>
4193 <Anchor point="TOP" relativeTo="$parentSet8" relativePoint="BOTTOM"/>
4194 </Anchors>
4195 </Button>
4196 <Button name="$parentSet10" id="10" inherits="CT_RA_DebuffSetTemplate">
4197 <Anchors>
4198 <Anchor point="TOP" relativeTo="$parentSet9" relativePoint="BOTTOM"/>
4199 </Anchors>
4200 </Button>
4201 <Button name="$parentSet11" id="11" inherits="CT_RA_DebuffSetTemplate">
4202 <Anchors>
4203 <Anchor point="TOP" relativeTo="$parentSet10" relativePoint="BOTTOM"/>
4204 </Anchors>
4205 </Button>
4206 <Button name="$parentSet12" id="12" inherits="CT_RA_DebuffSetTemplate">
4207 <Anchors>
4208 <Anchor point="TOP" relativeTo="$parentSet11" relativePoint="BOTTOM"/>
4209 </Anchors>
4210 </Button>
4211 </Frames>
4212 <Scripts>
4213 <OnLoad>
4214 this:SetBackdropColor(0, 0, 0, 0.75);
4215 </OnLoad>
4216 </Scripts>
4217 </Frame>
4218 <ScrollFrame name="$parentUseScrollFrame" inherits="FauxScrollFrameTemplate">
4219 <Size>
4220 <AbsDimension x="195" y="323"/>
4221 </Size>
4222 <Anchors>
4223 <Anchor point="TOPLEFT" relativeTo="$parentUse">
4224 <Offset>
4225 <AbsDimension x="0" y="-1"/>
4226 </Offset>
4227 </Anchor>
4228 </Anchors>
4229 <Scripts>
4230 <OnVerticalScroll>
4231 FauxScrollFrame_OnVerticalScroll(25, CT_RAMenuFrameDebuff_Update);
4232 </OnVerticalScroll>
4233 </Scripts>
4234 </ScrollFrame>
4235 <Button name="$parentNew" inherits="GameMenuButtonTemplate" text="New Set" hidden="false">
4236 <Size>
4237 <AbsDimension x="125" y="25"/>
4238 </Size>
4239 <Anchors>
4240 <Anchor point="TOPLEFT">
4241 <Offset>
4242 <AbsDimension x="300" y="-410"/>
4243 </Offset>
4244 </Anchor>
4245 </Anchors>
4246 <Scripts>
4247 <OnClick>
4248 CT_RAMenuDebuff_NewSet();
4249 </OnClick>
4250 </Scripts>
4251 </Button>
4252 <Button name="$parentDelete" inherits="GameMenuButtonTemplate" text="Delete Set" hidden="false">
4253 <Size>
4254 <AbsDimension x="125" y="25"/>
4255 </Size>
4256 <Anchors>
4257 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentNew">
4258 <Offset>
4259 <AbsDimension x="10" y="0"/>
4260 </Offset>
4261 </Anchor>
4262 </Anchors>
4263 <Scripts>
4264 <OnClick>
4265 CT_RAMenuDebuff_DeleteSet();
4266 </OnClick>
4267 </Scripts>
4268 </Button>
4269 <Button name="$parentEdit" inherits="GameMenuButtonTemplate" text="Edit Priorities" hidden="false">
4270 <Size>
4271 <AbsDimension x="125" y="25"/>
4272 </Size>
4273 <Anchors>
4274 <Anchor point="TOP" relativePoint="TOPLEFT">
4275 <Offset>
4276 <AbsDimension x="430" y="-435"/>
4277 </Offset>
4278 </Anchor>
4279 </Anchors>
4280 <Scripts>
4281 <OnClick>
4282 ShowUIPanel(CT_RA_PriorityFrame);
4283 </OnClick>
4284 </Scripts>
4285 </Button>
4286 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
4287 <Anchors>
4288 <Anchor point="BOTTOMRIGHT">
4289 <Offset>
4290 <AbsDimension x="-53" y="21"/>
4291 </Offset>
4292 </Anchor>
4293 </Anchors>
4294 <Scripts>
4295 <OnClick>
4296 HideUIPanel(CT_RAMenuFrame);
4297 </OnClick>
4298 </Scripts>
4299 </Button>
4300 <Button name="$parentBack" inherits="GameMenuButtonTemplate" text="Back">
4301 <Anchors>
4302 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
4303 <Offset>
4304 <AbsDimension x="-5" y="0"/>
4305 </Offset>
4306 </Anchor>
4307 </Anchors>
4308 <Scripts>
4309 <OnClick>
4310 CT_RAMenu_ShowHome();
4311 </OnClick>
4312 </Scripts>
4313 </Button>
4314 </Frames>
4315 <Scripts>
4316 <OnShow>
4317 this.selectedIndex = nil;
4318 CT_RAMenuFrameDebuff_UpdateSet();
4319 </OnShow>
4320 </Scripts>
4321 </Frame>
4322 <Frame name="CT_RAMenuFrameOptionSets" setAllPoints="true" hidden="true">
4323 <Frames>
4324 <Frame name="$parentSet1" id="1" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4325 <Anchors>
4326 <Anchor point="TOPLEFT">
4327 <Offset>
4328 <AbsDimension x="30" y="-164"/>
4329 </Offset>
4330 </Anchor>
4331 </Anchors>
4332 </Frame>
4333 <Frame name="$parentSet2" id="2" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4334 <Anchors>
4335 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet1">
4336 <Offset>
4337 <AbsDimension x="0" y="-8"/>
4338 </Offset>
4339 </Anchor>
4340 </Anchors>
4341 </Frame>
4342 <Frame name="$parentSet3" id="3" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4343 <Anchors>
4344 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet2">
4345 <Offset>
4346 <AbsDimension x="0" y="-8"/>
4347 </Offset>
4348 </Anchor>
4349 </Anchors>
4350 </Frame>
4351 <Frame name="$parentSet4" id="4" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4352 <Anchors>
4353 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet3">
4354 <Offset>
4355 <AbsDimension x="0" y="-8"/>
4356 </Offset>
4357 </Anchor>
4358 </Anchors>
4359 </Frame>
4360 <Frame name="$parentSet5" id="5" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4361 <Anchors>
4362 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet4">
4363 <Offset>
4364 <AbsDimension x="0" y="-8"/>
4365 </Offset>
4366 </Anchor>
4367 </Anchors>
4368 </Frame>
4369 <Frame name="$parentSet6" id="6" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4370 <Anchors>
4371 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet5">
4372 <Offset>
4373 <AbsDimension x="0" y="-8"/>
4374 </Offset>
4375 </Anchor>
4376 </Anchors>
4377 </Frame>
4378 <Frame name="$parentSet7" id="7" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4379 <Anchors>
4380 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet6">
4381 <Offset>
4382 <AbsDimension x="0" y="-8"/>
4383 </Offset>
4384 </Anchor>
4385 </Anchors>
4386 </Frame>
4387 <Frame name="$parentSet8" id="8" inherits="CT_RAMenuOptionSetTemplate" hidden="false">
4388 <Anchors>
4389 <Anchor point="TOP" relativePoint="BOTTOM" relativeTo="$parentSet7">
4390 <Offset>
4391 <AbsDimension x="0" y="-8"/>
4392 </Offset>
4393 </Anchor>
4394 </Anchors>
4395 </Frame>
4396 <Button name="$parentSaveAs" inherits="GameMenuButtonTemplate" text="Save As" hidden="false">
4397 <Size>
4398 <AbsDimension x="130" y="25"/>
4399 </Size>
4400 <Anchors>
4401 <Anchor point="BOTTOM">
4402 <Offset>
4403 <AbsDimension x="0" y="55"/>
4404 </Offset>
4405 </Anchor>
4406 </Anchors>
4407 <Scripts>
4408 <OnClick>
4409 CT_RAMenu_NewSetFrame.from = "temp";
4410 CT_RAMenu_NewSetFrame.type = "Save";
4411 CT_RAMenu_NewSetFrame:Show();
4412 </OnClick>
4413 </Scripts>
4414 </Button>
4415 <Button name="$parentSave" inherits="GameMenuButtonTemplate" text="Save" hidden="false">
4416 <Size>
4417 <AbsDimension x="130" y="25"/>
4418 </Size>
4419 <Anchors>
4420 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="$parentSaveAs">
4421 <Offset>
4422 <AbsDimension x="-20" y="0"/>
4423 </Offset>
4424 </Anchor>
4425 </Anchors>
4426 <Scripts>
4427 <OnClick>
4428 CT_RAMenu_Options[CT_RAMenu_CurrSet] = CT_RAMenu_CopyTable(CT_RAMenu_Options["temp"]);
4429 CT_RAMenu_UpdateOptionSets();
4430 CT_RA_UpdateRaidGroup(0);
4431 CT_RA_UpdateMTs();
4432 CT_RAMenu_UpdateMenu();
4433 CT_RAOptions_Update();
4434 </OnClick>
4435 </Scripts>
4436 </Button>
4437 <Button name="$parentUndo" inherits="GameMenuButtonTemplate" text="Undo Changes" hidden="false">
4438 <Size>
4439 <AbsDimension x="130" y="25"/>
4440 </Size>
4441 <Anchors>
4442 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentSaveAs">
4443 <Offset>
4444 <AbsDimension x="20" y="0"/>
4445 </Offset>
4446 </Anchor>
4447 </Anchors>
4448 <Scripts>
4449 <OnClick>
4450 CT_RAMenu_Options["temp"] = CT_RAMenu_CopyTable(CT_RAMenu_Options[CT_RAMenu_CurrSet]);
4451 CT_RAMenu_UpdateOptionSets();
4452 CT_RA_UpdateRaidGroup(0);
4453 CT_RA_UpdateMTs();
4454 CT_RAMenu_UpdateMenu();
4455 CT_RAOptions_Update();
4456 </OnClick>
4457 </Scripts>
4458 </Button>
4459 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Close">
4460 <Anchors>
4461 <Anchor point="BOTTOMRIGHT">
4462 <Offset>
4463 <AbsDimension x="-53" y="21"/>
4464 </Offset>
4465 </Anchor>
4466  
4467 </Anchors>
4468 <Scripts>
4469 <OnClick>
4470 HideUIPanel(CT_RAMenuFrame);
4471 </OnClick>
4472 </Scripts>
4473 </Button>
4474 <Button name="$parentBack" inherits="GameMenuButtonTemplate" text="Back">
4475 <Anchors>
4476 <Anchor point="RIGHT" relativeTo="$parentCancel" relativePoint="LEFT">
4477 <Offset>
4478 <AbsDimension x="-5" y="0"/>
4479 </Offset>
4480 </Anchor>
4481 </Anchors>
4482 <Scripts>
4483 <OnClick>
4484 CT_RAMenu_ShowHome();
4485 </OnClick>
4486 </Scripts>
4487 </Button>
4488 </Frames>
4489 <Layers>
4490 <Layer level="ARTWORK">
4491 <FontString name="$parentTitle" inherits="GameFontHighlightSmall" text="Option Sets">
4492 <Anchors>
4493 <Anchor point="TOP">
4494 <Offset>
4495 <AbsDimension x="0" y="-60"/>
4496 </Offset>
4497 </Anchor>
4498 </Anchors>
4499 </FontString>
4500 <FontString name="$parentInfo" inherits="GameFontNormal" text="CT_RAMENU_OPTIONSETS" justifyH="LEFT" justifyV="TOP">
4501 <Size>
4502 <AbsDimension x="545" y="65"/>
4503 </Size>
4504 <Anchors>
4505 <Anchor point="TOPLEFT">
4506 <Offset>
4507 <AbsDimension x="25" y="-75"/>
4508 </Offset>
4509 </Anchor>
4510 </Anchors>
4511 </FontString>
4512 <FontString name="$parentCurrentSet" inherits="ChatFontNormal" hidden="false" text="Current Set: None">
4513 <Anchors>
4514 <Anchor point="TOPLEFT">
4515 <Offset>
4516 <AbsDimension x="30" y="-140"/>
4517 </Offset>
4518 </Anchor>
4519 </Anchors>
4520 </FontString>
4521 <Texture name="$parentLine" file="Interface\Tooltips\UI-Tooltip-Background" hidden="false">
4522 <Size>
4523 <AbsDimension x="550" y="1"/>
4524 </Size>
4525 <Anchors>
4526 <Anchor point="TOPLEFT">
4527 <Offset>
4528 <AbsDimension x="30" y="-160"/>
4529 </Offset>
4530 </Anchor>
4531 </Anchors>
4532 </Texture>
4533 <Texture name="$parentLine2" file="Interface\Tooltips\UI-Tooltip-Background" hidden="false">
4534 <Size>
4535 <AbsDimension x="550" y="1"/>
4536 </Size>
4537 <Anchors>
4538 <Anchor point="TOPLEFT">
4539 <Offset>
4540 <AbsDimension x="30" y="-424"/>
4541 </Offset>
4542 </Anchor>
4543 </Anchors>
4544 </Texture>
4545 </Layer>
4546 </Layers>
4547 <Scripts>
4548 <OnLoad>
4549 for i = 1, 8, 1 do
4550 getglobal(this:GetName() .. "Set" .. i .. "Line"):SetAlpha(0.5);
4551 end
4552 </OnLoad>
4553 <OnShow>
4554 CT_RAMenu_UpdateOptionSets();
4555 </OnShow>
4556 </Scripts>
4557 </Frame>
4558 </Frames>
4559 <Scripts>
4560 <OnShow>
4561 CT_RAMenu_OnShow();
4562 </OnShow>
4563 <OnLoad>
4564 CT_RAMenu_OnLoad();
4565 </OnLoad>
4566 </Scripts>
4567 </Frame>
4568 <Frame name="CT_RAMenu_NewSetFrame" toplevel="true" frameStrata="DIALOG" movable="true" enableMouse="true" hidden="true" parent="UIParent">
4569 <Size>
4570 <AbsDimension x="350" y="135"/>
4571 </Size>
4572 <Anchors>
4573 <Anchor point="CENTER"/>
4574 </Anchors>
4575 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
4576 <BackgroundInsets>
4577 <AbsInset left="11" right="12" top="12" bottom="11"/>
4578 </BackgroundInsets>
4579 <TileSize>
4580 <AbsValue val="32"/>
4581 </TileSize>
4582 <EdgeSize>
4583 <AbsValue val="32"/>
4584 </EdgeSize>
4585 </Backdrop>
4586 <Layers>
4587 <Layer level="ARTWORK">
4588 <Texture name="$parentHeaderTexture" file="Interface\DialogFrame\UI-DialogBox-Header">
4589 <Size>
4590 <AbsDimension x="256" y="64"/>
4591 </Size>
4592 <Anchors>
4593 <Anchor point="TOP">
4594 <Offset>
4595 <AbsDimension x="0" y="12"/>
4596 </Offset>
4597 </Anchor>
4598 </Anchors>
4599 </Texture>
4600 <FontString name="$parentTitle" inherits="GameFontNormal" text="New Set">
4601 <Anchors>
4602 <Anchor point="TOP" relativeTo="$parentHeaderTexture">
4603 <Offset>
4604 <AbsDimension x="0" y="-14"/>
4605 </Offset>
4606 </Anchor>
4607 </Anchors>
4608 </FontString>
4609 <FontString name="$parentEditing" inherits="GameFontNormal" text="Type in the name of the new set:">
4610 <Anchors>
4611 <Anchor point="TOP" relativePoint="TOP">
4612 <Offset>
4613 <AbsDimension x="0" y="-25"/>
4614 </Offset>
4615 </Anchor>
4616 </Anchors>
4617 </FontString>
4618 <FontString name="$parentUnavailable" inherits="GameFontNormal" text="This name is already used by another set." hidden="true">
4619 <Anchors>
4620 <Anchor point="TOP" relativePoint="TOP">
4621 <Offset>
4622 <AbsDimension x="0" y="-75"/>
4623 </Offset>
4624 </Anchor>
4625 </Anchors>
4626 </FontString>
4627 </Layer>
4628 </Layers>
4629 <Frames>
4630 <EditBox name="$parentNameEB" historyLines="0" letters="250">
4631 <Size>
4632 <AbsDimension x="250" y="32"/>
4633 </Size>
4634 <Anchors>
4635 <Anchor point="TOP" relativePoint="TOP">
4636 <Offset>
4637 <AbsDimension x="0" y="-40"/>
4638 </Offset>
4639 </Anchor>
4640 </Anchors>
4641 <Layers>
4642 <Layer level="BACKGROUND">
4643 <Texture name="$parentLeft" file="Interface\ChatFrame\UI-ChatInputBorder-Left">
4644 <Size>
4645 <AbsDimension x="65" y="32"/>
4646 </Size>
4647 <Anchors>
4648 <Anchor point="LEFT">
4649 <Offset>
4650 <AbsDimension x="-10" y="0"/>
4651 </Offset>
4652 </Anchor>
4653 </Anchors>
4654 <TexCoords left="0" right="0.2539" top="0" bottom="1.0"/>
4655 </Texture>
4656 <Texture name="$parentRight" file="Interface\ChatFrame\UI-ChatInputBorder-Right">
4657 <Size>
4658 <AbsDimension x="25" y="32"/>
4659 </Size>
4660 <Anchors>
4661 <Anchor point="RIGHT">
4662 <Offset>
4663 <AbsDimension x="10" y="0"/>
4664 </Offset>
4665 </Anchor>
4666 </Anchors>
4667 <TexCoords left="0.9" right="1.0" top="0" bottom="1.0"/>
4668 </Texture>
4669 <Texture file="Interface\ChatFrame\UI-ChatInputBorder-Left">
4670 <Size>
4671 <AbsDimension x="5" y="32"/>
4672 </Size>
4673 <Anchors>
4674 <Anchor point="LEFT" relativeTo="$parentLeft" relativePoint="RIGHT">
4675 <Offset>
4676 <AbsDimension x="0" y="0"/>
4677 </Offset>
4678 </Anchor>
4679 <Anchor point="RIGHT" relativeTo="$parentRight" relativePoint="LEFT">
4680 <Offset>
4681 <AbsDimension x="0" y="0"/>
4682 </Offset>
4683 </Anchor>
4684 </Anchors>
4685 <TexCoords left="0.29296875" right="1.0" top="0" bottom="1.0"/>
4686 </Texture>
4687 </Layer>
4688 </Layers>
4689 <Scripts>
4690 <OnShow>
4691 this:SetFocus();
4692 </OnShow>
4693 <OnEnterPressed>
4694 if ( not this.cannotCopy ) then
4695 CT_RAMenu_CopySet(this:GetParent().from, getglobal(this:GetParent():GetName() .. "NameEB"):GetText());
4696 this:SetText("");
4697 HideUIPanel(this:GetParent());
4698 end
4699 </OnEnterPressed>
4700 <OnTextChanged>
4701 if ( this:GetText() == "" or CT_RAMenu_ExistsSet(this:GetText()) ) then
4702 getglobal(this:GetParent():GetName() .. "OkayButton"):Disable();
4703 if ( this:GetText() ~= "" ) then
4704 getglobal(this:GetParent():GetName() .. "Unavailable"):Show();
4705 end
4706 this.cannotCopy = 1;
4707 else
4708 getglobal(this:GetParent():GetName() .. "OkayButton"):Enable();
4709 getglobal(this:GetParent():GetName() .. "Unavailable"):Hide();
4710 this.cannotCopy = nil;
4711 end
4712 </OnTextChanged>
4713 <OnEscapePressed>
4714 HideUIPanel(this:GetParent());
4715 </OnEscapePressed>
4716 </Scripts>
4717 <FontString inherits="ChatFontNormal"/>
4718 </EditBox>
4719 <Button name="$parentOkayButton" hidden="false" inherits="GameMenuButtonTemplate" text="Okay">
4720 <Size>
4721 <AbsDimension x="70" y="21"/>
4722 </Size>
4723 <Anchors>
4724 <Anchor point="BOTTOM" relativePoint="BOTTOM">
4725 <Offset>
4726 <AbsDimension x="-42" y="20"/>
4727 </Offset>
4728 </Anchor>
4729 </Anchors>
4730 <Scripts>
4731 <OnClick>
4732 CT_RAMenu_CopySet(this:GetParent().from, getglobal(this:GetParent():GetName() .. "NameEB"):GetText());
4733 HideUIPanel(this:GetParent());
4734 </OnClick>
4735 </Scripts>
4736 </Button>
4737 <Button name="$parentCancelButton" hidden="false" inherits="GameMenuButtonTemplate" text="Cancel">
4738 <Size>
4739 <AbsDimension x="70" y="21"/>
4740 </Size>
4741 <Anchors>
4742 <Anchor point="BOTTOM" relativePoint="BOTTOM">
4743 <Offset>
4744 <AbsDimension x="42" y="20"/>
4745 </Offset>
4746 </Anchor>
4747 </Anchors>
4748 <Scripts>
4749 <OnClick>
4750 HideUIPanel(this:GetParent());
4751 </OnClick>
4752 </Scripts>
4753 </Button>
4754 </Frames>
4755 <Scripts>
4756 <OnShow>
4757 getglobal(this:GetName() .. "Title"):SetText(this.type .. " Set");
4758 if ( this.type == "Copy" ) then
4759 getglobal(this:GetName() .. "NameEB"):SetText(this.from .. " Copy");
4760 getglobal(this:GetName() .. "NameEB"):HighlightText();
4761 if ( CT_RAMenu_ExistsSet(this.from .. " Copy") ) then
4762 getglobal(this:GetName() .. "OkayButton"):Disable();
4763 getglobal(this:GetName() .. "Unavailable"):Show();
4764 this.cannotCopy = 1;
4765 else
4766 getglobal(this:GetName() .. "OkayButton"):Enable();
4767 getglobal(this:GetName() .. "Unavailable"):Hide();
4768 this.cannotCopy = nil;
4769 end
4770 else
4771 getglobal(this:GetName() .. "NameEB"):SetText("");
4772 end
4773 PlaySound("UChatScrollButton");
4774 </OnShow>
4775 <OnHide>
4776 PlaySound("UChatScrollButton");
4777 </OnHide>
4778 </Scripts>
4779 </Frame>
4780 <Frame name="CT_RAMenu_DeleteSetFrame" toplevel="true" frameStrata="DIALOG" movable="true" enableMouse="true" hidden="true" parent="UIParent">
4781 <Size>
4782 <AbsDimension x="350" y="135"/>
4783 </Size>
4784 <Anchors>
4785 <Anchor point="CENTER"/>
4786 </Anchors>
4787 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
4788 <BackgroundInsets>
4789 <AbsInset left="11" right="12" top="12" bottom="11"/>
4790 </BackgroundInsets>
4791 <TileSize>
4792 <AbsValue val="32"/>
4793 </TileSize>
4794 <EdgeSize>
4795 <AbsValue val="32"/>
4796 </EdgeSize>
4797 </Backdrop>
4798 <Layers>
4799 <Layer level="ARTWORK">
4800 <Texture name="$parentHeaderTexture" file="Interface\DialogFrame\UI-DialogBox-Header">
4801 <Size>
4802 <AbsDimension x="256" y="64"/>
4803 </Size>
4804 <Anchors>
4805 <Anchor point="TOP">
4806 <Offset>
4807 <AbsDimension x="0" y="12"/>
4808 </Offset>
4809 </Anchor>
4810 </Anchors>
4811 </Texture>
4812 <FontString name="$parentTitle" inherits="GameFontNormal" text="Delete Set">
4813 <Anchors>
4814 <Anchor point="TOP" relativeTo="$parentHeaderTexture">
4815 <Offset>
4816 <AbsDimension x="0" y="-14"/>
4817 </Offset>
4818 </Anchor>
4819 </Anchors>
4820 </FontString>
4821 <FontString name="$parentDelete" inherits="GameFontNormal">
4822 <Anchors>
4823 <Anchor point="CENTER">
4824 <Offset>
4825 <AbsDimension x="0" y="5"/>
4826 </Offset>
4827 </Anchor>
4828 </Anchors>
4829 </FontString>
4830 </Layer>
4831 </Layers>
4832 <Frames>
4833 <Button name="$parentDeleteButton" hidden="false" inherits="GameMenuButtonTemplate" text="Delete">
4834 <Size>
4835 <AbsDimension x="70" y="21"/>
4836 </Size>
4837 <Anchors>
4838 <Anchor point="BOTTOM" relativePoint="BOTTOM">
4839 <Offset>
4840 <AbsDimension x="-42" y="20"/>
4841 </Offset>
4842 </Anchor>
4843 </Anchors>
4844 <Scripts>
4845 <OnClick>
4846 CT_RAMenu_DeleteSet(this:GetParent().name);
4847 HideUIPanel(this:GetParent());
4848 </OnClick>
4849 </Scripts>
4850 </Button>
4851 <Button name="$parentCancelButton" hidden="false" inherits="GameMenuButtonTemplate" text="Cancel">
4852 <Size>
4853 <AbsDimension x="70" y="21"/>
4854 </Size>
4855 <Anchors>
4856 <Anchor point="BOTTOM" relativePoint="BOTTOM">
4857 <Offset>
4858 <AbsDimension x="42" y="20"/>
4859 </Offset>
4860 </Anchor>
4861 </Anchors>
4862 <Scripts>
4863 <OnClick>
4864 HideUIPanel(this:GetParent());
4865 </OnClick>
4866 </Scripts>
4867 </Button>
4868 </Frames>
4869 <Scripts>
4870 <OnShow>
4871 getglobal(this:GetName() .. "Delete"):SetText("Are you sure you want to delete\n'|c00FFFFFF" .. this.name .. "|r'?");
4872 PlaySound("UChatScrollButton");
4873 </OnShow>
4874 <OnHide>
4875 PlaySound("UChatScrollButton");
4876 </OnHide>
4877 </Scripts>
4878 </Frame>
4879 <Frame name="CT_RAMenuGlobalFrame" parent="UIParent">
4880 <Scripts>
4881 <OnLoad>
4882 this:RegisterEvent("SPELLCAST_START");
4883 this:RegisterEvent("SPELLCAST_INTERRUPTED");
4884 this:RegisterEvent("SPELLCAST_STOP");
4885 this:RegisterEvent("SPELLCAST_FAILED");
4886 this:RegisterEvent("PLAYER_REGEN_ENABLED");
4887 this:RegisterEvent("PLAYER_REGEN_DISABLED");
4888 </OnLoad>
4889 <OnEvent>
4890 CT_RAMenuMisc_OnEvent(event);
4891 </OnEvent>
4892 <OnUpdate>
4893 CT_RAMenuMisc_OnUpdate(arg1);
4894 </OnUpdate>
4895 </Scripts>
4896 </Frame>
4897 <Frame name="CT_RA_PriorityFrame" frameStrata="DIALOG" hidden="true" parent="UIParent">
4898 <Size>
4899 <AbsDimension x="500" y="685"/>
4900 </Size>
4901 <Anchors>
4902 <Anchor point="CENTER"/>
4903 </Anchors>
4904 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
4905 <BackgroundInsets>
4906 <AbsInset left="11" right="12" top="12" bottom="11"/>
4907 </BackgroundInsets>
4908 <TileSize>
4909 <AbsValue val="32"/>
4910 </TileSize>
4911 <EdgeSize>
4912 <AbsValue val="32"/>
4913 </EdgeSize>
4914 </Backdrop>
4915 <Layers>
4916 <Layer level="BACKGROUND">
4917 <Texture name="$parentBackground">
4918 <Size>
4919 <AbsDimension x="484" y="669"/>
4920 </Size>
4921 <Anchors>
4922 <Anchor point="CENTER"/>
4923 </Anchors>
4924 <Color r="0" g="0" b="0" a="0.5"/>
4925 </Texture>
4926 </Layer>
4927 <Layer level="ARTWORK">
4928 <Texture name="$parentHeaderTexture" file="Interface\DialogFrame\UI-DialogBox-Header">
4929 <Size>
4930 <AbsDimension x="300" y="64"/>
4931 </Size>
4932 <Anchors>
4933 <Anchor point="TOP">
4934 <Offset>
4935 <AbsDimension x="0" y="12"/>
4936 </Offset>
4937 </Anchor>
4938 </Anchors>
4939 </Texture>
4940 <FontString name="$parentTitle" inherits="GameFontNormal" text="Edit Priorities">
4941 <Anchors>
4942 <Anchor point="TOP" relativeTo="$parentHeaderTexture">
4943 <Offset>
4944 <AbsDimension x="0" y="-14"/>
4945 </Offset>
4946 </Anchor>
4947 </Anchors>
4948 </FontString>
4949 <FontString name="$parentSave" inherits="GameFontNormal">
4950 <Anchors>
4951 <Anchor point="TOP">
4952 <Offset>
4953 <AbsDimension x="0" y="-25"/>
4954 </Offset>
4955 </Anchor>
4956 </Anchors>
4957 </FontString>
4958 </Layer>
4959 </Layers>
4960 <Frames>
4961 <Frame name="$parentUse">
4962 <Size>
4963 <AbsDimension x="200" y="570"/>
4964 </Size>
4965 <Anchors>
4966 <Anchor point="TOPRIGHT" relativePoint="TOP">
4967 <Offset>
4968 <AbsDimension x="-20" y="-65"/>
4969 </Offset>
4970 </Anchor>
4971 </Anchors>
4972 <Backdrop name="$parentBackdrop" bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
4973 <EdgeSize>
4974 <AbsValue val="16"/>
4975 </EdgeSize>
4976 <TileSize>
4977 <AbsValue val="16"/>
4978 </TileSize>
4979 <BackgroundInsets>
4980 <AbsInset left="5" right="5" top="5" bottom="5"/>
4981 </BackgroundInsets>
4982 </Backdrop>
4983 <Layers>
4984 <Layer level="ARTWORK">
4985 <FontString name="$parentTitle" inherits="GameFontNormal" text="Used Priorities">
4986 <Anchors>
4987 <Anchor point="BOTTOM" relativePoint="TOP"/>
4988 </Anchors>
4989 </FontString>
4990 </Layer>
4991 </Layers>
4992 <Scripts>
4993 <OnLoad>
4994 this:SetBackdropColor(0, 0, 0, 0.75);
4995 </OnLoad>
4996 </Scripts>
4997 </Frame>
4998 <Frame name="$parentAvailable">
4999 <Size>
5000 <AbsDimension x="200" y="570"/>
5001 </Size>
5002 <Anchors>
5003 <Anchor point="TOPLEFT" relativePoint="TOP">
5004 <Offset>
5005 <AbsDimension x="20" y="-65"/>
5006 </Offset>
5007 </Anchor>
5008 </Anchors>
5009 <Backdrop name="$parentBackdrop" bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
5010 <EdgeSize>
5011 <AbsValue val="16"/>
5012 </EdgeSize>
5013 <TileSize>
5014 <AbsValue val="16"/>
5015 </TileSize>
5016 <BackgroundInsets>
5017 <AbsInset left="5" right="5" top="5" bottom="5"/>
5018 </BackgroundInsets>
5019 </Backdrop>
5020 <Layers>
5021 <Layer level="ARTWORK">
5022 <FontString name="$parentTitle" inherits="GameFontNormal" text="Available Priorities">
5023 <Anchors>
5024 <Anchor point="BOTTOM" relativePoint="TOP"/>
5025 </Anchors>
5026 </FontString>
5027 </Layer>
5028 </Layers>
5029 <Scripts>
5030 <OnLoad>
5031 this:SetBackdropColor(0, 0, 0, 0.75);
5032 </OnLoad>
5033 </Scripts>
5034 </Frame>
5035 <Button name="$parentPriority1" id="1" inherits="CT_RA_PriorityTemplate"/>
5036 <Button name="$parentPriority2" id="2" inherits="CT_RA_PriorityTemplate"/>
5037 <Button name="$parentPriority3" id="3" inherits="CT_RA_PriorityTemplate"/>
5038 <Button name="$parentPriority4" id="4" inherits="CT_RA_PriorityTemplate"/>
5039 <Button name="$parentPriority5" id="5" inherits="CT_RA_PriorityTemplate"/>
5040 <Button name="$parentPriority6" id="6" inherits="CT_RA_PriorityTemplate"/>
5041 <Button name="$parentPriority7" id="7" inherits="CT_RA_PriorityTemplate"/>
5042 <Button name="$parentPriority8" id="8" inherits="CT_RA_PriorityTemplate"/>
5043 <Button name="$parentPriority9" id="9" inherits="CT_RA_PriorityTemplate"/>
5044 <Button name="$parentPriority10" id="10" inherits="CT_RA_PriorityTemplate"/>
5045 <Button name="$parentPriority11" id="11" inherits="CT_RA_PriorityTemplate"/>
5046 <Button name="$parentPriority12" id="12" inherits="CT_RA_PriorityTemplate"/>
5047 <Button name="$parentPriority13" id="13" inherits="CT_RA_PriorityTemplate"/>
5048 <Button name="$parentPriority14" id="14" inherits="CT_RA_PriorityTemplate"/>
5049 <Button name="$parentPriority15" id="15" inherits="CT_RA_PriorityTemplate"/>
5050 <Button name="$parentPriority16" id="16" inherits="CT_RA_PriorityTemplate"/>
5051 <Button name="$parentPriority17" id="17" inherits="CT_RA_PriorityTemplate"/>
5052 <Button name="$parentSaveButton" inherits="GameMenuButtonTemplate" text="Save Changes" hidden="false">
5053 <Size>
5054 <AbsDimension x="150" y="30"/>
5055 </Size>
5056 <Anchors>
5057 <Anchor point="BOTTOMRIGHT" relativePoint="BOTTOM">
5058 <Offset>
5059 <AbsDimension x="-10" y="15"/>
5060 </Offset>
5061 </Anchor>
5062 </Anchors>
5063 <Scripts>
5064 <OnClick>
5065 HideUIPanel(this:GetParent());
5066 CT_RA_Priority_SavePriorities();
5067 </OnClick>
5068 </Scripts>
5069 </Button>
5070 <Button name="$parentCancel" inherits="GameMenuButtonTemplate" text="Cancel" hidden="false">
5071 <Size>
5072 <AbsDimension x="150" y="30"/>
5073 </Size>
5074 <Anchors>
5075 <Anchor point="BOTTOMLEFT" relativePoint="BOTTOM">
5076 <Offset>
5077 <AbsDimension x="10" y="15"/>
5078 </Offset>
5079 </Anchor>
5080 </Anchors>
5081 <Scripts>
5082 <OnClick>
5083 HideUIPanel(this:GetParent());
5084 </OnClick>
5085 </Scripts>
5086 </Button>
5087 </Frames>
5088 <Scripts>
5089 <OnShow>
5090 CT_RA_Priority_InitPriorities();
5091 </OnShow>
5092 <OnUpdate>
5093 CT_RA_Priority_OnUpdate()
5094 </OnUpdate>
5095 </Scripts>
5096 </Frame>
5097 <Button name="CT_RAMenuGeneralDisplayHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameGeneralDisplay" id="1"/>
5098 <Button name="CT_RAMenuGeneralMiscHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameGeneralMisc" id="2"/>
5099 <Button name="CT_RAMenuBuffsNotifyHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameBuffsNotify" id="3"/>
5100 <Button name="CT_RAMenuAdditionalScalingHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameAdditionalScaling" id="4"/>
5101  
5102 <Button name="CT_RAMenuBuffsHelp" inherits="CT_RAMenuHelpTemplateTitle" parent="CT_RAMenuFrameBuffs" id="5">
5103 <Anchors>
5104 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentTitle">
5105 <Offset>
5106 <AbsDimension x="3" y="0"/>
5107 </Offset>
5108 </Anchor>
5109 </Anchors>
5110 </Button>
5111 <Button name="CT_RAMenuBuffsTextHelp" inherits="CT_RAMenuHelpTemplateBuffs" parent="CT_RAMenuFrameBuffs" id="6">
5112 <Anchors>
5113 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentBuffsText">
5114 <Offset>
5115 <AbsDimension x="3" y="0"/>
5116 </Offset>
5117 </Anchor>
5118 </Anchors>
5119 </Button>
5120  
5121 <Button name="CT_RAMenuDebuffsTextHelp" inherits="CT_RAMenuHelpTemplateBuffs" parent="CT_RAMenuFrameBuffs" id="7">
5122 <Anchors>
5123 <Anchor point="LEFT" relativePoint="RIGHT" relativeTo="$parentDebuffsText">
5124 <Offset>
5125 <AbsDimension x="3" y="0"/>
5126 </Offset>
5127 </Anchor>
5128 </Anchors>
5129 </Button>
5130  
5131 <Button name="CT_RAMenuAdditionalEMHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameAdditionalEM" id="8"/>
5132 <Button name="CT_RAMenuDebuffSettingsHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameDebuffSettings" id="9"/>
5133 <Button name="CT_RAMenuDebuffClassesHelp" inherits="CT_RAMenuHelpTemplateSub" parent="CT_RAMenuFrameDebuffClasses" id="10"/>
5134 </Ui>