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="Perl_Config_ArcaneBar.lua"/>
4  
5  
6 <Frame name="Perl_Config_ArcaneBar_Frame" frameStrata="DIALOG" hidden="true" enableMouse="true">
7 <Size>
8 <AbsDimension x="600" y="380"/>
9 </Size>
10 <Anchors>
11 <Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="Perl_Config_Frame">
12 <Offset>
13 <AbsDimension x="0" y="-120"/>
14 </Offset>
15 </Anchor>
16 </Anchors>
17 <Layers>
18 <Layer level="ARTWORK">
19 <Texture name="Perl_Config_ArcaneBar_Header" file="Interface\DialogFrame\UI-DialogBox-Header">
20 <Size>
21 <AbsDimension x="256" y="64"/>
22 </Size>
23 <Anchors>
24 <Anchor point="TOP">
25 <Offset>
26 <AbsDimension x="0" y="12"/>
27 </Offset>
28 </Anchor>
29 </Anchors>
30 </Texture>
31 <FontString inherits="GameFontNormal" text="ArcaneBar">
32 <Anchors>
33 <Anchor point="TOP" relativeTo="Perl_Config_ArcaneBar_Header">
34 <Offset>
35 <AbsDimension x="0" y="-14"/>
36 </Offset>
37 </Anchor>
38 </Anchors>
39 </FontString>
40  
41 <FontString name="$parent_Misc_Text" inherits="GameFontNormal" text="Misc">
42 <Anchors>
43 <Anchor point="LEFT" relativePoint="TOPLEFT">
44 <Offset>
45 <AbsDimension x="20" y="-30"/>
46 </Offset>
47 </Anchor>
48 </Anchors>
49 </FontString>
50  
51 <FontString name="$parent_Transparency_Text" inherits="GameFontNormal" text="Transparency">
52 <Anchors>
53 <Anchor point="LEFT" relativePoint="TOPLEFT">
54 <Offset>
55 <AbsDimension x="350" y="-30"/>
56 </Offset>
57 </Anchor>
58 </Anchors>
59 </FontString>
60 </Layer>
61 </Layers>
62  
63 <Frames>
64 <CheckButton name="$parent_CheckButton1" inherits="UICheckButtonTemplate" id="1">
65 <Size>
66 <AbsDimension x="20" y="20"/>
67 </Size>
68 <Anchors>
69 <Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="$parent_Misc_Text">
70 <Offset>
71 <AbsDimension x="20" y="-20"/>
72 </Offset>
73 </Anchor>
74 </Anchors>
75 <Scripts>
76 <OnLoad>
77 getglobal(this:GetName().."Text"):SetText("Enable ArcaneBar");
78 </OnLoad>
79 <OnClick>
80 Perl_Config_ArcaneBar_Enabled_Update();
81 </OnClick>
82 </Scripts>
83 </CheckButton>
84  
85 <CheckButton name="$parent_CheckButton2" inherits="UICheckButtonTemplate" id="2">
86 <Size>
87 <AbsDimension x="20" y="20"/>
88 </Size>
89 <Anchors>
90 <Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="$parent_CheckButton1" >
91 <Offset>
92 <AbsDimension x="20" y="-20"/>
93 </Offset>
94 </Anchor>
95 </Anchors>
96 <Scripts>
97 <OnLoad>
98 getglobal(this:GetName().."Text"):SetText("Display Cast Timer");
99 </OnLoad>
100 <OnClick>
101 Perl_Config_ArcaneBar_Show_Timer_Update();
102 </OnClick>
103 </Scripts>
104 </CheckButton>
105  
106 <CheckButton name="$parent_CheckButton3" inherits="UICheckButtonTemplate" id="3">
107 <Size>
108 <AbsDimension x="20" y="20"/>
109 </Size>
110 <Anchors>
111 <Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="$parent_CheckButton2" >
112 <Offset>
113 <AbsDimension x="-20" y="-20"/>
114 </Offset>
115 </Anchor>
116 </Anchors>
117 <Scripts>
118 <OnLoad>
119 getglobal(this:GetName().."Text"):SetText("Hide the Blizzard Casting Bar");
120 </OnLoad>
121 <OnClick>
122 Perl_Config_ArcaneBar_Hide_Original_Update();
123 </OnClick>
124 </Scripts>
125 </CheckButton>
126  
127 <Slider name="$parent_Slider1" inherits="OptionsSliderTemplate" minValue="0" maxValue="100" valueStep="1">
128 <Size>
129 <AbsDimension x="200" y="15"/>
130 </Size>
131 <Anchors>
132 <Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="$parent_Transparency_Text">
133 <Offset>
134 <AbsDimension x="20" y="-20"/>
135 </Offset>
136 </Anchor>
137 </Anchors>
138 <Scripts>
139 <OnValueChanged>
140 getglobal(this:GetName().."Text"):SetText(getglobal(this:GetName()):GetValue());
141 Perl_Config_ArcaneBar_Set_Transparency(getglobal(this:GetName()):GetValue());
142 </OnValueChanged>
143 </Scripts>
144 </Slider>
145 </Frames>
146  
147 </Frame>
148 </Ui>