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.
98 lines
2.7 KiB
98 lines
2.7 KiB
local E, L, V, P, G = unpack(ElvUI)
|
|
local S = E:GetModule('Skins')
|
|
|
|
local _G = _G
|
|
local pairs, next = pairs, next
|
|
|
|
function S:Blizzard_LookingForGroupUI()
|
|
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.lfg) then return end
|
|
|
|
local LFGParentFrame = _G.LFGParentFrame
|
|
LFGParentFrame:StripTextures(true)
|
|
LFGParentFrame:CreateBackdrop('Transparent')
|
|
LFGParentFrame.backdrop:Point('TOPLEFT', 10, -10)
|
|
LFGParentFrame.backdrop:Point('BOTTOMRIGHT', -24, 75)
|
|
|
|
local lfgButtons = {
|
|
'LFGFrameClearAllButton',
|
|
'LFGFramePostButton',
|
|
'LFMFrameGroupInviteButton',
|
|
'LFMFrameSearchButton',
|
|
'LFMFrameSendMessageButton',
|
|
}
|
|
|
|
for _, button in pairs(lfgButtons) do
|
|
_G[button]:StripTextures()
|
|
S:HandleButton(_G[button])
|
|
end
|
|
|
|
local dropDownFrames = {
|
|
'LFGFrameTypeDropDown1',
|
|
'LFGFrameTypeDropDown2',
|
|
'LFGFrameTypeDropDown3',
|
|
'LFGFrameActivityDropDown1',
|
|
'LFGFrameActivityDropDown2',
|
|
'LFGFrameActivityDropDown3',
|
|
}
|
|
|
|
for _, dropDown in pairs(dropDownFrames) do
|
|
S:HandleDropDownBox(_G[dropDown], 245)
|
|
end
|
|
|
|
-- LFM DropDowns, different sizes
|
|
local LFMFrameTypeDropDown = _G.LFMFrameTypeDropDown
|
|
local LFMFrameActivityDropDown = _G.LFMFrameActivityDropDown
|
|
S:HandleDropDownBox(LFMFrameTypeDropDown, 150)
|
|
S:HandleDropDownBox(LFMFrameActivityDropDown, 225)
|
|
|
|
-- 1st icon
|
|
_G.LFGSearchBg1:StripTextures()
|
|
_G.LFGSearchBg1:CreateBackdrop('Transparent')
|
|
_G.LFGSearchBg1:Width(58)
|
|
_G.LFGSearchBg1:Height(53)
|
|
-- 2nd icon
|
|
_G.LFGSearchBg2:StripTextures()
|
|
_G.LFGSearchBg2:CreateBackdrop('Transparent')
|
|
_G.LFGSearchBg2:Width(58)
|
|
_G.LFGSearchBg2:Height(53)
|
|
-- 3rd icon
|
|
_G.LFGSearchBg3:StripTextures()
|
|
_G.LFGSearchBg3:CreateBackdrop('Transparent')
|
|
_G.LFGSearchBg3:Width(58)
|
|
_G.LFGSearchBg3:Height(53)
|
|
|
|
local LFMFrameInsetBg = _G.LFMFrameInsetBg
|
|
LFMFrameInsetBg:StripTextures()
|
|
LFMFrameInsetBg:CreateBackdrop('Transparent')
|
|
|
|
local LFMFrameInset = _G.LFMFrameInset
|
|
LFMFrameInset:StripTextures()
|
|
|
|
local LFMFrameGroupInviteButton = _G.LFMFrameGroupInviteButton
|
|
LFMFrameGroupInviteButton:Point('BOTTOMRIGHT', -40, 85)
|
|
|
|
for i = 1, 2 do
|
|
local tab = _G['LFGParentFrameTab'..i]
|
|
|
|
S:HandleTab(tab)
|
|
end
|
|
|
|
for _, child in next, { LFGParentFrame:GetChildren() } do
|
|
if child.GetPushedTexture and child:GetPushedTexture() and not child:GetName() then
|
|
S:HandleCloseButton(child)
|
|
end
|
|
end
|
|
|
|
local LFGComment = _G.LFGComment
|
|
S:HandleEditBox(LFGComment)
|
|
LFGComment:Size(323, 19)
|
|
LFGComment:Point('BOTTOMLEFT', LFGParentFrame, 'BOTTOMLEFT', 20, 110)
|
|
LFGComment.SetPoint = E.noop
|
|
|
|
for i = 1, 4 do
|
|
local frame = _G['LFMFrameColumnHeader'..i]
|
|
frame:StripTextures()
|
|
end
|
|
end
|
|
|
|
S:AddCallbackForAddon('Blizzard_LookingForGroupUI')
|
|
|