2012-05-06 00:24:42 +00:00
|
|
|
--[[------------------------------------------------
|
2012-09-29 23:20:41 +00:00
|
|
|
-- Love Frames - A GUI library for LOVE --
|
2013-02-11 21:15:40 +00:00
|
|
|
-- Copyright (c) 2013 Kenny Shields --
|
2012-05-06 00:24:42 +00:00
|
|
|
--]]------------------------------------------------
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
-- columnlistheader class
|
2012-11-24 22:42:16 +00:00
|
|
|
local newobject = loveframes.NewObject("columnlistheader", "loveframes_object_columnlistheader", true)
|
2012-05-06 00:24:42 +00:00
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: initialize()
|
|
|
|
- desc: intializes the element
|
|
|
|
--]]---------------------------------------------------------
|
2012-11-24 22:42:16 +00:00
|
|
|
function newobject:initialize(name, parent)
|
2012-05-06 00:24:42 +00:00
|
|
|
|
2012-12-28 12:19:02 +00:00
|
|
|
self.type = "columnlistheader"
|
|
|
|
self.parent = parent
|
|
|
|
self.name = name
|
2013-06-25 10:58:35 +00:00
|
|
|
self.state = parent.state
|
2012-12-28 12:19:02 +00:00
|
|
|
self.width = 80
|
|
|
|
self.height = self.parent.columnheight
|
|
|
|
self.hover = false
|
|
|
|
self.down = false
|
|
|
|
self.clickable = true
|
|
|
|
self.enabled = true
|
2012-05-06 00:24:42 +00:00
|
|
|
self.descending = true
|
2012-12-28 12:19:02 +00:00
|
|
|
self.internal = true
|
2012-05-06 00:24:42 +00:00
|
|
|
|
|
|
|
table.insert(parent.children, self)
|
|
|
|
|
|
|
|
local key = 0
|
|
|
|
|
2013-01-04 16:56:04 +00:00
|
|
|
for k, v in ipairs(parent.children) do
|
2012-05-06 00:24:42 +00:00
|
|
|
if v == self then
|
|
|
|
key = k
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-04 16:56:04 +00:00
|
|
|
self.OnClick = function(object)
|
|
|
|
local descending = object.descending
|
|
|
|
local parent = object.parent
|
|
|
|
local pinternals = parent.internals
|
|
|
|
local list = pinternals[1]
|
|
|
|
if descending then
|
|
|
|
object.descending = false
|
2012-05-06 00:24:42 +00:00
|
|
|
else
|
2013-01-04 16:56:04 +00:00
|
|
|
object.descending = true
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
2013-01-04 16:56:04 +00:00
|
|
|
list:Sort(key, object.descending)
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
|
2012-10-22 14:19:02 +00:00
|
|
|
-- apply template properties to the object
|
|
|
|
loveframes.templates.ApplyToObject(self)
|
|
|
|
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: update(deltatime)
|
|
|
|
- desc: updates the object
|
|
|
|
--]]---------------------------------------------------------
|
2012-11-24 22:42:16 +00:00
|
|
|
function newobject:update(dt)
|
2012-05-06 00:24:42 +00:00
|
|
|
|
2012-12-28 12:19:02 +00:00
|
|
|
local visible = self.visible
|
2012-05-22 07:10:18 +00:00
|
|
|
local alwaysupdate = self.alwaysupdate
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not visible then
|
|
|
|
if not alwaysupdate then
|
2012-05-06 00:24:42 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
local parent = self.parent
|
|
|
|
local base = loveframes.base
|
|
|
|
local update = self.Update
|
|
|
|
|
2012-05-06 00:24:42 +00:00
|
|
|
self:CheckHover()
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not self.hover then
|
2012-05-13 03:57:27 +00:00
|
|
|
self.down = false
|
2012-09-29 23:20:41 +00:00
|
|
|
else
|
2013-10-30 23:05:10 +00:00
|
|
|
if loveframes.downobject == self then
|
2012-05-13 03:57:27 +00:00
|
|
|
self.down = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-30 23:05:10 +00:00
|
|
|
if self.down and loveframes.downobject == self then
|
2012-05-13 03:57:27 +00:00
|
|
|
self.hover = true
|
|
|
|
end
|
|
|
|
|
2012-05-06 00:24:42 +00:00
|
|
|
-- move to parent if there is a parent
|
2012-09-29 23:20:41 +00:00
|
|
|
if parent ~= base then
|
|
|
|
self.x = parent.x + self.staticx
|
|
|
|
self.y = parent.y + self.staticy
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if update then
|
|
|
|
update(self, dt)
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: draw()
|
|
|
|
- desc: draws the object
|
|
|
|
--]]---------------------------------------------------------
|
2012-11-24 22:42:16 +00:00
|
|
|
function newobject:draw()
|
2012-05-06 00:24:42 +00:00
|
|
|
|
2012-05-22 07:10:18 +00:00
|
|
|
local visible = self.visible
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not visible then
|
2012-05-06 00:24:42 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-12-28 12:19:02 +00:00
|
|
|
local skins = loveframes.skins.available
|
|
|
|
local skinindex = loveframes.config["ACTIVESKIN"]
|
|
|
|
local defaultskin = loveframes.config["DEFAULTSKIN"]
|
|
|
|
local selfskin = self.skin
|
|
|
|
local skin = skins[selfskin] or skins[skinindex]
|
|
|
|
local drawfunc = skin.DrawColumnListHeader or skins[defaultskin].DrawColumnListHeader
|
|
|
|
local draw = self.Draw
|
|
|
|
local drawcount = loveframes.drawcount
|
2012-09-02 00:56:32 +00:00
|
|
|
|
2012-10-22 14:19:02 +00:00
|
|
|
-- set the object's draw order
|
|
|
|
self:SetDrawOrder()
|
2012-09-02 00:56:32 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if draw then
|
|
|
|
draw(self)
|
2012-05-06 00:24:42 +00:00
|
|
|
else
|
2012-09-02 00:56:32 +00:00
|
|
|
drawfunc(self)
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: mousepressed(x, y, button)
|
|
|
|
- desc: called when the player presses a mouse button
|
|
|
|
--]]---------------------------------------------------------
|
2012-11-24 22:42:16 +00:00
|
|
|
function newobject:mousepressed(x, y, button)
|
2012-05-06 00:24:42 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if self.hover and button == "l" then
|
2012-05-06 00:24:42 +00:00
|
|
|
local baseparent = self:GetBaseParent()
|
|
|
|
if baseparent and baseparent.type == "frame" and button == "l" then
|
|
|
|
baseparent:MakeTop()
|
|
|
|
end
|
|
|
|
self.down = true
|
2013-10-30 23:05:10 +00:00
|
|
|
loveframes.downobject = self
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: mousereleased(x, y, button)
|
|
|
|
- desc: called when the player releases a mouse button
|
|
|
|
--]]---------------------------------------------------------
|
2012-11-24 22:42:16 +00:00
|
|
|
function newobject:mousereleased(x, y, button)
|
2012-05-06 00:24:42 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not self.visible then
|
2012-05-06 00:24:42 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-12-28 12:19:02 +00:00
|
|
|
local hover = self.hover
|
|
|
|
local down = self.down
|
2012-05-06 00:24:42 +00:00
|
|
|
local clickable = self.clickable
|
2012-12-28 12:19:02 +00:00
|
|
|
local enabled = self.enabled
|
|
|
|
local onclick = self.OnClick
|
2012-05-06 00:24:42 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if hover and down and clickable and button == "l" then
|
|
|
|
if enabled then
|
|
|
|
onclick(self, x, y)
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.down = false
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: GetName()
|
|
|
|
- desc: gets the object's name
|
|
|
|
--]]---------------------------------------------------------
|
2012-11-24 22:42:16 +00:00
|
|
|
function newobject:GetName()
|
2012-09-29 23:20:41 +00:00
|
|
|
|
|
|
|
return self.name
|
|
|
|
|
2013-09-07 04:15:43 +00:00
|
|
|
end
|