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.ABF = {
4 Name = "ABF",
5 Tip = "ABF Tip",
6 ResizeBars = false,
7 BackgroundBarColor = true,
8 AlphaBar = true,
9 RaidColorName = false,
10 PetClassName = true,
11 ComboGFX = true,
12 HappinessBar = true,
13  
14 ThemeData = {
15 all = {
16 FrameHeight = 25,
17 FrameWidth = 140,
18  
19 Combo1 = { Point = "BOTTOMRIGHT",
20 RelativePoint = "BOTTOMRIGHT",
21 x = 1,
22 y = -1,
23 Height = 10,
24 HeightAdd = 0,
25 Width = 10,
26 },
27  
28 HealthBar_BG = { Point = "TOPLEFT",
29 RelativePoint = "TOPLEFT",
30 x = 5,
31 y = -5,
32 Visibility = {"HealthBar_BG","HealthBar","BarHealthText","HealthText",},
33 Height = 15,
34 HeightAdd = 0,
35 Width = 90,
36 },
37  
38 ManaBar_BG = { Point = "TOPLEFT",
39 RelativePoint = "TOPLEFT",
40 x = 5,
41 y = -21,
42 HeightAdd = 12,
43 Visibility = {"ManaBar_BG","ManaBar","BarManaText","ManaText","ClassText",},
44 Height = 11,
45 Width = 90,
46 },
47  
48 XPBar_BG = { Point = "TOPLEFT",
49 RelativeTo = "ManaBar_BG",
50 RelativeToSecondary = "HealthBar_BG",
51 RelativePoint = "BOTTOMLEFT",
52 x = 0,
53 y = -1,
54 HeightAdd = 5,
55 Visibility = {"XPBar_BG","XPBar","XPBar_Rest"},
56 Width = 90,
57 Height = 4,
58 },
59  
60 NameBackground= { Hidden = true,
61 },
62  
63 Happiness = { Point = "TOPLEFT",
64 RelativeTo = "HealthBar_BG",
65 RelativePoint = "TOPLEFT",
66 x=0,
67 y=0,
68 Height = 15,
69 Width = 90,
70 Visibility = {"Happiness",},
71 },
72  
73 NameLabel = { Font = L"Interface\\AddOns\\ag_UnitFrames\\fonts\\barframes.ttf",
74 FontSize = 9,
75 Width = 90,
76 Point = "LEFT",
77 RelativeTo = "HealthBar",
78 RelativePoint = "LEFT",
79 x = 2,
80 y =0,
81 },
82  
83 ClassText = { Font = L"Interface\\AddOns\\ag_UnitFrames\\fonts\\barframes.ttf",
84 FontSize = 8,
85 Justify = "LEFT",
86 Width = 90,
87 Point = "LEFT",
88 RelativeTo = "ManaBar",
89 RelativePoint = "LEFT",
90 x = 2,
91 y =0.5,
92 },
93  
94 HealthText = { Font = "Interface\\AddOns\\ag_UnitFrames\\fonts\\barframes.ttf",
95 FontSize = 9,
96 Point = "RIGHT",
97 RelativeTo = "HealthBar_BG",
98 RelativePoint = "RIGHT",
99 x=-2,
100 y=0,
101 Width = 60,
102 Justify = "RIGHT",
103 },
104  
105 ManaText = { Font = "Interface\\AddOns\\ag_UnitFrames\\fonts\\barframes.ttf",
106 FontSize = 8,
107 Point = "RIGHT",
108 RelativeTo = "ManaBar_BG",
109 RelativePoint = "RIGHT",
110 x=-2,
111 y=0.5,
112 Width = 60,
113 Justify = "RIGHT",
114 },
115  
116 BarHealthText = { Font = "Interface\\AddOns\\ag_UnitFrames\\fonts\\barframes.ttf",
117 FontSize = 9,
118 RelativeTo = "HealthBar_BG",
119 Point = "CENTER",
120 RelativePoint = "CENTER",
121 x=0,
122 y=0,
123 Width = 60,
124  
125 },
126  
127 BarManaText = { Font = "Interface\\AddOns\\ag_UnitFrames\\fonts\\barframes.ttf",
128 FontSize = 8,
129 RelativeTo = "ManaBar_BG",
130 Point = "CENTER",
131 RelativePoint = "CENTER",
132 x=0,
133 y=0,
134 Width = 60,
135 },
136  
137 PVPIcon = { Point = "TOPRIGHT",
138 RelativePoint = "TOPRIGHT",
139 x = 14,
140 y= 2,
141 },
142  
143 InCombatIcon = { Point = "BOTTOMLEFT",
144 RelativePoint = "BOTTOMLEFT",
145 x = -4,
146 y= -3,
147 },
148  
149 RestingIcon = { Point = "TOPRIGHT",
150 RelativePoint = "TOPRIGHT",
151 x = 5,
152 y= 6,
153 },
154  
155 RaidTargetIcon = { Point = "CENTER",
156 RelativePoint = "TOP",
157 x = 0,
158 y = -3,
159 },
160  
161 LeaderIcon = { Point = "TOPLEFT",
162 RelativePoint = "TOPLEFT",
163 x = -2,
164 y= 2,
165 },
166  
167 MasterIcon = { Point = "TOPLEFT",
168 RelativePoint = "TOPLEFT",
169 x = -5,
170 y= 2,
171 },
172 },
173 raid = {
174 FrameWidth = 110,
175 -- HealthBar_BG = { Width = 100,
176 -- },
177 -- ManaBar_BG = { Width = 100,
178 -- },
179 },
180 }
181 }
182