mirror of
https://github.com/koreader/koreader
synced 2024-11-04 12:00:25 +00:00
217a73f3c0
* Rejig frontlight warmth API to more closely match the existing API, and, hopefully, clarify some of its quirks, and reduce boilerplate and duplicate code in platform implementations. * Tweak Kindle:setDateTime to prefer using the platform's custom script, as in interacts better with the stock UI. And make the fallbacks handle old busybox versions better. * Add Kindle PW5 support ;). * Add warmth support to the Kindle platform. * Random TextBoxWidget cleanups: make sure we immediately free destroyed instances. * FrontLightWidget: Refactor to make it slightly less obnoxious to grok and update; i.e., separate layout from update, and properly separate brightness from warmth handling. Move to simpler widgets instead of reinventing the wheel. * TextBoxWidgets: Implement `setText` to match TextWidget's API, as some callers may be using the two interchangeably (i.e., Button). * NaturalLightWidget: Make sure we pass a string to InputText * InputText: Add debug guards to catch bad callers not passing strings ;).
41 lines
949 B
Lua
41 lines
949 B
Lua
local BasePowerD = require("device/generic/powerd")
|
|
local SDL = require("ffi/SDL2_0")
|
|
|
|
local SDLPowerD = BasePowerD:new{
|
|
-- these values are just used on the emulator
|
|
hw_intensity = 50,
|
|
fl_min = 0,
|
|
fl_max = 100,
|
|
fl_warmth = 50,
|
|
fl_warmth_min = 0,
|
|
fl_warmth_max = 100,
|
|
}
|
|
|
|
function SDLPowerD:frontlightIntensityHW()
|
|
return self.hw_intensity
|
|
end
|
|
|
|
function SDLPowerD:setIntensityHW(intensity)
|
|
require("logger").info("set brightness to", intensity)
|
|
self.hw_intensity = intensity or self.hw_intensity
|
|
end
|
|
|
|
function SDLPowerD:frontlightWarmthHW()
|
|
return self.fl_warmth
|
|
end
|
|
|
|
function SDLPowerD:getCapacityHW()
|
|
local _, _, _, percent = SDL.getPowerInfo()
|
|
-- -1 looks a bit odd compared to 0
|
|
if percent == -1 then return 0 end
|
|
return percent
|
|
end
|
|
|
|
function SDLPowerD:isChargingHW()
|
|
local ok, charging = SDL.getPowerInfo()
|
|
if ok then return charging end
|
|
return false
|
|
end
|
|
|
|
return SDLPowerD
|