2021-10-18 17:17:37 +00:00
|
|
|
local Blitbuffer = require("ffi/blitbuffer")
|
|
|
|
local ButtonTable = require("ui/widget/buttontable")
|
|
|
|
local CenterContainer = require("ui/widget/container/centercontainer")
|
|
|
|
local Device = require("device")
|
|
|
|
local FrameContainer = require("ui/widget/container/framecontainer")
|
2022-03-12 11:16:50 +00:00
|
|
|
local FocusManager = require("ui/widget/focusmanager")
|
2021-10-18 17:17:37 +00:00
|
|
|
local Geom = require("ui/geometry")
|
|
|
|
local GestureRange = require("ui/gesturerange")
|
|
|
|
local HorizontalGroup = require("ui/widget/horizontalgroup")
|
|
|
|
local MovableContainer = require("ui/widget/container/movablecontainer")
|
|
|
|
local RadioButtonTable = require("ui/widget/radiobuttontable")
|
|
|
|
local Size = require("ui/size")
|
2022-01-19 11:02:13 +00:00
|
|
|
local TitleBar = require("ui/widget/titlebar")
|
2021-10-18 17:17:37 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local VerticalGroup = require("ui/widget/verticalgroup")
|
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
|
|
|
local _ = require("gettext")
|
|
|
|
local Screen = Device.screen
|
|
|
|
|
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 RadioButtonWidget = FocusManager:extend{
|
2021-10-18 17:17:37 +00:00
|
|
|
title_text = "",
|
|
|
|
info_text = nil,
|
|
|
|
width = nil,
|
|
|
|
width_factor = nil,
|
|
|
|
height = nil,
|
|
|
|
radio_buttons = nil, -- row x column table
|
|
|
|
cancel_text = _("Close"),
|
|
|
|
ok_text = _("Apply"),
|
|
|
|
cancel_callback = nil,
|
|
|
|
callback = nil,
|
|
|
|
close_callback = nil,
|
|
|
|
keep_shown_on_apply = false,
|
|
|
|
default_provider = nil,
|
|
|
|
extra_text = nil,
|
|
|
|
extra_callback = nil,
|
|
|
|
-- output
|
|
|
|
provider = nil, -- provider of the checked button
|
|
|
|
row = nil, -- row of the checked button
|
|
|
|
col = nil, -- column of the checked button
|
|
|
|
}
|
|
|
|
|
|
|
|
function RadioButtonWidget:init()
|
|
|
|
self.screen_width = Screen:getWidth()
|
|
|
|
self.screen_height = Screen:getHeight()
|
|
|
|
if not self.width then
|
|
|
|
if not self.width_factor then
|
|
|
|
self.width_factor = 0.6
|
|
|
|
end
|
|
|
|
self.width = math.floor(math.min(self.screen_width, self.screen_height) * self.width_factor)
|
|
|
|
end
|
|
|
|
if Device:hasKeys() then
|
2022-03-12 11:16:50 +00:00
|
|
|
self.key_events.Close = { {Device.input.group.Back}, doc = "close widget" }
|
2021-10-18 17:17:37 +00:00
|
|
|
end
|
2022-03-12 11:16:50 +00:00
|
|
|
self.ges_events = {
|
|
|
|
TapClose = {
|
|
|
|
GestureRange:new{
|
|
|
|
ges = "tap",
|
|
|
|
range = Geom:new{
|
|
|
|
w = self.screen_width,
|
|
|
|
h = self.screen_height,
|
|
|
|
}
|
2021-10-18 17:17:37 +00:00
|
|
|
},
|
2022-03-12 11:16:50 +00:00
|
|
|
},
|
|
|
|
}
|
2021-10-18 17:17:37 +00:00
|
|
|
self:update()
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:update()
|
2022-03-12 11:16:50 +00:00
|
|
|
self.layout = {}
|
2021-10-18 17:17:37 +00:00
|
|
|
if self.default_provider then
|
|
|
|
local row, col = self:getButtonIndex(self.default_provider)
|
|
|
|
self.radio_buttons[row][col].text = self.radio_buttons[row][col].text .. "\u{A0}\u{A0}★"
|
|
|
|
end
|
|
|
|
|
|
|
|
local value_widget = RadioButtonTable:new{
|
|
|
|
radio_buttons = self.radio_buttons,
|
|
|
|
width = math.floor(self.width * 0.9),
|
|
|
|
focused = true,
|
|
|
|
scroll = false,
|
|
|
|
parent = self,
|
|
|
|
face = self.face,
|
|
|
|
}
|
2022-03-12 11:16:50 +00:00
|
|
|
self:mergeLayoutInVertical(value_widget)
|
2021-10-18 17:17:37 +00:00
|
|
|
local value_group = HorizontalGroup:new{
|
|
|
|
align = "center",
|
|
|
|
value_widget,
|
|
|
|
}
|
|
|
|
|
2022-01-19 11:02:13 +00:00
|
|
|
local title_bar = TitleBar:new{
|
|
|
|
width = self.width,
|
|
|
|
align = "left",
|
|
|
|
with_bottom_line = true,
|
|
|
|
title = self.title_text,
|
|
|
|
title_shrink_font_to_fit = true,
|
|
|
|
info_text = self.info_text,
|
|
|
|
show_parent = self,
|
2021-10-18 17:17:37 +00:00
|
|
|
}
|
2022-01-19 11:02:13 +00:00
|
|
|
|
2021-10-18 17:17:37 +00:00
|
|
|
local buttons = {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
text = self.cancel_text,
|
|
|
|
callback = function()
|
|
|
|
if self.cancel_callback then
|
|
|
|
self.cancel_callback()
|
|
|
|
end
|
|
|
|
self:onClose()
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text = self.ok_text,
|
|
|
|
callback = function()
|
|
|
|
if self.callback then
|
|
|
|
self.provider = value_widget.checked_button.provider
|
|
|
|
self.row, self.col = self:getButtonIndex(self.provider)
|
|
|
|
self.callback(self)
|
|
|
|
end
|
|
|
|
if not self.keep_shown_on_apply then
|
|
|
|
self:onClose()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.extra_text then
|
|
|
|
table.insert(buttons,{
|
|
|
|
{
|
|
|
|
text = self.extra_text,
|
|
|
|
callback = function()
|
|
|
|
if self.extra_callback then
|
|
|
|
self.provider = value_widget.checked_button.provider
|
|
|
|
self.row, self.col = self:getButtonIndex(self.provider)
|
|
|
|
self.extra_callback(self)
|
|
|
|
end
|
|
|
|
if not self.keep_shown_on_apply then
|
|
|
|
self:onClose()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
local ok_cancel_buttons = ButtonTable:new{
|
|
|
|
width = self.width - 2*Size.padding.default,
|
|
|
|
buttons = buttons,
|
|
|
|
zero_sep = true,
|
|
|
|
show_parent = self,
|
|
|
|
}
|
2022-03-12 11:16:50 +00:00
|
|
|
self:mergeLayoutInVertical(ok_cancel_buttons)
|
2021-10-18 17:17:37 +00:00
|
|
|
local vgroup = VerticalGroup:new{
|
|
|
|
align = "left",
|
2022-01-19 11:02:13 +00:00
|
|
|
title_bar,
|
2021-10-18 17:17:37 +00:00
|
|
|
}
|
|
|
|
table.insert(vgroup, CenterContainer:new{
|
|
|
|
dimen = Geom:new{
|
|
|
|
w = self.width,
|
|
|
|
h = value_group:getSize().h + 4 * Size.padding.large,
|
|
|
|
},
|
|
|
|
value_group
|
|
|
|
})
|
|
|
|
table.insert(vgroup, CenterContainer:new{
|
|
|
|
dimen = Geom:new{
|
|
|
|
w = self.width,
|
|
|
|
h = ok_cancel_buttons:getSize().h,
|
|
|
|
},
|
|
|
|
ok_cancel_buttons
|
|
|
|
})
|
|
|
|
self.widget_frame = FrameContainer:new{
|
|
|
|
radius = Size.radius.window,
|
|
|
|
padding = 0,
|
|
|
|
margin = 0,
|
|
|
|
background = Blitbuffer.COLOR_WHITE,
|
|
|
|
vgroup,
|
|
|
|
}
|
|
|
|
self.movable = MovableContainer:new{
|
|
|
|
self.widget_frame,
|
|
|
|
}
|
|
|
|
self[1] = WidgetContainer:new{
|
|
|
|
align = "center",
|
|
|
|
dimen = Geom:new{
|
|
|
|
x = 0, y = 0,
|
|
|
|
w = self.screen_width,
|
|
|
|
h = self.screen_height,
|
|
|
|
},
|
|
|
|
self.movable,
|
|
|
|
}
|
|
|
|
UIManager:setDirty(self, function()
|
|
|
|
return "ui", self.widget_frame.dimen
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:getButtonIndex(provider)
|
|
|
|
for i = 1, #self.radio_buttons do -- rows
|
|
|
|
for j = 1, #self.radio_buttons[i] do -- columns
|
|
|
|
if self.radio_buttons[i][j].provider == provider then
|
|
|
|
return i, j
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:hasMoved()
|
|
|
|
local offset = self.movable:getMovedOffset()
|
|
|
|
return offset.x ~= 0 or offset.y ~= 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:onCloseWidget()
|
|
|
|
UIManager:setDirty(nil, function()
|
|
|
|
return "ui", self.widget_frame.dimen
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:onShow()
|
|
|
|
UIManager:setDirty(self, function()
|
|
|
|
return "ui", self.widget_frame.dimen
|
|
|
|
end)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:onAnyKeyPressed()
|
|
|
|
self:onClose()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:onTapClose(arg, ges_ev)
|
|
|
|
if ges_ev.pos:notIntersectWith(self.widget_frame.dimen) then
|
|
|
|
self:onClose()
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function RadioButtonWidget:onClose()
|
|
|
|
UIManager:close(self)
|
|
|
|
if self.close_callback then
|
|
|
|
self.close_callback()
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return RadioButtonWidget
|