vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <!-- edited with XMLSpy v2005 rel. 3 U (http://www.altova.com) by () -->
2 <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/
3 D:\UI.xsd">
4 <Script file="Localization.lua"/>
5 <Script file="TextVars.lua"/>
6 <Script file="BEB.lua"/>
7 <Frame name="BEBElementTemplate" enableMouse="false" virtual="true">
8 <Layers>
9 <Layer level="ARTWORK">
10 <Texture name="$parentTexture">
11 <Anchors>
12 <Anchor point="TOPLEFT"/>
13 <Anchor point="BOTTOMRIGHT"/>
14 </Anchors>
15 </Texture>
16 </Layer>
17 </Layers>
18 <Scripts>
19 <OnLoad>
20 this.texture = getglobal(this:GetName().."Texture")
21 </OnLoad>
22 <OnHide>
23 this.shown = nil
24 </OnHide>
25 <OnShow>
26 this.shown = true
27 </OnShow>
28 </Scripts>
29 </Frame>
30 <Button name="BEBMain" hidden="false" enableMouse="true" movable="true" parent="UIParent">
31 <Scripts>
32 <OnEnter>
33 BEB.OnEnter()
34 </OnEnter>
35 <OnLeave>
36 BEB.OnLeave()
37 </OnLeave>
38 <OnDragStart>
39 BEB.OnDragStart();
40 </OnDragStart>
41 <OnDragStop>
42 BEB.OnDragStop();
43 </OnDragStop>
44 <OnUpdate>
45 BEB.OnUpdate(arg1);
46 </OnUpdate>
47 <OnEvent>
48 BEB.OnEvent(event);
49 </OnEvent>
50 <OnLoad>
51 BEB.OnLoad();
52 </OnLoad>
53 <OnClick>
54 BEB.OnClick(arg1);
55 </OnClick>
56 </Scripts>
57 <Frames>
58 <Frame name="BEBTextEventFrame" hidden="true">
59 <Scripts>
60 <OnEvent>
61 BEB.StringEvent(event)
62 </OnEvent>
63 </Scripts>
64 </Frame>
65 <Frame name="BEBBackground" inherits="BEBElementTemplate"/>
66 <Frame name="BEBXpBar" inherits="BEBElementTemplate"/>
67 <Frame name="BEBRestedXpBar" inherits="BEBElementTemplate"/>
68 <Frame name="BEBMarkers" inherits="BEBElementTemplate"/>
69 <Frame name="BEBXpTick" inherits="BEBElementTemplate"/>
70 <Frame name="BEBRestedXpTick" inherits="BEBElementTemplate">
71 <Frames>
72 <Frame name="BEBRestedXpTickGlow" inherits="BEBElementTemplate"/>
73 </Frames>
74 <Scripts>
75 <OnHide>
76 BEBRestedXpTickGlow:Hide()
77 </OnHide>
78 <OnShow>
79 if (GetRestState() == 1) then
80 BEBRestedXpTickGlow:Show()
81 else
82 BEBRestedXpTickGlow:Hide()
83 end
84 </OnShow>
85 </Scripts>
86 </Frame>
87 <Frame name="BEBBarText">
88 <Layers>
89 <Layer>
90 <FontString name="$parentTextframe" inherits="GameFontNormal" maxLines="1" justifyH="CENTER" justifyV="MIDDLE">
91 <Anchors>
92 <Anchor point="CENTER"/>
93 </Anchors>
94 </FontString>
95 </Layer>
96 </Layers>
97 <Scripts>
98 <OnLoad>
99 this.textframe = getglobal(this:GetName().."Textframe")
100 </OnLoad>
101 <OnShow>
102 this.shown = true
103 </OnShow>
104 <OnHide>
105 this.shown = nil
106 </OnHide>
107 </Scripts>
108 </Frame>
109 </Frames>
110 </Button>
111 </Ui>