transitions

This commit is contained in:
kepler155c@gmail.com
2016-12-14 12:36:28 -05:00
parent 46d0c8d43d
commit 48f16ce2c7
2 changed files with 234 additions and 44 deletions

View File

@@ -15,9 +15,9 @@ return function()
local selectFile = UI.Page({
x = 3,
y = 3,
ex = -3,
ey = -3,
y = 2,
rex = -3,
rey = -3,
backgroundColor = colors.brown,
titleBar = UI.TitleBar({
title = 'Select file',
@@ -27,16 +27,16 @@ return function()
grid = UI.ScrollingGrid({
x = 2,
y = 2,
ex = -2,
ey = -4,
rex = -2,
rey = -4,
path = '',
sortColumn = 'name',
columns = columns,
}),
path = UI.TextEntry({
x = 2,
oy = -1,
ex = -11,
ry = -1,
rex = -11,
limit = 256,
accelerators = {
enter = 'path_enter',
@@ -44,8 +44,8 @@ return function()
}),
cancel = UI.Button({
text = 'Cancel',
ox = -8,
oy = -1,
rx = -8,
ry = -1,
event = 'cancel',
}),
})