-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGearStatsSummary.xml
118 lines (113 loc) · 4.55 KB
/
GearStatsSummary.xml
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<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">
<Script file="GearStatsSummary.lua"/>
<Frame name="GearStatsSummaryFrame" hidden="false" parent="UIParent">
<Scripts>
<OnLoad>
GearStatsSummary_OnLoad(self)
</OnLoad>
<OnEvent>
GearStatsSummary_OnEvent(self, event, ...);
</OnEvent>
</Scripts>
</Frame>
<Frame name="GearStatsSummarySelfFrame" frameStrata="MEDIUM" toplevel="true" enableMouse="true" movable="true" hidden="true" parent="UIParent">
<TitleRegion setAllPoints="true"/>
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
<EdgeSize>
<AbsValue val="8"/>
</EdgeSize>
<TileSize>
<AbsValue val="8"/>
</TileSize>
<BackgroundInsets>
<AbsInset left="2" right="2" top="2" bottom="2"/>
</BackgroundInsets>
</Backdrop>
<Layers>
<Layer level="BACKGROUND">
<FontString name="GearStatsSummarySelfFrameTitle" inherits="GameTooltipHeaderText">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="GearStatsSummarySelfFrame" relativePoint="TOPLEFT">
<Offset>
<AbsDimension x="10" y="-10"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="GearStatsSummarySelfFrameText" inherits="GameTooltipText">
<Anchors>
<Anchor point="BOTTOMLEFT" relativeTo="GearStatsSummarySelfFrame" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="5" y="10"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Button name="GearStatsSummarySelfFrameCloseButton" inherits="UIPanelCloseButton">
<Anchors>
<Anchor point="TOPRIGHT" relativeTo="GearStatsSummarySelfFrame" relativePoint="TOPRIGHT">
<Offset>
<AbsDimension x="3" y="3"/>
</Offset>
</Anchor>
</Anchors>
</Button>
</Frames>
</Frame>
<Frame name="GearStatsSummaryTargetFrame" frameStrata="MEDIUM" toplevel="true" enableMouse="true" movable="true" hidden="true" parent="UIParent">
<TitleRegion setAllPoints="true"/>
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
<EdgeSize>
<AbsValue val="8"/>
</EdgeSize>
<TileSize>
<AbsValue val="8"/>
</TileSize>
<BackgroundInsets>
<AbsInset left="2" right="2" top="2" bottom="2"/>
</BackgroundInsets>
</Backdrop>
<Layers>
<Layer level="BACKGROUND">
<FontString name="GearStatsSummaryTargetFrameTitle" inherits="GameTooltipHeaderText">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="GearStatsSummaryTargetFrame" relativePoint="TOPLEFT">
<Offset>
<AbsDimension x="10" y="-10"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
<FontString name="GearStatsSummaryTargetFrameText" inherits="GameTooltipText">
<Anchors>
<Anchor point="BOTTOMLEFT" relativeTo="GearStatsSummaryTargetFrame" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="5" y="10"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Button name="GearStatsSummaryTargetFrameCloseButton" inherits="UIPanelCloseButton">
<Anchors>
<Anchor point="TOPRIGHT" relativeTo="GearStatsSummaryTargetFrame" relativePoint="TOPRIGHT">
<Offset>
<AbsDimension x="3" y="3"/>
</Offset>
</Anchor>
</Anchors>
</Button>
</Frames>
<Scripts>
<OnHide>
GearStatsSummarySelfFrame:Hide();
</OnHide>
</Scripts>
</Frame>
</Ui>