vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
2 ..\FrameXML\UI.xsd">
3  
4 <Script file="EQL3_Options.lua"/>
5  
6 <Frame name="EQL3_OptionsFrame" toplevel="true" enableMouse="true" movable="true" parent="UIParent" hidden="true">
7 <Size>
8 <AbsDimension x="640" y="500"/>
9 </Size>
10 <Anchors>
11 <Anchor point="CENTER">
12 <Offset>
13 <AbsDimension x="0" y="0"/>
14 </Offset>
15 </Anchor>
16 </Anchors>
17 <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
18 <BackgroundInsets>
19 <AbsInset left="11" right="12" top="12" bottom="11"/>
20 </BackgroundInsets>
21 <TileSize>
22 <AbsValue val="32"/>
23 </TileSize>
24 <EdgeSize>
25 <AbsValue val="32"/>
26 </EdgeSize>
27 </Backdrop>
28  
29 <Layers>
30 <Layer level="ARTWORK">
31 <Texture name="EQL3_OptionsFrameHeader" file="Interface\DialogFrame\UI-DialogBox-Header">
32 <Size>
33 <AbsDimension x="440" y="64"/>
34 </Size>
35 <Anchors>
36 <Anchor point="TOP">
37 <Offset>
38 <AbsDimension x="0" y="12"/>
39 </Offset>
40 </Anchor>
41 </Anchors>
42 </Texture>
43 <FontString inherits="GameFontNormal" text="EQL3_OPTIONS_TITLE">
44 <Anchors>
45 <Anchor point="TOP" relativeTo="EQL3_OptionsFrameHeader">
46 <Offset>
47 <AbsDimension x="0" y="-14"/>
48 </Offset>
49 </Anchor>
50 </Anchors>
51 </FontString>
52 </Layer>
53 </Layers>
54  
55  
56 <Frames>
57 <Button name="EQL3_OptionsFrameCloseButton" inherits="UIPanelCloseButton">
58 <Anchors>
59 <Anchor point="TOPRIGHT" relativeTo="EQL3_OptionsFrame" relativePoint="TOPRIGHT">
60 <Offset>
61 <AbsDimension x="-8" y="-8"/>
62 </Offset>
63 </Anchor>
64 </Anchors>
65 <Scripts>
66 <OnHide>
67 -- Hide ColorPicker IF visible
68 if (ColorPickerFrame:IsVisible()) then
69 ColorPickerFrame:Hide();
70 end
71 </OnHide>
72 </Scripts>
73 </Button>
74  
75 <Button name="EQL3_OptionsFrameLoadButton">
76 <Size>
77 <AbsDimension x="32" y="32"/>
78 </Size>
79 <Anchors>
80 <Anchor point="RIGHT" relativeTo="EQL3_OptionsFrameCloseButton" relativePoint="LEFT">
81 <Offset>
82 <AbsDimension x="0" y="0"/>
83 </Offset>
84 </Anchor>
85 </Anchors>
86  
87  
88 <Frames>
89 <Frame name="EQL3_RealmDropDown" inherits="UIDropDownMenuTemplate" id="1" hidden="true">
90 <Anchors>
91 <Anchor point="TOP">
92 <Offset>
93 <AbsDimension x="-80" y="-35"/>
94 </Offset>
95 </Anchor>
96 </Anchors>
97 <Scripts>
98 <OnLoad>
99 EQL3_RealmDropDown_OnLoad();
100 </OnLoad>
101 <OnShow>
102 EQL3_RealmDropDown_OnLoad();
103 </OnShow>
104 </Scripts>
105 </Frame>
106 </Frames>
107  
108  
109 <Scripts>
110 <OnClick>
111 EQL3_ShowLoadDropDown(arg1);
112 PlaySound("UChatScrollButton");
113 </OnClick>
114 <OnEnter>
115 GameTooltip:SetOwner(this, "ANCHOR_RIGHT");
116 GameTooltip:SetText(EQL3_LOAD_TIP, nil,nil, nil, nil, 1);
117 </OnEnter>
118 <OnLeave>
119 GameTooltip:Hide();
120 </OnLeave>
121 </Scripts>
122 <NormalTexture file="Interface\Addons\EQL3\Images\LoadButton-Up"/>
123 <PushedTexture file="Interface\Addons\EQL3\Images\LoadButton-Down"/>
124 <DisabledTexture file="Interface\Addons\EQL3\Images\LoadButton-Disabled"/>
125 <HighlightTexture file="Interface\Buttons\UI-Panel-MinimizeButton-Highlight" AlphaMode="ADD"/>
126 </Button>
127  
128  
129  
130  
131 <Frame name="EQL3_OptionsFrame_Header_Log">
132 <Size>
133 <AbsDimension x="304" y="218"/>
134 </Size>
135 <Anchors>
136 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame" relativePoint="TOPLEFT">
137 <Offset>
138 <AbsDimension x="16" y="-40"/>
139 </Offset>
140 </Anchor>
141 </Anchors>
142  
143 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
144 <BackgroundInsets>
145 <AbsInset left="5" right="5" top="5" bottom="5" />
146 </BackgroundInsets>
147 <TileSize>
148 <AbsValue val="16" />
149 </TileSize>
150 <EdgeSize>
151 <AbsValue val="16" />
152 </EdgeSize>
153 </Backdrop>
154  
155 <Layers>
156 <Layer level="ARTWORK">
157 <FontString name="EQL3_OptionsFrame_Header_Log_Label" inherits="GameFontNormal" text="EQL3_LOG_OPTIONS">
158 <Anchors>
159 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
160 <Offset>
161 <AbsDimension x="4" y="0"/>
162 </Offset>
163 </Anchor>
164 </Anchors>
165 </FontString>
166 </Layer>
167 </Layers>
168 <Scripts>
169 <OnLoad>
170 this:SetBackdropBorderColor(0.5, 0.5, 0.5);
171 this:SetBackdropColor(0.5, 0.5, 0.5);
172 </OnLoad>
173 </Scripts>
174 </Frame>
175  
176 <CheckButton name="EQL3_OptionsFrame_Checkbox_ShowQuestLevels" virtual="true">
177 <Size>
178 <AbsDimension x="20" y="20"/>
179 </Size>
180 <Anchors>
181 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Header_Log" relativePoint="TOPLEFT">
182 <Offset>
183 <AbsDimension x="8" y="-8"/>
184 </Offset>
185 </Anchor>
186 </Anchors>
187 <Layers>
188 <Layer level="ARTWORK">
189 <FontString name="EQL3_OptionsFrame_Checkbox_ShowQuestLevels_Label" inherits="GameFontNormalSmall" text="EQL3_SHOW_QUEST_LEVELS">
190 <Anchors>
191 <Anchor point="LEFT" relativePoint="RIGHT">
192 <Offset>
193 <AbsDimension x="1" y="0"/>
194 </Offset>
195 </Anchor>
196 </Anchors>
197 </FontString>
198 </Layer>
199 </Layers>
200 <Scripts>
201 <OnClick>
202 EQL3_Toggle_QuestLevels();
203 </OnClick>
204 </Scripts>
205 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
206 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
207 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
208 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
209 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
210 </CheckButton>
211  
212 <CheckButton name="EQL3_OptionsFrame_Checkbox_QuestLevelsOnlyInLog" virtual="true">
213 <Size>
214 <AbsDimension x="20" y="20"/>
215 </Size>
216 <Anchors>
217 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_ShowQuestLevels" relativePoint="BOTTOMLEFT">
218 <Offset>
219 <AbsDimension x="20" y="-4"/>
220 </Offset>
221 </Anchor>
222 </Anchors>
223 <Layers>
224 <Layer level="ARTWORK">
225 <FontString name="EQL3_OptionsFrame_Checkbox_QuestLevelsOnlyInLog_Label" inherits="GameFontNormalSmall" text="EQL3_LEVELS_ONLY_IN_LOG">
226 <Anchors>
227 <Anchor point="LEFT" relativePoint="RIGHT">
228 <Offset>
229 <AbsDimension x="1" y="0"/>
230 </Offset>
231 </Anchor>
232 </Anchors>
233 </FontString>
234 </Layer>
235 </Layers>
236 <Scripts>
237 <OnClick>
238 EQL3_Toggle_OnlyLevelsInLog();
239 </OnClick>
240 </Scripts>
241 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
242 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
243 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
244 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
245 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
246 </CheckButton>
247  
248 <CheckButton name="EQL3_OptionsFrame_Checkbox_RestoreUponSelect" virtual="true">
249 <Size>
250 <AbsDimension x="20" y="20"/>
251 </Size>
252 <Anchors>
253 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_QuestLevelsOnlyInLog" relativePoint="BOTTOMLEFT">
254 <Offset>
255 <AbsDimension x="-20" y="-4"/>
256 </Offset>
257 </Anchor>
258 </Anchors>
259 <Layers>
260 <Layer level="ARTWORK">
261 <FontString name="EQL3_OptionsFrame_Checkbox_RestoreUponSelect_Label" inherits="GameFontNormalSmall" text="EQL3_RESTORE_UPON_SELECT">
262 <Anchors>
263 <Anchor point="LEFT" relativePoint="RIGHT">
264 <Offset>
265 <AbsDimension x="1" y="0"/>
266 </Offset>
267 </Anchor>
268 </Anchors>
269 </FontString>
270 </Layer>
271 </Layers>
272 <Scripts>
273 <OnClick>
274 EQL3_Toggle_RestoreUponSelect();
275 </OnClick>
276 </Scripts>
277 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
278 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
279 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
280 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
281 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
282 </CheckButton>
283  
284 <CheckButton name="EQL3_OptionsFrame_Checkbox_MinimizeUponClose" virtual="true">
285 <Size>
286 <AbsDimension x="20" y="20"/>
287 </Size>
288 <Anchors>
289 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_RestoreUponSelect" relativePoint="BOTTOMLEFT">
290 <Offset>
291 <AbsDimension x="0" y="-4"/>
292 </Offset>
293 </Anchor>
294 </Anchors>
295 <Layers>
296 <Layer level="ARTWORK">
297 <FontString name="EQL3_OptionsFrame_Checkbox_MinimizeUponClose_Label" inherits="GameFontNormalSmall" text="EQL3_MINIMIZE_UPON_CLOSE">
298 <Anchors>
299 <Anchor point="LEFT" relativePoint="RIGHT">
300 <Offset>
301 <AbsDimension x="1" y="0"/>
302 </Offset>
303 </Anchor>
304 </Anchors>
305 </FontString>
306 </Layer>
307 </Layers>
308 <Scripts>
309 <OnClick>
310 EQL3_Toggle_MinimizeUponClose();
311 </OnClick>
312 </Scripts>
313 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
314 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
315 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
316 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
317 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
318 </CheckButton>
319  
320 <CheckButton name="EQL3_OptionsFrame_Checkbox_AutoCompleteQuests" virtual="true">
321 <Size>
322 <AbsDimension x="20" y="20"/>
323 </Size>
324 <Anchors>
325 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_MinimizeUponClose" relativePoint="BOTTOMLEFT">
326 <Offset>
327 <AbsDimension x="0" y="-4"/>
328 </Offset>
329 </Anchor>
330 </Anchors>
331 <Layers>
332 <Layer level="ARTWORK">
333 <FontString name="EQL3_OptionsFrame_Checkbox_AutoCompleteQuests_Label" inherits="GameFontNormalSmall" text="EQL3_AUTO_COMPLETE_QUESTS">
334 <Anchors>
335 <Anchor point="LEFT" relativePoint="RIGHT">
336 <Offset>
337 <AbsDimension x="1" y="0"/>
338 </Offset>
339 </Anchor>
340 </Anchors>
341 </FontString>
342 </Layer>
343 </Layers>
344 <Scripts>
345 <OnClick>
346 EQL3_Toggle_AutoCompleteQuests();
347 </OnClick>
348 </Scripts>
349 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
350 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
351 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
352 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
353 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
354 </CheckButton>
355  
356 <CheckButton name="EQL3_OptionsFrame_Checkbox_InfoOnQuestComplete" virtual="true">
357 <Size>
358 <AbsDimension x="20" y="20"/>
359 </Size>
360 <Anchors>
361 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_AutoCompleteQuests" relativePoint="BOTTOMLEFT">
362 <Offset>
363 <AbsDimension x="0" y="-4"/>
364 </Offset>
365 </Anchor>
366 </Anchors>
367 <Layers>
368 <Layer level="ARTWORK">
369 <FontString name="EQL3_OptionsFrame_Checkbox_InfoOnQuestComplete_Label" inherits="GameFontNormalSmall" text="EQL3_INFO_ON_QUEST_COMPLETE">
370 <Anchors>
371 <Anchor point="LEFT" relativePoint="RIGHT">
372 <Offset>
373 <AbsDimension x="1" y="0"/>
374 </Offset>
375 </Anchor>
376 </Anchors>
377 </FontString>
378 </Layer>
379 </Layers>
380 <Scripts>
381 <OnClick>
382 EQL3_Toggle_InfoOnQuestComplete();
383 </OnClick>
384 </Scripts>
385 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
386 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
387 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
388 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
389 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
390 </CheckButton>
391  
392 <CheckButton name="EQL3_OptionsFrame_Checkbox_LockQuestLog" virtual="true">
393 <Size>
394 <AbsDimension x="20" y="20"/>
395 </Size>
396 <Anchors>
397 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_InfoOnQuestComplete" relativePoint="BOTTOMLEFT">
398 <Offset>
399 <AbsDimension x="0" y="-4"/>
400 </Offset>
401 </Anchor>
402 </Anchors>
403 <Layers>
404 <Layer level="ARTWORK">
405 <FontString name="EQL3_OptionsFrame_Checkbox_LockQuestLog_Label" inherits="GameFontNormalSmall" text="EQL3_LOCK_QUESTLOG">
406 <Anchors>
407 <Anchor point="LEFT" relativePoint="RIGHT">
408 <Offset>
409 <AbsDimension x="1" y="0"/>
410 </Offset>
411 </Anchor>
412 </Anchors>
413 </FontString>
414 </Layer>
415 </Layers>
416 <Scripts>
417 <OnClick>
418 EQL3_Toggle_LockQuestLog();
419 </OnClick>
420 </Scripts>
421 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
422 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
423 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
424 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
425 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
426 </CheckButton>
427  
428 <Button name="EQL3_OptionsFrame_Button_QuestLog" inherits="UIPanelButtonTemplate" text="EQL3_RESTORE">
429 <Size>
430 <AbsDimension x="128" y="24"/>
431 </Size>
432 <Anchors>
433 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_LockQuestLog" relativePoint="TOPRIGHT">
434 <Offset>
435 <AbsDimension x="140" y="2"/>
436 </Offset>
437 </Anchor>
438 </Anchors>
439 <Scripts>
440 <OnClick>
441 EQL3_RestoreQuestLog();
442 </OnClick>
443 </Scripts>
444 </Button>
445  
446 <Slider name="EQL3_OptionsFrame_Slider_LogOpacity" inherits="OptionsSliderTemplate">
447 <Size>
448 <AbsDimension x="288" y="20"/>
449 </Size>
450 <Anchors>
451 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_LockQuestLog" relativePoint="BOTTOMLEFT">
452 <Offset>
453 <AbsDimension x="0" y="-16"/>
454 </Offset>
455 </Anchor>
456 </Anchors>
457 <Scripts>
458 <OnLoad>
459 getglobal(this:GetName().."Text"):SetText(EQL3_OPACITY);
460 getglobal(this:GetName().."High"):SetText();
461 getglobal(this:GetName().."Low"):SetText();
462 this:SetMinMaxValues(0.25, 1.0);
463 this:SetValueStep(0.01);
464 this.tooltipText = EQL3_OPACITY_INFO;
465 </OnLoad>
466 <OnShow>
467 this:SetValue(QuestlogOptions[EQL3_Player].LogOpacity);
468 getglobal(this:GetName().."Text"):SetText(EQL3_OPACITY.." : "..floor(this:GetValue() * 100).."%");
469 </OnShow>
470 <OnValueChanged>
471 QuestlogOptions[EQL3_Player].LogOpacity = this:GetValue();
472 getglobal(this:GetName().."Text"):SetText(EQL3_OPACITY.." : "..floor(this:GetValue() * 100).."%");
473 EQL3_QuestLogFrame:SetAlpha(this:GetValue());
474 GameTooltip:Hide();
475 </OnValueChanged>
476 </Scripts>
477 </Slider>
478  
479  
480  
481  
482  
483  
484 <Frame name="EQL3_OptionsFrame_Header_Color">
485 <Size>
486 <AbsDimension x="304" y="210"/>
487 </Size>
488 <Anchors>
489 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Header_Log" relativePoint="BOTTOMLEFT">
490 <Offset>
491 <AbsDimension x="0" y="-16"/>
492 </Offset>
493 </Anchor>
494 </Anchors>
495  
496 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
497 <BackgroundInsets>
498 <AbsInset left="5" right="5" top="5" bottom="5" />
499 </BackgroundInsets>
500 <TileSize>
501 <AbsValue val="16" />
502 </TileSize>
503 <EdgeSize>
504 <AbsValue val="16" />
505 </EdgeSize>
506 </Backdrop>
507  
508 <Layers>
509 <Layer level="ARTWORK">
510 <FontString name="EQL3_OptionsFrame_Header_Color_Label" inherits="GameFontNormal" text="EQL3_COLOR_OPTIONS">
511 <Anchors>
512 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
513 <Offset>
514 <AbsDimension x="4" y="0"/>
515 </Offset>
516 </Anchor>
517 </Anchors>
518 </FontString>
519 </Layer>
520 </Layers>
521 <Scripts>
522 <OnLoad>
523 this:SetBackdropBorderColor(0.5, 0.5, 0.5);
524 this:SetBackdropColor(0.5, 0.5, 0.5);
525 </OnLoad>
526 </Scripts>
527 </Frame>
528  
529  
530 <CheckButton name="EQL3_OptionsFrame_Checkbox_CustomZoneColor" virtual="true">
531 <Size>
532 <AbsDimension x="20" y="20"/>
533 </Size>
534 <Anchors>
535 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Header_Color" relativePoint="TOPLEFT">
536 <Offset>
537 <AbsDimension x="8" y="-8"/>
538 </Offset>
539 </Anchor>
540 </Anchors>
541 <Layers>
542 <Layer level="ARTWORK">
543 <FontString name="EQL3_OptionsFrame_Checkbox_CustomZoneColor_Label" inherits="GameFontNormalSmall" text="EQL3_ZONE_COLOR">
544 <Anchors>
545 <Anchor point="LEFT" relativePoint="RIGHT">
546 <Offset>
547 <AbsDimension x="1" y="0"/>
548 </Offset>
549 </Anchor>
550 </Anchors>
551 </FontString>
552 </Layer>
553 </Layers>
554 <Scripts>
555 <OnClick>
556 EQL3_Toggle_CustomZoneColor();
557 </OnClick>
558 </Scripts>
559 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
560 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
561 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
562 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
563 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
564 </CheckButton>
565  
566  
567 <CheckButton name="EQL3_OptionsFrame_Checkbox_CustomHeaderColor" virtual="true">
568 <Size>
569 <AbsDimension x="20" y="20"/>
570 </Size>
571 <Anchors>
572 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomZoneColor" relativePoint="BOTTOMLEFT">
573 <Offset>
574 <AbsDimension x="0" y="-4"/>
575 </Offset>
576 </Anchor>
577 </Anchors>
578 <Layers>
579 <Layer level="ARTWORK">
580 <FontString name="EQL3_OptionsFrame_Checkbox_CustomHeaderColor_Label" inherits="GameFontNormalSmall" text="EQL3_HEADER_COLOR">
581 <Anchors>
582 <Anchor point="LEFT" relativePoint="RIGHT">
583 <Offset>
584 <AbsDimension x="1" y="0"/>
585 </Offset>
586 </Anchor>
587 </Anchors>
588 </FontString>
589 </Layer>
590 </Layers>
591 <Scripts>
592 <OnClick>
593 EQL3_Toggle_CustomHeaderColor();
594 </OnClick>
595 </Scripts>
596 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
597 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
598 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
599 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
600 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
601 </CheckButton>
602  
603  
604 <CheckButton name="EQL3_OptionsFrame_Checkbox_FadeHeaderColor" virtual="true">
605 <Size>
606 <AbsDimension x="20" y="20"/>
607 </Size>
608 <Anchors>
609 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomHeaderColor" relativePoint="BOTTOMLEFT">
610 <Offset>
611 <AbsDimension x="10" y="-4"/>
612 </Offset>
613 </Anchor>
614 </Anchors>
615 <Layers>
616 <Layer level="ARTWORK">
617 <FontString name="EQL3_OptionsFrame_Checkbox_FadeHeaderColor_Label" inherits="GameFontNormalSmall" text="EQL3_FADE_HEADER">
618 <Anchors>
619 <Anchor point="LEFT" relativePoint="RIGHT">
620 <Offset>
621 <AbsDimension x="1" y="0"/>
622 </Offset>
623 </Anchor>
624 </Anchors>
625 </FontString>
626 </Layer>
627 </Layers>
628 <Scripts>
629 <OnClick>
630 EQL3_Toggle_FadeHeaderColor();
631 </OnClick>
632 </Scripts>
633 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
634 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
635 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
636 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
637 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
638 </CheckButton>
639  
640  
641 <CheckButton name="EQL3_OptionsFrame_Checkbox_CustomObjectiveColor" virtual="true">
642 <Size>
643 <AbsDimension x="20" y="20"/>
644 </Size>
645 <Anchors>
646 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_FadeHeaderColor" relativePoint="BOTTOMLEFT">
647 <Offset>
648 <AbsDimension x="-10" y="-4"/>
649 </Offset>
650 </Anchor>
651 </Anchors>
652 <Layers>
653 <Layer level="ARTWORK">
654 <FontString name="EQL3_OptionsFrame_Checkbox_CustomObjectiveColor_Label" inherits="GameFontNormalSmall" text="EQL3_OBJECTIVE_COLOR">
655 <Anchors>
656 <Anchor point="LEFT" relativePoint="RIGHT">
657 <Offset>
658 <AbsDimension x="1" y="0"/>
659 </Offset>
660 </Anchor>
661 </Anchors>
662 </FontString>
663 </Layer>
664 </Layers>
665 <Scripts>
666 <OnClick>
667 EQL3_Toggle_CustomObjectiveColor();
668 </OnClick>
669 </Scripts>
670 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
671 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
672 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
673 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
674 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
675 </CheckButton>
676  
677  
678 <CheckButton name="EQL3_OptionsFrame_Checkbox_FadeObjectiveColor" virtual="true">
679 <Size>
680 <AbsDimension x="20" y="20"/>
681 </Size>
682 <Anchors>
683 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomObjectiveColor" relativePoint="BOTTOMLEFT">
684 <Offset>
685 <AbsDimension x="10" y="-4"/>
686 </Offset>
687 </Anchor>
688 </Anchors>
689 <Layers>
690 <Layer level="ARTWORK">
691 <FontString name="EQL3_OptionsFrame_Checkbox_FadeObjectiveColor_Label" inherits="GameFontNormalSmall" text="EQL3_FADE_OBJECTIVE">
692 <Anchors>
693 <Anchor point="LEFT" relativePoint="RIGHT">
694 <Offset>
695 <AbsDimension x="1" y="0"/>
696 </Offset>
697 </Anchor>
698 </Anchors>
699 </FontString>
700 </Layer>
701 </Layers>
702 <Scripts>
703 <OnClick>
704 EQL3_Toggle_FadeObjectiveColor();
705 </OnClick>
706 </Scripts>
707 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
708 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
709 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
710 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
711 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
712 </CheckButton>
713  
714  
715 <CheckButton name="EQL3_OptionsFrame_Checkbox_CustomTrackerBGColor" virtual="true">
716 <Size>
717 <AbsDimension x="20" y="20"/>
718 </Size>
719 <Anchors>
720 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_FadeObjectiveColor" relativePoint="BOTTOMLEFT">
721 <Offset>
722 <AbsDimension x="-10" y="-4"/>
723 </Offset>
724 </Anchor>
725 </Anchors>
726 <Layers>
727 <Layer level="ARTWORK">
728 <FontString name="EQL3_OptionsFrame_Checkbox_CustomTrackerBGColor_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_BG">
729 <Anchors>
730 <Anchor point="LEFT" relativePoint="RIGHT">
731 <Offset>
732 <AbsDimension x="1" y="0"/>
733 </Offset>
734 </Anchor>
735 </Anchors>
736 </FontString>
737 </Layer>
738 </Layers>
739 <Scripts>
740 <OnClick>
741 EQL3_Toggle_CustomTrackerBGColor();
742 </OnClick>
743 </Scripts>
744 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
745 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
746 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
747 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
748 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
749 </CheckButton>
750  
751  
752 <CheckButton name="EQL3_OptionsFrame_Checkbox_CustomTooltipInfoColor" virtual="true">
753 <Size>
754 <AbsDimension x="20" y="20"/>
755 </Size>
756 <Anchors>
757 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomTrackerBGColor" relativePoint="BOTTOMLEFT">
758 <Offset>
759 <AbsDimension x="0" y="-4"/>
760 </Offset>
761 </Anchor>
762 </Anchors>
763 <Layers>
764 <Layer level="ARTWORK">
765 <FontString name="EQL3_OptionsFrame_Checkbox_CustomTooltipInfoColor_Label" inherits="GameFontNormalSmall" text="EQL3_TOOLTIP_COLOR">
766 <Anchors>
767 <Anchor point="LEFT" relativePoint="RIGHT">
768 <Offset>
769 <AbsDimension x="1" y="0"/>
770 </Offset>
771 </Anchor>
772 </Anchors>
773 </FontString>
774 </Layer>
775 </Layers>
776 <Scripts>
777 <OnClick>
778 EQL3_Toggle_CustomTooltipInfoColor();
779 </OnClick>
780 </Scripts>
781 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
782 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
783 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
784 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
785 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
786 </CheckButton>
787  
788  
789 <Button name="EQL3_OptionsFrame_ColorSwatch_Zone" hidden="false" virtual="true">
790 <Size>
791 <AbsDimension x="20" y="20"/>
792 </Size>
793 <Anchors>
794 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomZoneColor" relativePoint="TOPRIGHT">
795 <Offset>
796 <AbsDimension x="248" y="0"/>
797 </Offset>
798 </Anchor>
799 </Anchors>
800 <Layers>
801 <Layer level="BACKGROUND">
802 <Texture name="$parent_SwatchBg">
803 <Size>
804 <AbsDimension x="18" y="18"/>
805 </Size>
806 <Anchors>
807 <Anchor point="CENTER">
808 <Offset>
809 <AbsDimension x="0" y="0"/>
810 </Offset>
811 </Anchor>
812 </Anchors>
813 <Color r="1.0" g="1.0" b="1.0"/>
814 </Texture>
815 </Layer>
816 </Layers>
817 <Scripts>
818 <OnClick>
819 EQL3_OpenColorPicker("Zone", false, "EQL3_OptionsFrame_ColorSwatch_Zone");
820 </OnClick>
821 <OnEnter>
822 EQL3_OptionsFrame_ColorSwatch_Zone_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
823 </OnEnter>
824 <OnLeave>
825 EQL3_OptionsFrame_ColorSwatch_Zone_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
826 </OnLeave>
827 </Scripts>
828 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
829 </Button>
830  
831  
832 <Button name="EQL3_OptionsFrame_ColorSwatch_Header_Empty" hidden="false" virtual="true">
833 <Size>
834 <AbsDimension x="20" y="20"/>
835 </Size>
836 <Anchors>
837 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomHeaderColor" relativePoint="TOPRIGHT">
838 <Offset>
839 <AbsDimension x="224" y="0"/>
840 </Offset>
841 </Anchor>
842 </Anchors>
843 <Layers>
844 <Layer level="BACKGROUND">
845 <Texture name="$parent_SwatchBg">
846 <Size>
847 <AbsDimension x="18" y="18"/>
848 </Size>
849 <Anchors>
850 <Anchor point="CENTER">
851 <Offset>
852 <AbsDimension x="0" y="0"/>
853 </Offset>
854 </Anchor>
855 </Anchors>
856 <Color r="1.0" g="1.0" b="1.0"/>
857 </Texture>
858 </Layer>
859 </Layers>
860 <Scripts>
861 <OnClick>
862 EQL3_OpenColorPicker("HeaderEmpty", false, "EQL3_OptionsFrame_ColorSwatch_Header_Empty");
863 </OnClick>
864 <OnEnter>
865 EQL3_OptionsFrame_ColorSwatch_Header_Empty_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
866 </OnEnter>
867 <OnLeave>
868 EQL3_OptionsFrame_ColorSwatch_Header_Empty_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
869 </OnLeave>
870 </Scripts>
871 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
872 </Button>
873  
874  
875 <Button name="EQL3_OptionsFrame_ColorSwatch_Header_Complete" hidden="false" virtual="true">
876 <Size>
877 <AbsDimension x="20" y="20"/>
878 </Size>
879 <Anchors>
880 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomHeaderColor" relativePoint="TOPRIGHT">
881 <Offset>
882 <AbsDimension x="248" y="0"/>
883 </Offset>
884 </Anchor>
885 </Anchors>
886 <Layers>
887 <Layer level="BACKGROUND">
888 <Texture name="$parent_SwatchBg">
889 <Size>
890 <AbsDimension x="18" y="18"/>
891 </Size>
892 <Anchors>
893 <Anchor point="CENTER">
894 <Offset>
895 <AbsDimension x="0" y="0"/>
896 </Offset>
897 </Anchor>
898 </Anchors>
899 <Color r="1.0" g="1.0" b="1.0"/>
900 </Texture>
901 </Layer>
902 </Layers>
903 <Scripts>
904 <OnClick>
905 EQL3_OpenColorPicker("HeaderComplete", false, "EQL3_OptionsFrame_ColorSwatch_Header_Complete");
906 </OnClick>
907 <OnEnter>
908 EQL3_OptionsFrame_ColorSwatch_Header_Complete_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
909 </OnEnter>
910 <OnLeave>
911 EQL3_OptionsFrame_ColorSwatch_Header_Complete_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
912 </OnLeave>
913 </Scripts>
914 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
915 </Button>
916  
917  
918 <Button name="EQL3_OptionsFrame_ColorSwatch_Objective_Empty" hidden="false" virtual="true">
919 <Size>
920 <AbsDimension x="20" y="20"/>
921 </Size>
922 <Anchors>
923 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomObjectiveColor" relativePoint="TOPRIGHT">
924 <Offset>
925 <AbsDimension x="224" y="0"/>
926 </Offset>
927 </Anchor>
928 </Anchors>
929 <Layers>
930 <Layer level="BACKGROUND">
931 <Texture name="$parent_SwatchBg">
932 <Size>
933 <AbsDimension x="18" y="18"/>
934 </Size>
935 <Anchors>
936 <Anchor point="CENTER">
937 <Offset>
938 <AbsDimension x="0" y="0"/>
939 </Offset>
940 </Anchor>
941 </Anchors>
942 <Color r="1.0" g="1.0" b="1.0"/>
943 </Texture>
944 </Layer>
945 </Layers>
946 <Scripts>
947 <OnClick>
948 EQL3_OpenColorPicker("ObjectiveEmpty", false, "EQL3_OptionsFrame_ColorSwatch_Objective_Empty");
949 </OnClick>
950 <OnEnter>
951 EQL3_OptionsFrame_ColorSwatch_Objective_Empty_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
952 </OnEnter>
953 <OnLeave>
954 EQL3_OptionsFrame_ColorSwatch_Objective_Empty_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
955 </OnLeave>
956 </Scripts>
957 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
958 </Button>
959  
960  
961 <Button name="EQL3_OptionsFrame_ColorSwatch_Objective_Complete" hidden="false" virtual="true">
962 <Size>
963 <AbsDimension x="20" y="20"/>
964 </Size>
965 <Anchors>
966 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomObjectiveColor" relativePoint="TOPRIGHT">
967 <Offset>
968 <AbsDimension x="248" y="0"/>
969 </Offset>
970 </Anchor>
971 </Anchors>
972 <Layers>
973 <Layer level="BACKGROUND">
974 <Texture name="$parent_SwatchBg">
975 <Size>
976 <AbsDimension x="18" y="18"/>
977 </Size>
978 <Anchors>
979 <Anchor point="CENTER">
980 <Offset>
981 <AbsDimension x="0" y="0"/>
982 </Offset>
983 </Anchor>
984 </Anchors>
985 <Color r="1.0" g="1.0" b="1.0"/>
986 </Texture>
987 </Layer>
988 </Layers>
989 <Scripts>
990 <OnClick>
991 EQL3_OpenColorPicker("ObjectiveComplete", false, "EQL3_OptionsFrame_ColorSwatch_Objective_Complete");
992 </OnClick>
993 <OnEnter>
994 EQL3_OptionsFrame_ColorSwatch_Objective_Complete_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
995 </OnEnter>
996 <OnLeave>
997 EQL3_OptionsFrame_ColorSwatch_Objective_Complete_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
998 </OnLeave>
999 </Scripts>
1000 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
1001 </Button>
1002  
1003  
1004 <Button name="EQL3_OptionsFrame_ColorSwatch_TrackerBG" hidden="false" virtual="true">
1005 <Size>
1006 <AbsDimension x="20" y="20"/>
1007 </Size>
1008 <Anchors>
1009 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomTrackerBGColor" relativePoint="TOPRIGHT">
1010 <Offset>
1011 <AbsDimension x="248" y="0"/>
1012 </Offset>
1013 </Anchor>
1014 </Anchors>
1015 <Layers>
1016 <Layer level="BACKGROUND">
1017 <Texture name="$parent_SwatchBg">
1018 <Size>
1019 <AbsDimension x="18" y="18"/>
1020 </Size>
1021 <Anchors>
1022 <Anchor point="CENTER">
1023 <Offset>
1024 <AbsDimension x="0" y="0"/>
1025 </Offset>
1026 </Anchor>
1027 </Anchors>
1028 <Color r="1.0" g="1.0" b="1.0"/>
1029 </Texture>
1030 </Layer>
1031 </Layers>
1032 <Scripts>
1033 <OnClick>
1034 EQL3_OpenColorPicker("TrackerBG", true, "EQL3_OptionsFrame_ColorSwatch_TrackerBG");
1035 </OnClick>
1036 <OnEnter>
1037 EQL3_OptionsFrame_ColorSwatch_TrackerBG_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
1038 </OnEnter>
1039 <OnLeave>
1040 EQL3_OptionsFrame_ColorSwatch_TrackerBG_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
1041 </OnLeave>
1042 </Scripts>
1043 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
1044 </Button>
1045  
1046  
1047 <Button name="EQL3_OptionsFrame_ColorSwatch_TooltipInfo" hidden="false" virtual="true">
1048 <Size>
1049 <AbsDimension x="20" y="20"/>
1050 </Size>
1051 <Anchors>
1052 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomTooltipInfoColor" relativePoint="TOPRIGHT">
1053 <Offset>
1054 <AbsDimension x="248" y="0"/>
1055 </Offset>
1056 </Anchor>
1057 </Anchors>
1058 <Layers>
1059 <Layer level="BACKGROUND">
1060 <Texture name="$parent_SwatchBg">
1061 <Size>
1062 <AbsDimension x="18" y="18"/>
1063 </Size>
1064 <Anchors>
1065 <Anchor point="CENTER">
1066 <Offset>
1067 <AbsDimension x="0" y="0"/>
1068 </Offset>
1069 </Anchor>
1070 </Anchors>
1071 <Color r="1.0" g="1.0" b="1.0"/>
1072 </Texture>
1073 </Layer>
1074 </Layers>
1075 <Scripts>
1076 <OnClick>
1077 EQL3_OpenColorPicker("Tooltip", false, "EQL3_OptionsFrame_ColorSwatch_TooltipInfo");
1078 </OnClick>
1079 <OnEnter>
1080 EQL3_OptionsFrame_ColorSwatch_TooltipInfo_SwatchBg:SetVertexColor(NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b);
1081 </OnEnter>
1082 <OnLeave>
1083 EQL3_OptionsFrame_ColorSwatch_TooltipInfo_SwatchBg:SetVertexColor(HIGHLIGHT_FONT_COLOR.r, HIGHLIGHT_FONT_COLOR.g, HIGHLIGHT_FONT_COLOR.b);
1084 </OnLeave>
1085 </Scripts>
1086 <NormalTexture name="$parentNormalTexture" file="Interface\ChatFrame\ChatFrameColorSwatch"/>
1087 </Button>
1088  
1089 <Button name="EQL3_OptionsFrame_Button_RestoreColors" inherits="UIPanelButtonTemplate" text="EQL3_RESTORE_COLORS">
1090 <Size>
1091 <AbsDimension x="180" y="26"/>
1092 </Size>
1093 <Anchors>
1094 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_CustomTooltipInfoColor" relativePoint="BOTTOMLEFT">
1095 <Offset>
1096 <AbsDimension x="54" y="-2"/>
1097 </Offset>
1098 </Anchor>
1099 </Anchors>
1100 <Scripts>
1101 <OnClick>
1102 EQL3_RestoreColors();
1103 </OnClick>
1104 </Scripts>
1105 </Button>
1106  
1107  
1108  
1109  
1110  
1111  
1112  
1113 <Frame name="EQL3_OptionsFrame_Header_Tracker">
1114 <Size>
1115 <AbsDimension x="304" y="368"/>
1116 </Size>
1117 <Anchors>
1118 <Anchor point="TOPRIGHT" relativeTo="EQL3_OptionsFrame" relativePoint="TOPRIGHT">
1119 <Offset>
1120 <AbsDimension x="-16" y="-40"/>
1121 </Offset>
1122 </Anchor>
1123 </Anchors>
1124  
1125 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
1126 <BackgroundInsets>
1127 <AbsInset left="5" right="5" top="5" bottom="5" />
1128 </BackgroundInsets>
1129 <TileSize>
1130 <AbsValue val="16" />
1131 </TileSize>
1132 <EdgeSize>
1133 <AbsValue val="16" />
1134 </EdgeSize>
1135 </Backdrop>
1136  
1137 <Layers>
1138 <Layer level="ARTWORK">
1139 <FontString name="EQL3_OptionsFrame_Header_Tracker_Label" inherits="GameFontNormal" text="EQL3_TRACKER_OPTIONS">
1140 <Anchors>
1141 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
1142 <Offset>
1143 <AbsDimension x="4" y="0"/>
1144 </Offset>
1145 </Anchor>
1146 </Anchors>
1147 </FontString>
1148 </Layer>
1149 </Layers>
1150 <Scripts>
1151 <OnLoad>
1152 this:SetBackdropBorderColor(0.5, 0.5, 0.5);
1153 this:SetBackdropColor(0.5, 0.5, 0.5);
1154 </OnLoad>
1155 </Scripts>
1156 </Frame>
1157  
1158  
1159  
1160 <CheckButton name="EQL3_OptionsFrame_Checkbox_ShowObjectiveMarkers" virtual="true">
1161 <Size>
1162 <AbsDimension x="20" y="20"/>
1163 </Size>
1164 <Anchors>
1165 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Header_Tracker" relativePoint="TOPLEFT">
1166 <Offset>
1167 <AbsDimension x="8" y="-8"/>
1168 </Offset>
1169 </Anchor>
1170 </Anchors>
1171 <Layers>
1172 <Layer level="ARTWORK">
1173 <FontString name="EQL3_OptionsFrame_Checkbox_ShowObjectiveMarkers_Label" inherits="GameFontNormalSmall" text="EQL3_SHOW_OBJECTIVE_MARKERS">
1174 <Anchors>
1175 <Anchor point="LEFT" relativePoint="RIGHT">
1176 <Offset>
1177 <AbsDimension x="1" y="0"/>
1178 </Offset>
1179 </Anchor>
1180 </Anchors>
1181 </FontString>
1182 </Layer>
1183 </Layers>
1184 <Scripts>
1185 <OnClick>
1186 EQL3_Toggle_ShowObjectiveMarkers();
1187 </OnClick>
1188 </Scripts>
1189 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1190 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1191 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1192 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1193 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1194 </CheckButton>
1195  
1196  
1197  
1198 <CheckButton name="EQL3_OptionsFrame_Checkbox_UseTrackerListing" virtual="true">
1199 <Size>
1200 <AbsDimension x="20" y="20"/>
1201 </Size>
1202 <Anchors>
1203 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_ShowObjectiveMarkers" relativePoint="BOTTOMLEFT">
1204 <Offset>
1205 <AbsDimension x="20" y="-4"/>
1206 </Offset>
1207 </Anchor>
1208 </Anchors>
1209 <Layers>
1210 <Layer level="ARTWORK">
1211 <FontString name="EQL3_OptionsFrame_Checkbox_UseTrackerListing_Label" inherits="GameFontNormalSmall" text="EQL3_USE_TRACKER_LISTING">
1212 <Anchors>
1213 <Anchor point="LEFT" relativePoint="RIGHT">
1214 <Offset>
1215 <AbsDimension x="1" y="0"/>
1216 </Offset>
1217 </Anchor>
1218 </Anchors>
1219 </FontString>
1220 </Layer>
1221 </Layers>
1222 <Scripts>
1223 <OnClick>
1224 EQL3_Toggle_UseTrackerListing();
1225 </OnClick>
1226 </Scripts>
1227 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1228 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1229 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1230 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1231 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1232 </CheckButton>
1233  
1234  
1235  
1236 <CheckButton name="EQL3_OptionsFrame_Checkbox_List1" virtual="true">
1237 <Size>
1238 <AbsDimension x="20" y="20"/>
1239 </Size>
1240 <Anchors>
1241 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_UseTrackerListing" relativePoint="BOTTOMLEFT">
1242 <Offset>
1243 <AbsDimension x="20" y="-4"/>
1244 </Offset>
1245 </Anchor>
1246 </Anchors>
1247 <Layers>
1248 <Layer level="ARTWORK">
1249 <FontString name="EQL3_OptionsFrame_Checkbox_List1_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_LIST_1">
1250 <Anchors>
1251 <Anchor point="LEFT" relativePoint="RIGHT">
1252 <Offset>
1253 <AbsDimension x="1" y="0"/>
1254 </Offset>
1255 </Anchor>
1256 </Anchors>
1257 </FontString>
1258 </Layer>
1259 </Layers>
1260 <Scripts>
1261 <OnClick>
1262 EQL3_Set_TrackerListing(0);
1263 </OnClick>
1264 </Scripts>
1265 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1266 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1267 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1268 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1269 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1270 </CheckButton>
1271  
1272 <CheckButton name="EQL3_OptionsFrame_Checkbox_List2" virtual="true">
1273 <Size>
1274 <AbsDimension x="20" y="20"/>
1275 </Size>
1276 <Anchors>
1277 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_List1" relativePoint="TOPRIGHT">
1278 <Offset>
1279 <AbsDimension x="20" y="0"/>
1280 </Offset>
1281 </Anchor>
1282 </Anchors>
1283 <Layers>
1284 <Layer level="ARTWORK">
1285 <FontString name="EQL3_OptionsFrame_Checkbox_List2_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_LIST_2">
1286 <Anchors>
1287 <Anchor point="LEFT" relativePoint="RIGHT">
1288 <Offset>
1289 <AbsDimension x="1" y="0"/>
1290 </Offset>
1291 </Anchor>
1292 </Anchors>
1293 </FontString>
1294 </Layer>
1295 </Layers>
1296 <Scripts>
1297 <OnClick>
1298 EQL3_Set_TrackerListing(1);
1299 </OnClick>
1300 </Scripts>
1301 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1302 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1303 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1304 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1305 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1306 </CheckButton>
1307  
1308 <CheckButton name="EQL3_OptionsFrame_Checkbox_List3" virtual="true">
1309 <Size>
1310 <AbsDimension x="20" y="20"/>
1311 </Size>
1312 <Anchors>
1313 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_List2" relativePoint="TOPRIGHT">
1314 <Offset>
1315 <AbsDimension x="20" y="0"/>
1316 </Offset>
1317 </Anchor>
1318 </Anchors>
1319 <Layers>
1320 <Layer level="ARTWORK">
1321 <FontString name="EQL3_OptionsFrame_Checkbox_List3_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_LIST_3">
1322 <Anchors>
1323 <Anchor point="LEFT" relativePoint="RIGHT">
1324 <Offset>
1325 <AbsDimension x="1" y="0"/>
1326 </Offset>
1327 </Anchor>
1328 </Anchors>
1329 </FontString>
1330 </Layer>
1331 </Layers>
1332 <Scripts>
1333 <OnClick>
1334 EQL3_Set_TrackerListing(2);
1335 </OnClick>
1336 </Scripts>
1337 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1338 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1339 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1340 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1341 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1342 </CheckButton>
1343  
1344 <CheckButton name="EQL3_OptionsFrame_Checkbox_List4" virtual="true">
1345 <Size>
1346 <AbsDimension x="20" y="20"/>
1347 </Size>
1348 <Anchors>
1349 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_List3" relativePoint="TOPRIGHT">
1350 <Offset>
1351 <AbsDimension x="20" y="0"/>
1352 </Offset>
1353 </Anchor>
1354 </Anchors>
1355 <Layers>
1356 <Layer level="ARTWORK">
1357 <FontString name="EQL3_OptionsFrame_Checkbox_List4_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_LIST_4">
1358 <Anchors>
1359 <Anchor point="LEFT" relativePoint="RIGHT">
1360 <Offset>
1361 <AbsDimension x="1" y="0"/>
1362 </Offset>
1363 </Anchor>
1364 </Anchors>
1365 </FontString>
1366 </Layer>
1367 </Layers>
1368 <Scripts>
1369 <OnClick>
1370 EQL3_Set_TrackerListing(3);
1371 </OnClick>
1372 </Scripts>
1373 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1374 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1375 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1376 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1377 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1378 </CheckButton>
1379  
1380  
1381  
1382 <CheckButton name="EQL3_OptionsFrame_Checkbox_Symbol1" virtual="true">
1383 <Size>
1384 <AbsDimension x="20" y="20"/>
1385 </Size>
1386 <Anchors>
1387 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_List1" relativePoint="BOTTOMLEFT">
1388 <Offset>
1389 <AbsDimension x="0" y="-4"/>
1390 </Offset>
1391 </Anchor>
1392 </Anchors>
1393 <Layers>
1394 <Layer level="ARTWORK">
1395 <FontString name="EQL3_OptionsFrame_Checkbox_Symbol1_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_SYMBOL_1">
1396 <Anchors>
1397 <Anchor point="LEFT" relativePoint="RIGHT">
1398 <Offset>
1399 <AbsDimension x="1" y="0"/>
1400 </Offset>
1401 </Anchor>
1402 </Anchors>
1403 </FontString>
1404 </Layer>
1405 </Layers>
1406 <Scripts>
1407 <OnClick>
1408 EQL3_Set_TrackerSymbol(0);
1409 </OnClick>
1410 </Scripts>
1411 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1412 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1413 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1414 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1415 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1416 </CheckButton>
1417  
1418 <CheckButton name="EQL3_OptionsFrame_Checkbox_Symbol2" virtual="true">
1419 <Size>
1420 <AbsDimension x="20" y="20"/>
1421 </Size>
1422 <Anchors>
1423 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_Symbol1" relativePoint="TOPRIGHT">
1424 <Offset>
1425 <AbsDimension x="20" y="0"/>
1426 </Offset>
1427 </Anchor>
1428 </Anchors>
1429 <Layers>
1430 <Layer level="ARTWORK">
1431 <FontString name="EQL3_OptionsFrame_Checkbox_Symbol2_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_SYMBOL_2">
1432 <Anchors>
1433 <Anchor point="LEFT" relativePoint="RIGHT">
1434 <Offset>
1435 <AbsDimension x="1" y="0"/>
1436 </Offset>
1437 </Anchor>
1438 </Anchors>
1439 </FontString>
1440 </Layer>
1441 </Layers>
1442 <Scripts>
1443 <OnClick>
1444 EQL3_Set_TrackerSymbol(1);
1445 </OnClick>
1446 </Scripts>
1447 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1448 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1449 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1450 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1451 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1452 </CheckButton>
1453  
1454 <CheckButton name="EQL3_OptionsFrame_Checkbox_Symbol3" virtual="true">
1455 <Size>
1456 <AbsDimension x="20" y="20"/>
1457 </Size>
1458 <Anchors>
1459 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_Symbol2" relativePoint="TOPRIGHT">
1460 <Offset>
1461 <AbsDimension x="20" y="0"/>
1462 </Offset>
1463 </Anchor>
1464 </Anchors>
1465 <Layers>
1466 <Layer level="ARTWORK">
1467 <FontString name="EQL3_OptionsFrame_Checkbox_Symbol3_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_SYMBOL_3">
1468 <Anchors>
1469 <Anchor point="LEFT" relativePoint="RIGHT">
1470 <Offset>
1471 <AbsDimension x="1" y="0"/>
1472 </Offset>
1473 </Anchor>
1474 </Anchors>
1475 </FontString>
1476 </Layer>
1477 </Layers>
1478 <Scripts>
1479 <OnClick>
1480 EQL3_Set_TrackerSymbol(2);
1481 </OnClick>
1482 </Scripts>
1483 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1484 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1485 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1486 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1487 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1488 </CheckButton>
1489  
1490 <CheckButton name="EQL3_OptionsFrame_Checkbox_Symbol4" virtual="true">
1491 <Size>
1492 <AbsDimension x="20" y="20"/>
1493 </Size>
1494 <Anchors>
1495 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_Symbol3" relativePoint="TOPRIGHT">
1496 <Offset>
1497 <AbsDimension x="20" y="0"/>
1498 </Offset>
1499 </Anchor>
1500 </Anchors>
1501 <Layers>
1502 <Layer level="ARTWORK">
1503 <FontString name="EQL3_OptionsFrame_Checkbox_Symbol4_Label" inherits="GameFontNormalSmall" text="EQL3_TRACKER_SYMBOL_4">
1504 <Anchors>
1505 <Anchor point="LEFT" relativePoint="RIGHT">
1506 <Offset>
1507 <AbsDimension x="1" y="0"/>
1508 </Offset>
1509 </Anchor>
1510 </Anchors>
1511 </FontString>
1512 </Layer>
1513 </Layers>
1514 <Scripts>
1515 <OnClick>
1516 EQL3_Set_TrackerSymbol(3);
1517 </OnClick>
1518 </Scripts>
1519 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1520 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1521 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1522 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1523 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1524 </CheckButton>
1525  
1526  
1527  
1528  
1529 <CheckButton name="EQL3_OptionsFrame_Checkbox_ShowZones" virtual="true">
1530 <Size>
1531 <AbsDimension x="20" y="20"/>
1532 </Size>
1533 <Anchors>
1534 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_Symbol1" relativePoint="BOTTOMLEFT">
1535 <Offset>
1536 <AbsDimension x="-40" y="-4"/>
1537 </Offset>
1538 </Anchor>
1539 </Anchors>
1540 <Layers>
1541 <Layer level="ARTWORK">
1542 <FontString name="EQL3_OptionsFrame_Checkbox_ShowZones_Label" inherits="GameFontNormalSmall" text="EQL3_SHOW_ZONES">
1543 <Anchors>
1544 <Anchor point="LEFT" relativePoint="RIGHT">
1545 <Offset>
1546 <AbsDimension x="1" y="0"/>
1547 </Offset>
1548 </Anchor>
1549 </Anchors>
1550 </FontString>
1551 </Layer>
1552 </Layers>
1553 <Scripts>
1554 <OnClick>
1555 EQL3_Toggle_ShowZones();
1556 </OnClick>
1557 </Scripts>
1558 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1559 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1560 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1561 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1562 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1563 </CheckButton>
1564  
1565 <CheckButton name="EQL3_OptionsFrame_Checkbox_SortTracker" virtual="true">
1566 <Size>
1567 <AbsDimension x="20" y="20"/>
1568 </Size>
1569 <Anchors>
1570 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_ShowZones" relativePoint="BOTTOMLEFT">
1571 <Offset>
1572 <AbsDimension x="0" y="-4"/>
1573 </Offset>
1574 </Anchor>
1575 </Anchors>
1576 <Layers>
1577 <Layer level="ARTWORK">
1578 <FontString name="EQL3_OptionsFrame_Checkbox_SortTracker_Label" inherits="GameFontNormalSmall" text="EQL3_SORT_TRACKER">
1579 <Anchors>
1580 <Anchor point="LEFT" relativePoint="RIGHT">
1581 <Offset>
1582 <AbsDimension x="1" y="0"/>
1583 </Offset>
1584 </Anchor>
1585 </Anchors>
1586 </FontString>
1587 </Layer>
1588 </Layers>
1589 <Scripts>
1590 <OnClick>
1591 EQL3_Toggle_SortTracker();
1592 </OnClick>
1593 </Scripts>
1594 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1595 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1596 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1597 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1598 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1599 </CheckButton>
1600  
1601  
1602 <CheckButton name="EQL3_OptionsFrame_Checkbox_LockTracker" virtual="true">
1603 <Size>
1604 <AbsDimension x="20" y="20"/>
1605 </Size>
1606 <Anchors>
1607 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_SortTracker" relativePoint="BOTTOMLEFT">
1608 <Offset>
1609 <AbsDimension x="0" y="-4"/>
1610 </Offset>
1611 </Anchor>
1612 </Anchors>
1613 <Layers>
1614 <Layer level="ARTWORK">
1615 <FontString name="EQL3_OptionsFrame_Checkbox_LockTracker_Label" inherits="GameFontNormalSmall" text="EQL3_LOCK_TRACKER">
1616 <Anchors>
1617 <Anchor point="LEFT" relativePoint="RIGHT">
1618 <Offset>
1619 <AbsDimension x="1" y="0"/>
1620 </Offset>
1621 </Anchor>
1622 </Anchors>
1623 </FontString>
1624 </Layer>
1625 </Layers>
1626 <Scripts>
1627 <OnClick>
1628 EQL3_Toggle_LockTracker();
1629 </OnClick>
1630 </Scripts>
1631 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1632 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1633 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1634 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1635 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1636 </CheckButton>
1637  
1638 <Button name="EQL3_OptionsFrame_Button_RestoreTracker" inherits="UIPanelButtonTemplate" text="EQL3_RESTORE">
1639 <Size>
1640 <AbsDimension x="128" y="24"/>
1641 </Size>
1642 <Anchors>
1643 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_LockTracker" relativePoint="TOPRIGHT">
1644 <Offset>
1645 <AbsDimension x="140" y="2"/>
1646 </Offset>
1647 </Anchor>
1648 </Anchors>
1649 <Scripts>
1650 <OnClick>
1651 EQL3_RestoreTracker();
1652 </OnClick>
1653 </Scripts>
1654 </Button>
1655  
1656  
1657  
1658  
1659 <CheckButton name="EQL3_OptionsFrame_Checkbox_AddNew" virtual="true">
1660 <Size>
1661 <AbsDimension x="20" y="20"/>
1662 </Size>
1663 <Anchors>
1664 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_LockTracker" relativePoint="BOTTOMLEFT">
1665 <Offset>
1666 <AbsDimension x="0" y="-4"/>
1667 </Offset>
1668 </Anchor>
1669 </Anchors>
1670 <Layers>
1671 <Layer level="ARTWORK">
1672 <FontString name="EQL3_OptionsFrame_Checkbox_AddNew_Label" inherits="GameFontNormalSmall" text="EQL3_ADD_NEW">
1673 <Anchors>
1674 <Anchor point="LEFT" relativePoint="RIGHT">
1675 <Offset>
1676 <AbsDimension x="1" y="0"/>
1677 </Offset>
1678 </Anchor>
1679 </Anchors>
1680 </FontString>
1681 </Layer>
1682 </Layers>
1683 <Scripts>
1684 <OnClick>
1685 EQL3_Toggle_AddNew();
1686 </OnClick>
1687 </Scripts>
1688 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1689 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1690 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1691 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1692 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1693 </CheckButton>
1694  
1695  
1696 <CheckButton name="EQL3_OptionsFrame_Checkbox_RemoveFinished" virtual="true">
1697 <Size>
1698 <AbsDimension x="20" y="20"/>
1699 </Size>
1700 <Anchors>
1701 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_AddNew" relativePoint="BOTTOMLEFT">
1702 <Offset>
1703 <AbsDimension x="0" y="-4"/>
1704 </Offset>
1705 </Anchor>
1706 </Anchors>
1707 <Layers>
1708 <Layer level="ARTWORK">
1709 <FontString name="EQL3_OptionsFrame_Checkbox_RemoveFinished_Label" inherits="GameFontNormalSmall" text="EQL3_REMOVE_FINISHED">
1710 <Anchors>
1711 <Anchor point="LEFT" relativePoint="RIGHT">
1712 <Offset>
1713 <AbsDimension x="1" y="0"/>
1714 </Offset>
1715 </Anchor>
1716 </Anchors>
1717 </FontString>
1718 </Layer>
1719 </Layers>
1720 <Scripts>
1721 <OnClick>
1722 EQL3_Toggle_RemoveFinished();
1723 </OnClick>
1724 </Scripts>
1725 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1726 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1727 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1728 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1729 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1730 </CheckButton>
1731  
1732 <CheckButton name="EQL3_OptionsFrame_Checkbox_MinimizeFinished" virtual="true">
1733 <Size>
1734 <AbsDimension x="20" y="20"/>
1735 </Size>
1736 <Anchors>
1737 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_RemoveFinished" relativePoint="BOTTOMLEFT">
1738 <Offset>
1739 <AbsDimension x="0" y="-4"/>
1740 </Offset>
1741 </Anchor>
1742 </Anchors>
1743 <Layers>
1744 <Layer level="ARTWORK">
1745 <FontString name="EQL3_OptionsFrame_Checkbox_MinimizeFinished_Label" inherits="GameFontNormalSmall" text="EQL3_MINIMIZE_FINISHED">
1746 <Anchors>
1747 <Anchor point="LEFT" relativePoint="RIGHT">
1748 <Offset>
1749 <AbsDimension x="1" y="0"/>
1750 </Offset>
1751 </Anchor>
1752 </Anchors>
1753 </FontString>
1754 </Layer>
1755 </Layers>
1756 <Scripts>
1757 <OnClick>
1758 EQL3_Toggle_MinimizeFinished();
1759 </OnClick>
1760 </Scripts>
1761 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1762 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1763 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1764 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1765 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1766 </CheckButton>
1767  
1768 <CheckButton name="EQL3_OptionsFrame_Checkbox_HideCompletedObjectives" virtual="true">
1769 <Size>
1770 <AbsDimension x="20" y="20"/>
1771 </Size>
1772 <Anchors>
1773 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_MinimizeFinished" relativePoint="BOTTOMLEFT">
1774 <Offset>
1775 <AbsDimension x="0" y="-4"/>
1776 </Offset>
1777 </Anchor>
1778 </Anchors>
1779 <Layers>
1780 <Layer level="ARTWORK">
1781 <FontString name="EQL3_OptionsFrame_Checkbox_HideCompletedObjectives_Label" inherits="GameFontNormalSmall" text="EQL3_HIDE_COMPLETED_OBJECTIVES">
1782 <Anchors>
1783 <Anchor point="LEFT" relativePoint="RIGHT">
1784 <Offset>
1785 <AbsDimension x="1" y="0"/>
1786 </Offset>
1787 </Anchor>
1788 </Anchors>
1789 </FontString>
1790 </Layer>
1791 </Layers>
1792 <Scripts>
1793 <OnClick>
1794 EQL3_Toggle_HideCompletedObjectives();
1795 </OnClick>
1796 </Scripts>
1797 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1798 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1799 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1800 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1801 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1802 </CheckButton>
1803  
1804 <CheckButton name="EQL3_OptionsFrame_Checkbox_AddUntracked" virtual="true">
1805 <Size>
1806 <AbsDimension x="20" y="20"/>
1807 </Size>
1808 <Anchors>
1809 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_HideCompletedObjectives" relativePoint="BOTTOMLEFT">
1810 <Offset>
1811 <AbsDimension x="0" y="-4"/>
1812 </Offset>
1813 </Anchor>
1814 </Anchors>
1815 <Layers>
1816 <Layer level="ARTWORK">
1817 <FontString name="EQL3_OptionsFrame_Checkbox_AddUntracked_Label" inherits="GameFontNormalSmall" text="EQL3_ADD_UNTRACKED">
1818 <Anchors>
1819 <Anchor point="LEFT" relativePoint="RIGHT">
1820 <Offset>
1821 <AbsDimension x="1" y="0"/>
1822 </Offset>
1823 </Anchor>
1824 </Anchors>
1825 </FontString>
1826 </Layer>
1827 </Layers>
1828 <Scripts>
1829 <OnClick>
1830 EQL3_Toggle_AddUntracked();
1831 </OnClick>
1832 </Scripts>
1833 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1834 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1835 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1836 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1837 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1838 </CheckButton>
1839  
1840  
1841 <CheckButton name="EQL3_OptionsFrame_Checkbox_ShowMinimizer" virtual="true">
1842 <Size>
1843 <AbsDimension x="20" y="20"/>
1844 </Size>
1845 <Anchors>
1846 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_AddUntracked" relativePoint="BOTTOMLEFT">
1847 <Offset>
1848 <AbsDimension x="0" y="-4"/>
1849 </Offset>
1850 </Anchor>
1851 </Anchors>
1852 <Layers>
1853 <Layer level="ARTWORK">
1854 <FontString name="EQL3_OptionsFrame_Checkbox_ShowMinimizer_Label" inherits="GameFontNormalSmall" text="EQL3_SHOW_MINIMIZER">
1855 <Anchors>
1856 <Anchor point="LEFT" relativePoint="RIGHT">
1857 <Offset>
1858 <AbsDimension x="1" y="0"/>
1859 </Offset>
1860 </Anchor>
1861 </Anchors>
1862 </FontString>
1863 </Layer>
1864 </Layers>
1865 <Scripts>
1866 <OnClick>
1867 EQL3_Toggle_ShowMinimizer();
1868 </OnClick>
1869 </Scripts>
1870 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1871 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1872 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1873 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1874 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1875 </CheckButton>
1876  
1877  
1878 <Slider name="EQL3_OptionsFrame_Slider_TrackerFontSize" inherits="OptionsSliderTemplate">
1879 <Size>
1880 <AbsDimension x="288" y="20"/>
1881 </Size>
1882 <Anchors>
1883 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_ShowMinimizer" relativePoint="BOTTOMLEFT">
1884 <Offset>
1885 <AbsDimension x="0" y="-16"/>
1886 </Offset>
1887 </Anchor>
1888 </Anchors>
1889 <Scripts>
1890 <OnLoad>
1891 getglobal(this:GetName().."Text"):SetText(EQL3_TRACKERFONTSIZE);
1892 getglobal(this:GetName().."High"):SetText("20");
1893 getglobal(this:GetName().."Low"):SetText("8");
1894 this:SetMinMaxValues(8, 20);
1895 this:SetValueStep(1);
1896 this.tooltipText = EQL3_TRACKERFONTSIZE_INFO;
1897 </OnLoad>
1898 <OnShow>
1899 this:SetValue(QuestlogOptions[EQL3_Player].TrackerFontHeight);
1900 getglobal(this:GetName().."Text"):SetText(EQL3_TRACKERFONTSIZE.." : "..this:GetValue());
1901 </OnShow>
1902 <OnValueChanged>
1903 QuestlogOptions[EQL3_Player].TrackerFontHeight = this:GetValue();
1904 getglobal(this:GetName().."Text"):SetText(EQL3_TRACKERFONTSIZE.." : "..this:GetValue());
1905  
1906 SetTrackerFontSize();
1907  
1908 GameTooltip:Hide();
1909 </OnValueChanged>
1910 </Scripts>
1911 </Slider>
1912  
1913  
1914 <!-- New stuff -->
1915  
1916 <Frame name="EQL3_OptionsFrame_Header_Tooltip">
1917 <Size>
1918 <AbsDimension x="304" y="60"/>
1919 </Size>
1920 <Anchors>
1921 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Header_Tracker" relativePoint="BOTTOMLEFT">
1922 <Offset>
1923 <AbsDimension x="0" y="-16"/>
1924 </Offset>
1925 </Anchor>
1926 </Anchors>
1927  
1928 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
1929 <BackgroundInsets>
1930 <AbsInset left="5" right="5" top="5" bottom="5" />
1931 </BackgroundInsets>
1932 <TileSize>
1933 <AbsValue val="16" />
1934 </TileSize>
1935 <EdgeSize>
1936 <AbsValue val="16" />
1937 </EdgeSize>
1938 </Backdrop>
1939  
1940 <Layers>
1941 <Layer level="ARTWORK">
1942 <FontString name="EQL3_OptionsFrame_Header_Log_Label" inherits="GameFontNormal" text="EQL3_TOOLTIP_OPTIONS">
1943 <Anchors>
1944 <Anchor point="BOTTOMLEFT" relativePoint="TOPLEFT">
1945 <Offset>
1946 <AbsDimension x="4" y="0"/>
1947 </Offset>
1948 </Anchor>
1949 </Anchors>
1950 </FontString>
1951 </Layer>
1952 </Layers>
1953 <Scripts>
1954 <OnLoad>
1955 this:SetBackdropBorderColor(0.5, 0.5, 0.5);
1956 this:SetBackdropColor(0.5, 0.5, 0.5);
1957 </OnLoad>
1958 </Scripts>
1959 </Frame>
1960  
1961  
1962 <CheckButton name="EQL3_OptionsFrame_Checkbox_ShowItemTooltip" virtual="true">
1963 <Size>
1964 <AbsDimension x="20" y="20"/>
1965 </Size>
1966 <Anchors>
1967 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Header_Tooltip" relativePoint="TOPLEFT">
1968 <Offset>
1969 <AbsDimension x="8" y="-8"/>
1970 </Offset>
1971 </Anchor>
1972 </Anchors>
1973 <Layers>
1974 <Layer level="ARTWORK">
1975 <FontString name="EQL3_OptionsFrame_Checkbox_ShowItemTooltip_Label" inherits="GameFontNormalSmall" text="EQL3_SHOW_ITEM_TOOLTIP">
1976 <Anchors>
1977 <Anchor point="LEFT" relativePoint="RIGHT">
1978 <Offset>
1979 <AbsDimension x="1" y="0"/>
1980 </Offset>
1981 </Anchor>
1982 </Anchors>
1983 </FontString>
1984 </Layer>
1985 </Layers>
1986 <Scripts>
1987 <OnClick>
1988 EQL3_Toggle_ShowItemTooltip();
1989 </OnClick>
1990 </Scripts>
1991 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
1992 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
1993 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
1994 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
1995 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
1996 </CheckButton>
1997  
1998  
1999 <CheckButton name="EQL3_OptionsFrame_Checkbox_ShowMobTooltip" virtual="true">
2000 <Size>
2001 <AbsDimension x="20" y="20"/>
2002 </Size>
2003 <Anchors>
2004 <Anchor point="TOPLEFT" relativeTo="EQL3_OptionsFrame_Checkbox_ShowItemTooltip" relativePoint="BOTTOMLEFT">
2005 <Offset>
2006 <AbsDimension x="0" y="-4"/>
2007 </Offset>
2008 </Anchor>
2009 </Anchors>
2010 <Layers>
2011 <Layer level="ARTWORK">
2012 <FontString name="EQL3_OptionsFrame_Checkbox_ShowMobTooltip_Label" inherits="GameFontNormalSmall" text="EQL3_SHOW_MOB_TOOLTIP">
2013 <Anchors>
2014 <Anchor point="LEFT" relativePoint="RIGHT">
2015 <Offset>
2016 <AbsDimension x="1" y="0"/>
2017 </Offset>
2018 </Anchor>
2019 </Anchors>
2020 </FontString>
2021 </Layer>
2022 </Layers>
2023 <Scripts>
2024 <OnClick>
2025 EQL3_Toggle_ShowMobTooltip();
2026 </OnClick>
2027 </Scripts>
2028 <NormalTexture file="Interface\Buttons\UI-CheckBox-Up"/>
2029 <PushedTexture file="Interface\Buttons\UI-CheckBox-Down"/>
2030 <HighlightTexture file="Interface\Buttons\UI-CheckBox-Highlight" alphaMode="ADD"/>
2031 <CheckedTexture file="Interface\Buttons\UI-CheckBox-Check"/>
2032 <DisabledCheckedTexture file="Interface\Buttons\UI-CheckBox-Check-Disabled"/>
2033 </CheckButton>
2034  
2035 </Frames>
2036  
2037  
2038 <Scripts>
2039 <OnLoad>
2040 EQL_Options_OnLoad();
2041 this:RegisterForDrag("LeftButton");
2042 </OnLoad>
2043 <OnEvent>
2044 EQL_Options_OnEvent(event);
2045 </OnEvent>
2046 <OnDragStart>
2047 this:StartMoving();
2048 </OnDragStart>
2049 <OnDragStop>
2050 this:StopMovingOrSizing();
2051 </OnDragStop>
2052 </Scripts>
2053 </Frame>
2054 </Ui>