You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

154 lines
4.3 KiB

4 years ago
local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule('Skins')
local _G = _G
local next, unpack = next, unpack
4 years ago
local CreateFrame = CreateFrame
local hooksecurefunc = hooksecurefunc
local function SpellHighlightSetTexture(texture, tex)
if tex == [[Interface\Buttons\ButtonHilight-Square]] or tex == [[Interface\Buttons\UI-PassiveHighlight]] then
texture:SetColorTexture(1, 1, 1, 0.3)
end
end
local function TabHighlightSetTexture(texture, tex)
if tex ~= nil then
texture:SetHighlightTexture(E.ClearTexture)
end
end
local function TabCheckedSetTexture(texture, tex)
if tex ~= nil then
texture:SetCheckedTexture(E.ClearTexture)
end
end
4 years ago
function S:SpellBookFrame()
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.spellbook) then return end
S:HandleFrame(_G.SpellBookFrame, true, nil, 11, -12, -32, 76)
5 months ago
local showAllRanks = _G.ShowAllSpellRanksCheckbox
if showAllRanks then
S:HandleCheckBox(showAllRanks)
showAllRanks:Point('TOPLEFT', 20, -20)
end
4 years ago
_G.SpellBookTitleText:Point('TOP', -10, -17)
_G.SpellBookTitleText:SetTextColor(1, 1, 1)
_G.SpellBookSpellIconsFrame:StripTextures(true)
_G.SpellBookSideTabsFrame:StripTextures(true)
_G.SpellBookPageNavigationFrame:StripTextures(true)
_G.SpellBookPageText:SetTextColor(1, 1, 1)
_G.SpellBookPageText:Point('BOTTOM', -10, 87)
S:HandleNextPrevButton(_G.SpellBookPrevPageButton)
_G.SpellBookPrevPageButton:Point('BOTTOMRIGHT', _G.SpellBookFrame, 'BOTTOMRIGHT', -73, 87)
_G.SpellBookPrevPageButton:Size(24)
S:HandleNextPrevButton(_G.SpellBookNextPageButton)
_G.SpellBookNextPageButton:Point('TOPLEFT', _G.SpellBookPrevPageButton, 'TOPLEFT', 30, 0)
_G.SpellBookNextPageButton:Size(24)
S:HandleCloseButton(_G.SpellBookCloseButton, _G.SpellBookFrame.backdrop)
for i = 1, 3 do
local tab = _G['SpellBookFrameTabButton'..i]
tab:GetNormalTexture():SetTexture(nil)
tab:GetDisabledTexture():SetTexture(nil)
S:HandleTab(tab)
tab.backdrop:Point('TOPLEFT', 14, -14)
tab.backdrop:Point('BOTTOMRIGHT', -14, 22)
4 years ago
end
-- Reposition Tabs
_G.SpellBookFrameTabButton1:ClearAllPoints()
_G.SpellBookFrameTabButton1:Point('TOPLEFT', _G.SpellBookFrame, 'BOTTOMLEFT', -3, 89)
_G.SpellBookFrameTabButton2:Point('TOPLEFT', _G.SpellBookFrameTabButton1, 'TOPRIGHT', -27, 0)
_G.SpellBookFrameTabButton3:Point('TOPLEFT', _G.SpellBookFrameTabButton2, 'TOPRIGHT', -27, 0)
4 years ago
-- Spell Buttons
for i = 1, _G.SPELLS_PER_PAGE do
local button = _G['SpellButton'..i]
local icon = _G['SpellButton'..i..'IconTexture']
local cooldown = _G['SpellButton'..i..'Cooldown']
local highlight = _G['SpellButton'..i..'Highlight']
for _, region in next, { button:GetRegions() } do
if region:IsObjectType('Texture') and region:GetTexture() ~= [[Interface\Buttons\ActionBarFlyoutButton]] then
region:SetTexture(nil)
4 years ago
end
end
3 years ago
button:CreateBackdrop(nil, true)
4 years ago
button.SpellSubName:SetTextColor(0.6, 0.6, 0.6)
button.bg = CreateFrame('Frame', nil, button)
button.bg:SetTemplate('Transparent')
4 years ago
button.bg:Point('TOPLEFT', -6, 6)
button.bg:Point('BOTTOMRIGHT', 112, -6)
button.bg:Height(46)
5 months ago
button.bg:OffsetFrameLevel(-1, button)
4 years ago
icon:SetTexCoord(unpack(E.TexCoords))
highlight:SetAllPoints()
hooksecurefunc(highlight, 'SetTexture', SpellHighlightSetTexture)
4 years ago
E:RegisterCooldown(cooldown)
end
5 months ago
_G.SpellButton1:PointXY(28, -55)
4 years ago
-- evens
for i = 2, _G.SPELLS_PER_PAGE, 2 do
5 months ago
_G['SpellButton'..i]:PointXY(163, 0)
4 years ago
end
-- odds
for i = 3, _G.SPELLS_PER_PAGE, 2 do
5 months ago
_G['SpellButton'..i]:PointXY(0, -20)
4 years ago
end
hooksecurefunc('SpellButton_UpdateButton', function(button)
local spellName = _G[button:GetName()..'SpellName']
local r = spellName:GetTextColor()
if r < 0.8 then
spellName:SetTextColor(0.6, 0.6, 0.6)
end
end)
for i = 1, _G.MAX_SKILLLINE_TABS do
local tab = _G['SpellBookSkillLineTab'..i]
local flash = _G['SpellBookSkillLineTab'..i..'Flash']
tab:StripTextures()
tab:SetTemplate()
tab:StyleButton(nil, true)
3 years ago
tab:SetTemplate(nil, true)
4 years ago
tab.pushed = true
tab:GetNormalTexture():SetInside()
tab:GetNormalTexture():SetTexCoord(unpack(E.TexCoords))
if i == 1 then
tab:Point('TOPLEFT', _G.SpellBookSideTabsFrame, 'TOPRIGHT', -31, -70)
4 years ago
end
hooksecurefunc(tab:GetHighlightTexture(), 'SetTexture', TabHighlightSetTexture)
hooksecurefunc(tab:GetCheckedTexture(), 'SetTexture', TabCheckedSetTexture)
4 years ago
flash:Kill()
end
end
S:AddCallback('SpellBookFrame')