-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExportBatchDialog.json
More file actions
31 lines (31 loc) · 1.01 KB
/
ExportBatchDialog.json
File metadata and controls
31 lines (31 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
dialog {
text: "Export Layers To Files From Directory",
orientation: "column",
alignChildren: "fill",
grpSrc: Group {
orientation: "row",
lblSrc: StaticText {
preferredSize: [100, 20],
alignment: "left",
text: "Source:"
},
txtSrc: EditText {preferredSize: [400, 0], properties: {readonly: false}},
btnSrc: Button {text: "Browse..."},
},
grpDest: Group {
orientation: "row",
lblDest: StaticText {
preferredSize: [100, 20],
alignment: "left",
text: "Destination:"
},
txtDest: EditText {preferredSize: [400, 0], properties: {readonly: false}},
btnDest: Button {text: "Browse..."},
},
buttons: Group {
orientation: "row",
btnRun: Button {text: "Run"},
btnCancel: Button {text: "Cancel"},
btnSave: Button {text: "Save and Cancel", helpTip: "Save current settings and cancel."},
}
}