mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
update ColorPicker
This commit is contained in:
@@ -1,27 +1,22 @@
|
|||||||
--[[
|
--[[
|
||||||
Credit to Jaslm, most of this code is his from the addon ColorPickerPlus
|
Credit to Jaslm, most of this code is his from the addon ColorPickerPlus
|
||||||
]]
|
]]
|
||||||
local E, L, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
local E, L, DF = unpack(ElvUI)
|
||||||
local B = E:GetModule("Blizzard");
|
local B = E:GetModule("Blizzard")
|
||||||
local S = E:GetModule("Skins");
|
local S = E:GetModule("Skins")
|
||||||
|
|
||||||
--Cache global variables
|
local tonumber, collectgarbage = tonumber, collectgarbage
|
||||||
--Lua functions
|
|
||||||
local collectgarbage = collectgarbage
|
|
||||||
local floor = math.floor
|
local floor = math.floor
|
||||||
local format = string.format
|
local format, strsub = string.format, strsub
|
||||||
--WoW API / Variables
|
local getn = table.getn
|
||||||
|
|
||||||
local CreateFrame = CreateFrame
|
local CreateFrame = CreateFrame
|
||||||
local RAID_CLASS_COLORS = RAID_CLASS_COLORS
|
local RAID_CLASS_COLORS = RAID_CLASS_COLORS
|
||||||
local CUSTOM_CLASS_COLORS = CUSTOM_CLASS_COLORS
|
|
||||||
local CLASS, DEFAULTS = CLASS, DEFAULTS
|
local CLASS, DEFAULTS = CLASS, DEFAULTS
|
||||||
|
|
||||||
local colorBuffer = {}
|
local colorBuffer = {}
|
||||||
local editingText
|
local editingText
|
||||||
|
|
||||||
local RAID_CLASS_COLORS = RAID_CLASS_COLORS
|
|
||||||
local CUSTOM_CLASS_COLORS = CUSTOM_CLASS_COLORS
|
|
||||||
|
|
||||||
local function UpdateAlphaText()
|
local function UpdateAlphaText()
|
||||||
local a = OpacitySliderFrame:GetValue()
|
local a = OpacitySliderFrame:GetValue()
|
||||||
a = (1 - a) * 100
|
a = (1 - a) * 100
|
||||||
@@ -29,39 +24,109 @@ local function UpdateAlphaText()
|
|||||||
ColorPPBoxA:SetText(format("%d", a))
|
ColorPPBoxA:SetText(format("%d", a))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function UpdateAlpha()
|
||||||
|
local a = this:GetNumber()
|
||||||
|
if a > 100 then
|
||||||
|
a = 100
|
||||||
|
ColorPPBoxA:SetText(format("%d", a))
|
||||||
|
end
|
||||||
|
a = 1 - (a / 100)
|
||||||
|
editingText = true
|
||||||
|
OpacitySliderFrame:SetValue(a)
|
||||||
|
editingText = nil
|
||||||
|
end
|
||||||
|
|
||||||
local function UpdateColorTexts(r, g, b)
|
local function UpdateColorTexts(r, g, b)
|
||||||
if not r then r, g, b = ColorPickerFrame:GetColorRGB() end
|
if not r then r, g, b = ColorPickerFrame:GetColorRGB() end
|
||||||
r = r*255
|
r = r * 255
|
||||||
g = g*255
|
g = g * 255
|
||||||
b = b*255
|
b = b * 255
|
||||||
ColorPPBoxR:SetText(format("%d", r))
|
ColorPPBoxR:SetText(format("%d", r))
|
||||||
ColorPPBoxG:SetText(format("%d", g))
|
ColorPPBoxG:SetText(format("%d", g))
|
||||||
ColorPPBoxB:SetText(format("%d", b))
|
ColorPPBoxB:SetText(format("%d", b))
|
||||||
ColorPPBoxH:SetText(format("%.2x%.2x%.2x", r, g, b))
|
ColorPPBoxH:SetText(format("%.2x%.2x%.2x", r, g, b))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function UpdateColor()
|
||||||
|
local r, g, b = ColorPickerFrame:GetColorRGB()
|
||||||
|
local id = this:GetID()
|
||||||
|
|
||||||
|
if id == 1 then
|
||||||
|
r = format("%d", this:GetNumber())
|
||||||
|
if not r then r = 0 end
|
||||||
|
r = r / 255
|
||||||
|
elseif id == 2 then
|
||||||
|
g = format("%d", this:GetNumber())
|
||||||
|
if not g then g = 0 end
|
||||||
|
g = g / 255
|
||||||
|
elseif id == 3 then
|
||||||
|
b = format("%d", this:GetNumber())
|
||||||
|
if not b then b = 0 end
|
||||||
|
b = b / 255
|
||||||
|
elseif id == 4 then
|
||||||
|
-- hex values
|
||||||
|
if this:GetNumLetters() == 6 then
|
||||||
|
local rgb = this:GetText()
|
||||||
|
r, g, b = tonumber("0x"..strsub(rgb, 0, 2)), tonumber("0x"..strsub(rgb, 3, 4)), tonumber("0x"..strsub(rgb, 5, 6))
|
||||||
|
if not r then r = 0 else r = r / 255 end
|
||||||
|
if not g then g = 0 else g = g / 255 end
|
||||||
|
if not b then b = 0 else b = b / 255 end
|
||||||
|
else
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- This takes care of updating the hex entry when changing rgb fields and vice versa
|
||||||
|
UpdateColorTexts(r, g, b)
|
||||||
|
|
||||||
|
editingText = true
|
||||||
|
ColorPickerFrame:SetColorRGB(r, g, b)
|
||||||
|
ColorSwatch:SetTexture(r, g, b)
|
||||||
|
editingText = nil
|
||||||
|
end
|
||||||
|
|
||||||
|
local function HandleUpdateLimiter()
|
||||||
|
this.timeSinceUpdate = (this.timeSinceUpdate or 0) + arg1
|
||||||
|
if this.timeSinceUpdate > 0.15 then
|
||||||
|
this.allowUpdate = true
|
||||||
|
else
|
||||||
|
this.allowUpdate = false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function B:EnhanceColorPicker()
|
function B:EnhanceColorPicker()
|
||||||
if IsAddOnLoaded("ColorPickerPlus") then return end
|
if IsAddOnLoaded("ColorPickerPlus") then return end
|
||||||
ColorPickerFrame:SetClampedToScreen(true)
|
|
||||||
|
|
||||||
--Skin the default frame, move default buttons into place
|
--Skin the default frame, move default buttons into place
|
||||||
|
ColorPickerFrame:SetClampedToScreen(true)
|
||||||
E:SetTemplate(ColorPickerFrame, "Transparent")
|
E:SetTemplate(ColorPickerFrame, "Transparent")
|
||||||
|
|
||||||
ColorPickerFrameHeader:SetTexture("")
|
ColorPickerFrameHeader:SetTexture("")
|
||||||
ColorPickerFrameHeader:ClearAllPoints()
|
ColorPickerFrameHeader:ClearAllPoints()
|
||||||
ColorPickerFrameHeader:SetPoint("TOP", ColorPickerFrame, 0, 0)
|
ColorPickerFrameHeader:SetPoint("TOP", ColorPickerFrame, 0, 0)
|
||||||
S:HandleButton(ColorPickerOkayButton)
|
|
||||||
S:HandleButton(ColorPickerCancelButton)
|
S:HandleButton(ColorPickerCancelButton)
|
||||||
ColorPickerCancelButton:ClearAllPoints()
|
ColorPickerCancelButton:ClearAllPoints()
|
||||||
|
E:Point(ColorPickerCancelButton, "BOTTOMRIGHT", ColorPickerFrame, "BOTTOMRIGHT", -6, 6)
|
||||||
|
E:Point(ColorPickerCancelButton, "BOTTOMLEFT", ColorPickerFrame, "BOTTOM", 0, 6)
|
||||||
|
|
||||||
|
S:HandleButton(ColorPickerOkayButton)
|
||||||
ColorPickerOkayButton:ClearAllPoints()
|
ColorPickerOkayButton:ClearAllPoints()
|
||||||
ColorPickerCancelButton:SetPoint("BOTTOMRIGHT", ColorPickerFrame, "BOTTOMRIGHT", -6, 6)
|
E:Point(ColorPickerOkayButton, "BOTTOMLEFT", ColorPickerFrame,"BOTTOMLEFT", 6, 6)
|
||||||
ColorPickerCancelButton:SetPoint("BOTTOMLEFT", ColorPickerFrame, "BOTTOM", 0, 6)
|
E:Point(ColorPickerOkayButton, "RIGHT", ColorPickerCancelButton,"LEFT", -4, 0)
|
||||||
ColorPickerOkayButton:SetPoint("BOTTOMLEFT", ColorPickerFrame,"BOTTOMLEFT", 6,6)
|
|
||||||
ColorPickerOkayButton:SetPoint("RIGHT", ColorPickerCancelButton,"LEFT", -4,0)
|
|
||||||
S:HandleSliderFrame(OpacitySliderFrame)
|
S:HandleSliderFrame(OpacitySliderFrame)
|
||||||
|
|
||||||
|
if OpacitySliderFrame:GetThumbTexture() then
|
||||||
|
OpacitySliderFrame:SetThumbTexture(E.media.normTex)
|
||||||
|
OpacitySliderFrame:GetThumbTexture():SetVertexColor(unpack(E.media.rgbvaluecolor))
|
||||||
|
E:Size(OpacitySliderFrame:GetThumbTexture(), 10)
|
||||||
|
end
|
||||||
|
|
||||||
HookScript(ColorPickerFrame, "OnShow", function()
|
HookScript(ColorPickerFrame, "OnShow", function()
|
||||||
-- get color that will be replaced
|
-- get color that will be replaced
|
||||||
local r, g, b = ColorPickerFrame:GetColorRGB()
|
local r, g, b = ColorPickerFrame:GetColorRGB()
|
||||||
ColorPPOldColorSwatch:SetTexture(r, g, b)
|
ColorPPOldColorSwatch:SetTexture(r,g,b)
|
||||||
|
|
||||||
-- show/hide the alpha box
|
-- show/hide the alpha box
|
||||||
if ColorPickerFrame.hasOpacity then
|
if ColorPickerFrame.hasOpacity then
|
||||||
@@ -69,22 +134,30 @@ function B:EnhanceColorPicker()
|
|||||||
ColorPPBoxLabelA:Show()
|
ColorPPBoxLabelA:Show()
|
||||||
ColorPPBoxH:SetScript("OnTabPressed", function() ColorPPBoxA:SetFocus() end)
|
ColorPPBoxH:SetScript("OnTabPressed", function() ColorPPBoxA:SetFocus() end)
|
||||||
UpdateAlphaText()
|
UpdateAlphaText()
|
||||||
E:Width(this, 405)
|
this:SetWidth(405)
|
||||||
else
|
else
|
||||||
ColorPPBoxA:Hide()
|
ColorPPBoxA:Hide()
|
||||||
ColorPPBoxLabelA:Hide()
|
ColorPPBoxLabelA:Hide()
|
||||||
ColorPPBoxH:SetScript("OnTabPressed", function() ColorPPBoxR:SetFocus() end)
|
ColorPPBoxH:SetScript("OnTabPressed", function() ColorPPBoxR:SetFocus() end)
|
||||||
E:Width(this, 345)
|
this:SetWidth(345)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--Set OnUpdate script to handle update limiter
|
||||||
|
this:SetScript("OnUpdate", HandleUpdateLimiter)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
--Memory Fix, Colorpicker will call the self.func() 100x per second, causing fps/memory issues,
|
--Memory Fix, Colorpicker will call the this.func() 100x per second, causing fps/memory issues,
|
||||||
--this little script will make you have to press ok for you to notice any changes.
|
--We overwrite the OnColorSelect script and set a limit on how often we allow a call to this.func
|
||||||
ColorPickerFrame:SetScript("OnColorSelect", function(_, r, g, b)
|
ColorPickerFrame:SetScript("OnColorSelect", function()
|
||||||
|
local r, g, b = arg1, arg2, arg3
|
||||||
ColorSwatch:SetTexture(r, g, b)
|
ColorSwatch:SetTexture(r, g, b)
|
||||||
if not editingText then
|
if not editingText then
|
||||||
UpdateColorTexts(r, g, b)
|
UpdateColorTexts(r, g, b)
|
||||||
end
|
end
|
||||||
|
if this.allowUpdate then
|
||||||
|
this.func()
|
||||||
|
this.timeSinceUpdate = 0
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
HookScript(ColorPickerOkayButton, "OnClick", function()
|
HookScript(ColorPickerOkayButton, "OnClick", function()
|
||||||
@@ -107,25 +180,25 @@ function B:EnhanceColorPicker()
|
|||||||
-- add Color Swatch for original color
|
-- add Color Swatch for original color
|
||||||
local t = ColorPickerFrame:CreateTexture("ColorPPOldColorSwatch")
|
local t = ColorPickerFrame:CreateTexture("ColorPPOldColorSwatch")
|
||||||
local w, h = ColorSwatch:GetWidth(), ColorSwatch:GetHeight()
|
local w, h = ColorSwatch:GetWidth(), ColorSwatch:GetHeight()
|
||||||
E:Width(t, w*0.75)
|
E:Size(t, w * 0.75, h * 0.75)
|
||||||
E:Height(t, h*0.75)
|
t:SetTexture(0, 0, 0)
|
||||||
t:SetTexture(0,0,0)
|
|
||||||
-- OldColorSwatch to appear beneath ColorSwatch
|
-- OldColorSwatch to appear beneath ColorSwatch
|
||||||
t:SetDrawLayer("BORDER")
|
t:SetDrawLayer("BORDER")
|
||||||
E:Point(t, "BOTTOMLEFT", "ColorSwatch", "TOPRIGHT", -(w/2), -(h/3))
|
E:Point(t, "BOTTOMLEFT", "ColorSwatch", "TOPRIGHT", -(w / 2), -(h / 3))
|
||||||
|
|
||||||
-- add Color Swatch for the copied color
|
-- add Color Swatch for the copied color
|
||||||
t = ColorPickerFrame:CreateTexture("ColorPPCopyColorSwatch")
|
t = ColorPickerFrame:CreateTexture("ColorPPCopyColorSwatch")
|
||||||
E:Size(t, w, h)
|
E:Size(t, w, h)
|
||||||
t:SetTexture(0,0,0)
|
t:SetTexture(0, 0, 0)
|
||||||
t:Hide()
|
t:Hide()
|
||||||
|
|
||||||
-- add copy button to the ColorPickerFrame
|
-- add copy button to the ColorPickerFrame
|
||||||
local b = CreateFrame("Button", "ColorPPCopy", ColorPickerFrame, "UIPanelButtonTemplate")
|
local b = CreateFrame("Button", "ColorPPCopy", ColorPickerFrame, "UIPanelButtonTemplate")
|
||||||
S:HandleButton(b)
|
S:HandleButton(b)
|
||||||
b:SetText(L["Copy"])
|
b:SetText(L["Copy"])
|
||||||
E:Size(b, 60, 22)
|
b:SetWidth(60)
|
||||||
E:Point(b, "TOPLEFT", "ColorSwatch", "BOTTOMLEFT", 0, -5)
|
b:SetHeight(22)
|
||||||
|
b:SetPoint("TOPLEFT", "ColorSwatch", "BOTTOMLEFT", 0, -5)
|
||||||
|
|
||||||
-- copy color into buffer on button click
|
-- copy color into buffer on button click
|
||||||
b:SetScript("OnClick", function()
|
b:SetScript("OnClick", function()
|
||||||
@@ -148,7 +221,8 @@ function B:EnhanceColorPicker()
|
|||||||
b = CreateFrame("Button", "ColorPPClass", ColorPickerFrame, "UIPanelButtonTemplate")
|
b = CreateFrame("Button", "ColorPPClass", ColorPickerFrame, "UIPanelButtonTemplate")
|
||||||
b:SetText(CLASS)
|
b:SetText(CLASS)
|
||||||
S:HandleButton(b)
|
S:HandleButton(b)
|
||||||
E:Size(b, 80, 22)
|
E:Width(b, 80)
|
||||||
|
E:Height(b, 22)
|
||||||
E:Point(b, "TOP", "ColorPPCopy", "BOTTOMRIGHT", 0, -7)
|
E:Point(b, "TOP", "ColorPPCopy", "BOTTOMRIGHT", 0, -7)
|
||||||
|
|
||||||
b:SetScript("OnClick", function()
|
b:SetScript("OnClick", function()
|
||||||
@@ -164,7 +238,8 @@ function B:EnhanceColorPicker()
|
|||||||
b = CreateFrame("Button", "ColorPPPaste", ColorPickerFrame, "UIPanelButtonTemplate")
|
b = CreateFrame("Button", "ColorPPPaste", ColorPickerFrame, "UIPanelButtonTemplate")
|
||||||
b:SetText(L["Paste"])
|
b:SetText(L["Paste"])
|
||||||
S:HandleButton(b)
|
S:HandleButton(b)
|
||||||
E:Size(b, 60, 22)
|
E:Width(b, 60)
|
||||||
|
E:Height(b, 22)
|
||||||
E:Point(b, "TOPLEFT", "ColorPPCopy", "TOPRIGHT", 2, 0)
|
E:Point(b, "TOPLEFT", "ColorPPCopy", "TOPRIGHT", 2, 0)
|
||||||
b:Disable() -- enable when something has been copied
|
b:Disable() -- enable when something has been copied
|
||||||
|
|
||||||
@@ -183,13 +258,15 @@ function B:EnhanceColorPicker()
|
|||||||
b = CreateFrame("Button", "ColorPPDefault", ColorPickerFrame, "UIPanelButtonTemplate")
|
b = CreateFrame("Button", "ColorPPDefault", ColorPickerFrame, "UIPanelButtonTemplate")
|
||||||
b:SetText(DEFAULTS)
|
b:SetText(DEFAULTS)
|
||||||
S:HandleButton(b)
|
S:HandleButton(b)
|
||||||
E:Size(b, 80, 22)
|
E:Width(b, 80)
|
||||||
|
E:Height(b, 22)
|
||||||
E:Point(b, "TOPLEFT", "ColorPPClass", "BOTTOMLEFT", 0, -7)
|
E:Point(b, "TOPLEFT", "ColorPPClass", "BOTTOMLEFT", 0, -7)
|
||||||
b:Disable() -- enable when something has been copied
|
b:Disable() -- enable when something has been copied
|
||||||
b:SetScript("OnHide", function()
|
b:SetScript("OnHide", function()
|
||||||
this.colors = nil
|
this.colors = nil
|
||||||
end)
|
end)
|
||||||
b:SetScript("OnShow", function()
|
b:SetScript("OnShow", function()
|
||||||
|
print(this.colors)
|
||||||
if this.colors then
|
if this.colors then
|
||||||
this:Enable()
|
this:Enable()
|
||||||
else
|
else
|
||||||
@@ -227,8 +304,8 @@ function B:EnhanceColorPicker()
|
|||||||
box:SetID(i)
|
box:SetID(i)
|
||||||
box:SetFrameStrata("DIALOG")
|
box:SetFrameStrata("DIALOG")
|
||||||
box:SetAutoFocus(false)
|
box:SetAutoFocus(false)
|
||||||
box:SetTextInsets(0,14,0,0)
|
box:SetTextInsets(0, 14, 0, 0)
|
||||||
box:SetJustifyH("CENTER")
|
box:SetJustifyH("RIGHT")
|
||||||
E:Height(box, 24)
|
E:Height(box, 24)
|
||||||
|
|
||||||
if i == 4 then
|
if i == 4 then
|
||||||
@@ -241,7 +318,7 @@ function B:EnhanceColorPicker()
|
|||||||
E:Width(box, 40)
|
E:Width(box, 40)
|
||||||
box:SetNumeric(true)
|
box:SetNumeric(true)
|
||||||
end
|
end
|
||||||
E:Point(box, "TOP", "ColorPickerWheel", "BOTTOM", 0, -15)
|
box:SetPoint("TOP", "ColorPickerWheel", "BOTTOM", 0, -15)
|
||||||
|
|
||||||
-- label
|
-- label
|
||||||
local label = box:CreateFontString("ColorPPBoxLabel"..rgb, "ARTWORK", "GameFontNormalSmall")
|
local label = box:CreateFontString("ColorPPBoxLabel"..rgb, "ARTWORK", "GameFontNormalSmall")
|
||||||
@@ -255,15 +332,17 @@ function B:EnhanceColorPicker()
|
|||||||
|
|
||||||
-- set up scripts to handle event appropriately
|
-- set up scripts to handle event appropriately
|
||||||
if i == 5 then
|
if i == 5 then
|
||||||
box:SetScript("OnEscapePressed", function() this:ClearFocus() UpdateAlphaText() end)
|
box:SetScript("OnEscapePressed", function() this:ClearFocus() UpdateAlphaText() end)
|
||||||
box:SetScript("OnEnterPressed", function() this:ClearFocus() UpdateAlphaText() end)
|
box:SetScript("OnEnterPressed", function() this:ClearFocus() UpdateAlphaText() end)
|
||||||
|
box:SetScript("OnTextChanged", UpdateAlpha)
|
||||||
else
|
else
|
||||||
box:SetScript("OnEscapePressed", function() this:ClearFocus() UpdateColorTexts() end)
|
box:SetScript("OnEscapePressed", function() this:ClearFocus() UpdateColorTexts() end)
|
||||||
box:SetScript("OnEnterPressed", function() this:ClearFocus() UpdateColorTexts() end)
|
box:SetScript("OnEnterPressed", function() this:ClearFocus() UpdateColorTexts() end)
|
||||||
|
-- box:SetScript("OnTextChanged", UpdateColor) -- TODO
|
||||||
end
|
end
|
||||||
|
|
||||||
box:SetScript("OnEditFocusGained", function() this:HighlightText() end)
|
box:SetScript("OnEditFocusGained", function() EditBoxSetCursorPosition(this, 0) this:HighlightText() end)
|
||||||
box:SetScript("OnEditFocusLost", function() this:HighlightText(0,0) end)
|
box:SetScript("OnEditFocusLost", function() this:HighlightText(0, 0) end)
|
||||||
box:SetScript("OnTextSet", function() this:ClearFocus() end)
|
box:SetScript("OnTextSet", function() this:ClearFocus() end)
|
||||||
box:Show()
|
box:Show()
|
||||||
end
|
end
|
||||||
@@ -283,8 +362,8 @@ function B:EnhanceColorPicker()
|
|||||||
|
|
||||||
-- make the color picker movable.
|
-- make the color picker movable.
|
||||||
local mover = CreateFrame("Frame", nil, ColorPickerFrame)
|
local mover = CreateFrame("Frame", nil, ColorPickerFrame)
|
||||||
E:Point(mover, "TOPLEFT", ColorPickerFrame, "TOP", -60, 0)
|
mover:SetPoint("TOPLEFT", ColorPickerFrame, "TOP", -60, 0)
|
||||||
E:Point(mover, "BOTTOMRIGHT", ColorPickerFrame, "TOP", 60, -15)
|
mover:SetPoint("BOTTOMRIGHT", ColorPickerFrame, "TOP", 60, -15)
|
||||||
mover:EnableMouse(true)
|
mover:EnableMouse(true)
|
||||||
mover:SetScript("OnMouseDown", function() ColorPickerFrame:StartMoving() end)
|
mover:SetScript("OnMouseDown", function() ColorPickerFrame:StartMoving() end)
|
||||||
mover:SetScript("OnMouseUp", function() ColorPickerFrame:StopMovingOrSizing() end)
|
mover:SetScript("OnMouseUp", function() ColorPickerFrame:StopMovingOrSizing() end)
|
||||||
|
|||||||
Reference in New Issue
Block a user