vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.0"):new("ag_UnitFrames")
2  
3 aUF.Layouts.Raid = {
4 Name = "Raid",
5 Tip = "Raid",
6 ResizeBars = true,
7 BackgroundBarColor = false,
8 AlphaBar = false,
9 RaidColorName == true,
10 ComboGFX = true,
11  
12 ThemeData = {
13 all = {
14 FrameHeight = 30,
15 FrameWidth = 120,
16  
17 Combo1 = { Point = "BOTTOMRIGHT",
18 RelativePoint = "BOTTOMRIGHT",
19 x = 1,
20 y = -1,
21 Height = 10,
22 HeightAdd = 0,
23 Width = 10,
24 },
25 ComboText = { Font = "Fonts\\FRIZQT__.TTF",
26 FontSize = 9.5,
27 Hidden = true,
28 },
29  
30 HealthBar_BG = { Point = "TOPLEFT",
31 RelativePoint = "TOPLEFT",
32 x = 9,
33 y = -16,
34 Visibility = {"HealthBar_BG","HealthBar","BarHealthText","HealthText",},
35 Height = 6,
36 Width = 82,
37 },
38  
39 ManaBar_BG = { Point = "TOPLEFT",
40 RelativePoint = "TOPLEFT",
41 x = 9,
42 y = -24,
43 Visibility = {"ManaBar_BG","ManaBar","BarManaText","ManaText","ClassText",},
44 Height = 6,
45 Width = 82,
46 HeightAdd = 7,
47 },
48  
49 XPBar_BG = { Point = "TOPRIGHT",
50 RelativePoint = "TOPRIGHT",
51 x = -9,
52 y = -9,
53 Visibility = {"XPBar_BG","XPBar","XPBar_Rest"},
54 Width = 52,
55 Height = 4,
56 Hide = "ClassText",
57 },
58  
59 NameBackground= { Point = "TOPLEFT",
60 RelativePoint = "TOPLEFT",
61 x=6,
62 y=-2,
63 Height = 15,
64 Width = 108,
65 },
66 Happiness = { Point = "TOPLEFT",
67 RelativePoint = "TOPLEFT",
68 x=6,
69 y=-2,
70 Height = 15,
71 Width = 108,
72 Visibility = {"Happiness",},
73 },
74  
75 NameLabel = { Font = L"Fonts\\FRIZQT__.TTF",
76 FontSize = 9,
77 Width = 80,
78 Point = "TOPLEFT",
79 RelativePoint = "TOPLEFT",
80 x =7,
81 y =-9,
82 },
83  
84 ClassText = { Font = L"Fonts\\FRIZQT__.TTF",
85 FontSize = 8,
86 Justify = "RIGHT",
87 Width = 60,
88 Point = "TOPRIGHT",
89 RelativePoint = "TOPRIGHT",
90 x =-7,
91 y =-9,
92 },
93  
94 HealthText = { Font = "Fonts\\FRIZQT__.TTF",
95 FontSize = 8,
96 Point = "TOPRIGHT",
97 RelativePoint = "TOPRIGHT",
98 x = -7,
99 y = -13,
100 Width = 60,
101 },
102  
103 ManaText = { Font = "Fonts\\FRIZQT__.TTF",
104 FontSize = 8,
105 Point = "TOPRIGHT",
106 RelativePoint = "TOPRIGHT",
107 x = -7,
108 y = -21,
109 Width = 60,
110 },
111  
112 BarHealthText = { Font = "Fonts\\FRIZQT__.TTF",
113 FontSize = 8,
114 RelativeTo = "HealthBar_BG",
115 Point = "CENTER",
116 RelativePoint = "CENTER",
117 x=0,
118 y=0,
119 Width = 60,
120 },
121  
122 BarManaText = { Font = "Fonts\\FRIZQT__.TTF",
123 FontSize = 8,
124 RelativeTo = "ManaBar_BG",
125 Point = "CENTER",
126 RelativePoint = "CENTER",
127 x=0,
128 y=0,
129 Width = 60,
130 },
131  
132 PVPIcon = { Point = "TOPLEFT",
133 RelativePoint = "TOPLEFT",
134 x = 48,
135 y = -4,
136 },
137  
138 InCombatIcon = { Hidden = true,
139 },
140  
141 RestingIcon = { Hidden = true,
142 },
143  
144 RaidTargetIcon = { Point = "CENTER",
145 RelativePoint = "TOP",
146 x = 0,
147 y = -3,
148 },
149  
150 LeaderIcon = { Point = "TOPLEFT",
151 RelativePoint = "TOPLEFT",
152 x = 60,
153 y = -4,
154 },
155  
156 MasterIcon = { Point = "TOPLEFT",
157 RelativePoint = "TOPLEFT",
158 x = 70,
159 y = -4,
160 },
161 StatusText = { Font = "Fonts\\FRIZQT__.TTF",
162 FontSize = 9.5,
163 Point = "CENTER",
164 RelativeTo = "HealthBar_BG",
165 RelativePoint = "CENTER",
166 x = 0,
167 y = -2,
168 Hidden = false,
169 },
170 },
171 player = {
172 ClassText = { Hidden = true,
173 },
174 },
175 pet = {
176 ClassText = { Hidden = true,
177 },
178 },
179 target = {
180 ClassText = { Justify = "RIGHT",
181 Width = 60,
182 Point = "TOPRIGHT",
183 RelativePoint = "TOPRIGHT",
184 x = -9,
185 y = -9,
186 },
187 NameLabel = { Width = 60,
188 },
189 },
190 targettarget = {
191 ClassText = { Hidden = true,
192 },
193 NameLabel = { Width = 102,
194 },
195 },
196 },
197 }