mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
edit dialog formatting
This commit is contained in:
parent
465ceb63fa
commit
b5212ebd21
2 changed files with 26 additions and 23 deletions
|
|
@ -275,10 +275,9 @@ function factory () return function ()
|
||||||
|
|
||||||
local i = 0
|
local i = 0
|
||||||
local dry_table = {
|
local dry_table = {
|
||||||
{type = "label", align="left", key="col-0-title", col=0, colspan=1, title = 'Source'},
|
{type = "label", align="right", key="col-0-title", col=0, colspan=1, title = 'Settings:'},
|
||||||
{type = "label", align="left", key="col-2-title", col=1, colspan=1, title = 'Destination:'},
|
{type = "label", align="right", key="col-1-title", col=1, colspan=1, title = 'Source:'},
|
||||||
--{type = "label", align="left", key="col-0-title", col=1, colspan=1, title = 'Actions:'},
|
{type = "label", align="left", key="col-2-title", col=2, colspan=1, title = 'Destination:'},
|
||||||
--{type = "label", align="left", key="col-2-title", col=3, colspan=1, title = 'Do this?'},
|
|
||||||
}
|
}
|
||||||
local file = io.open(path, "r")
|
local file = io.open(path, "r")
|
||||||
assert(file, "File not found!")
|
assert(file, "File not found!")
|
||||||
|
|
@ -306,14 +305,17 @@ function factory () return function ()
|
||||||
|
|
||||||
if not(group_ptr) then
|
if not(group_ptr) then
|
||||||
new_group = Session:new_route_group(group_name)
|
new_group = Session:new_route_group(group_name)
|
||||||
dlg_title = string.format("(Group) %s.", group_name, new_group:name())
|
dlg_title = string.format("%s.", group_name, new_group:name())
|
||||||
--action_title = "will create and use settings"
|
--action_title = "will create and use settings"
|
||||||
else
|
else
|
||||||
dlg_title = string.format("(Group) %s.", group_ptr:name())
|
dlg_title = string.format("%s.", group_ptr:name())
|
||||||
--action_title = "will use group settings"
|
--action_title = "will use group settings"
|
||||||
end
|
end
|
||||||
table.insert(dry_table, {
|
table.insert(dry_table, {
|
||||||
type = "label", align = "left", key = "group-"..i , col = 0, colspan = 1, title = dlg_title
|
type = "label", align="right", key = "type-"..i , col = 0, colspan = 1, title = "(Group)"
|
||||||
|
})
|
||||||
|
table.insert(dry_table, {
|
||||||
|
type = "label", align="right", key = "group-"..i , col = 1, colspan = 1, title = dlg_title
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -327,22 +329,25 @@ function factory () return function ()
|
||||||
if route_ptr:isnil() then
|
if route_ptr:isnil() then
|
||||||
route_ptr = Session:route_by_name(route_name)
|
route_ptr = Session:route_by_name(route_name)
|
||||||
if not(route_ptr:isnil()) then
|
if not(route_ptr:isnil()) then
|
||||||
dlg_title = string.format("(Strip) %s", route_ptr:name())
|
dlg_title = string.format("%s", route_ptr:name())
|
||||||
--action_title = "will use route settings"
|
--action_title = "will use route settings"
|
||||||
else
|
else
|
||||||
dlg_title = string.format("Strip) %s", route_name)
|
dlg_title = string.format("%s", route_name)
|
||||||
--action_title = "will be ignored"
|
--action_title = "will be ignored"
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
dlg_title = string.format("(Strip) %s", route_ptr:name())
|
dlg_title = string.format("%s", route_ptr:name())
|
||||||
--action_title = "will use route settings"
|
--action_title = "will use route settings"
|
||||||
end
|
end
|
||||||
if route_ptr:isnil() then name = route_name else name = route_ptr:name() end
|
if route_ptr:isnil() then name = route_name else name = route_ptr:name() end
|
||||||
table.insert(dry_table, {
|
table.insert(dry_table, {
|
||||||
type = "label", align = "left", key = "route-"..i , col = 0, colspan = 1, title = dlg_title
|
type = "label", align="right", key = "type-"..i , col = 0, colspan = 1, title = "(Strip)"
|
||||||
})
|
})
|
||||||
table.insert(dry_table, {
|
table.insert(dry_table, {
|
||||||
type = "dropdown", align = "left", key = "destination-"..i, col = 1, colspan = 1, title = "", values = route_values, default = name or "----"
|
type = "label", align="right", key = "route-"..i , col = 1, colspan = 1, title = dlg_title
|
||||||
|
})
|
||||||
|
table.insert(dry_table, {
|
||||||
|
type = "dropdown", align="left", key = "destination-"..i, col = 2, colspan = 1, title = "", values = route_values, default = name or "----"
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
i = i + 1
|
i = i + 1
|
||||||
|
|
@ -389,8 +394,7 @@ function factory () return function ()
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
LuaDialog.Message ("Recall Mixer Settings:",
|
LuaDialog.Message ("Recall Mixer Settings:",
|
||||||
global_path .. [[does not exist!
|
global_path .. ' does not exist!\nPlease run Store Mixer Settings first.',
|
||||||
Please run Store Mixer Settings first.]],
|
|
||||||
LuaDialog.MessageType.Info, LuaDialog.ButtonType.Close):run()
|
LuaDialog.MessageType.Info, LuaDialog.ButtonType.Close):run()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
@ -411,8 +415,7 @@ function factory () return function ()
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
LuaDialog.Message ("Recall Mixer Settings:",
|
LuaDialog.Message ("Recall Mixer Settings:",
|
||||||
local_path .. [[does not exist!
|
local_path .. 'does not exist!\nPlease run Store Mixer Settings first.',
|
||||||
Please run Store Mixer Settings first.]],
|
|
||||||
LuaDialog.MessageType.Info, LuaDialog.ButtonType.Close):run()
|
LuaDialog.MessageType.Info, LuaDialog.ButtonType.Close):run()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -313,19 +313,19 @@ function factory () return function ()
|
||||||
end
|
end
|
||||||
|
|
||||||
local store_options = {
|
local store_options = {
|
||||||
{ type = "label", col=0, colspan=1, align="left", title = "Settings name:" },
|
{ type = "label", col=0, colspan=1, align="right", title = "Settings name:" },
|
||||||
{ type = "entry", col=1, colspan=1, align="right" , key = "filename", default = Session:name(), title=""},
|
{ type = "entry", col=1, colspan=1, align="left" , key = "filename", default = Session:name(), title=""},
|
||||||
{ type = "label", col=0, colspan=1, align="left", title = "Selected Tracks Only:" },
|
{ type = "label", col=0, colspan=1, align="right", title = "Store Settings:" },
|
||||||
{ type = "checkbox", col=1, colspan=1, align="right", key = "selected", default = false, title = ""},
|
|
||||||
{ type = "hseparator", title="", col=0, colspan = 3},
|
|
||||||
{ type = "label", col=0, colspan=1, align="left", title = "Store Settings:" },
|
|
||||||
{
|
{
|
||||||
type = "radio", col=1, colspan=3, align="right", key = "store-dir", title = "", values =
|
type = "radio", col=1, colspan=3, align="left", key = "store-dir", title = "", values =
|
||||||
{
|
{
|
||||||
['Global (accessible from any session)'] = 1, ['Locally (this session only)'] = 2
|
['Global (accessible from any session)'] = 1, ['Locally (this session only)'] = 2
|
||||||
},
|
},
|
||||||
default = 'Locally (this session only)'
|
default = 'Locally (this session only)'
|
||||||
},
|
},
|
||||||
|
{ type = "hseparator", title="", col=0, colspan = 3},
|
||||||
|
{ type = "label", col=0, colspan=1, align="right", title = "Selected Tracks Only:" },
|
||||||
|
{ type = "checkbox", col=1, colspan=1, align="left", key = "selected", default = false, title = ""},
|
||||||
--{ type = "label", col=0, colspan=2, align="left", title = ''},
|
--{ type = "label", col=0, colspan=2, align="left", title = ''},
|
||||||
--{ type = "label", col=0, colspan=2, align="left", title = "Global Path: " .. global_path},
|
--{ type = "label", col=0, colspan=2, align="left", title = "Global Path: " .. global_path},
|
||||||
--{ type = "label", col=0, colspan=2, align="left", title = "Local Path: " .. local_path},
|
--{ type = "label", col=0, colspan=2, align="left", title = "Local Path: " .. local_path},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue