tibia-client/modules/core_widgets/uipopupmenu.lua

75 lines
1.8 KiB
Lua
Raw Normal View History

2012-01-02 21:46:40 +01:00
UIPopupMenu = extends(UIWidget)
2012-01-05 02:55:07 +01:00
local displayedMenuList = {}
2012-01-02 21:46:40 +01:00
function UIPopupMenu.create()
local menu = UIPopupMenu.internalCreate()
local layout = UIVerticalLayout.create(menu)
layout:setFitChildren(true)
2012-01-02 21:46:40 +01:00
menu:setLayout(layout)
return menu
end
function UIPopupMenu:display(pos)
-- don't display if not options was added
if self:getChildCount() == 0 then
self:destroy()
return
end
displayUI(self, {x = pos.x, y = pos.y})
self:grabMouse()
self:grabKeyboard()
2012-01-05 02:55:07 +01:00
table.insert(displayedMenuList, self)
2012-01-02 21:46:40 +01:00
end
2012-01-17 23:28:55 +01:00
function UIPopupMenu:onGeometryChange()
self:bindRectToParent()
end
function UIPopupMenu:addOption(optionName, optionCallback)
local optionWidget = createWidget(self:getStyleName() .. 'Button', self)
local lastOptionWidget = self:getLastChild()
2012-01-02 23:09:49 +01:00
optionWidget.onClick = function()
optionCallback()
self:destroy()
2012-01-02 21:46:40 +01:00
end
2012-01-02 23:09:49 +01:00
optionWidget:setText(optionName)
2012-01-04 12:24:29 +01:00
local width = optionWidget:getTextSize().width + optionWidget:getMarginLeft() + optionWidget:getMarginRight() + 6
self:setWidth(math.max(self:getWidth(), width))
2012-01-02 23:09:49 +01:00
end
function UIPopupMenu:addSeparator()
createWidget(self:getStyleName() .. 'Separator', self)
2012-01-02 21:46:40 +01:00
end
2012-01-05 19:02:27 +01:00
function UIPopupMenu:onDestroy()
table.removevalue(displayedMenuList, self)
end
function UIPopupMenu:onMousePress(mousePos, mouseButton)
2012-01-06 09:48:59 +01:00
-- clicks outside menu area destroys the menu
if not self:containsPoint(mousePos) then
self:destroy()
2012-01-02 21:46:40 +01:00
return true
end
return false
end
function UIPopupMenu:onKeyPress(keyCode, keyboardModifiers, wouldFilter)
if wouldFilter then return end
2012-01-02 23:09:49 +01:00
if keyCode == KeyEscape then
self:destroy()
2012-01-02 23:09:49 +01:00
return true
end
return false
end
2012-01-05 02:55:07 +01:00
2012-02-03 05:18:54 +01:00
-- close all menus when the window is resized
2012-01-06 09:48:59 +01:00
local function onRootGeometryUpdate()
2012-01-05 02:55:07 +01:00
for i,menu in ipairs(displayedMenuList) do
menu:destroy()
end
end
2012-01-05 03:42:17 +01:00
connect(rootWidget, { onGeometryChange = onRootGeometryUpdate} )