mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 07:36:56 +00:00
a75fd5dca4
* add skin for: auction, character, game_menu guild_registrar, inspect, macro, mail, merchant, options-interface, options-sound, options-video, popup_dialogs, professions, questlog, talents, tracking, guildbank, socket, readycheck, arena_registrar, arena, time_manager, LFG * add mail highlighting the quality of items * add quality borders of guildbank items
32 lines
947 B
Lua
32 lines
947 B
Lua
pfUI:RegisterSkin("Popup Dialogs", "vanilla:tbc", function ()
|
|
for i = 1, STATICPOPUP_NUMDIALOGS do
|
|
-- Compatibility
|
|
local money = _G["StaticPopup"..i.."MoneyInputFrame"]
|
|
if money then -- tbc
|
|
SkinMoneyInputFrame(money)
|
|
end
|
|
|
|
|
|
local dialog = _G["StaticPopup"..i]
|
|
CreateBackdrop(dialog, nil, true, .75)
|
|
CreateBackdropShadow(dialog)
|
|
|
|
SkinCloseButton(_G[dialog:GetName().."CloseButton"], dialog, -6, -6)
|
|
|
|
SkinButton(_G[dialog:GetName().."Button1"])
|
|
SkinButton(_G[dialog:GetName().."Button2"])
|
|
|
|
local editbox = _G[dialog:GetName().."EditBox"]
|
|
editbox:DisableDrawLayer("BACKGROUND")
|
|
CreateBackdrop(editbox)
|
|
editbox:SetHeight(18)
|
|
|
|
local wide_editbox = _G[dialog:GetName().."WideEditBox"]
|
|
wide_editbox:DisableDrawLayer("BACKGROUND")
|
|
CreateBackdrop(wide_editbox)
|
|
wide_editbox:SetHeight(18)
|
|
wide_editbox:ClearAllPoints()
|
|
wide_editbox:SetPoint("BOTTOM", 0, 45)
|
|
end
|
|
end)
|