2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/frontend/apps/reader/modules/readerfrontlight.lua

137 lines
4.0 KiB
Lua
Raw Normal View History

2013-10-18 20:38:07 +00:00
local InputContainer = require("ui/widget/container/inputcontainer")
2014-03-11 15:40:00 +00:00
local InputDialog = require("ui/widget/inputdialog")
local Notification = require("ui/widget/notification")
local GestureRange = require("ui/gesturerange")
local UIManager = require("ui/uimanager")
local Screen = require("device").screen
local Device = require("device")
local DEBUG = require("dbg")
local T = require("ffi/util").template
2014-03-11 15:40:00 +00:00
local _ = require("gettext")
2014-03-11 15:40:00 +00:00
local ReaderFrontLight = InputContainer:new{
steps = {0,1,1,1,1,2,2,2,3,4,5,6,7,8,9,10},
gestureScale = Screen:getWidth() * FRONTLIGHT_SENSITIVITY_DECREASE,
2014-03-11 15:40:00 +00:00
}
function ReaderFrontLight:init()
2014-03-11 15:40:00 +00:00
if Device:isTouchDevice() then
self.ges_events = {
Adjust = {
GestureRange:new{
ges = "two_finger_pan",
rate = Device.model ~= 'Kobo_phoenix' and 3.0 or nil,
2014-03-11 15:40:00 +00:00
}
},
PanRelease= {
GestureRange:new{
ges = "two_finger_pan_release",
}
},
Swipe = {
GestureRange:new{
ges = "two_finger_swipe",
}
},
}
end
2014-04-06 16:25:10 +00:00
end
2014-03-11 15:40:00 +00:00
function ReaderFrontLight:onAdjust(arg, ges)
local powerd = Device:getPowerDevice()
if powerd.fl_intensity ~= nil then
DEBUG("frontlight intensity", powerd.fl_intensity)
local step = math.ceil(#self.steps * ges.distance / self.gestureScale)
2014-04-06 16:25:10 +00:00
DEBUG("step = ", step)
local delta_int = self.steps[step] or self.steps[#self.steps]
2014-04-06 16:25:10 +00:00
DEBUG("delta_int = ", delta_int)
local new_intensity
2014-03-11 15:40:00 +00:00
if ges.direction == "north" then
new_intensity = powerd.fl_intensity + delta_int
2014-03-11 15:40:00 +00:00
elseif ges.direction == "south" then
new_intensity = powerd.fl_intensity - delta_int
end
if new_intensity ~= nil then
powerd:setIntensity(new_intensity)
2014-03-11 15:40:00 +00:00
end
end
return true
end
2014-03-11 15:40:00 +00:00
function ReaderFrontLight:onShowIntensity()
local powerd = Device:getPowerDevice()
if powerd.fl_intensity ~= nil then
2014-03-11 15:40:00 +00:00
UIManager:show(Notification:new{
text = T(_("Frontlight intensity is set to %1."), powerd.fl_intensity),
2014-03-11 15:40:00 +00:00
timeout = 1.0,
})
end
2014-03-12 09:05:38 +00:00
return true
2014-03-11 15:40:00 +00:00
end
function ReaderFrontLight:onSwipe(arg, ges)
if ges.direction == "north" or ges.direction == "south" then
2014-04-06 16:25:10 +00:00
DEBUG("onSwipe activated")
2014-03-11 15:40:00 +00:00
return self:onShowIntensity()
end
end
2014-03-11 15:40:00 +00:00
function ReaderFrontLight:onPanRelease(arg, ges)
2014-04-06 16:25:10 +00:00
DEBUG("onPanRelease activated")
2014-03-11 15:40:00 +00:00
return self:onShowIntensity()
end
function ReaderFrontLight:onShowFlDialog()
2014-03-12 09:05:38 +00:00
local powerd = Device:getPowerDevice()
self.fl_dialog = InputDialog:new{
title = _("Frontlight level"),
2014-03-12 09:05:38 +00:00
input_hint = ("(%d - %d)"):format(powerd.fl_min, powerd.fl_max),
buttons = {
{
{
text = _("Toggle"),
enabled = true,
callback = function()
2016-02-17 17:41:17 +00:00
self.fl_dialog:setInputText("")
2014-03-12 09:05:38 +00:00
powerd:toggleFrontlight()
end,
},
{
text = _("Apply"),
enabled = true,
callback = function()
self:fldialIntensity()
end,
},
{
text = _("OK"),
enabled = true,
callback = function()
self:fldialIntensity()
self:close()
end,
},
2014-03-12 09:05:38 +00:00
},
},
input_type = "number",
}
self.fl_dialog:onShowKeyboard()
UIManager:show(self.fl_dialog)
end
function ReaderFrontLight:close()
2014-03-12 09:05:38 +00:00
self.fl_dialog:onClose()
UIManager:close(self.fl_dialog)
end
function ReaderFrontLight:fldialIntensity()
2014-03-12 09:05:38 +00:00
local number = tonumber(self.fl_dialog:getInputText())
if number ~= nil then
Device:getPowerDevice():setIntensity(number)
end
end
2013-10-18 20:38:07 +00:00
return ReaderFrontLight