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 <Button name="Questie_Toggle" parent="WorldMapFrame" inherits="UIPanelButtonTemplate" text="Toggle Questie">
5 <Size>
6 <AbsDimension x="120" y="20"/>
7 </Size>
8 <Anchors>
9 <Anchor point="RIGHT" relativePoint="LEFT" relativeTo="WorldMapContinentDropDown">
10 <Offset>
11 <AbsDimension x="10" y="2"/>
12 </Offset>
13 </Anchor>
14 </Anchors>
15 <Scripts>
16 <OnLoad>
17 this:SetFrameLevel(10);
18 </OnLoad>
19 <OnClick>
20 Questie:Toggle();
21 </OnClick>
22 </Scripts>
23 </Button>
24  
25 <Frame name="QuestieUpdates" parent="WorldMapFrame" hidden="false">
26 <Scripts>
27 <OnLoad>
28 if (WorldMapFrame:IsVisible()) and (arg1 == "ESCAPE") or (arg1 == "M") then
29 ToggleWorldMap();
30 else
31 return
32 end
33 </OnLoad>
34 <OnUpdate>
35 Questie:OnUpdate(arg1)
36 </OnUpdate>
37 </Scripts>
38 </Frame>
39  
40 <Frame name="Questie" parent="UIParent" hidden="false" inherits="ActionButtonTemplate">
41 <Scripts>
42 <OnUpdate>
43 Questie:OnUpdate(arg1)
44 </OnUpdate>
45 <OnEvent>
46 Questie:OnEvent(this, event, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
47 </OnEvent>
48 <OnLoad>
49 Questie:OnLoad()
50 </OnLoad>
51 </Scripts>
52 </Frame>
53  
54 <GameTooltip name="QuestieTooltip" frameStrata="TOOLTIP" hidden="true" inherits="GameTooltipTemplate">
55 <Scripts>
56 <OnLoad>
57 this:SetOwner(UIParent,"ANCHOR_NONE")
58 </OnLoad>
59 </Scripts>
60 </GameTooltip>
61  
62 </Ui>