mirror of
https://github.com/koreader/koreader
synced 2024-11-04 12:00:25 +00:00
32 lines
572 B
Lua
32 lines
572 B
Lua
require "widget"
|
|
require "font"
|
|
|
|
InfoMessage = {
|
|
face = Font:getFace("infofont", 25)
|
|
}
|
|
|
|
function InfoMessage:show(text)
|
|
local dialog = CenterContainer:new({
|
|
dimen = { w = G_width, h = G_height },
|
|
FrameContainer:new({
|
|
margin = 2,
|
|
background = 0,
|
|
HorizontalGroup:new({
|
|
align = "center",
|
|
ImageWidget:new({
|
|
file = "resources/info-i.png"
|
|
}),
|
|
Widget:new({
|
|
dimen = { w = 10, h = 0 }
|
|
}),
|
|
TextWidget:new({
|
|
text = text,
|
|
face = Font:getFace("cfont", 30)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
dialog:paintTo(fb.bb, 0, 0)
|
|
dialog:free()
|
|
end
|