-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathWorldQuestTracker.xml
65 lines (58 loc) · 2.04 KB
/
WorldQuestTracker.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
<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">
<Frame name="WorldQuestTrackerProviderTemplate" mixin="WorldMapMixin, MapCanvasDataProviderMixin MapCanvasPinMixin MapCanvasPinMixin" virtual="true">
<Scripts>
<OnLoad>
WorldMapFrame:AddDataProvider (self);
self:RefreshAllData();
</OnLoad>
</Scripts>
</Frame>
<Frame name="WorldQuestTrackerDataProvider" inherits="WorldQuestTrackerProviderTemplate">
</Frame>
<Frame name="WorldQuestTrackerPinProviderTemplate" mixin="MapCanvasPinMixin" virtual="true">
<Scripts>
<OnLoad>
self:UseFrameLevelType ("PIN_FRAME_LEVEL_AREA_POI");
</OnLoad>
</Scripts>
</Frame>
<Frame name="WorldQuestTrackerPinMixin" inherits="WorldQuestTrackerPinProviderTemplate">
</Frame>
<Frame name="MicroButtonAlertTemplate_BFA" inherits="GlowBoxTemplate" parent="UIParent" enableMouse="true" hidden="true" frameStrata="DIALOG" frameLevel="2" toplevel="true" virtual="true">
<Size x="220" y="100"/>
<Layers>
<Layer level="OVERLAY">
<FontString parentKey="Text" inherits="GameFontHighlightLeft" justifyV="TOP">
<Size x="188" y="0"/>
<Anchors>
<Anchor point="TOPLEFT" x="16" y="-24"/>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Button parentKey="CloseButton" inherits="UIPanelCloseButton">
<Anchors>
<Anchor point="TOPRIGHT" x="6" y="6"/>
</Anchors>
<Scripts>
<OnClick>
MicroButtonAlert_OnAcknowledged2(self:GetParent());
self:GetParent():Hide();
</OnClick>
</Scripts>
</Button>
<Frame parentKey="Arrow" inherits="GlowBoxArrowTemplate">
<Anchors>
<Anchor point="TOP" relativePoint="BOTTOM" y="4"/>
</Anchors>
</Frame>
</Frames>
<Scripts>
<OnLoad function="MicroButtonAlert_OnLoad2"/>
<OnShow function="MicroButtonAlert_OnShow2"/>
<OnHide function="MicroButtonAlert_OnHide2"/>
</Scripts>
</Frame>
</Ui>