2014-05-02 16:50:43 +08:00
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
|
|
|
local GestureRange = require("ui/gesturerange")
|
|
|
|
|
local UIManager = require("ui/uimanager")
|
2014-10-30 19:42:18 +01:00
|
|
|
local Screen = require("device").screen
|
2014-05-02 16:50:43 +08:00
|
|
|
local Geom = require("ui/geometry")
|
2014-10-30 19:42:18 +01:00
|
|
|
local Device = require("device")
|
2014-10-22 15:34:11 +02:00
|
|
|
local Blitbuffer = require("ffi/blitbuffer")
|
2014-05-02 16:50:43 +08:00
|
|
|
|
|
|
|
|
local LinkBox = InputContainer:new{
|
|
|
|
|
box = nil,
|
2014-10-22 15:34:11 +02:00
|
|
|
color = Blitbuffer.gray(0.5),
|
2014-05-02 16:50:43 +08:00
|
|
|
radius = 0,
|
|
|
|
|
bordersize = 2,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
function LinkBox:onShow()
|
|
|
|
|
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
|
|
|
|
|
|