mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
3232e10daa
* enable existing skins to tbc: battlefield, battlefield_minimap, dressup, gossipquest, itemtext, keybindings, miscellaneous, spellbook, stable, tabard, taxi, trade, trainer
43 lines
1.3 KiB
Lua
43 lines
1.3 KiB
Lua
pfUI:RegisterSkin("Pet Stable Master", "vanilla:tbc", function ()
|
|
StripTextures(PetStableFrame)
|
|
CreateBackdrop(PetStableFrame, nil, nil, .75)
|
|
CreateBackdropShadow(PetStableFrame)
|
|
|
|
PetStableFrame.backdrop:SetPoint("TOPLEFT", 10, -10)
|
|
PetStableFrame.backdrop:SetPoint("BOTTOMRIGHT", -32, 72)
|
|
PetStableFrame:SetHitRectInsets(10,32,10,72)
|
|
EnableMovable(PetStableFrame)
|
|
|
|
SkinCloseButton(PetStableFrameCloseButton, PetStableFrame.backdrop, -6, -6)
|
|
|
|
PetStableFrame:DisableDrawLayer("BACKGROUND")
|
|
|
|
PetStableTitleLabel:ClearAllPoints()
|
|
PetStableTitleLabel:SetPoint("TOP", PetStableFrame.backdrop, "TOP", 0, -10)
|
|
|
|
EnableClickRotate(PetStableModel)
|
|
PetStableModelRotateLeftButton:Hide()
|
|
PetStableModelRotateRightButton:Hide()
|
|
|
|
PetStablePetInfo:ClearAllPoints()
|
|
PetStablePetInfo:SetPoint("TOPLEFT", PetStableModel, "TOPLEFT", 10, 0)
|
|
|
|
local buttons = {"PetStableCurrentPet", "PetStableStabledPet1", "PetStableStabledPet2"}
|
|
for _,v in pairs(buttons) do
|
|
local button = _G[v]
|
|
StripTextures(button)
|
|
SkinButton(button, nil, nil, nil, _G[button:GetName().."IconTexture"])
|
|
|
|
button.Enable = function()
|
|
button:SetBackdropColor()
|
|
button.locked = false
|
|
end
|
|
button.Disable = function()
|
|
button:SetBackdropColor(1, .1, .1, .3)
|
|
button.locked = true
|
|
end
|
|
end
|
|
|
|
SkinButton(PetStablePurchaseButton)
|
|
end)
|