Compare commits
No commits in common. "9ba0ada978d10ef713758a9e1db4fd92ebec0cd9" and "6f606d37582f0cf3f7616ba5294cf384daf1c18f" have entirely different histories.
9ba0ada978
...
6f606d3758
@ -38,4 +38,17 @@ function Container:setStrict(strict)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Container:_reload()
|
||||||
|
Element._reload(self)
|
||||||
|
|
||||||
|
-- Reload child windows
|
||||||
|
local win = self:_getWindow()
|
||||||
|
for _,child in self:_iterateChildren() do
|
||||||
|
if child:_getWindow() ~= win then
|
||||||
|
child:setParent(win)
|
||||||
|
child:_reload()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return Container
|
return Container
|
@ -121,13 +121,10 @@ function Element:_getWindow()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function Element:_setWindow(window)
|
function Element:_setWindow(window)
|
||||||
self:setDirty()
|
|
||||||
self.window = window
|
self.window = window
|
||||||
end
|
end
|
||||||
|
|
||||||
function Element:setVisible(visible)
|
function Element:setVisible(visible)
|
||||||
self:setDirty()
|
|
||||||
self.visible = visible
|
|
||||||
self:_getWindow().setVisible(visible)
|
self:_getWindow().setVisible(visible)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -192,6 +189,10 @@ function Element:getId()
|
|||||||
return self.id
|
return self.id
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Element:redraw()
|
||||||
|
self:_getWindow().redraw()
|
||||||
|
end
|
||||||
|
|
||||||
function Element:handleEvent(evt)
|
function Element:handleEvent(evt)
|
||||||
if Event.isClickEvent(evt) and Event.containsClick(self, evt) and self.onClick ~= nil then
|
if Event.isClickEvent(evt) and Event.containsClick(self, evt) and self.onClick ~= nil then
|
||||||
local x, y, source = Event.getClickParams(evt)
|
local x, y, source = Event.getClickParams(evt)
|
||||||
@ -209,7 +210,6 @@ function Element:_reload()
|
|||||||
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
local win = window.create(self.parent, self:getX(), self:getY(), self:getWidth(), self:getHeight(), self:isVisible())
|
||||||
win.setBackgroundColor(self:getBgColor())
|
win.setBackgroundColor(self:getBgColor())
|
||||||
win.setTextColor(self:getFgColor())
|
win.setTextColor(self:getFgColor())
|
||||||
win.setVisible(self.visible)
|
|
||||||
self:_setWindow(win)
|
self:_setWindow(win)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
10
gfx/list.lua
10
gfx/list.lua
@ -57,6 +57,16 @@ function List:getWidth()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function List:_reload()
|
function List:_reload()
|
||||||
|
Element._reload(self)
|
||||||
|
|
||||||
|
-- Reload child windows
|
||||||
|
local win = self:_getWindow()
|
||||||
|
for _,child in self:_iterateChildren() do
|
||||||
|
if child:_getWindow() ~= win then
|
||||||
|
child:setParent(win)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
self:adjustPositions()
|
self:adjustPositions()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@ local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" }
|
|||||||
|
|
||||||
function Children:with(elementType)
|
function Children:with(elementType)
|
||||||
local propSelf = self
|
local propSelf = self
|
||||||
local defaultReload = elementType._reload
|
|
||||||
function elementType:_iterateChildren()
|
function elementType:_iterateChildren()
|
||||||
return ipairs(self:_children())
|
return ipairs(self:_children())
|
||||||
end
|
end
|
||||||
@ -148,22 +147,6 @@ function Children:with(elementType)
|
|||||||
return Element.handleEvent(self, evt)
|
return Element.handleEvent(self, evt)
|
||||||
end
|
end
|
||||||
|
|
||||||
function elementType:_reload()
|
|
||||||
Element._reload(self)
|
|
||||||
|
|
||||||
-- Reload child windows
|
|
||||||
local win = self:_getWindow()
|
|
||||||
for _,child in self:_iterateChildren() do
|
|
||||||
if child:_getWindow() ~= win then
|
|
||||||
child:setParent(win)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if defaultReload ~= nil and defaultReload ~= Element._reload then
|
|
||||||
defaultReload(self)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return elementType
|
return elementType
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ local Element = require("gfx.element")
|
|||||||
local Progress = require("gfx.progress")
|
local Progress = require("gfx.progress")
|
||||||
local Prop = require("gfx.prop")
|
local Prop = require("gfx.prop")
|
||||||
local Children = require("gfx.prop.children")
|
local Children = require("gfx.prop.children")
|
||||||
--local Visibility = require("gfx.prop.visibility")
|
local Visibility = require("gfx.prop.visibility")
|
||||||
local Orientation = require("gfx.prop.orientation")
|
local Orientation = require("gfx.prop.orientation")
|
||||||
|
|
||||||
|
|
||||||
@ -232,7 +232,6 @@ local function renderDefault(state, rootElement)
|
|||||||
|
|
||||||
-- Trigger re-render
|
-- Trigger re-render
|
||||||
rootElement:setDirty(true)
|
rootElement:setDirty(true)
|
||||||
rootElement:_reload()
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -267,7 +266,7 @@ local PAGES = {
|
|||||||
local pageState = state:currentPageState({
|
local pageState = state:currentPageState({
|
||||||
sortMode = 1,
|
sortMode = 1,
|
||||||
filter = "",
|
filter = "",
|
||||||
displayKeyboard = true,
|
displayKeyboard = Visibility.INVISIBLE,
|
||||||
currentPage = 1
|
currentPage = 1
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -435,7 +434,7 @@ local PAGES = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for i=#actions+1,1,-1 do
|
for i=#actions+1,1,-1 do
|
||||||
table.insert(actions, i, Element:new{ width = 0 })
|
table.insert(actions, i, Element:new{ width = 0, height = 1 })
|
||||||
end
|
end
|
||||||
|
|
||||||
local bottomBarList = List:new {
|
local bottomBarList = List:new {
|
||||||
@ -453,7 +452,7 @@ local PAGES = {
|
|||||||
usedSpace = usedSpace + actions[i]:getWidth()
|
usedSpace = usedSpace + actions[i]:getWidth()
|
||||||
end
|
end
|
||||||
|
|
||||||
local barWidth = state.width
|
local barWidth = bottomBarList:getWidth()
|
||||||
local freeSpace = barWidth - usedSpace
|
local freeSpace = barWidth - usedSpace
|
||||||
local asymmetry = freeSpace % ((#actions + 1) / 2)
|
local asymmetry = freeSpace % ((#actions + 1) / 2)
|
||||||
local part = (freeSpace - asymmetry) / ((#actions + 1) / 2)
|
local part = (freeSpace - asymmetry) / ((#actions + 1) / 2)
|
||||||
@ -489,22 +488,26 @@ local PAGES = {
|
|||||||
local bgColor = (i % 2 == 0) and colors.gray or colors.black
|
local bgColor = (i % 2 == 0) and colors.gray or colors.black
|
||||||
table.insert(
|
table.insert(
|
||||||
entries,
|
entries,
|
||||||
List:new{
|
Prop.attach(
|
||||||
id = tostring(i),
|
List:new{
|
||||||
bgColor = bgColor,
|
id = tostring(i),
|
||||||
[Orientation:getId()] = Orientation.HORIZONTAL,
|
bgColor = bgColor,
|
||||||
[Children:getId()] = {
|
[Orientation:getId()] = Orientation.HORIZONTAL,
|
||||||
Padding:new{
|
[Children:getId()] = {
|
||||||
id = GroupEntryID.PADDING,
|
Padding:new{
|
||||||
bgColor = bgColor,
|
id = GroupEntryID.PADDING,
|
||||||
element = Text:new{ id = GroupEntryID.NAME, bgColor = bgColor }
|
bgColor = bgColor,
|
||||||
},
|
element = Text:new{ id = GroupEntryID.NAME, bgColor = bgColor }
|
||||||
Text:new{
|
},
|
||||||
id = GroupEntryID.COUNT,
|
Text:new{
|
||||||
bgColor = bgColor
|
id = GroupEntryID.COUNT,
|
||||||
|
bgColor = bgColor
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
Visibility,
|
||||||
|
Visibility.INVISIBLE
|
||||||
|
)
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -563,7 +566,7 @@ local PAGES = {
|
|||||||
table.insert(keyboardLines.elements, keyLineList)
|
table.insert(keyboardLines.elements, keyLineList)
|
||||||
end
|
end
|
||||||
|
|
||||||
table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY })
|
table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY, text = "" })
|
||||||
|
|
||||||
local keyboardList = Padding:new{ bgColor = colors.cyan, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{
|
local keyboardList = Padding:new{ bgColor = colors.cyan, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{
|
||||||
[Orientation:getId()] = Orientation.Vertical,
|
[Orientation:getId()] = Orientation.Vertical,
|
||||||
@ -573,7 +576,7 @@ local PAGES = {
|
|||||||
local screenContainer = Container:new{
|
local screenContainer = Container:new{
|
||||||
[Children:getId()] = {
|
[Children:getId()] = {
|
||||||
mainList,
|
mainList,
|
||||||
keyboardList
|
Prop.attach(keyboardList, Visibility, pageState.displayKeyboard)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user