mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00

* rework client modules * hide main window when loading * remake top menu functions * rework modules autoload * improve path resolving for otml and lua * move core_widgets to core_lib * fix tooltip issues * split some styles * add bit32 lua library * fix assert issues * fix compilation on linux 32 systems * rework gcc compile options * renable and fix some warnings * remove unused constants * speedup sprite cache * move UIGame to lua (not funcional yet) * fix a lot of issues in x11 window * fix crash handler * add some warnings do uiwidget and much more...
80 lines
1.8 KiB
Lua
80 lines
1.8 KiB
Lua
UIPopupMenu = extends(UIWidget)
|
|
|
|
local currentMenu
|
|
|
|
function UIPopupMenu.create()
|
|
local menu = UIPopupMenu.internalCreate()
|
|
local layout = UIVerticalLayout.create(menu)
|
|
layout:setFitChildren(true)
|
|
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
|
|
|
|
if currentMenu then
|
|
currentMenu:destroy()
|
|
end
|
|
|
|
rootWidget:addChild(self)
|
|
self:setPosition(pos)
|
|
self:grabMouse()
|
|
self:grabKeyboard()
|
|
currentMenu = self
|
|
end
|
|
|
|
function UIPopupMenu:onGeometryChange()
|
|
self:bindRectToParent()
|
|
end
|
|
|
|
function UIPopupMenu:addOption(optionName, optionCallback)
|
|
local optionWidget = createWidget(self:getStyleName() .. 'Button', self)
|
|
local lastOptionWidget = self:getLastChild()
|
|
optionWidget.onClick = function(self)
|
|
optionCallback()
|
|
self:getParent():destroy()
|
|
end
|
|
optionWidget:setText(optionName)
|
|
local width = optionWidget:getTextSize().width + optionWidget:getMarginLeft() + optionWidget:getMarginRight() + 6
|
|
self:setWidth(math.max(self:getWidth(), width))
|
|
end
|
|
|
|
function UIPopupMenu:addSeparator()
|
|
createWidget(self:getStyleName() .. 'Separator', self)
|
|
end
|
|
|
|
function UIPopupMenu:onDestroy()
|
|
if currentMenu == self then
|
|
currentMenu = nil
|
|
end
|
|
end
|
|
|
|
function UIPopupMenu:onMousePress(mousePos, mouseButton)
|
|
-- clicks outside menu area destroys the menu
|
|
if not self:containsPoint(mousePos) then
|
|
self:destroy()
|
|
end
|
|
return true
|
|
end
|
|
|
|
function UIPopupMenu:onKeyPress(keyCode, keyboardModifiers)
|
|
if keyCode == KeyEscape then
|
|
self:destroy()
|
|
return true
|
|
end
|
|
return false
|
|
end
|
|
|
|
-- close all menus when the window is resized
|
|
local function onRootGeometryUpdate()
|
|
if currentMenu then
|
|
currentMenu:destroy()
|
|
end
|
|
end
|
|
connect(rootWidget, { onGeometryChange = onRootGeometryUpdate} )
|