2012-09-02 00:56:32 +00:00
|
|
|
--[[------------------------------------------------
|
2012-09-29 23:20:41 +00:00
|
|
|
-- Love Frames - A GUI library for LOVE --
|
|
|
|
-- Copyright (c) 2012 Kenny Shields --
|
2012-09-02 00:56:32 +00:00
|
|
|
--]]------------------------------------------------
|
|
|
|
|
|
|
|
-- tooltip clas
|
|
|
|
tooltip = class("tooltip", base)
|
|
|
|
tooltip:include(loveframes.templates.default)
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: initialize()
|
|
|
|
- desc: initializes the object
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:initialize(object, text, width)
|
|
|
|
|
|
|
|
local width = width or 0
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
self.type = "tooltip"
|
|
|
|
self.parent = loveframes.base
|
|
|
|
self.object = object or nil
|
|
|
|
self.width = width or 0
|
|
|
|
self.height = 0
|
|
|
|
self.padding = 5
|
|
|
|
self.xoffset = 10
|
|
|
|
self.yoffset = -10
|
|
|
|
self.internal = true
|
|
|
|
self.show = false
|
|
|
|
self.followcursor = true
|
|
|
|
self.alwaysupdate = true
|
2012-09-02 00:56:32 +00:00
|
|
|
|
|
|
|
self.text = loveframes.Create("text")
|
|
|
|
self.text:Remove()
|
|
|
|
self.text.parent = self
|
|
|
|
self.text:SetText(text or "")
|
|
|
|
self.text:SetWidth(width or 0)
|
|
|
|
self.text:SetPos(0, 0)
|
|
|
|
|
|
|
|
table.insert(loveframes.base.internals, self)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: update(deltatime)
|
|
|
|
- desc: updates the object
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:update(dt)
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
local visible = self.visible
|
2012-09-02 00:56:32 +00:00
|
|
|
local alwaysupdate = self.alwaysupdate
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not visible then
|
|
|
|
if not alwaysupdate then
|
2012-09-02 00:56:32 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
local text = self.text
|
|
|
|
local object = self.object
|
2012-09-02 00:56:32 +00:00
|
|
|
local draworder = self.draworder
|
2012-09-29 23:20:41 +00:00
|
|
|
local update = self.Update
|
|
|
|
|
|
|
|
self.width = text.width + self.padding * 2
|
|
|
|
self.height = text.height + self.padding * 2
|
2012-09-02 00:56:32 +00:00
|
|
|
|
|
|
|
if object then
|
|
|
|
|
|
|
|
if object == loveframes.base then
|
|
|
|
self:Remove()
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
local hover = object.hover
|
2012-09-02 00:56:32 +00:00
|
|
|
local odraworder = object.draworder
|
2012-09-29 23:20:41 +00:00
|
|
|
local ovisible = object.visible
|
|
|
|
local ohover = object.hover
|
2012-09-02 00:56:32 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
self.show = ohover
|
|
|
|
self.visible = ovisible
|
2012-09-02 00:56:32 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if ohover and ovisible then
|
2012-09-02 00:56:32 +00:00
|
|
|
local top = self:IsTopInternal()
|
2012-09-29 23:20:41 +00:00
|
|
|
if self.followcursor then
|
2012-09-02 00:56:32 +00:00
|
|
|
local x, y = love.mouse.getPosition()
|
|
|
|
self.x = x + self.xoffset
|
|
|
|
self.y = y - self.height + self.yoffset
|
|
|
|
else
|
|
|
|
self.x = object.x + self.xoffset
|
|
|
|
self.y = object.y - self.height + self.yoffset
|
|
|
|
end
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not top then
|
2012-09-02 00:56:32 +00:00
|
|
|
self:MoveToTop()
|
|
|
|
end
|
|
|
|
|
|
|
|
text:SetPos(self.padding, self.padding)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
local baseparent = object:GetBaseParent()
|
|
|
|
|
|
|
|
if baseparent then
|
2012-09-29 23:20:41 +00:00
|
|
|
if baseparent.removed and baseparent.removed then
|
2012-09-02 00:56:32 +00:00
|
|
|
self:Remove()
|
|
|
|
end
|
|
|
|
elseif object.removed then
|
|
|
|
self:Remove()
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
text:update(dt)
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if update then
|
|
|
|
update(self, dt)
|
2012-09-02 00:56:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: draw()
|
|
|
|
- desc: draws the object
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:draw()
|
|
|
|
|
|
|
|
local visible = self.visible
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if not visible then
|
2012-09-02 00:56:32 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
local show = self.show
|
|
|
|
local text = self.text
|
|
|
|
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.DrawToolTip or skins[defaultskin].DrawToolTip
|
|
|
|
local draw = self.Draw
|
|
|
|
local drawcount = loveframes.drawcount
|
|
|
|
|
|
|
|
loveframes.drawcount = drawcount + 1
|
2012-09-02 00:56:32 +00:00
|
|
|
self.draworder = loveframes.drawcount
|
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if show then
|
2012-09-02 00:56:32 +00:00
|
|
|
|
2012-09-29 23:20:41 +00:00
|
|
|
if draw then
|
|
|
|
draw(self)
|
2012-09-02 00:56:32 +00:00
|
|
|
else
|
|
|
|
drawfunc(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
text:draw()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetFollowCursor(bool)
|
|
|
|
- desc: sets whether or not the tooltip should follow the
|
|
|
|
cursor
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetFollowCursor(bool)
|
|
|
|
|
|
|
|
self.followcursor = bool
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetObject(object)
|
|
|
|
- desc: sets the tooltip's object
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetObject(object)
|
|
|
|
|
|
|
|
self.object = object
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetText(text)
|
|
|
|
- desc: sets the tooltip's text
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetText(text)
|
|
|
|
|
|
|
|
self.text:SetText(text)
|
|
|
|
self.text2 = text
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetTextMaxWidth(text)
|
|
|
|
- desc: sets the tooltip's text max width
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetTextMaxWidth(width)
|
|
|
|
|
|
|
|
self.text:SetMaxWidth(width)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetOffsets(xoffset, yoffset)
|
|
|
|
- desc: sets the tooltip's x and y offset
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetOffsets(xoffset, yoffset)
|
|
|
|
|
|
|
|
self.xoffset = xoffset
|
|
|
|
self.yoffset = yoffset
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetPadding(padding)
|
|
|
|
- desc: sets the tooltip's padding
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetPadding(padding)
|
|
|
|
|
|
|
|
self.padding = padding
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
--[[---------------------------------------------------------
|
|
|
|
- func: SetFont(font)
|
|
|
|
- desc: sets the tooltip's font
|
|
|
|
--]]---------------------------------------------------------
|
|
|
|
function tooltip:SetFont(font)
|
|
|
|
|
|
|
|
self.text:SetFont(font)
|
|
|
|
|
2012-05-06 00:24:42 +00:00
|
|
|
end
|