-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds DIALOG gScript command for customizable user dialogs
- Loading branch information
1 parent
a8b5221
commit a69ff04
Showing
6 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
; Execute with: DIALOG Config\dialog-test.ini | ||
[window] | ||
width=440 | ||
height=440 | ||
title=Test Dialog | ||
|
||
[float_input_1] | ||
label=Hello World | ||
x=10 | ||
y=100 | ||
default=16 | ||
variable="[1]" | ||
|
||
[float_input_2] | ||
label=Hello World | ||
x=110 | ||
y=100 | ||
default=16 | ||
variable="$float2" | ||
|
||
[bool_input_1] | ||
label=Boolean input 1 | ||
x=10 | ||
y=10 | ||
default=false | ||
variable=$bool1 | ||
|
||
[bool_input_2] | ||
label=Boolean input 2 | ||
x=110 | ||
y=10 | ||
default=true | ||
variable=$bool2 |
Binary file not shown.
Binary file modified
BIN
+12 Bytes
(100%)
Gantry/gScript Application/gScript Interpreter/CMD_LOADSTAMP.vi
Binary file not shown.
Binary file modified
BIN
+1.51 KB
(100%)
Gantry/gScript Application/gScript Interpreter/Execute Command.vi
Binary file not shown.
Binary file modified
BIN
+32 Bytes
(100%)
Gantry/gScript Application/gScript Interpreter/Type Definitions/Command.ctl
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters