forked from jdsandifer/AutoLISP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPostPlacementSetup.dcl
66 lines (51 loc) · 1.75 KB
/
PostPlacementSetup.dcl
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
PostPlacementSetup : dialog { //dialog name
label = "Post Placement Setup" ; //label (visible to user)
: row { //define row
:boxed_radio_column { //define radio column
label = "Mounting Type" ; //label
: radio_button { //define radion button
key = "surface" ; //name
label = "&Surface" ; //label
value = "1" ; //switch it on
} //end definition
: radio_button {
key = "fascia" ;
label = "&Fascia" ;
}
: radio_button {
key = "stanchion" ;
label = "S&tanchion" ;
}
: radio_button {
key = "core" ;
label = "&Core" ;
}
}
:column {
:boxed_radio_column {
label = "Post Layer" ;
: radio_button {
key = "detail" ;
label = "\"&Detail\"" ;
value = "1" ;
}
: radio_button {
key = "hral-post" ;
label = "\"A-HRAL-POST\"" ;
}
}
:boxed_radio_column {
label = "Draw Cables/Tags" ;
: radio_button {
key = "cable" ;
label = "&Yes" ;
value = "1" ;
}
: radio_button {
key = "noCable" ;
label = "&No" ;
}
}}
}
ok_cancel ; //predifined OK/Cancel
}