|
|
|
|
local E, L, V, P, G = unpack(ElvUI)
|
|
|
|
|
local S = E:GetModule('Skins')
|
|
|
|
|
|
|
|
|
|
local _G = _G
|
|
|
|
|
|
|
|
|
|
local slotColor = { r = .6, g = 0, b = .6, a = .5 }
|
|
|
|
|
local function itemSlotColor(self)
|
|
|
|
|
self:SetBackdropColor(slotColor.r, slotColor.g, slotColor.b, slotColor.a)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function S:Blizzard_AzeriteRespecUI()
|
|
|
|
|
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.azeriteRespec) then return end
|
|
|
|
|
|
|
|
|
|
local AzeriteRespecFrame = _G.AzeriteRespecFrame
|
|
|
|
|
AzeriteRespecFrame:SetClipsChildren(true)
|
|
|
|
|
AzeriteRespecFrame.Background:Hide()
|
|
|
|
|
AzeriteRespecFrame:StripTextures()
|
|
|
|
|
AzeriteRespecFrame:SetTemplate('Transparent')
|
|
|
|
|
|
|
|
|
|
local Lines = AzeriteRespecFrame:CreateTexture(nil, 'BACKGROUND')
|
|
|
|
|
Lines:ClearAllPoints()
|
|
|
|
|
Lines:Point('TOPLEFT', -50, 25)
|
|
|
|
|
Lines:Point('BOTTOMRIGHT')
|
|
|
|
|
Lines:SetTexture([[Interface\Transmogrify\EtherealLines]], true, true)
|
|
|
|
|
Lines:SetHorizTile(true)
|
|
|
|
|
Lines:SetVertTile(true)
|
|
|
|
|
Lines:SetAlpha(0.5)
|
|
|
|
|
|
|
|
|
|
local ItemSlot = AzeriteRespecFrame.ItemSlot
|
|
|
|
|
ItemSlot:Size(64)
|
|
|
|
|
ItemSlot:Point('CENTER', AzeriteRespecFrame)
|
|
|
|
|
ItemSlot.Icon:SetInside()
|
|
|
|
|
ItemSlot.GlowOverlay:SetAlpha(0)
|
|
|
|
|
|
|
|
|
|
ItemSlot:SetTemplate('Transparent')
|
|
|
|
|
ItemSlot:SetBackdropColor(slotColor.r, slotColor.g, slotColor.b, slotColor.a)
|
|
|
|
|
ItemSlot.callbackBackdropColor = itemSlotColor
|
|
|
|
|
S:HandleIcon(ItemSlot.Icon)
|
|
|
|
|
|
|
|
|
|
local ButtonFrame = AzeriteRespecFrame.ButtonFrame
|
|
|
|
|
ButtonFrame:GetRegions():Hide()
|
|
|
|
|
ButtonFrame.ButtonBorder:Hide()
|
|
|
|
|
ButtonFrame.ButtonBottomBorder:Hide()
|
|
|
|
|
|
|
|
|
|
ButtonFrame.MoneyFrameEdge:Hide()
|
|
|
|
|
ButtonFrame.MoneyFrame:ClearAllPoints()
|
|
|
|
|
ButtonFrame.MoneyFrame:Point('BOTTOMRIGHT', ButtonFrame.MoneyFrameEdge, 7, 5)
|
|
|
|
|
|
|
|
|
|
S:HandleButton(ButtonFrame.AzeriteRespecButton, true)
|
|
|
|
|
S:HandleCloseButton(AzeriteRespecFrame.CloseButton)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
S:AddCallbackForAddon('Blizzard_AzeriteRespecUI')
|