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")
|
2016-03-07 05:38:20 +00:00
|
|
|
|
local HorizontalGroup = require("ui/widget/horizontalgroup")
|
|
|
|
|
local HorizontalSpan = require("ui/widget/horizontalspan")
|
2013-12-26 14:40:40 +00:00
|
|
|
|
local TextWidget = require("ui/widget/textwidget")
|
|
|
|
|
local GestureRange = require("ui/gesturerange")
|
2016-03-07 05:38:20 +00:00
|
|
|
|
local Screen = require("device").screen
|
2013-12-26 14:40:40 +00:00
|
|
|
|
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),
|
|
|
|
|
}
|
2016-03-07 06:47:24 +00:00
|
|
|
|
local padding_span = HorizontalSpan:new{ width = Screen:scaleBySize(14) }
|
2016-03-07 05:38:20 +00:00
|
|
|
|
|
2014-03-13 13:52:43 +00:00
|
|
|
|
self[1] = FrameContainer:new{
|
|
|
|
|
bordersize = 0,
|
|
|
|
|
padding = 0,
|
2016-03-07 05:38:20 +00:00
|
|
|
|
HorizontalGroup:new{
|
|
|
|
|
padding_span,
|
|
|
|
|
text_widget,
|
|
|
|
|
padding_span,
|
|
|
|
|
}
|
2014-03-13 13:52:43 +00:00
|
|
|
|
}
|
2015-04-27 00:49:27 +00:00
|
|
|
|
|
2014-03-13 13:52:43 +00:00
|
|
|
|
self.ges_events.Close = {
|
|
|
|
|
GestureRange:new{
|
|
|
|
|
ges = "tap",
|
2016-03-07 05:38:20 +00:00
|
|
|
|
-- x and y coordinates for the widget is only known after the it is
|
|
|
|
|
-- drawn. so use callback to get range at runtime.
|
|
|
|
|
range = function() return self.dimen end,
|
2014-03-13 13:52:43 +00:00
|
|
|
|
},
|
|
|
|
|
doc = "Tap on close button",
|
|
|
|
|
}
|
2016-06-28 16:35:00 +00:00
|
|
|
|
|
|
|
|
|
self.ges_events.HoldClose = {
|
|
|
|
|
GestureRange:new{
|
|
|
|
|
ges = "hold_release",
|
|
|
|
|
range = function() return self.dimen end,
|
|
|
|
|
},
|
|
|
|
|
doc = "Hold on close button",
|
|
|
|
|
}
|
2013-12-26 14:40:40 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function CloseButton:onClose()
|
2016-06-28 16:35:00 +00:00
|
|
|
|
if self.window.onClose then
|
|
|
|
|
self.window:onClose()
|
|
|
|
|
end
|
|
|
|
|
return true
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function CloseButton:onHoldClose()
|
|
|
|
|
if self.window.onHoldClose then
|
|
|
|
|
self.window:onHoldClose()
|
|
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
|
return true
|
2013-12-26 14:40:40 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return CloseButton
|