You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/frontend/ui/reader/readerscreenshot.lua

26 lines
465 B
Lua

ReaderScreenshot = InputContainer:new{}
function ReaderScreenshot:init()
local diagonal = math.sqrt(
math.pow(Screen:getWidth(), 2) +
math.pow(Screen:getHeight(), 2)
)
self.ges_events = {
Screenshot = {
GestureRange:new{
ges = "two_finger_tap",
scale = {diagonal - scaleByDPI(100), diagonal},
rate = 1.0,
}
},
}
end
function ReaderScreenshot:onScreenshot()
os.execute("screenshot")
UIManager.full_refresh = true
return true
end