2011-11-03 20:07:07 +01:00
|
|
|
ToolTip = {}
|
|
|
|
|
|
|
|
-- private variables
|
|
|
|
local currentToolTip
|
|
|
|
|
|
|
|
-- private functions
|
|
|
|
local function moveToolTip(tooltip)
|
|
|
|
local pos = getMouseCursorPos()
|
|
|
|
pos.y = pos.y + 1
|
|
|
|
local xdif = getScreenSize().width - (pos.x + tooltip:getWidth())
|
|
|
|
if xdif < 2 then
|
|
|
|
pos.x = pos.x - tooltip:getWidth() - 3
|
|
|
|
else
|
|
|
|
pos.x = pos.x + 10
|
|
|
|
end
|
|
|
|
tooltip:moveTo(pos)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- public functions
|
|
|
|
function ToolTip.display(text)
|
|
|
|
if text then
|
2011-11-14 15:30:35 +01:00
|
|
|
ToolTip.hide()
|
2011-11-03 23:28:10 +01:00
|
|
|
currentToolTip = UI.loadAndDisplay('/tooltip/tooltip.otui', UI.root)
|
2011-11-03 20:07:07 +01:00
|
|
|
currentToolTip.onMouseMove = moveToolTip
|
|
|
|
local label = currentToolTip:getChildById('toolTipText')
|
|
|
|
label:setText(text)
|
|
|
|
label:resizeToText()
|
|
|
|
local size = label:getSize()
|
|
|
|
size.width = size.width + 4
|
|
|
|
size.height = size.height + 4
|
|
|
|
currentToolTip:setSize(size)
|
2011-11-03 20:32:50 +01:00
|
|
|
moveToolTip(currentToolTip)
|
2011-11-03 20:07:07 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function ToolTip.hide()
|
|
|
|
if currentToolTip then
|
|
|
|
currentToolTip:destroy()
|
|
|
|
currentToolTip = nil
|
|
|
|
end
|
|
|
|
end
|
2011-11-03 23:28:10 +01:00
|
|
|
|
2011-11-14 16:01:09 +01:00
|
|
|
-- UIWidget hooks
|
2011-11-14 15:30:35 +01:00
|
|
|
local function onWidgetHoverChange(widget, hovered)
|
|
|
|
if hovered then
|
|
|
|
ToolTip.display(widget.tooltip)
|
|
|
|
else
|
|
|
|
ToolTip:hide()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function onWidgetStyleApply(widget, style)
|
2011-11-14 16:01:09 +01:00
|
|
|
if style and style.tooltip then
|
|
|
|
widget.tooltip = style.tooltip
|
|
|
|
end
|
2011-11-14 15:30:35 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
connect(UIWidget, { onStyleApply = onWidgetStyleApply,
|
|
|
|
onHoverChange = onWidgetHoverChange})
|
|
|
|
|
2011-11-14 16:01:09 +01:00
|
|
|
-- UIWidget extensions
|
2011-11-14 03:40:18 +01:00
|
|
|
function UIWidget:setTooltip(text)
|
2011-11-14 15:30:35 +01:00
|
|
|
self.tooltip = text
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIWidget:getTooltip()
|
|
|
|
return self.tooltip
|
2011-11-14 03:40:18 +01:00
|
|
|
end
|
|
|
|
|