2018-01-07 19:24:15 +00:00
|
|
|
--[[--
|
|
|
|
HTML widget with vertical scroll bar.
|
|
|
|
--]]
|
|
|
|
|
2019-12-06 21:55:39 +00:00
|
|
|
local BD = require("ui/bidi")
|
2018-01-07 19:24:15 +00:00
|
|
|
local Device = require("device")
|
|
|
|
local HtmlBoxWidget = require("ui/widget/htmlboxwidget")
|
|
|
|
local Geom = require("ui/geometry")
|
|
|
|
local GestureRange = require("ui/gesturerange")
|
|
|
|
local HorizontalGroup = require("ui/widget/horizontalgroup")
|
|
|
|
local HorizontalSpan = require("ui/widget/horizontalspan")
|
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local VerticalScrollBar = require("ui/widget/verticalscrollbar")
|
|
|
|
local Input = Device.input
|
|
|
|
local Screen = Device.screen
|
|
|
|
|
|
|
|
local ScrollHtmlWidget = InputContainer:new{
|
|
|
|
html_body = nil,
|
|
|
|
css = nil,
|
2019-03-31 20:00:07 +00:00
|
|
|
default_font_size = Screen:scaleBySize(24), -- same as infofont
|
2018-01-07 19:24:15 +00:00
|
|
|
htmlbox_widget = nil,
|
|
|
|
v_scroll_bar = nil,
|
|
|
|
dialog = nil,
|
2018-01-15 22:51:43 +00:00
|
|
|
html_link_tapped_callback = nil,
|
2018-01-07 19:24:15 +00:00
|
|
|
dimen = nil,
|
|
|
|
width = 0,
|
|
|
|
height = 0,
|
|
|
|
scroll_bar_width = Screen:scaleBySize(6),
|
|
|
|
text_scroll_span = Screen:scaleBySize(12),
|
|
|
|
}
|
|
|
|
|
|
|
|
function ScrollHtmlWidget:init()
|
|
|
|
self.htmlbox_widget = HtmlBoxWidget:new{
|
|
|
|
dimen = Geom:new{
|
|
|
|
w = self.width - self.scroll_bar_width - self.text_scroll_span,
|
|
|
|
h = self.height,
|
|
|
|
},
|
2018-01-15 22:51:43 +00:00
|
|
|
html_link_tapped_callback = self.html_link_tapped_callback,
|
2018-01-07 19:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.htmlbox_widget:setContent(self.html_body, self.css, self.default_font_size)
|
|
|
|
|
|
|
|
self.v_scroll_bar = VerticalScrollBar:new{
|
|
|
|
enable = self.htmlbox_widget.page_count > 1,
|
|
|
|
width = self.scroll_bar_width,
|
|
|
|
height = self.height,
|
2020-08-26 18:44:58 +00:00
|
|
|
scroll_callback = function(ratio)
|
|
|
|
self:scrollToRatio(ratio)
|
|
|
|
end
|
2018-01-07 19:24:15 +00:00
|
|
|
}
|
|
|
|
|
2021-01-31 01:51:40 +00:00
|
|
|
self:_updateScrollBar()
|
2018-01-07 19:24:15 +00:00
|
|
|
|
|
|
|
local horizontal_group = HorizontalGroup:new{}
|
|
|
|
table.insert(horizontal_group, self.htmlbox_widget)
|
|
|
|
table.insert(horizontal_group, HorizontalSpan:new{width=self.text_scroll_span})
|
|
|
|
table.insert(horizontal_group, self.v_scroll_bar)
|
|
|
|
self[1] = horizontal_group
|
|
|
|
|
|
|
|
self.dimen = Geom:new(self[1]:getSize())
|
|
|
|
|
|
|
|
if Device:isTouchDevice() then
|
|
|
|
self.ges_events = {
|
2018-01-09 20:37:50 +00:00
|
|
|
ScrollText = {
|
2018-01-07 19:24:15 +00:00
|
|
|
GestureRange:new{
|
|
|
|
ges = "swipe",
|
|
|
|
range = function() return self.dimen end,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TapScrollText = { -- allow scrolling with tap
|
|
|
|
GestureRange:new{
|
|
|
|
ges = "tap",
|
|
|
|
range = function() return self.dimen end,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
A few graphics fixes after #4541 (#4554)
* Various FocusManager related tweaks to limit its usage to devices with a DPad, and prevent initial button highlights in Dialogs on devices where it makes no sense (i.e., those without a DPad. And even on DPad devices, I'm not even sure how we'd go about making one of those pop up anyway, because no Touch ;)!).
* One mysterious fix to text-only Buttons so that the flash_ui highlight always works, and always honors `FrameContainer`'s pill shape. (Before that, an unhighlight on a text button with a callback that didn't repaint anything [say, the find first/find last buttons in the Reader's search bar when you're already on the first/last match] would do a square black highlight, and a white pill-shaped unhighlight (leaving the black corners visible)).
The workaround makes *absolutely* no sense to me (as `self[1] -> self.frame`, AFAICT), but it works, and ensures all highlights/unhighlights are pill-shaped, so at least we're not doing maths for rounded corners for nothing ;).
2019-02-07 23:56:32 +00:00
|
|
|
if Device:hasKeys() then
|
2018-01-07 19:24:15 +00:00
|
|
|
self.key_events = {
|
|
|
|
ScrollDown = {{Input.group.PgFwd}, doc = "scroll down"},
|
|
|
|
ScrollUp = {{Input.group.PgBack}, doc = "scroll up"},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-01-31 01:51:40 +00:00
|
|
|
-- Not to be confused with ScrollTextWidget's updateScrollBar, which has user-visible effects.
|
|
|
|
-- This simply updates the scroll bar's internal state according to the current page & page count.
|
|
|
|
function ScrollHtmlWidget:_updateScrollBar()
|
|
|
|
self.v_scroll_bar:set((self.htmlbox_widget.page_number-1) / self.htmlbox_widget.page_count, self.htmlbox_widget.page_number / self.htmlbox_widget.page_count)
|
|
|
|
end
|
|
|
|
|
2018-10-10 16:50:24 +00:00
|
|
|
function ScrollHtmlWidget:getSinglePageHeight()
|
|
|
|
return self.htmlbox_widget:getSinglePageHeight()
|
|
|
|
end
|
|
|
|
|
2021-01-31 01:51:40 +00:00
|
|
|
-- Reset the scrolling *state* to the top of the document, but don't actually re-render/refresh anything.
|
|
|
|
-- (Useful when replacing a Scroll*Widget during an update call, c.f., DictQuickLookup).
|
|
|
|
function ScrollHtmlWidget:resetScroll()
|
|
|
|
self.htmlbox_widget.page_number = 1
|
|
|
|
self:_updateScrollBar()
|
|
|
|
|
|
|
|
self.v_scroll_bar.enable = self.htmlbox_widget.page_count > 1
|
|
|
|
end
|
|
|
|
|
2018-01-31 08:16:34 +00:00
|
|
|
function ScrollHtmlWidget:scrollToRatio(ratio)
|
|
|
|
ratio = math.max(0, math.min(1, ratio)) -- ensure ratio is between 0 and 1 (100%)
|
2020-08-26 18:44:58 +00:00
|
|
|
local page_num = 1 + math.floor((self.htmlbox_widget.page_count) * ratio)
|
|
|
|
if page_num > self.htmlbox_widget.page_count then
|
|
|
|
page_num = self.htmlbox_widget.page_count
|
|
|
|
end
|
2018-01-31 08:16:34 +00:00
|
|
|
if page_num == self.htmlbox_widget.page_number then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
self.htmlbox_widget.page_number = page_num
|
2021-01-31 01:51:40 +00:00
|
|
|
self:_updateScrollBar()
|
|
|
|
|
2018-01-31 08:16:34 +00:00
|
|
|
self.htmlbox_widget:freeBb()
|
|
|
|
self.htmlbox_widget:_render()
|
2021-01-31 01:51:40 +00:00
|
|
|
|
2018-01-31 08:16:34 +00:00
|
|
|
UIManager:setDirty(self.dialog, function()
|
|
|
|
return "partial", self.dimen
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2018-01-07 19:24:15 +00:00
|
|
|
function ScrollHtmlWidget:scrollText(direction)
|
|
|
|
if direction == 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if direction > 0 then
|
|
|
|
if self.htmlbox_widget.page_number >= self.htmlbox_widget.page_count then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
self.htmlbox_widget.page_number = self.htmlbox_widget.page_number + 1
|
|
|
|
elseif direction < 0 then
|
|
|
|
if self.htmlbox_widget.page_number <= 1 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
self.htmlbox_widget.page_number = self.htmlbox_widget.page_number - 1
|
|
|
|
end
|
2021-01-31 01:51:40 +00:00
|
|
|
self:_updateScrollBar()
|
2018-01-07 19:24:15 +00:00
|
|
|
|
|
|
|
self.htmlbox_widget:freeBb()
|
|
|
|
self.htmlbox_widget:_render()
|
|
|
|
|
|
|
|
UIManager:setDirty(self.dialog, function()
|
|
|
|
return "partial", self.dimen
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ScrollHtmlWidget:onScrollText(arg, ges)
|
|
|
|
if ges.direction == "north" then
|
|
|
|
self:scrollText(1)
|
|
|
|
return true
|
|
|
|
elseif ges.direction == "south" then
|
|
|
|
self:scrollText(-1)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
-- if swipe west/east, let it propagate up (e.g. for quickdictlookup to
|
|
|
|
-- go to next/prev result)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ScrollHtmlWidget:onTapScrollText(arg, ges)
|
2019-12-06 21:55:39 +00:00
|
|
|
if BD.flipIfMirroredUILayout(ges.pos.x < Screen:getWidth()/2) then
|
2021-01-09 20:59:31 +00:00
|
|
|
return self:onScrollUp()
|
2018-01-07 19:24:15 +00:00
|
|
|
else
|
2021-01-09 20:59:31 +00:00
|
|
|
return self:onScrollDown()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function ScrollHtmlWidget:onScrollUp()
|
|
|
|
if self.htmlbox_widget.page_number > 1 then
|
|
|
|
self:scrollText(-1)
|
|
|
|
return true
|
2018-01-07 19:24:15 +00:00
|
|
|
end
|
|
|
|
-- if we couldn't scroll (because we're already at top or bottom),
|
|
|
|
-- let it propagate up (e.g. for quickdictlookup to go to next/prev result)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ScrollHtmlWidget:onScrollDown()
|
2021-01-09 20:59:31 +00:00
|
|
|
if self.htmlbox_widget.page_number < self.htmlbox_widget.page_count then
|
|
|
|
self:scrollText(1)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
-- if we couldn't scroll (because we're already at top or bottom),
|
|
|
|
-- let it propagate up (e.g. for quickdictlookup to go to next/prev result)
|
2018-01-07 19:24:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return ScrollHtmlWidget
|