2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/frontend/ui/widget/closebutton.lua

80 lines
2.0 KiB
Lua
Raw Normal View History

--[[--
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{}
table.insert(parent_widget, CloseButton:new{
window = parent_widget,
})
UIManager:show(parent_widget)
]]
local InputContainer = require("ui/widget/container/inputcontainer")
local FrameContainer = require("ui/widget/container/framecontainer")
local HorizontalGroup = require("ui/widget/horizontalgroup")
local HorizontalSpan = require("ui/widget/horizontalspan")
local TextWidget = require("ui/widget/textwidget")
local GestureRange = require("ui/gesturerange")
local Screen = require("device").screen
local Font = require("ui/font")
local CloseButton = InputContainer:new{
overlap_align = "right",
2014-03-13 13:52:43 +00:00
window = nil,
}
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) }
2014-03-13 13:52:43 +00:00
self[1] = FrameContainer:new{
bordersize = 0,
padding = 0,
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",
-- 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",
}
self.ges_events.HoldClose = {
GestureRange:new{
ges = "hold_release",
range = function() return self.dimen end,
},
doc = "Hold on close button",
}
end
function CloseButton:onClose()
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
end
return CloseButton