2017-08-15 12:18:15 +00:00
|
|
|
--[[--
|
|
|
|
A layout widget that puts objects besides each other.
|
|
|
|
--]]
|
|
|
|
|
2019-12-06 21:55:37 +00:00
|
|
|
local BD = require("ui/bidi")
|
2013-10-18 20:38:07 +00:00
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
2019-12-06 21:55:37 +00:00
|
|
|
local util = require("util")
|
2013-10-18 20:38:07 +00:00
|
|
|
|
|
|
|
local HorizontalGroup = WidgetContainer:new{
|
2014-03-13 13:52:43 +00:00
|
|
|
align = "center",
|
2019-12-06 21:55:37 +00:00
|
|
|
allow_mirroring = true,
|
2014-03-13 13:52:43 +00:00
|
|
|
_size = nil,
|
2013-10-18 20:38:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function HorizontalGroup:getSize()
|
2014-03-13 13:52:43 +00:00
|
|
|
if not self._size then
|
2022-01-15 23:42:17 +00:00
|
|
|
local _mirroredUI = BD.mirroredUILayout()
|
2014-03-13 13:52:43 +00:00
|
|
|
self._size = { w = 0, h = 0 }
|
|
|
|
self._offsets = { }
|
2022-01-15 23:42:17 +00:00
|
|
|
if _mirroredUI and self.allow_mirroring then
|
2019-12-06 21:55:37 +00:00
|
|
|
util.arrayReverse(self)
|
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
for i, widget in ipairs(self) do
|
|
|
|
local w_size = widget:getSize()
|
|
|
|
self._offsets[i] = {
|
|
|
|
x = self._size.w,
|
|
|
|
y = w_size.h
|
|
|
|
}
|
|
|
|
self._size.w = self._size.w + w_size.w
|
|
|
|
if w_size.h > self._size.h then
|
|
|
|
self._size.h = w_size.h
|
|
|
|
end
|
|
|
|
end
|
2022-01-15 23:42:17 +00:00
|
|
|
if _mirroredUI and self.allow_mirroring then
|
2019-12-06 21:55:37 +00:00
|
|
|
util.arrayReverse(self)
|
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
end
|
|
|
|
return self._size
|
2013-10-18 20:38:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function HorizontalGroup:paintTo(bb, x, y)
|
2014-03-13 13:52:43 +00:00
|
|
|
local size = self:getSize()
|
2022-01-15 23:42:17 +00:00
|
|
|
local _mirroredUI = BD.mirroredUILayout()
|
2014-03-13 13:52:43 +00:00
|
|
|
|
2022-01-15 23:42:17 +00:00
|
|
|
if _mirroredUI and self.allow_mirroring then
|
2019-12-06 21:55:37 +00:00
|
|
|
util.arrayReverse(self)
|
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
for i, widget in ipairs(self) do
|
|
|
|
if self.align == "center" then
|
|
|
|
widget:paintTo(bb,
|
|
|
|
x + self._offsets[i].x,
|
|
|
|
y + math.floor((size.h - self._offsets[i].y) / 2))
|
|
|
|
elseif self.align == "top" then
|
|
|
|
widget:paintTo(bb, x + self._offsets[i].x, y)
|
|
|
|
elseif self.align == "bottom" then
|
|
|
|
widget:paintTo(bb, x + self._offsets[i].x, y + size.h - self._offsets[i].y)
|
2016-02-14 21:47:36 +00:00
|
|
|
else
|
2016-03-18 04:52:57 +00:00
|
|
|
io.stderr:write("[!] invalid alignment for HorizontalGroup: ",
|
|
|
|
self.align)
|
2014-03-13 13:52:43 +00:00
|
|
|
end
|
|
|
|
end
|
2022-01-15 23:42:17 +00:00
|
|
|
if _mirroredUI and self.allow_mirroring then
|
2019-12-06 21:55:37 +00:00
|
|
|
util.arrayReverse(self)
|
|
|
|
end
|
2013-10-18 20:38:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function HorizontalGroup:clear()
|
2014-03-13 13:52:43 +00:00
|
|
|
self:free()
|
Tame some ButtonTable users into re-using Buttontable instances if possible (#7166)
* QuickDictLookup, ImageViewer, NumberPicker: Smarter `update` that will re-use most of the widget's layout instead of re-instantiating all the things.
* SpinWidget/DoubleSpinWidget: The NumberPicker change above renders a hack to preserve alpha on these widgets almost unnecessary. Also fixed said hack to also apply to the center, value button.
* Button: Don't re-instantiate the frame in setText/setIcon when unnecessary (e.g., no change at all, or no layout change).
* Button: Add a refresh method that repaints and refreshes a *specific* Button (provided it's been painted once) all on its lonesome.
* ConfigDialog: Free everything that's going to be re-instatiated on update
* A few more post #7118 fixes:
* SkimTo: Always flag the chapter nav buttons as vsync
* Button: Fix the highlight on rounded buttons when vsync is enabled (e.g., it's now entirely visible, instead of showing a weird inverted corner glitch).
* Some more heuristic tweaks in Menu/TouchMenu/Button/IconButton
* ButtonTable: fix the annoying rounding issue I'd noticed in #7054 ;).
* Enable dithering in TextBoxWidget (e.g., in the Wikipedia full view). This involved moving the HW dithering align fixup to base, where it always ought to have been ;).
* Switch a few widgets that were using "partial" on close to "ui", or, more rarely, "flashui". The intent being to limit "partial" purely to the Reader, because it has a latency cost when mixed with other refreshes, which happens often enough in UI ;).
* Minor documentation tweaks around UIManager's `setDirty` to reflect that change.
* ReaderFooter: Force a footer repaint on resume if it is visible (otherwise, just update it).
* ReaderBookmark: In the same vein, don't repaint an invisible footer on bookmark count changes.
2021-01-28 23:20:15 +00:00
|
|
|
-- Skip WidgetContainer:clear's free call, we just did that in our own free ;)
|
|
|
|
WidgetContainer.clear(self, true)
|
2013-10-18 20:38:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function HorizontalGroup:resetLayout()
|
2014-03-13 13:52:43 +00:00
|
|
|
self._size = nil
|
|
|
|
self._offsets = {}
|
2013-10-18 20:38:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function HorizontalGroup:free()
|
Tame some ButtonTable users into re-using Buttontable instances if possible (#7166)
* QuickDictLookup, ImageViewer, NumberPicker: Smarter `update` that will re-use most of the widget's layout instead of re-instantiating all the things.
* SpinWidget/DoubleSpinWidget: The NumberPicker change above renders a hack to preserve alpha on these widgets almost unnecessary. Also fixed said hack to also apply to the center, value button.
* Button: Don't re-instantiate the frame in setText/setIcon when unnecessary (e.g., no change at all, or no layout change).
* Button: Add a refresh method that repaints and refreshes a *specific* Button (provided it's been painted once) all on its lonesome.
* ConfigDialog: Free everything that's going to be re-instatiated on update
* A few more post #7118 fixes:
* SkimTo: Always flag the chapter nav buttons as vsync
* Button: Fix the highlight on rounded buttons when vsync is enabled (e.g., it's now entirely visible, instead of showing a weird inverted corner glitch).
* Some more heuristic tweaks in Menu/TouchMenu/Button/IconButton
* ButtonTable: fix the annoying rounding issue I'd noticed in #7054 ;).
* Enable dithering in TextBoxWidget (e.g., in the Wikipedia full view). This involved moving the HW dithering align fixup to base, where it always ought to have been ;).
* Switch a few widgets that were using "partial" on close to "ui", or, more rarely, "flashui". The intent being to limit "partial" purely to the Reader, because it has a latency cost when mixed with other refreshes, which happens often enough in UI ;).
* Minor documentation tweaks around UIManager's `setDirty` to reflect that change.
* ReaderFooter: Force a footer repaint on resume if it is visible (otherwise, just update it).
* ReaderBookmark: In the same vein, don't repaint an invisible footer on bookmark count changes.
2021-01-28 23:20:15 +00:00
|
|
|
--print("HorizontalGroup:free on", self)
|
2014-03-13 13:52:43 +00:00
|
|
|
self:resetLayout()
|
|
|
|
WidgetContainer.free(self)
|
2013-10-18 20:38:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return HorizontalGroup
|