2017-09-17 14:41:54 +00:00
|
|
|
local Button = require("ui/widget/button")
|
|
|
|
local CenterContainer = require("ui/widget/container/centercontainer")
|
|
|
|
local Device = require("device")
|
|
|
|
local FrameContainer = require("ui/widget/container/framecontainer")
|
|
|
|
local Geom = require("ui/geometry")
|
|
|
|
local Font = require("ui/font")
|
|
|
|
local InputContainer = require("ui/widget/container/inputcontainer")
|
2017-09-24 11:03:14 +00:00
|
|
|
local InputDialog = require("ui/widget/inputdialog")
|
2017-09-17 14:41:54 +00:00
|
|
|
local RenderText = require("ui/rendertext")
|
2017-09-13 14:56:20 +00:00
|
|
|
local Size = require("ui/size")
|
2017-09-17 14:41:54 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local VerticalGroup = require("ui/widget/verticalgroup")
|
|
|
|
local VerticalSpan = require("ui/widget/verticalspan")
|
|
|
|
local _ = require("gettext")
|
|
|
|
local Screen = Device.screen
|
|
|
|
|
|
|
|
local NumberPickerWidget = InputContainer:new{
|
2017-09-13 14:56:20 +00:00
|
|
|
spinner_face = Font:getFace("smalltfont"),
|
2017-09-17 14:41:54 +00:00
|
|
|
precision = "%02d",
|
|
|
|
width = nil,
|
|
|
|
height = nil,
|
|
|
|
value = 0,
|
|
|
|
value_min = 0,
|
|
|
|
value_max = 23,
|
|
|
|
value_step = 1,
|
|
|
|
value_hold_step = 4,
|
|
|
|
value_table = nil,
|
2018-04-19 12:24:04 +00:00
|
|
|
wrap = true,
|
|
|
|
update_callback = function() end,
|
2017-09-18 17:04:36 +00:00
|
|
|
-- in case we need calculate number of days in a given month and year
|
|
|
|
date_month = nil,
|
|
|
|
date_year = nil,
|
2017-09-17 14:41:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function NumberPickerWidget:init()
|
2017-09-13 14:56:20 +00:00
|
|
|
self.screen_width = Screen:getWidth()
|
|
|
|
self.screen_height = Screen:getHeight()
|
2017-09-17 14:41:54 +00:00
|
|
|
if self.width == nil then
|
|
|
|
self.width = self.screen_width * 0.2
|
|
|
|
end
|
|
|
|
if self.value_table then
|
|
|
|
self.value_index = 1
|
|
|
|
self.value = self.value_table[self.value_index]
|
|
|
|
self.step = 1
|
|
|
|
self.value_hold_step = 1
|
|
|
|
end
|
|
|
|
self:update()
|
|
|
|
end
|
|
|
|
|
|
|
|
function NumberPickerWidget:paintWidget()
|
2017-09-13 14:56:20 +00:00
|
|
|
local bordersize = Size.border.default
|
|
|
|
local margin = Size.margin.default
|
2017-09-17 14:41:54 +00:00
|
|
|
local button_up = Button:new{
|
|
|
|
text = "▲",
|
2017-09-13 14:56:20 +00:00
|
|
|
bordersize = bordersize,
|
|
|
|
margin = margin,
|
2017-09-17 14:41:54 +00:00
|
|
|
radius = 0,
|
|
|
|
text_font_size = 24,
|
|
|
|
width = self.width,
|
|
|
|
show_parent = self.show_parent,
|
|
|
|
callback = function()
|
2017-09-18 17:04:36 +00:00
|
|
|
if self.date_month and self.date_year then
|
|
|
|
self.value_max = self:getDaysInMonth(self.date_month:getValue(), self.date_year:getValue())
|
|
|
|
end
|
2018-04-19 12:24:04 +00:00
|
|
|
self.value = self:changeValue(self.value, self.value_step, self.value_max, self.value_min, self.wrap)
|
2017-09-17 14:41:54 +00:00
|
|
|
self:update()
|
|
|
|
end,
|
|
|
|
hold_callback = function()
|
2017-09-18 17:04:36 +00:00
|
|
|
if self.date_month and self.date_year then
|
|
|
|
self.value_max = self:getDaysInMonth(self.date_month:getValue(), self.date_year:getValue())
|
|
|
|
end
|
2018-04-19 12:24:04 +00:00
|
|
|
self.value = self:changeValue(self.value, self.value_hold_step, self.value_max, self.value_min, self.wrap)
|
2017-09-17 14:41:54 +00:00
|
|
|
self:update()
|
|
|
|
end
|
|
|
|
}
|
|
|
|
local button_down = Button:new{
|
|
|
|
text = "▼",
|
2017-09-13 14:56:20 +00:00
|
|
|
bordersize = bordersize,
|
|
|
|
margin = margin,
|
2017-09-17 14:41:54 +00:00
|
|
|
radius = 0,
|
|
|
|
text_font_size = 24,
|
|
|
|
width = self.width,
|
|
|
|
show_parent = self.show_parent,
|
|
|
|
callback = function()
|
2017-09-18 17:04:36 +00:00
|
|
|
if self.date_month and self.date_year then
|
|
|
|
self.value_max = self:getDaysInMonth(self.date_month:getValue(), self.date_year:getValue())
|
|
|
|
end
|
2018-04-19 12:24:04 +00:00
|
|
|
self.value = self:changeValue(self.value, self.value_step * -1, self.value_max, self.value_min, self.wrap)
|
2017-09-17 14:41:54 +00:00
|
|
|
self:update()
|
|
|
|
end,
|
|
|
|
hold_callback = function()
|
2017-09-18 17:04:36 +00:00
|
|
|
if self.date_month and self.date_year then
|
|
|
|
self.value_max = self:getDaysInMonth(self.date_month:getValue(), self.date_year:getValue())
|
|
|
|
end
|
2018-04-19 12:24:04 +00:00
|
|
|
self.value = self:changeValue(self.value, self.value_hold_step * -1, self.value_max, self.value_min, self.wrap)
|
2017-09-17 14:41:54 +00:00
|
|
|
self:update()
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
local empty_space = VerticalSpan:new{
|
|
|
|
width = self.screen_height * 0.01
|
|
|
|
}
|
|
|
|
local value = self.value
|
|
|
|
if self.value_table then
|
|
|
|
local text_width = RenderText:sizeUtf8Text(0, self.width, self.spinner_face, self.value, true, true).x
|
|
|
|
if self.width < text_width then
|
|
|
|
value = RenderText:truncateTextByWidth(self.value, self.spinner_face, self.width,true, true)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
value = string.format(self.precision, value)
|
|
|
|
end
|
|
|
|
|
2017-09-24 11:03:14 +00:00
|
|
|
local input
|
|
|
|
local callback_input = nil
|
|
|
|
if self.value_table == nil then
|
|
|
|
callback_input = function()
|
|
|
|
input = InputDialog:new{
|
|
|
|
title = _("Enter number"),
|
|
|
|
input_type = "number",
|
|
|
|
buttons = {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
text = _("Cancel"),
|
|
|
|
callback = function()
|
|
|
|
UIManager:close(input)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text = _("OK"),
|
|
|
|
is_enter_default = true,
|
|
|
|
callback = function()
|
|
|
|
input:closeInputDialog()
|
|
|
|
local input_value = tonumber(input:getInputText())
|
|
|
|
if input_value and input_value >= self.value_min and input_value <= self.value_max then
|
|
|
|
self.value = input_value
|
|
|
|
self:update()
|
|
|
|
end
|
|
|
|
UIManager:close(input)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
UIManager:show(input)
|
2018-03-30 10:46:36 +00:00
|
|
|
input:onShowKeyboard()
|
2017-09-24 11:03:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local text_value = Button:new{
|
2017-09-17 14:41:54 +00:00
|
|
|
text = value,
|
2017-09-24 11:03:14 +00:00
|
|
|
bordersize = 0,
|
|
|
|
padding = 0,
|
|
|
|
text_font_face = self.spinner_face_font,
|
|
|
|
text_font_size = self.spinner_face_size,
|
2017-09-17 14:41:54 +00:00
|
|
|
width = self.width,
|
2017-09-24 11:03:14 +00:00
|
|
|
callback = callback_input,
|
2017-09-17 14:41:54 +00:00
|
|
|
}
|
|
|
|
return VerticalGroup:new{
|
|
|
|
align = "center",
|
|
|
|
button_up,
|
|
|
|
empty_space,
|
|
|
|
text_value,
|
|
|
|
empty_space,
|
|
|
|
button_down,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function NumberPickerWidget:update()
|
|
|
|
local widget_spinner = self:paintWidget()
|
|
|
|
self.frame = FrameContainer:new{
|
|
|
|
bordersize = 0,
|
2017-09-13 14:56:20 +00:00
|
|
|
padding = Size.padding.default,
|
2017-09-17 14:41:54 +00:00
|
|
|
CenterContainer:new{
|
|
|
|
align = "center",
|
|
|
|
dimen = Geom:new{
|
|
|
|
w = widget_spinner:getSize().w,
|
|
|
|
h = widget_spinner:getSize().h
|
|
|
|
},
|
|
|
|
widget_spinner
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self.dimen = self.frame:getSize()
|
|
|
|
self[1] = self.frame
|
|
|
|
UIManager:setDirty(self.show_parent, function()
|
|
|
|
return "ui", self.dimen
|
|
|
|
end)
|
2018-04-19 12:24:04 +00:00
|
|
|
self.update_callback()
|
2017-09-17 14:41:54 +00:00
|
|
|
end
|
|
|
|
|
2018-04-19 12:24:04 +00:00
|
|
|
function NumberPickerWidget:changeValue(value, step, max, min, wrap)
|
2017-09-17 14:41:54 +00:00
|
|
|
if self.value_index then
|
|
|
|
self.value_index = self.value_index + step
|
|
|
|
if self.value_index > #self.value_table then
|
2018-04-19 12:24:04 +00:00
|
|
|
self.value_index = wrap and 1 or #self.value_table
|
2017-09-17 14:41:54 +00:00
|
|
|
elseif
|
|
|
|
self.value_index < 1 then
|
2018-04-19 12:24:04 +00:00
|
|
|
self.value_index = wrap and #self.value_table or 1
|
2017-09-17 14:41:54 +00:00
|
|
|
end
|
|
|
|
value = self.value_table[self.value_index]
|
|
|
|
else
|
|
|
|
value = value + step
|
|
|
|
if value > max then
|
2018-04-19 12:24:04 +00:00
|
|
|
value = wrap and min or max
|
2017-09-17 14:41:54 +00:00
|
|
|
elseif value < min then
|
2018-04-19 12:24:04 +00:00
|
|
|
value = wrap and max or min
|
2017-09-17 14:41:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return value
|
|
|
|
end
|
|
|
|
|
2017-09-18 17:04:36 +00:00
|
|
|
function NumberPickerWidget:getDaysInMonth(month, year)
|
|
|
|
local days_in_month = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
|
|
|
|
local days = days_in_month[month]
|
|
|
|
-- check for leap year
|
|
|
|
if (month == 2) then
|
|
|
|
if year % 4 == 0 then
|
|
|
|
if year % 100 == 0 then
|
|
|
|
if year % 400 == 0 then
|
|
|
|
days = 29
|
|
|
|
end
|
|
|
|
else
|
|
|
|
days = 29
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return days
|
|
|
|
end
|
|
|
|
|
2017-09-17 14:41:54 +00:00
|
|
|
function NumberPickerWidget:getValue()
|
|
|
|
return self.value
|
|
|
|
end
|
|
|
|
|
|
|
|
return NumberPickerWidget
|