2013-03-03 14:23:28 +00:00
|
|
|
|
2013-03-31 13:37:57 +00:00
|
|
|
ReaderFlipping = LeftContainer:new{
|
|
|
|
orig_reflow_mode = 0,
|
|
|
|
}
|
2013-03-03 14:23:28 +00:00
|
|
|
|
|
|
|
function ReaderFlipping:init()
|
|
|
|
local widget = ImageWidget:new{
|
|
|
|
file = "resources/icons/appbar.book.open.png",
|
|
|
|
}
|
|
|
|
local icon_size = widget:getSize()
|
|
|
|
self.dimen = Geom:new{w = Screen:getWidth(), h = icon_size.h}
|
|
|
|
self[1] = widget
|
|
|
|
end
|
|
|
|
|
2013-03-31 13:37:57 +00:00
|
|
|
function ReaderFlipping:onSetFlippingMode(flipping_mode)
|
|
|
|
if flipping_mode then
|
|
|
|
self.orig_reflow_mode = self.view.document.configurable.text_wrap
|
|
|
|
self.view.document.configurable.text_wrap = 0
|
|
|
|
else
|
|
|
|
self.view.document.configurable.text_wrap = self.orig_reflow_mode
|
|
|
|
end
|
2013-03-03 14:23:28 +00:00
|
|
|
return true
|
2013-03-31 13:39:20 +00:00
|
|
|
end
|