initial commit
This commit is contained in:
49
Modules/Skins/Blizzard/ItemInteraction.lua
Normal file
49
Modules/Skins/Blizzard/ItemInteraction.lua
Normal file
@@ -0,0 +1,49 @@
|
||||
local E, L, V, P, G = unpack(select(2, ...))
|
||||
local S = E:GetModule('Skins')
|
||||
|
||||
local _G = _G
|
||||
|
||||
function S:Blizzard_ItemInteractionUI()
|
||||
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.itemInteraction) then return end
|
||||
|
||||
local ItemInteractionFrame = _G.ItemInteractionFrame
|
||||
S:HandlePortraitFrame(ItemInteractionFrame)
|
||||
|
||||
do -- ItemSlot
|
||||
local ItemSlot = ItemInteractionFrame.ItemSlot
|
||||
ItemSlot:StripTextures()
|
||||
ItemSlot:CreateBackdrop()
|
||||
|
||||
ItemSlot:Size(58)
|
||||
ItemSlot:ClearAllPoints()
|
||||
ItemSlot:Point('TOPLEFT', 143, -97)
|
||||
|
||||
ItemSlot.Icon:ClearAllPoints()
|
||||
ItemSlot.Icon:Point('TOPLEFT', 1, -1)
|
||||
ItemSlot.Icon:Point('BOTTOMRIGHT', -1, 1)
|
||||
S:HandleIcon(ItemSlot.Icon)
|
||||
|
||||
ItemSlot.GlowOverlay:SetAlpha(0)
|
||||
end
|
||||
|
||||
local ButtonFrame = ItemInteractionFrame.ButtonFrame
|
||||
ButtonFrame:StripTextures()
|
||||
ButtonFrame.MoneyFrameEdge:SetAlpha(0)
|
||||
ButtonFrame.BlackBorder:SetAlpha(0)
|
||||
ButtonFrame.ButtonBorder:Hide()
|
||||
ButtonFrame.ButtonBottomBorder:Hide()
|
||||
|
||||
ButtonFrame.Currency:Point('BOTTOMRIGHT', ButtonFrame.MoneyFrameEdge, -9, 4)
|
||||
ButtonFrame.MoneyFrame:Point('BOTTOMRIGHT', ButtonFrame.MoneyFrameEdge, 7, 5)
|
||||
|
||||
S:HandleIcon(ButtonFrame.Currency.icon)
|
||||
S:HandleButton(ButtonFrame.ActionButton)
|
||||
|
||||
-- Temp mover
|
||||
ItemInteractionFrame:SetMovable(true)
|
||||
ItemInteractionFrame:RegisterForDrag('LeftButton')
|
||||
ItemInteractionFrame:SetScript('OnDragStart', function(s) s:StartMoving() end)
|
||||
ItemInteractionFrame:SetScript('OnDragStop', function(s) s:StopMovingOrSizing() end)
|
||||
end
|
||||
|
||||
S:AddCallbackForAddon('Blizzard_ItemInteractionUI')
|
||||
Reference in New Issue
Block a user