add a dog-ear-like icon at the above right corner of bookmarked page

And tap the above right corner will toggle the bookmark on this page on/off.
This commit is contained in:
chrox
2013-02-24 19:49:23 +08:00
parent 781821b883
commit 3dfa9aa51d
5 changed files with 86 additions and 42 deletions

View File

@@ -0,0 +1,16 @@
ReaderDogear = RightContainer:new{}
function ReaderDogear:init()
local widget = ImageWidget:new{
file = "resources/icons/dogear.png",
}
local icon_size = widget:getSize()
self.dimen = Geom:new{w = Screen:getWidth(), h = icon_size.h}
self[1] = widget
end
function ReaderDogear:onSetDogearVisibility(visible)
self.view.dogear_visible = visible
return true
end