2012-01-11 00:13:38 +01:00
|
|
|
UIWindow = extends(UIWidget)
|
|
|
|
|
|
|
|
function UIWindow.create()
|
|
|
|
local window = UIWindow.internalCreate()
|
|
|
|
window:setTextAlign(AlignTopCenter)
|
|
|
|
return window
|
|
|
|
end
|
|
|
|
|
2012-01-15 22:19:52 +01:00
|
|
|
function UIWindow:onKeyPress(keyCode, keyboardModifiers, wouldFilter)
|
|
|
|
if wouldFilter then return end
|
2012-01-11 00:13:38 +01:00
|
|
|
if keyboardModifiers == KeyboardNoModifier then
|
|
|
|
if keyCode == KeyReturn or keyCode == KeyEnter then
|
|
|
|
signalcall(self.onEnter, self)
|
|
|
|
elseif keyCode == KeyEscape then
|
|
|
|
signalcall(self.onEscape, self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-01-19 05:12:53 +01:00
|
|
|
|
|
|
|
function UIWindow:onMousePress(mousePos, mouseButton)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function UIWindow:onGeometryChange(oldRect, newRect)
|
|
|
|
|
|
|
|
end
|