mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
32 lines
725 B
Lua
32 lines
725 B
Lua
require "ui/widget/base"
|
|
|
|
LineWidget = Widget:new{
|
|
style = "solid",
|
|
background = 15,
|
|
dimen = nil,
|
|
--@TODO replay dirty hack here 13.03 2013 (houqp)
|
|
empty_segments = nil,
|
|
}
|
|
|
|
function LineWidget:paintTo(bb, x, y)
|
|
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
|