2016-02-14 21:47:36 +00:00
|
|
|
|
--[[--
|
|
|
|
|
Button widget that shows an "×" and handles closing window when tapped
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
2016-02-16 07:21:36 +00:00
|
|
|
|
local CloseButton = require("ui/widget/closebutton")
|
|
|
|
|
local parent_widget = OverlapGroup:new{}
|
2016-02-14 21:47:36 +00:00
|
|
|
|
table.insert(parent_widget, CloseButton:new{
|
|
|
|
|
window = parent_widget,
|
|
|
|
|
})
|
|
|
|
|
UIManager:show(parent_widget)
|
|
|
|
|
|
|
|
|
|
]]
|
|
|
|
|
|
2013-12-26 14:40:40 +00:00
|
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
|
|
|
local FrameContainer = require("ui/widget/container/framecontainer")
|
|
|
|
|
local TextWidget = require("ui/widget/textwidget")
|
|
|
|
|
local GestureRange = require("ui/gesturerange")
|
|
|
|
|
local Font = require("ui/font")
|
|
|
|
|
|
|
|
|
|
local CloseButton = InputContainer:new{
|
2016-02-14 21:47:36 +00:00
|
|
|
|
overlap_align = "right",
|
2014-03-13 13:52:43 +00:00
|
|
|
|
window = nil,
|
2013-12-26 14:40:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function CloseButton:init()
|
2014-03-13 13:52:43 +00:00
|
|
|
|
local text_widget = TextWidget:new{
|
|
|
|
|
text = "×",
|
|
|
|
|
face = Font:getFace("cfont", 32),
|
|
|
|
|
}
|
|
|
|
|
self[1] = FrameContainer:new{
|
|
|
|
|
bordersize = 0,
|
|
|
|
|
padding = 0,
|
|
|
|
|
text_widget
|
|
|
|
|
}
|
2015-04-27 00:49:27 +00:00
|
|
|
|
|
2016-02-14 21:47:36 +00:00
|
|
|
|
self.dimen = text_widget:getSize()
|
2013-12-26 14:40:40 +00:00
|
|
|
|
|
2014-03-13 13:52:43 +00:00
|
|
|
|
self.ges_events.Close = {
|
|
|
|
|
GestureRange:new{
|
|
|
|
|
ges = "tap",
|
|
|
|
|
range = self.dimen,
|
|
|
|
|
},
|
|
|
|
|
doc = "Tap on close button",
|
|
|
|
|
}
|
2013-12-26 14:40:40 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function CloseButton:onClose()
|
2014-03-13 13:52:43 +00:00
|
|
|
|
self.window:onClose()
|
|
|
|
|
return true
|
2013-12-26 14:40:40 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return CloseButton
|