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 <Script file="BIB_MonkeyQuest.lua"/>
4 <Frame parent="UIParent">
5 <Frames>
6 <Button name="BIB_MonkeyQuestButton" inherits="BhaldieInfoBarTextIconTemplate" frameStrata="FULLSCREEN" toplevel="true">
7 <Scripts>
8 <OnLoad>
9 if (IsAddOnLoaded("BhaldieInfoBar")) then
10 BIB_MonkeyQuestButton_OnLoad();
11 end
12 </OnLoad>
13 <OnEvent>
14 if (IsAddOnLoaded("BhaldieInfoBar")) then
15 BIB_MonkeyQuestButton_OnEvent();
16 end
17 </OnEvent>
18 <OnEnter>
19 if (IsAddOnLoaded("BhaldieInfoBar")) then
20 BIB_MonkeyQuestButton_OnEnter();
21 end
22 </OnEnter>
23 <OnLeave>
24 if (IsAddOnLoaded("BhaldieInfoBar")) then
25 BIB_MonkeyQuestButton_OnLeave();
26 end
27 </OnLeave>
28 <OnMouseDown>
29 if (IsAddOnLoaded("BhaldieInfoBar")) then
30 BIB_MonkeyQuestButton_OnRightClick(arg1);
31 end
32 </OnMouseDown>
33 </Scripts>
34 </Button>
35 </Frames>
36 </Frame>
37  
38 <!-- New -->
39 <!-- Options Frame -->
40 <Frame name="BIB_MonkeyQuestButtonOptions" parent="BM_Frame" inherits="BM_TempMain_Window">
41 <Frames>
42 <!-- No UI Menu options for this plugin -->
43 </Frames>
44 </Frame>
45 </Ui>