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 C:\Projects\WoW\Bin\Interface\FrameXML\UI.xsd">
3 <Script file="CT_RAMeters.lua"/>
4 <Script file="CT_RAMeters_Localization.lua"/>
5 <Frame name="CT_RAMetersFrame" hidden="true" movable="true" parent="UIParent">
6 <Anchors>
7 <Anchor point="CENTER"/>
8 </Anchors>
9 <Size>
10 <AbsDimension x="125" y="50"/>
11 </Size>
12 <Layers>
13 <Layer level="ARTWORK">
14 <FontString name="$parentTitle" inherits="GameFontNormal" hidden="false" text="RaidStatus">
15 <Anchors>
16 <Anchor point="TOP">
17 <Offset>
18 <AbsDimension x="0" y="-5"/>
19 </Offset>
20 </Anchor>
21 </Anchors>
22 </FontString>
23 <FontString name="$parentText" justifyH="CENTER" inherits="ChatFontNormal" hidden="false" text="No stats to track">
24 <Anchors>
25 <Anchor point="TOP">
26 <Offset>
27 <AbsDimension x="0" y="-20"/>
28 </Offset>
29 </Anchor>
30 </Anchors>
31 </FontString>
32 </Layer>
33 </Layers>
34 <Frames>
35 <Frame name="$parentDropDown" inherits="UIDropDownMenuTemplate" id="1" hidden="true">
36 <Size>
37 <AbsDimension x="10" y="10"/>
38 </Size>
39 <Anchors>
40 <Anchor point="TOP">
41 <Offset>
42 <AbsDimension x="70" y="10"/>
43 </Offset>
44 </Anchor>
45 </Anchors>
46 <Scripts>
47 <OnLoad>
48 CT_RAMeters_DropDown_OnLoad();
49 </OnLoad>
50 </Scripts>
51 </Frame>
52 </Frames>
53 <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" setAllPoints="true" tile="true">
54 <EdgeSize>
55 <AbsValue val="16"/>
56 </EdgeSize>
57 <TileSize>
58 <AbsValue val="16"/>
59 </TileSize>
60 <BackgroundInsets>
61 <AbsInset left="5" right="5" top="5" bottom="5"/>
62 </BackgroundInsets>
63 </Backdrop>
64 <Scripts>
65 <OnLoad>
66 CT_RAMeters_OnLoad();
67 this.update = 2;
68 </OnLoad>
69 <OnMouseDown>
70 if ( arg1 == "LeftButton" and ( not CT_RAMenu_Options["temp"]["StatusMeters"] or not CT_RAMenu_Options["temp"]["StatusMeters"]["Lock"] ) ) then
71 this:StartMoving();
72 elseif ( arg1 == "RightButton" ) then
73 ToggleDropDownMenu(1, nil, getglobal(this:GetName() .. "DropDown"), this:GetName(), 47, 15);
74 end
75 </OnMouseDown>
76 <OnMouseUp>
77 if ( arg1 == "LeftButton" ) then
78 this:StopMovingOrSizing();
79 end
80 </OnMouseUp>
81 <OnHide>
82 this:StopMovingOrSizing();
83 </OnHide>
84 <OnUpdate>
85 CT_RAMeters_OnUpdate(arg1);
86 </OnUpdate>
87 </Scripts>
88 </Frame>
89 </Ui>