forked from jdsandifer/AutoLISP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
draw plan menu, map (wrapper for mapcar)
- Loading branch information
1 parent
020418d
commit b4f89f3
Showing
4 changed files
with
134 additions
and
19 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
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,40 @@ | ||
DrawPlanSetup : dialog { //dialog name | ||
label = "Draw Plan Setup" ; //label (visible to user) | ||
|
||
: row { //define row | ||
|
||
: text {label = "Post Spacing";} | ||
|
||
: edit_box {key = postSpacingBox; width = 4; value = "48";} | ||
|
||
:boxed_radio_column { //define radio column | ||
label = "Top Rail Type" ; //label | ||
|
||
: radio_button { //define radion button | ||
key = "s200Button" ; //name | ||
label = "Series &200" ; //label | ||
value = "1" ; //switch it on | ||
} //end definition | ||
|
||
: radio_button { | ||
key = "s200xButton" ; | ||
label = "Series 200&X" ; | ||
} | ||
|
||
: radio_button { | ||
key = "woodButton" ; | ||
label = "Wood Adapter" ; | ||
} | ||
|
||
: radio_button { | ||
key = "s100Button" ; | ||
label = "Series 100" ; | ||
} | ||
} | ||
|
||
|
||
} | ||
|
||
ok_cancel ; //predifined OK/Cancel | ||
|
||
} |
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
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