-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSecretChecklistCore.xml
More file actions
81 lines (81 loc) · 3.13 KB
/
Copy pathSecretChecklistCore.xml
File metadata and controls
81 lines (81 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<!-- Main Secrets Checklist Frame using PortraitFrameTemplate (like Housing Companion) -->
<Frame name="SecretChecklistFrame" parent="UIParent" inherits="PortraitFrameTemplate" toplevel="true" movable="true" enableMouse="true" hidden="true" frameStrata="DIALOG">
<Size x="710" y="560"/>
<Anchors>
<Anchor point="CENTER"/>
</Anchors>
<Frames>
<!-- Inset frame for content (PortraitFrameTemplate doesn't create this automatically) -->
<Frame parentKey="Inset">
<Anchors>
<Anchor point="TOPLEFT" x="4" y="-60"/>
<Anchor point="BOTTOMRIGHT" x="-6" y="4"/>
</Anchors>
</Frame>
<!-- Progress Counters (replaces progress bar) -->
<Frame parentKey="ProgressBar">
<Size x="400" y="20"/>
<Anchors>
<Anchor point="TOP" relativeKey="$parent.Inset" relativePoint="TOP" y="-8"/>
</Anchors>
<Layers>
<Layer level="OVERLAY">
<FontString parentKey="TotalText" inherits="GameFontNormalSmall" justifyH="LEFT">
<Anchors>
<Anchor point="LEFT" x="0" y="0"/>
</Anchors>
</FontString>
<FontString parentKey="MindSeekerText" inherits="GameFontNormalSmall" justifyH="RIGHT">
<Anchors>
<Anchor point="RIGHT" x="0" y="0"/>
</Anchors>
</FontString>
</Layer>
</Layers>
</Frame>
<!-- Paging Frame (anchored to bottom of inset) -->
<Frame parentKey="PagingFrame">
<Size x="200" y="30"/>
<Anchors>
<Anchor point="BOTTOM" relativeKey="$parent.Inset" relativePoint="BOTTOM" x="0" y="8"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<!-- Page Text -->
<FontString parentKey="PageText" inherits="GameFontHighlightSmall">
<Anchors>
<Anchor point="LEFT" x="5" y="0"/>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<!-- Previous Page Button -->
<Button parentKey="PrevPageButton">
<Size x="32" y="32"/>
<Anchors>
<Anchor point="LEFT" relativeKey="$parent.PageText" relativePoint="RIGHT" x="5" y="0"/>
</Anchors>
<NormalTexture file="Interface\Buttons\UI-SpellbookIcon-PrevPage-Up"/>
<PushedTexture file="Interface\Buttons\UI-SpellbookIcon-PrevPage-Down"/>
<DisabledTexture file="Interface\Buttons\UI-SpellbookIcon-PrevPage-Disabled"/>
<HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
</Button>
<!-- Next Page Button -->
<Button parentKey="NextPageButton">
<Size x="32" y="32"/>
<Anchors>
<Anchor point="LEFT" relativeKey="$parent.PrevPageButton" relativePoint="RIGHT" x="5" y="0"/>
</Anchors>
<NormalTexture file="Interface\Buttons\UI-SpellbookIcon-NextPage-Up"/>
<PushedTexture file="Interface\Buttons\UI-SpellbookIcon-NextPage-Down"/>
<DisabledTexture file="Interface\Buttons\UI-SpellbookIcon-NextPage-Disabled"/>
<HighlightTexture file="Interface\Buttons\UI-Common-MouseHilight" alphaMode="ADD"/>
</Button>
</Frames>
</Frame>
</Frames>
</Frame>
</Ui>