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="IMBA_Razuvious.lua"/>
4  
5 <Frame name="IMBA_Razuvious" parent="UIParent" enableMouse="true" movable="true" hidden="true" frameStrata="HIGH">
6 <Size>
7 <AbsDimension x="200" y="51"/>
8 </Size>
9 <Anchors>
10 <Anchor point="CENTER"/>
11 </Anchors>
12 <Backdrop name="$parentBackdrop" bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
13 <EdgeSize>
14 <AbsValue val="16"/>
15 </EdgeSize>
16 <TileSize>
17 <AbsValue val="16"/>
18 </TileSize>
19 <BackgroundInsets>
20 <AbsInset left="5" right="5" top="5" bottom="5"/>
21 </BackgroundInsets>
22 </Backdrop>
23 <Frames>
24 <Frame name="$parent_Title" inherits="IMBA_MainTitleTemplate">
25 <Anchors>
26 <Anchor point="TOP">
27 <Offset>
28 <AbsDimension x="0" y="-8"/>
29 </Offset>
30 </Anchor>
31 </Anchors>
32 </Frame>
33 <StatusBar name="$parent_TimerShout" inherits="IMBA_BarTimerTemplate">
34 <Anchors>
35 <Anchor point="TOP" relativeTo="$parent_Title" relativePoint="BOTTOM">
36 <Offset>
37 <AbsDimension x="0" y="-4"/>
38 </Offset>
39 </Anchor>
40 </Anchors>
41 </StatusBar>
42 <Frame name="$parent_Close" enableMouse="true">
43 <Size>
44 <AbsDimension x="24" y="24"/>
45 </Size>
46 <Anchors>
47 <Anchor point="TOPRIGHT">
48 <Offset>
49 <AbsDimension x="0" y="0"/>
50 </Offset>
51 </Anchor>
52 </Anchors>
53 <Layers>
54 <Layer level="OVERLAY">
55 <Texture name="$parent_Image" file="Interface\AddOns\IMBA\textures\close.blp">
56 <Size>
57 <AbsDimension x="32" y="32"/>
58 </Size>
59 <Anchors>
60 <Anchor point="TOPRIGHT"/>
61 </Anchors>
62 </Texture>
63 </Layer>
64 </Layers>
65 <Scripts>
66 <OnLoad>
67 this:SetBackdropBorderColor(1, 1, 1, 1);
68 this:SetBackdropColor(0.0,0.0,0.0,0);
69 </OnLoad>
70 <OnMouseDown>
71 IMBA_Razuvious:Hide();
72 </OnMouseDown>
73 </Scripts>
74 </Frame>
75  
76 </Frames>
77 <Scripts>
78 <OnLoad>
79 IMBA_Razuvious_OnLoad();
80 </OnLoad>
81 <OnEvent>
82 IMBA_Razuvious_OnEvent(event);
83 </OnEvent>
84 <OnMouseUp>
85 if ( this.isMoving ) then
86 this:StopMovingOrSizing();
87 this.isMoving = false;
88 end
89 </OnMouseUp>
90 <OnMouseDown>
91 if ( ( ( not this.isLocked ) or ( this.isLocked == 0 ) ) and ( arg1 == "LeftButton" ) ) then
92 this:StartMoving();
93 this.isMoving = true;
94 end
95 </OnMouseDown>
96 <OnShow>
97 IMBA_Razuvious_RegisterEvents();
98 </OnShow>
99 <OnHide>
100 IMBA_Razuvious_UnregisterEvents();
101 if ( this.isMoving ) then
102 this:StopMovingOrSizing();
103 this.isMoving = false;
104 end
105 </OnHide>
106 </Scripts>
107 </Frame>
108 </Ui>