Merge pull request #1635 from houqp/houqp-master

keyboard support for confirmbox and buttontable
pull/1636/head
Frans de Jonge 9 years ago
commit 96f48c0956

@ -12,6 +12,7 @@ env:
- EMULATE_READER=1 - EMULATE_READER=1
cache: cache:
apt: true
directories: directories:
- $HOME/.ccache - $HOME/.ccache

@ -13,6 +13,7 @@ local ReaderConfig = InputContainer:new{
} }
function ReaderConfig:init() function ReaderConfig:init()
if not self.dimen then self.dimen = Geom:new{} end
if Device:hasKeyboard() then if Device:hasKeyboard() then
self.key_events = { self.key_events = {
ShowConfigMenu = { { "AA" }, doc = "show config dialog" }, ShowConfigMenu = { { "AA" }, doc = "show config dialog" },

@ -49,18 +49,17 @@ local Font = {
function Font:getFace(font, size) function Font:getFace(font, size)
if not font then -- default to content font
-- default to content font if not font then font = self.cfont end
font = self.cfont
end
-- original size before scaling by screen DPI -- original size before scaling by screen DPI
local orig_size = size local orig_size = size
local size = Screen:scaleBySize(size) local size = Screen:scaleBySize(size)
local face = self.faces[font..size] local hash = font..size
local face_obj = self.faces[hash]
-- build face if not found -- build face if not found
if not face then if not face_obj then
local realname = self.fontmap[font] local realname = self.fontmap[font]
if not realname then if not realname then
realname = font realname = font
@ -71,10 +70,16 @@ function Font:getFace(font, size)
DEBUG("#! Font "..font.." ("..realname..") not supported: "..face) DEBUG("#! Font "..font.." ("..realname..") not supported: "..face)
return nil return nil
end end
self.faces[font..size] = face face_obj = {
--DEBUG("getFace, found: "..realname.." size:"..size) size = size,
orig_size = orig_size,
ftface = face,
hash = hash
}
self.faces[hash] = face_obj
-- DEBUG("getFace, found: "..realname.." size:"..size)
end end
return { size = size, orig_size = orig_size, ftface = face, hash = font..size } return face_obj
end end
function Font:_readList(target, dir) function Font:_readList(target, dir)

@ -66,9 +66,7 @@ function Button:init()
} }
} }
if self.preselect then if self.preselect then
self.frame.color = Blitbuffer.COLOR_BLACK self:onFocus()
else
self.frame.color = Blitbuffer.gray(0.33)
end end
self.dimen = self.frame:getSize() self.dimen = self.frame:getSize()
self[1] = self.frame self[1] = self.frame
@ -105,12 +103,12 @@ function Button:setIcon(icon)
end end
function Button:onFocus() function Button:onFocus()
self[1].color = Blitbuffer.COLOR_BLACK self.frame.invert = true
return true return true
end end
function Button:onUnfocus() function Button:onUnfocus()
self[1].color = Blitbuffer.gray(0.33) self.frame.invert = false
return true return true
end end

