init
This commit is contained in:
@@ -0,0 +1,145 @@
|
||||
--[[
|
||||
bagFrame.lua
|
||||
A container object for bags
|
||||
--]]
|
||||
|
||||
local Bagnon = LibStub('AceAddon-3.0'):GetAddon('Bagnon')
|
||||
local TabFrame = Bagnon.Classy:New('Frame')
|
||||
Bagnon.GuildTabFrame = TabFrame
|
||||
|
||||
|
||||
--[[ Constructor ]]--
|
||||
|
||||
function TabFrame:New(frameID, parent)
|
||||
local f = self:Bind(CreateFrame('Frame', nil, parent))
|
||||
f:Hide()
|
||||
|
||||
f:SetScript('OnShow', f.OnShow)
|
||||
f:SetScript('OnHide', f.OnHide)
|
||||
|
||||
f:SetFrameID(frameID)
|
||||
f:CreateBagSlots()
|
||||
f:UpdateEvents()
|
||||
|
||||
return f
|
||||
end
|
||||
|
||||
function TabFrame:CreateBagSlots()
|
||||
local bags = {}
|
||||
|
||||
for id = 1, MAX_GUILDBANK_TABS do
|
||||
table.insert(bags, Bagnon.GuildTab:New(id, self:GetFrameID(), self))
|
||||
end
|
||||
|
||||
self.bags = bags
|
||||
end
|
||||
|
||||
|
||||
--[[ Messages ]]--
|
||||
|
||||
function TabFrame:BAG_FRAME_SHOW(msg, frameID)
|
||||
if frameID == self:GetFrameID() then
|
||||
self:UpdateShown()
|
||||
end
|
||||
end
|
||||
|
||||
function TabFrame:BAG_FRAME_HIDE(msg, frameID)
|
||||
if frameID == self:GetFrameID() then
|
||||
self:UpdateShown()
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
--[[ Frame Events ]]--
|
||||
|
||||
function TabFrame:OnShow()
|
||||
self:Layout()
|
||||
self:SendMessage('BAG_FRAME_UPDATE_SHOWN', self:GetFrameID())
|
||||
end
|
||||
|
||||
function TabFrame:OnHide()
|
||||
self:SendMessage('BAG_FRAME_UPDATE_SHOWN', self:GetFrameID())
|
||||
end
|
||||
|
||||
|
||||
--[[ Update Methods ]]--
|
||||
|
||||
function TabFrame:UpdateShown()
|
||||
if self:IsBagFrameShown() then
|
||||
if not self:IsShown() then
|
||||
UIFrameFadeIn(self, 0.1)
|
||||
end
|
||||
else
|
||||
self:Hide()
|
||||
end
|
||||
end
|
||||
|
||||
function TabFrame:UpdateEvents()
|
||||
self:UnregisterAllMessages()
|
||||
|
||||
self:RegisterMessage('BAG_FRAME_SHOW')
|
||||
self:RegisterMessage('BAG_FRAME_HIDE')
|
||||
end
|
||||
|
||||
function TabFrame:Layout()
|
||||
if not self:IsVisible() then return end
|
||||
|
||||
local width = 0
|
||||
local height = 0
|
||||
local spacing = self:GetSpacing()
|
||||
local padding = self:GetPadding()
|
||||
|
||||
width = self.bags[1]:GetWidth() * #self.bags + spacing * (#self.bags - 1) + padding * 2
|
||||
height = self.bags[1]:GetHeight() + padding * 2
|
||||
|
||||
local prev
|
||||
for i, bag in self:GetBags() do
|
||||
if prev then
|
||||
bag:SetPoint('LEFT', prev, 'RIGHT', spacing, 0)
|
||||
else
|
||||
bag:SetPoint('LEFT', padding, 0)
|
||||
end
|
||||
bag:Show()
|
||||
prev = bag
|
||||
end
|
||||
|
||||
self:SetWidth(width)
|
||||
self:SetHeight(height)
|
||||
end
|
||||
|
||||
|
||||
--[[ Properties ]]--
|
||||
|
||||
function TabFrame:SetFrameID(frameID)
|
||||
if self:GetFrameID() ~= frameID then
|
||||
self.frameID = frameID
|
||||
-- self:UpdateShown()
|
||||
end
|
||||
end
|
||||
|
||||
function TabFrame:GetFrameID()
|
||||
return self.frameID
|
||||
end
|
||||
|
||||
function TabFrame:GetBags()
|
||||
return ipairs(self.bags)
|
||||
end
|
||||
|
||||
|
||||
--[[ Frame Settings ]]--
|
||||
|
||||
function TabFrame:GetSettings()
|
||||
return Bagnon.FrameSettings:Get(self:GetFrameID())
|
||||
end
|
||||
|
||||
function TabFrame:IsBagFrameShown()
|
||||
return self:GetSettings():IsBagFrameShown()
|
||||
end
|
||||
|
||||
function TabFrame:GetSpacing()
|
||||
return 4
|
||||
end
|
||||
|
||||
function TabFrame:GetPadding()
|
||||
return 0
|
||||
end
|
||||
Reference in New Issue
Block a user