Compare commits

..

No commits in common. "8232f116a5d7151ea6999cec66a188b72f8de753" and "0e1c5a4fbbd44a6c69a050763ef4c6719fbbbdd3" have entirely different histories.

4 changed files with 9 additions and 9 deletions

View File

@ -186,7 +186,7 @@ function Element:redraw()
end end
function Element:handleEvent(evt) function Element:handleEvent(evt)
if Event.isClickEvent(evt) and Event.containsClick(self, evt) then if Event.isClickEvent(evt) and Event.containsClick(self, evt, 0, 0) then
if self.onClick ~= nil then if self.onClick ~= nil then
local x, y, source = Event.getClickParams(evt) local x, y, source = Event.getClickParams(evt)
return not not self.onClick(self, x, y, source) return not not self.onClick(self, x, y, source)
@ -203,10 +203,10 @@ end
function Element:_reload() function Element:_reload()
if self.parent ~= nil then if self.parent ~= nil then
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible()) local window = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
win.setBackgroundColor(self:getBgColor()) window.setBackgroundColor(self:getBgColor())
win.setTextColor(self:getFgColor()) window.setTextColor(self:getFgColor())
self:_setWindow(win) self:_setWindow(window)
end end
end end

View File

@ -18,8 +18,8 @@ end
function Event.containsClick(element, evt, dX, dY) function Event.containsClick(element, evt, dX, dY)
local x, y = Event.getClickParams(evt) local x, y = Event.getClickParams(evt)
x = x + (dX or 0) x = x + dX
y = y + (dY or 0) y = y + dY
local eX, eY = element:getPos() local eX, eY = element:getPos()
return x >= eX and x < (eX + element:getWidth()) and y >= eY and y < (eY + element:getHeight()) return x >= eX and x < (eX + element:getWidth()) and y >= eY and y < (eY + element:getHeight())
end end

View File

@ -133,7 +133,7 @@ function List:handleEvent(evt)
if Event.isClickEvent(evt) then if Event.isClickEvent(evt) then
-- If click is not inside list bounds, we can safely ignore it -- If click is not inside list bounds, we can safely ignore it
if not Event.containsClick(self, evt) then if not Event.containsClick(self, evt, 0, 0) then
return false return false
end end

View File

@ -86,7 +86,7 @@ function Padding:handleEvent(evt)
end end
if Event.isClickEvent(evt) then if Event.isClickEvent(evt) then
return Event.containsClick(self, evt) and self.element:handleEvent({Event.repositionEvent(evt, -self:getPaddingLeft(), -self:getPaddingTop())}) return self.element:handleEvent({Event.repositionEvent(evt, -self:getPaddingLeft(), -self:getPaddingTop())})
else else
return self.element:handleEvent(evt) return self.element:handleEvent(evt)
end end