add dummy span widgets & make clock count on seconds

This commit is contained in:
Qingping Hou
2012-04-24 23:41:37 +08:00
parent 091caefd12
commit 198a3fc4de
3 changed files with 25 additions and 5 deletions

View File

@@ -276,6 +276,17 @@ function HorizontalGroup:free()
WidgetContainer.free(self)
end
--[[
Dummy Widget that reserves horizontal space
]]
HorizontalSpan = Widget:new{
width = 0,
}
function HorizontalSpan:getSize()
return {w = self.width, h = 0}
end
--[[
A Layout widget that puts objects under each other
]]
@@ -324,6 +335,17 @@ function VerticalGroup:free()
WidgetContainer.free(self)
end
--[[
Dummy Widget that reserves vertical space
]]
VerticalSpan = Widget:new{
width = 0,
}
function VerticalSpan:getSize()
return {w = 0, h = self.width}
end
--[[
an UnderlineContainer is a WidgetContainer that is able to paint
a line under its child node