2017-04-26 14:21:36 +00:00
|
|
|
local Blitbuffer = require("ffi/blitbuffer")
|
|
|
|
local Device = require("device")
|
|
|
|
local Geom = require("ui/geometry")
|
2014-05-02 08:50:43 +00:00
|
|
|
local GestureRange = require("ui/gesturerange")
|
2017-04-26 14:21:36 +00:00
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
2017-09-13 14:56:20 +00:00
|
|
|
local Size = require("ui/size")
|
2014-05-02 08:50:43 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
2017-04-26 14:21:36 +00:00
|
|
|
local Screen = Device.screen
|
2014-05-02 08:50:43 +00:00
|
|
|
|
|
|
|
local LinkBox = InputContainer:new{
|
|
|
|
box = nil,
|
2019-03-14 19:58:45 +00:00
|
|
|
color = Blitbuffer.COLOR_DARK_GRAY,
|
2014-05-02 08:50:43 +00:00
|
|
|
radius = 0,
|
2017-09-13 14:56:20 +00:00
|
|
|
bordersize = Size.line.medium,
|
2014-05-02 08:50:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function LinkBox:init()
|
|
|
|
if Device:isTouchDevice() then
|
|
|
|
self.ges_events.TapClose = {
|
|
|
|
GestureRange:new{
|
|
|
|
ges = "tap",
|
|
|
|
range = Geom:new{
|
|
|
|
x = 0, y = 0,
|
|
|
|
w = Screen:getWidth(),
|
|
|
|
h = Screen:getHeight(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function LinkBox:paintTo(bb)
|
|
|
|
bb:paintBorder(self.box.x, self.box.y, self.box.w, self.box.h,
|
|
|
|
self.bordersize, self.color, self.radius)
|
|
|
|
end
|
|
|
|
|
2014-12-01 14:39:41 +00:00
|
|
|
function LinkBox:onCloseWidget()
|
|
|
|
UIManager:setDirty(nil, function()
|
|
|
|
return "partial", self.box
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2014-05-02 08:50:43 +00:00
|
|
|
function LinkBox:onShow()
|
2014-12-01 14:39:41 +00:00
|
|
|
UIManager:setDirty(self, function()
|
2015-04-26 18:07:17 +00:00
|
|
|
return "ui", self.box
|
2014-12-01 14:39:41 +00:00
|
|
|
end)
|
2014-05-02 08:50:43 +00:00
|
|
|
if self.timeout then
|
|
|
|
UIManager:scheduleIn(self.timeout, function()
|
|
|
|
UIManager:close(self)
|
|
|
|
if self.callback then self.callback() end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function LinkBox:onTapClose()
|
|
|
|
UIManager:close(self)
|
|
|
|
self.callback = nil
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return LinkBox
|