2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/frontend/ui/widget/inputdialog.lua

237 lines
6.8 KiB
Lua
Raw Normal View History

--[[--
Widget for taking user input.
Example:
local _ = require("gettext")
local UIManager = require("ui/uimanager")
local sample_input
sample_input = InputDialog:new{
title = _("Dialog title"),
input = "default value",
input_hint = "hint text",
input_type = "string",
description = "Some more description",
-- text_type = "password",
buttons = {
{
{
text = _("Cancel"),
callback = function()
UIManager:close(sample_input)
end,
},
{
text = _("Save"),
-- button with is_enter_default set to true will be
-- triggered after user press the enter key from keyboard
is_enter_default = true,
callback = function()
print('Got user input as raw text:', sample_input:getInputText())
print('Got user input as value:', sample_input:getInputValue())
end,
},
}
},
}
sample_input:onShowKeyboard()
UIManager:show(sample_input)
]]
local Blitbuffer = require("ffi/blitbuffer")
2013-10-18 20:38:07 +00:00
local ButtonTable = require("ui/widget/buttontable")
local CenterContainer = require("ui/widget/container/centercontainer")
local Font = require("ui/font")
local FrameContainer = require("ui/widget/container/framecontainer")
local Geom = require("ui/geometry")
local InputContainer = require("ui/widget/container/inputcontainer")
2013-10-18 20:38:07 +00:00
local InputText = require("ui/widget/inputtext")
local LineWidget = require("ui/widget/linewidget")
2014-09-05 13:06:58 +00:00
local RenderText = require("ui/rendertext")
local TextBoxWidget = require("ui/widget/textboxwidget")
local TextWidget = require("ui/widget/textwidget")
local VerticalGroup = require("ui/widget/verticalgroup")
local WidgetContainer = require("ui/widget/container/widgetcontainer")
2013-10-18 20:38:07 +00:00
local UIManager = require("ui/uimanager")
local Screen = require("device").screen
2013-07-30 15:07:33 +00:00
2013-10-18 20:38:07 +00:00
local InputDialog = InputContainer:new{
2014-03-13 13:52:43 +00:00
title = "",
input = "",
input_hint = "",
description = nil,
2014-03-13 13:52:43 +00:00
buttons = nil,
input_type = nil,
enter_callback = nil,
2014-03-13 13:52:43 +00:00
width = nil,
2016-02-02 17:38:14 +00:00
text_width = nil,
text_height = nil,
2014-03-13 13:52:43 +00:00
title_face = Font:getFace("tfont", 22),
description_face = Font:getFace("cfont", 20),
2014-03-13 13:52:43 +00:00
input_face = Font:getFace("cfont", 20),
title_padding = Screen:scaleBySize(5),
title_margin = Screen:scaleBySize(2),
input_padding = Screen:scaleBySize(10),
input_margin = Screen:scaleBySize(10),
button_padding = Screen:scaleBySize(14),
2013-07-30 15:07:33 +00:00
}
function InputDialog:init()
self.width = self.width or Screen:getWidth() * 0.8
2014-09-05 13:06:58 +00:00
local title_width = RenderText:sizeUtf8Text(0, self.width,
self.title_face, self.title, true).x
if title_width > self.width then
local indicator = " >> "
local indicator_w = RenderText:sizeUtf8Text(0, self.width,
self.title_face, indicator, true).x
self.title = RenderText:getSubTextByWidth(self.title, self.title_face,
self.width - indicator_w, true) .. indicator
end
2014-03-13 13:52:43 +00:00
self.title = FrameContainer:new{
padding = self.title_padding,
margin = self.title_margin,
bordersize = 0,
TextWidget:new{
text = self.title,
face = self.title_face,
width = self.width,
}
}
if self.description then
self.description = FrameContainer:new{
padding = self.title_padding,
margin = self.title_margin,
bordersize = 0,
TextBoxWidget:new{
text = self.description,
face = self.description_face,
width = self.width,
}
}
else
self.description = WidgetContainer:new()
end
2016-02-17 17:41:17 +00:00
self._input_widget = InputText:new{
2014-03-13 13:52:43 +00:00
text = self.input,
hint = self.input_hint,
face = self.input_face,
2016-02-02 17:38:14 +00:00
width = self.text_width or self.width * 0.9,
height = self.text_height or nil,
2014-03-13 13:52:43 +00:00
input_type = self.input_type,
text_type = self.text_type,
enter_callback = self.enter_callback or function()
for _,btn_row in ipairs(self.buttons) do
for _,btn in ipairs(btn_row) do
if btn.is_enter_default then
btn.callback()
return
end
end
end
end,
2014-03-13 13:52:43 +00:00
scroll = false,
parent = self,
}
self.button_table = ButtonTable:new{
2014-03-13 13:52:43 +00:00
width = self.width,
button_font_face = "cfont",
button_font_size = 20,
buttons = self.buttons,
zero_sep = true,
2014-05-01 10:37:12 +00:00
show_parent = self,
2014-03-13 13:52:43 +00:00
}
self.title_bar = LineWidget:new{
2014-03-13 13:52:43 +00:00
dimen = Geom:new{
w = self.button_table:getSize().w + self.button_padding,
h = Screen:scaleBySize(2),
2014-03-13 13:52:43 +00:00
}
}
2014-03-13 13:52:43 +00:00
self.dialog_frame = FrameContainer:new{
radius = 8,
bordersize = 3,
padding = 0,
margin = 0,
background = Blitbuffer.COLOR_WHITE,
2014-03-13 13:52:43 +00:00
VerticalGroup:new{
align = "left",
self.title,
self.title_bar,
self.description,
2014-03-13 13:52:43 +00:00
-- input
CenterContainer:new{
dimen = Geom:new{
w = self.title_bar:getSize().w,
2016-02-17 17:41:17 +00:00
h = self._input_widget:getSize().h,
2014-03-13 13:52:43 +00:00
},
2016-02-17 17:41:17 +00:00
self._input_widget,
2014-03-13 13:52:43 +00:00
},
-- buttons
CenterContainer:new{
dimen = Geom:new{
w = self.title_bar:getSize().w,
h = self.button_table:getSize().h,
2014-03-13 13:52:43 +00:00
},
self.button_table,
2014-03-13 13:52:43 +00:00
}
}
}
2014-03-13 13:52:43 +00:00
self[1] = CenterContainer:new{
dimen = Geom:new{
w = Screen:getWidth(),
2016-02-17 17:41:17 +00:00
h = Screen:getHeight() - self._input_widget:getKeyboardDimen().h,
2014-03-13 13:52:43 +00:00
},
self.dialog_frame,
}
end
2016-02-17 17:41:17 +00:00
function InputDialog:getInputText()
return self._input_widget:getText()
end
function InputDialog:getInputValue()
local text = self:getInputText()
if self.input_type == "number" then
return tonumber(text)
else
return text
end
end
2016-02-17 17:41:17 +00:00
function InputDialog:setInputText(text)
self._input_widget:setText(text)
end
function InputDialog:onShow()
UIManager:setDirty(self, function()
return "ui", self.dialog_frame.dimen
end)
end
function InputDialog:onCloseWidget()
self:onClose()
UIManager:setDirty(nil, function()
return "partial", self.dialog_frame.dimen
end)
2013-07-30 15:07:33 +00:00
end
function InputDialog:onShowKeyboard()
2016-02-17 17:41:17 +00:00
self._input_widget:onShowKeyboard()
2013-07-30 15:07:33 +00:00
end
function InputDialog:onClose()
2016-02-17 17:41:17 +00:00
self._input_widget:onCloseKeyboard()
2013-07-30 15:07:33 +00:00
end
2013-10-18 20:38:07 +00:00
return InputDialog