@ -1,13 +1,16 @@
local VerticalGroup = require("ui/widget/verticalgroup")
local HorizontalGroup = require("ui/widget/horizontalgroup") local HorizontalGroup = require("ui/widget/horizontalgroup")
local VerticalGroup = require("ui/widget/verticalgroup")
local VerticalSpan = require("ui/widget/verticalspan") local VerticalSpan = require("ui/widget/verticalspan")
local FocusManager = require("ui/widget/focusmanager")
local LineWidget = require("ui/widget/linewidget") local LineWidget = require("ui/widget/linewidget")
local Blitbuffer = require("ffi/blitbuffer")
local Button = require("ui/widget/button") local Button = require("ui/widget/button")
local Screen = require("device").screen local UIManager = require("ui/uimanager")
local Geom = require("ui/geometry") local Geom = require("ui/geometry")
local Blitbuffer = require("ffi/blitbuffer") local Device = require("device")
local Screen = Device.screen
local ButtonTable = VerticalGroup:new{ local ButtonTable = FocusManager:new{
width = Screen:getWidth(), width = Screen:getWidth(),
buttons = { buttons = {
{ {
@ -24,7 +27,8 @@ local ButtonTable = VerticalGroup:new{
} }
function ButtonTable:init() function ButtonTable:init()
--local vertical_group = VerticalGroup:new{} self.container = VerticalGroup:new{ width = self.width }
table.insert(self, self.container)
if self.zero_sep then if self.zero_sep then
self:addHorizontalSep() self:addHorizontalSep()
end end
@ -53,28 +57,42 @@ function ButtonTable:init()
h = button_dim.h, h = button_dim.h,
} }
} }
self.buttons[i][j] = button
table.insert(horizontal_group, button) table.insert(horizontal_group, button)
if j < #line then if j < #line then
table.insert(horizontal_group, vertical_sep) table.insert(horizontal_group, vertical_sep)
end end
end -- end for each button end -- end for each button
table.insert(self, horizontal_group) table.insert(self.container, horizontal_group)
if i < #self.buttons then if i < #self.buttons then
self:addHorizontalSep() self:addHorizontalSep()
end end
end -- end for each button line end -- end for each button line
if Device:hasKeys() then
self.layout = self.buttons
self.layout[1][1]:onFocus()
self.key_events.SelectByKeyPress = { {{"Press", "Enter"}} }
else
self.key_events = {} -- deregister all key press event listeners
end
end end
function ButtonTable:addHorizontalSep() function ButtonTable:addHorizontalSep()
table.insert(self, VerticalSpan:new{ width = Screen:scaleBySize(2) }) table.insert(self.container,
table.insert(self, LineWidget:new{ VerticalSpan:new{ width = Screen:scaleBySize(2) })
table.insert(self.container, LineWidget:new{
background = Blitbuffer.gray(0.5), background = Blitbuffer.gray(0.5),
dimen = Geom:new{ dimen = Geom:new{
w = self.width, w = self.width,
h = self.sep_width, h = self.sep_width,
} }
}) })
table.insert(self, VerticalSpan:new{ width = Screen:scaleBySize(2) }) table.insert(self.container,
VerticalSpan:new{ width = Screen:scaleBySize(2) })
end
function ButtonTable:onSelectByKeyPress()
self:getFocusItem().callback()
end end
return ButtonTable return ButtonTable

@ -6,18 +6,18 @@ CenterContainer centers its content (1 widget) within its own dimensions
local CenterContainer = WidgetContainer:new() local CenterContainer = WidgetContainer:new()
function CenterContainer:paintTo(bb, x, y) function CenterContainer:paintTo(bb, x, y)
local contentSize = self[1]:getSize() local content_size = self[1]:getSize()
if contentSize.w > self.dimen.w or contentSize.h > self.dimen.h then if content_size.w > self.dimen.w or content_size.h > self.dimen.h then
-- throw error? paint to scrap buffer and blit partially? -- throw error? paint to scrap buffer and blit partially?
-- for now, we ignore this -- for now, we ignore this
end end
local x_pos = x local x_pos = x
local y_pos = y local y_pos = y
if self.ignore ~= "height" then if self.ignore ~= "height" then
y_pos = y + math.floor((self.dimen.h - contentSize.h)/2) y_pos = y + math.floor((self.dimen.h - content_size.h)/2)
end end
if self.ignore ~= "width" then if self.ignore ~= "width" then
x_pos = x + math.floor((self.dimen.w - contentSize.w)/2) x_pos = x + math.floor((self.dimen.w - content_size.w)/2)
end end
self[1]:paintTo(bb, x_pos, y_pos) self[1]:paintTo(bb, x_pos, y_pos)
end end

@ -48,13 +48,12 @@ function InputContainer:_init()
end end
end end
self.ges_events = new_ges_events self.ges_events = new_ges_events
if not self.dimen then
self.dimen = Geom:new{}
end
end end
function InputContainer:paintTo(bb, x, y) function InputContainer:paintTo(bb, x, y)
if not self.dimen then
self.dimen = self[1]:getSize()
end
self.dimen.x = x self.dimen.x = x
self.dimen.y = y self.dimen.y = y
if self[1] then if self[1] then

@ -7,14 +7,13 @@ WidgetContainer is a container for another Widget
local WidgetContainer = Widget:new() local WidgetContainer = Widget:new()
function WidgetContainer:init() function WidgetContainer:init()
if not self.dimen then if self.dimen then
self.dimen = Geom:new{} if not self.dimen.w then
end self.dimen.w = self[1].getSize().w
if not self.dimen.w then end
self.dimen.w = self[1].getSize().w if not self.dimen.h then
end self.dimen.h = self[1].getSize().h
if not self.dimen.h then end
self.dimen.h = self[1].getSize().h
end end
end end

@ -32,7 +32,9 @@ local FocusManager = InputContainer:new{
} }
function FocusManager:init() function FocusManager:init()
self.selected = { x = 1, y = 1 } if not self.selected then
self.selected = { x = 1, y = 1 }
end
self.key_events = { self.key_events = {
-- these will all generate the same event, just with different arguments -- these will all generate the same event, just with different arguments
FocusUp = { {"Up"}, doc = "move focus up", event = "FocusMove", args = {0, -1} }, FocusUp = { {"Up"}, doc = "move focus up", event = "FocusMove", args = {0, -1} },
@ -60,7 +62,7 @@ function FocusManager:onFocusMove(args)
break -- abort when we run into horizontal borders break -- abort when we run into horizontal borders
end end
-- move cyclic in vertical direction -- call widget wrap callbacks in vertical direction
if self.selected.y + dy > #self.layout then if self.selected.y + dy > #self.layout then
if not self:onWrapLast() then if not self:onWrapLast() then
break break
@ -99,4 +101,8 @@ function FocusManager:onWrapLast()
return true return true
end end
function FocusManager:getFocusItem()
return self.layout[self.selected.y][self.selected.x]
end
return FocusManager return FocusManager

@ -274,6 +274,7 @@ local TouchMenu = InputContainer:new{
} }
function TouchMenu:init() function TouchMenu:init()
if not self.dimen then self.dimen = Geom:new{} end
self.show_parent = self.show_parent or self self.show_parent = self.show_parent or self
if not self.close_callback then if not self.close_callback then
self.close_callback = function() self.close_callback = function()

@ -31,8 +31,8 @@ definition.
--]] --]]
function Widget:new(o) function Widget:new(o)
o = self:extend(o) o = self:extend(o)
-- Both o._init and o.init are called on object create. But o._init is used -- Both o._init and o.init are called on object creation. But o._init is
-- for base widget initialization (basic component used to build other -- used for base widget initialization (basic component used to build other
-- widgets). While o.init is for higher level widgets, for example Menu -- widgets). While o.init is for higher level widgets, for example Menu
-- Widget -- Widget
if o._init then o:_init() end if o._init then o:_init() end

@ -0,0 +1,15 @@
require("commonrequire")
local DEBUG = require("dbg")
local Font = require("ui/font")
describe("Font module", function()
local f = nil
it("should get face", function()
f = Font:getFace('cfont', 18)
assert.are_not.equals(f.ftface, nil)
f = Font:getFace('tfont', 16)
assert.are_not.equals(f.ftface, nil)
f = Font:getFace('hfont', 12)
assert.are_not.equals(f.ftface, nil)
end)
end)
Loading…
Cancel
Save