@@ -14,6 +14,9 @@ local tonumber, floor, strsub = tonumber, floor, strsub
14
14
local CreateFrame = CreateFrame
15
15
local IsControlKeyDown = IsControlKeyDown
16
16
local IsModifierKeyDown = IsModifierKeyDown
17
+
18
+ local ColorPickerFrame = ColorPickerFrame
19
+
17
20
local CALENDAR_COPY_EVENT , CALENDAR_PASTE_EVENT = CALENDAR_COPY_EVENT , CALENDAR_PASTE_EVENT
18
21
local CLASS , DEFAULT = CLASS , DEFAULT
19
22
62
65
63
66
local function UpdateColorTexts (r , g , b , box )
64
67
if not (r and g and b ) then
65
- r , g , b = _G . ColorPickerFrame :GetColorRGB ()
68
+ r , g , b = ColorPickerFrame :GetColorRGB ()
66
69
67
70
if box then
68
71
if box == _G .ColorPPBoxH then
93
96
94
97
local function UpdateColor ()
95
98
local r , g , b = GetHexColor (_G .ColorPPBoxH )
96
- _G . ColorPickerFrame :SetColorRGB (r , g , b )
99
+ ColorPickerFrame :SetColorRGB (r , g , b )
97
100
_G .ColorSwatch :SetColorTexture (r , g , b )
98
101
end
99
102
@@ -129,7 +132,7 @@ local function onColorSelect(frame, r, g, b)
129
132
if not frame :IsVisible () then
130
133
delayCall ()
131
134
elseif not delayFunc then
132
- delayFunc = _G . ColorPickerFrame .func
135
+ delayFunc = ColorPickerFrame .func
133
136
E :Delay (delayWait , delayCall )
134
137
end
135
138
end
@@ -144,10 +147,10 @@ local function onValueChanged(_, value)
144
147
145
148
UpdateAlphaText (alpha )
146
149
147
- if not _G . ColorPickerFrame :IsVisible () then
150
+ if not ColorPickerFrame :IsVisible () then
148
151
delayCall ()
149
152
else
150
- local opacityFunc = _G . ColorPickerFrame .opacityFunc
153
+ local opacityFunc = ColorPickerFrame .opacityFunc
151
154
if delayFunc and (delayFunc ~= opacityFunc ) then
152
155
delayFunc = opacityFunc
153
156
elseif not delayFunc then
@@ -160,22 +163,20 @@ end
160
163
function BL :EnhanceColorPicker ()
161
164
if E :IsAddOnEnabled (' ColorPickerPlus' ) then return end
162
165
163
- local Picker = _G .ColorPickerFrame
164
-
165
166
if E .Retail then
166
- Picker .Border :Hide ()
167
+ ColorPickerFrame .Border :Hide ()
167
168
end
168
169
169
- local Header = Picker .Header or _G .ColorPickerFrameHeader
170
+ local Header = ColorPickerFrame .Header or _G .ColorPickerFrameHeader
170
171
Header :StripTextures ()
171
172
Header :ClearAllPoints ()
172
- Header :Point (' TOP' , Picker , 0 , 5 )
173
+ Header :Point (' TOP' , ColorPickerFrame , 0 , 5 )
173
174
174
175
_G .ColorPickerCancelButton :ClearAllPoints ()
175
176
_G .ColorPickerOkayButton :ClearAllPoints ()
176
- _G .ColorPickerCancelButton :Point (' BOTTOMRIGHT' , Picker , ' BOTTOMRIGHT' , - 6 , 6 )
177
- _G .ColorPickerCancelButton :Point (' BOTTOMLEFT' , Picker , ' BOTTOM' , 0 , 6 )
178
- _G .ColorPickerOkayButton :Point (' BOTTOMLEFT' , Picker ,' BOTTOMLEFT' , 6 ,6 )
177
+ _G .ColorPickerCancelButton :Point (' BOTTOMRIGHT' , ColorPickerFrame , ' BOTTOMRIGHT' , - 6 , 6 )
178
+ _G .ColorPickerCancelButton :Point (' BOTTOMLEFT' , ColorPickerFrame , ' BOTTOM' , 0 , 6 )
179
+ _G .ColorPickerOkayButton :Point (' BOTTOMLEFT' , ColorPickerFrame ,' BOTTOMLEFT' , 6 ,6 )
179
180
_G .ColorPickerOkayButton :Point (' RIGHT' , _G .ColorPickerCancelButton ,' LEFT' , - 4 ,0 )
180
181
S :HandleSliderFrame (_G .OpacitySliderFrame )
181
182
S :HandleButton (_G .ColorPickerOkayButton )
@@ -186,9 +187,9 @@ function BL:EnhanceColorPicker()
186
187
_G .OpacitySliderFrame :SetScript (' OnValueChanged' , onValueChanged )
187
188
188
189
-- Keep the colors updated
189
- Picker :SetScript (' OnColorSelect' , onColorSelect )
190
+ ColorPickerFrame :SetScript (' OnColorSelect' , onColorSelect )
190
191
191
- Picker :HookScript (' OnShow' , function (frame )
192
+ ColorPickerFrame :HookScript (' OnShow' , function (frame )
192
193
-- get color that will be replaced
193
194
local r , g , b = frame :GetColorRGB ()
194
195
_G .ColorPPOldColorSwatch :SetColorTexture (r ,g ,b )
@@ -213,25 +214,25 @@ function BL:EnhanceColorPicker()
213
214
214
215
-- move the Color Swatch
215
216
_G .ColorSwatch :ClearAllPoints ()
216
- _G .ColorSwatch :Point (' TOPLEFT' , Picker , ' TOPLEFT' , 215 , - 45 )
217
+ _G .ColorSwatch :Point (' TOPLEFT' , ColorPickerFrame , ' TOPLEFT' , 215 , - 45 )
217
218
local swatchWidth , swatchHeight = _G .ColorSwatch :GetSize ()
218
219
219
220
-- add Color Swatch for original color
220
- local originalColor = Picker :CreateTexture (' ColorPPOldColorSwatch' )
221
+ local originalColor = ColorPickerFrame :CreateTexture (' ColorPPOldColorSwatch' )
221
222
originalColor :Size (swatchWidth * 0.75 , swatchHeight * 0.75 )
222
223
originalColor :SetColorTexture (0 ,0 ,0 )
223
224
-- OldColorSwatch to appear beneath ColorSwatch
224
225
originalColor :SetDrawLayer (' BORDER' )
225
226
originalColor :Point (' BOTTOMLEFT' , ' ColorSwatch' , ' TOPRIGHT' , - (swatchWidth * 0.5 ), - (swatchHeight / 3 ))
226
227
227
228
-- add Color Swatch for the copied color
228
- local copiedColor = Picker :CreateTexture (' ColorPPCopyColorSwatch' )
229
+ local copiedColor = ColorPickerFrame :CreateTexture (' ColorPPCopyColorSwatch' )
229
230
copiedColor :SetColorTexture (0 ,0 ,0 )
230
231
copiedColor :Size (swatchWidth , swatchHeight )
231
232
copiedColor :Hide ()
232
233
233
234
-- add copy button to the ColorPickerFrame
234
- local copyButton = CreateFrame (' Button' , ' ColorPPCopy' , Picker , ' UIPanelButtonTemplate' )
235
+ local copyButton = CreateFrame (' Button' , ' ColorPPCopy' , ColorPickerFrame , ' UIPanelButtonTemplate' )
235
236
copyButton :SetText (CALENDAR_COPY_EVENT )
236
237
copyButton :Size (60 , 22 )
237
238
copyButton :Point (' TOPLEFT' , ' ColorSwatch' , ' BOTTOMLEFT' , 0 , - 5 )
@@ -240,34 +241,34 @@ function BL:EnhanceColorPicker()
240
241
-- copy color into buffer on button click
241
242
copyButton :SetScript (' OnClick' , function ()
242
243
-- copy current dialog colors into buffer
243
- colorBuffer .r , colorBuffer .g , colorBuffer .b = Picker :GetColorRGB ()
244
+ colorBuffer .r , colorBuffer .g , colorBuffer .b = ColorPickerFrame :GetColorRGB ()
244
245
245
246
-- enable Paste button and display copied color into swatch
246
247
_G .ColorPPPaste :Enable ()
247
248
_G .ColorPPCopyColorSwatch :SetColorTexture (colorBuffer .r , colorBuffer .g , colorBuffer .b )
248
249
_G .ColorPPCopyColorSwatch :Show ()
249
250
250
- colorBuffer .a = (Picker .hasOpacity and _G .OpacitySliderFrame :GetValue ()) or nil
251
+ colorBuffer .a = (ColorPickerFrame .hasOpacity and _G .OpacitySliderFrame :GetValue ()) or nil
251
252
end )
252
253
253
254
-- class color button
254
- local classButton = CreateFrame (' Button' , ' ColorPPClass' , Picker , ' UIPanelButtonTemplate' )
255
+ local classButton = CreateFrame (' Button' , ' ColorPPClass' , ColorPickerFrame , ' UIPanelButtonTemplate' )
255
256
classButton :SetText (CLASS )
256
257
classButton :Size (80 , 22 )
257
258
classButton :Point (' TOP' , ' ColorPPCopy' , ' BOTTOMRIGHT' , 0 , - 7 )
258
259
S :HandleButton (classButton )
259
260
260
261
classButton :SetScript (' OnClick' , function ()
261
262
local color = E :ClassColor (E .myclass , true )
262
- Picker :SetColorRGB (color .r , color .g , color .b )
263
+ ColorPickerFrame :SetColorRGB (color .r , color .g , color .b )
263
264
_G .ColorSwatch :SetColorTexture (color .r , color .g , color .b )
264
- if Picker .hasOpacity then
265
+ if ColorPickerFrame .hasOpacity then
265
266
_G .OpacitySliderFrame :SetValue (0 )
266
267
end
267
268
end )
268
269
269
270
-- add paste button to the ColorPickerFrame
270
- local pasteButton = CreateFrame (' Button' , ' ColorPPPaste' , Picker , ' UIPanelButtonTemplate' )
271
+ local pasteButton = CreateFrame (' Button' , ' ColorPPPaste' , ColorPickerFrame , ' UIPanelButtonTemplate' )
271
272
pasteButton :SetText (CALENDAR_PASTE_EVENT )
272
273
pasteButton :Size (60 , 22 )
273
274
pasteButton :Point (' TOPLEFT' , ' ColorPPCopy' , ' TOPRIGHT' , 2 , 0 )
@@ -276,17 +277,17 @@ function BL:EnhanceColorPicker()
276
277
277
278
-- paste color on button click, updating frame components
278
279
pasteButton :SetScript (' OnClick' , function ()
279
- Picker :SetColorRGB (colorBuffer .r , colorBuffer .g , colorBuffer .b )
280
+ ColorPickerFrame :SetColorRGB (colorBuffer .r , colorBuffer .g , colorBuffer .b )
280
281
_G .ColorSwatch :SetColorTexture (colorBuffer .r , colorBuffer .g , colorBuffer .b )
281
- if Picker .hasOpacity then
282
+ if ColorPickerFrame .hasOpacity then
282
283
if colorBuffer .a then -- color copied had an alpha value
283
284
_G .OpacitySliderFrame :SetValue (colorBuffer .a )
284
285
end
285
286
end
286
287
end )
287
288
288
289
-- add defaults button to the ColorPickerFrame
289
- local defaultButton = CreateFrame (' Button' , ' ColorPPDefault' , Picker , ' UIPanelButtonTemplate' )
290
+ local defaultButton = CreateFrame (' Button' , ' ColorPPDefault' , ColorPickerFrame , ' UIPanelButtonTemplate' )
290
291
defaultButton :SetText (DEFAULT )
291
292
defaultButton :Size (80 , 22 )
292
293
defaultButton :Point (' TOPLEFT' , ' ColorPPClass' , ' BOTTOMLEFT' , 0 , - 7 )
@@ -298,9 +299,9 @@ function BL:EnhanceColorPicker()
298
299
-- paste color on button click, updating frame components
299
300
defaultButton :SetScript (' OnClick' , function (btn )
300
301
local colors = btn .colors
301
- Picker :SetColorRGB (colors .r , colors .g , colors .b )
302
+ ColorPickerFrame :SetColorRGB (colors .r , colors .g , colors .b )
302
303
_G .ColorSwatch :SetColorTexture (colors .r , colors .g , colors .b )
303
- if Picker .hasOpacity then
304
+ if ColorPickerFrame .hasOpacity then
304
305
if colors .a then
305
306
_G .OpacitySliderFrame :SetValue (colors .a )
306
307
end
@@ -317,7 +318,7 @@ function BL:EnhanceColorPicker()
317
318
318
319
-- set up edit box frames and interior label and text areas
319
320
for i , rgb in next , { ' R' , ' G' , ' B' , ' H' , ' A' } do
320
- local box = CreateFrame (' EditBox' , ' ColorPPBox' .. rgb , Picker , ' InputBoxTemplate' )
321
+ local box = CreateFrame (' EditBox' , ' ColorPPBox' .. rgb , ColorPickerFrame , ' InputBoxTemplate' )
321
322
box :Point (' TOP' , ' ColorPickerWheel' , ' BOTTOM' , 0 , - 15 )
322
323
box :SetFrameStrata (' DIALOG' )
323
324
box :SetAutoFocus (false )
@@ -390,20 +391,20 @@ function BL:EnhanceColorPicker()
390
391
_G .ColorPPBoxB :SetScript (' OnTabPressed' , function () _G .ColorPPBoxH :SetFocus () end )
391
392
_G .ColorPPBoxA :SetScript (' OnTabPressed' , function () _G .ColorPPBoxR :SetFocus () end )
392
393
393
- -- make the color picker movable.
394
- local mover = CreateFrame (' Frame' , nil , Picker )
395
- mover :Point (' TOPLEFT' , Picker , ' TOP' , - 60 , 0 )
396
- mover :Point (' BOTTOMRIGHT' , Picker , ' TOP' , 60 , - 15 )
397
- mover :SetScript (' OnMouseDown' , function () Picker :StartMoving () end )
398
- mover :SetScript (' OnMouseUp' , function () Picker :StopMovingOrSizing () end )
394
+ -- make the color ColorPickerFrame movable.
395
+ local mover = CreateFrame (' Frame' , nil , ColorPickerFrame )
396
+ mover :Point (' TOPLEFT' , ColorPickerFrame , ' TOP' , - 60 , 0 )
397
+ mover :Point (' BOTTOMRIGHT' , ColorPickerFrame , ' TOP' , 60 , - 15 )
398
+ mover :SetScript (' OnMouseDown' , function () ColorPickerFrame :StartMoving () end )
399
+ mover :SetScript (' OnMouseUp' , function () ColorPickerFrame :StopMovingOrSizing () end )
399
400
mover :EnableMouse (true )
400
401
401
402
-- make the frame a bit taller, to make room for edit boxes
402
- Picker :Height (Picker :GetHeight () + 40 )
403
+ ColorPickerFrame :Height (ColorPickerFrame :GetHeight () + 40 )
403
404
404
405
-- skin the frame
405
- Picker :SetTemplate (' Transparent' )
406
- Picker :SetClampedToScreen (true )
407
- Picker :SetUserPlaced (true )
408
- Picker :EnableKeyboard (false )
406
+ ColorPickerFrame :SetTemplate (' Transparent' )
407
+ ColorPickerFrame :SetClampedToScreen (true )
408
+ ColorPickerFrame :SetUserPlaced (true )
409
+ ColorPickerFrame :EnableKeyboard (false )
409
410
end
0 commit comments