mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
5982e24d57
colors were a mixture of 4bpp integers (0=white, 15=black) and fractional blackness levels (0=white, 1.0=black) before. This is now unified to use the color specification of the Blitbuffer API.
36 lines
1.1 KiB
Lua
36 lines
1.1 KiB
Lua
local Widget = require("ui/widget/widget")
|
|
local Blitbuffer = require("ffi/blitbuffer")
|
|
|
|
local LineWidget = Widget:new{
|
|
style = "solid",
|
|
background = Blitbuffer.COLOR_BLACK,
|
|
dimen = nil,
|
|
--@TODO replay dirty hack here 13.03 2013 (houqp)
|
|
empty_segments = nil,
|
|
}
|
|
|
|
function LineWidget:paintTo(bb, x, y)
|
|
if self.style == "none" then return end
|
|
if self.style == "dashed" then
|
|
for i = 0, self.dimen.w - 20, 20 do
|
|
bb:paintRect(x + i, y,
|
|
16, self.dimen.h, self.background)
|
|
end
|
|
else
|
|
if self.empty_segments then
|
|
bb:paintRect(x, y,
|
|
self.empty_segments[1].s,
|
|
self.dimen.h,
|
|
self.background)
|
|
bb:paintRect(x + self.empty_segments[1].e, y,
|
|
self.dimen.w - x - self.empty_segments[1].e,
|
|
self.dimen.h,
|
|
self.background)
|
|
else
|
|
bb:paintRect(x, y, self.dimen.w, self.dimen.h, self.background)
|
|
end
|
|
end
|
|
end
|
|
|
|
return LineWidget
|