2020-11-04 17:59:39 +00:00
|
|
|
--[[--
|
|
|
|
Widget that displays a qr code.
|
|
|
|
|
|
|
|
It vanishes on key press or after a given timeout.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local _ = require("gettext")
|
|
|
|
local Screen = require("device").screen
|
|
|
|
local sample
|
|
|
|
sample = QRMessage:new{
|
|
|
|
text = _("my message"),
|
|
|
|
height = Screen:scaleBySize(400),
|
|
|
|
width = Screen:scaleBySize(400),
|
|
|
|
timeout = 5, -- This widget will vanish in 5 seconds.
|
|
|
|
}
|
|
|
|
UIManager:show(sample)
|
|
|
|
]]
|
|
|
|
|
|
|
|
local Blitbuffer = require("ffi/blitbuffer")
|
|
|
|
local CenterContainer = require("ui/widget/container/centercontainer")
|
|
|
|
local Device = require("device")
|
|
|
|
local FrameContainer = require("ui/widget/container/framecontainer")
|
|
|
|
local Geom = require("ui/geometry")
|
|
|
|
local GestureRange = require("ui/gesturerange")
|
|
|
|
local QRWidget = require("ui/widget/qrwidget")
|
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local Input = Device.input
|
|
|
|
local Screen = Device.screen
|
|
|
|
local Size = require("ui/size")
|
|
|
|
|
Clarify our OOP semantics across the codebase (#9586)
Basically:
* Use `extend` for class definitions
* Use `new` for object instantiations
That includes some minor code cleanups along the way:
* Updated `Widget`'s docs to make the semantics clearer.
* Removed `should_restrict_JIT` (it's been dead code since https://github.com/koreader/android-luajit-launcher/pull/283)
* Minor refactoring of LuaSettings/LuaData/LuaDefaults/DocSettings to behave (mostly, they are instantiated via `open` instead of `new`) like everything else and handle inheritance properly (i.e., DocSettings is now a proper LuaSettings subclass).
* Default to `WidgetContainer` instead of `InputContainer` for stuff that doesn't actually setup key/gesture events.
* Ditto for explicit `*Listener` only classes, make sure they're based on `EventListener` instead of something uselessly fancier.
* Unless absolutely necessary, do not store references in class objects, ever; only values. Instead, always store references in instances, to avoid both sneaky inheritance issues, and sneaky GC pinning of stale references.
* ReaderUI: Fix one such issue with its `active_widgets` array, with critical implications, as it essentially pinned *all* of ReaderUI's modules, including their reference to the `Document` instance (i.e., that was a big-ass leak).
* Terminal: Make sure the shell is killed on plugin teardown.
* InputText: Fix Home/End/Del physical keys to behave sensibly.
* InputContainer/WidgetContainer: If necessary, compute self.dimen at paintTo time (previously, only InputContainers did, which might have had something to do with random widgets unconcerned about input using it as a baseclass instead of WidgetContainer...).
* OverlapGroup: Compute self.dimen at *init* time, because for some reason it needs to do that, but do it directly in OverlapGroup instead of going through a weird WidgetContainer method that it was the sole user of.
* ReaderCropping: Under no circumstances should a Document instance member (here, self.bbox) risk being `nil`ed!
* Kobo: Minor code cleanups.
2022-10-06 00:14:48 +00:00
|
|
|
local QRMessage = InputContainer:extend{
|
2020-11-04 17:59:39 +00:00
|
|
|
modal = true,
|
|
|
|
timeout = nil, -- in seconds
|
2023-11-22 17:58:31 +00:00
|
|
|
_timeout_func = nil,
|
2020-11-04 17:59:39 +00:00
|
|
|
text = nil, -- The text to encode.
|
|
|
|
width = nil, -- The width. Keep it nil to use original width.
|
|
|
|
height = nil, -- The height. Keep it nil to use original height.
|
2023-11-22 17:58:31 +00:00
|
|
|
dismiss_callback = nil,
|
2020-11-04 17:59:39 +00:00
|
|
|
alpha = nil,
|
|
|
|
scale_factor = 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
function QRMessage:init()
|
|
|
|
if Device:hasKeys() then
|
2022-10-27 00:01:51 +00:00
|
|
|
self.key_events.AnyKeyPressed = { { Input.group.Any } }
|
2020-11-04 17:59:39 +00:00
|
|
|
end
|
|
|
|
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
|
|
|
|
|
|
|
|
local padding = Size.padding.fullscreen
|
|
|
|
|
|
|
|
local image_widget = QRWidget:new{
|
|
|
|
text = self.text,
|
|
|
|
width = self.width and (self.width - 2 * padding),
|
|
|
|
height = self.height and (self.height - 2 * padding),
|
|
|
|
alpha = self.alpha,
|
|
|
|
scale_factor = self.scale_factor,
|
|
|
|
}
|
|
|
|
|
|
|
|
local frame = FrameContainer:new{
|
|
|
|
background = Blitbuffer.COLOR_WHITE,
|
|
|
|
padding = padding,
|
|
|
|
image_widget,
|
|
|
|
}
|
|
|
|
self[1] = CenterContainer:new{
|
|
|
|
dimen = Screen:getSize(),
|
|
|
|
frame,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function QRMessage:onCloseWidget()
|
|
|
|
UIManager:setDirty(nil, function()
|
2023-02-07 00:01:05 +00:00
|
|
|
return "ui", self[1][1].dimen -- i.e., frame
|
2020-11-04 17:59:39 +00:00
|
|
|
end)
|
2023-11-22 17:58:31 +00:00
|
|
|
-- If we were closed early, drop the scheduled timeout
|
|
|
|
if self._timeout_func then
|
|
|
|
UIManager:unschedule(self._timeout_func)
|
|
|
|
self._timeout_func = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.dismiss_callback then
|
|
|
|
self.dismiss_callback()
|
|
|
|
self.dismiss_callback = nil
|
|
|
|
end
|
2020-11-04 17:59:39 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function QRMessage:onShow()
|
|
|
|
-- triggered by the UIManager after we got successfully shown (not yet painted)
|
|
|
|
UIManager:setDirty(self, function()
|
|
|
|
return "ui", self[1][1].dimen
|
|
|
|
end)
|
|
|
|
if self.timeout then
|
2023-11-22 17:58:31 +00:00
|
|
|
self._timeout_func = function()
|
|
|
|
self._timeout_func = nil
|
|
|
|
UIManager:close(self)
|
|
|
|
end
|
|
|
|
UIManager:scheduleIn(self.timeout, self._timeout_func)
|
2020-11-04 17:59:39 +00:00
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function QRMessage:onTapClose()
|
|
|
|
UIManager:close(self)
|
|
|
|
end
|
2022-10-23 20:36:09 +00:00
|
|
|
QRMessage.onAnyKeyPressed = QRMessage.onTapClose
|
2020-11-04 17:59:39 +00:00
|
|
|
|
|
|
|
return QRMessage
|