aboutsummaryrefslogtreecommitdiff
path: root/pd/src/u_main.tk
blob: a19b09515921794d78575a0c1cc9ab572069128e (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
set pd_nt 0
# (The above is 0 for unix, 1 for microsoft, and 2 for Mac OSX.  The first
# line is automatically munged by the relevant makefiles.)

# Copyright (c) 1997-1999 Miller Puckette.
# For information on usage and redistribution, and for a DISCLAIMER OF ALL
# WARRANTIES, see the file, "LICENSE.txt," in this distribution.

# changed by Thomas Musil 09.2001
# between "pdtk_graph_dialog -- dialog window for graphs"
# and "pdtk_array_dialog -- dialog window for arrays"
# a new dialogbox was inserted, named:
# "pdtk_iemgui_dialog -- dialog window for iem guis"
#
# there are 2 new features: 1.) line-delete-protection in edit-menue
#
# 2.) there are all iem-guis in a seperated put-gui-menue
#
# all this changes are labeled with #######iemlib##########

if {$pd_nt == 1} {
    global pd_guidir
    set pd_gui2 [string range $argv0 0 [expr [string last \\ $argv0 ] - 1]]
    regsub -all \\\\ $pd_gui2 / pd_gui3
    set pd_guidir $pd_gui3/..
    load $pd_guidir/bin/pdtcl
}

if {$pd_nt == 2} {
    global pd_guidir
    set pd_gui2 [string range $argv0 0 [expr [string last / $argv0 ] - 1]]
    set pd_guidir $pd_gui2/..
    load $pd_guidir/bin/pdtcl
}

# it's unfortunate but we seem to have to turn off global bindings
# for Text objects to get control-s and control-t to do what we want for
# "text" dialogs below.  Also we have to get rid of tab's changing the focus.

bind all <Key-Tab> ""
bind all <Shift-Key-Tab> ""
bind Text <Control-t> {}
bind Text <Control-s> {}
# puts stderr [bind all]

################## set up main window #########################
frame .mbar -relief raised -bd 2
canvas .dummy -height 1c -width 1c
frame .controls
pack .mbar .controls .dummy -side top -fill x
menubutton .mbar.file -text File -menu .mbar.file.menu
menubutton .mbar.find -text Find -menu .mbar.find.menu
menubutton .mbar.windows -text Windows -menu .mbar.windows.menu
menubutton .mbar.audio -text Audio -menu .mbar.audio.menu
menubutton .mbar.help -text Help -menu .mbar.help.menu
pack .mbar.file .mbar.find .mbar.windows .mbar.audio -side left 
pack .mbar.help -side right
menu .mbar.file.menu
menu .mbar.find.menu
menu .mbar.windows.menu -postcommand [concat pdtk_fixwindowmenu]
menu .mbar.audio.menu
menu .mbar.help.menu

set ctrls_audio_on 0
set ctrls_meter_on 0
set ctrls_inlevel 0
set ctrls_outlevel 0

frame .controls.switches
checkbutton .controls.switches.audiobutton -text {compute audio} \
    -variable ctrls_audio_on \
    -anchor w \
    -command {pd [concat pd dsp $ctrls_audio_on \;]}

checkbutton .controls.switches.meterbutton -text {peak meters} \
    -variable ctrls_meter_on \
    -anchor w \
    -command {pd [concat pd meters $ctrls_meter_on \;]}

pack .controls.switches.meterbutton .controls.switches.audiobutton -side left

frame .controls.in
label .controls.in.label -text IN
entry .controls.in.level -textvariable ctrls_inlevel -width 3
button .controls.in.clip -text {CLIP} -state disabled
pack .controls.in.label .controls.in.level .controls.in.clip -side top

frame .controls.out
label .controls.out.label -text OUT
entry .controls.out.level -textvariable ctrls_outlevel -width 3
button .controls.out.clip -text {CLIP} -state disabled
pack .controls.out.label .controls.out.level .controls.out.clip -side top

button .controls.dio -text "DIO\nerrors" \
    -command {pd [concat pd audiostatus \;]}

pack .controls.switches -side bottom
pack .controls.in .controls.out -side left
pack .controls.dio -side right

bind . <Control-Key> {pdtk_pd_ctrlkey %W %K 0}
bind . <Control-Shift-Key> {pdtk_pd_ctrlkey %W %K 1}


############### set up global variables ################################

set untitled_number 1
set untitled_directory [pwd]
set saveas_client doggy
set pd_opendir $untitled_directory
############iemlib##################
# need it to know, if new or open file
set iem_new_open_flag "open"
############iemlib##################

################ utility functions #########################

proc pdtk_enquote {x} {
    set foo [string map {"," "" ";" "" \" ""} $x]
    set foo2 [string map {" " "\\ "} $foo]
    concat $foo2
}

proc pdtk_debug {x} {
    tk_messageBox -message $x -type ok
}

proc pdtk_watchdog {} {
    pd [concat pd ping \;]
    after 2000 {pdtk_watchdog}
}

proc pdtk_check {x message} {
    set answer [tk_messageBox \-message $x \-type yesno \-icon question]
    switch $answer {
    	yes {pd $message} }
#    	no {tk_messageBox \-message "cancelled" \-type ok}
}

set menu_windowlist {} 

proc pdtk_fixwindowmenu {} {
    global menu_windowlist
    .mbar.windows.menu delete 0 end
    foreach i $menu_windowlist {
	.mbar.windows.menu add command -label [lindex $i 0] \
	    -command [concat menu_domenuwindow [lindex $i 1]]
    }
}

###############  the "New" menu command  ########################
proc menu_new {} {
    global untitled_number
    global untitled_directory
############iemlib##################
    global iem_new_open_flag
    
    set iem_new_open_flag "new"
############iemlib##################
    pd [concat pd filename Untitled-$untitled_number $untitled_directory \;]
    pd {
    	#N canvas;
    	#X pop 1;
    }
    set untitled_number [expr $untitled_number + 1]
}

################## the "Open" menu command #########################

proc menu_open {} {
    global pd_opendir
    global pd_nt
############iemlib##################
    global iem_new_open_flag
    
    set iem_new_open_flag "open"
############iemlib##################

# workaround -- initialdir doesn't work on MACOSX yet ---
    if {$pd_nt == 2} {
	cd $pd_opendir
    	set filename [tk_getOpenFile -defaultextension .pd \
    	    -filetypes { {{pd files} {.pd}} {{max files} {.pat}}} ]
    } else {
    	set filename [tk_getOpenFile -defaultextension .pd \
    	    -filetypes { {{pd files} {.pd}} {{max files} {.pat}}} \
            -initialdir $pd_opendir]
    }
#    puts stderr $filename
    if {$filename != ""} {
    	set directory [string range $filename 0 \
    	    [expr [string last / $filename ] - 1]]
    	set pd_opendir $directory
    	set basename [string range $filename \
    	    [expr [string last / $filename ] + 1] end]

#    	 pd_debug [concat file $filename base $basename dir $directory]

    	pd [concat pd open [pdtk_enquote $basename] \
		[pdtk_enquote $directory]\;]
    }
}

################## the "Message" menu command #########################
proc menu_send {} {
    toplevel .sendpanel
    entry .sendpanel.entry -textvariable send_textvariable
    pack .sendpanel.entry -side bottom -fill both -ipadx 100
    .sendpanel.entry select from 0
    .sendpanel.entry select adjust end
    bind .sendpanel.entry <KeyPress-Return> {
    	pd [concat $send_textvariable \;]
    	after 50 {destroy .sendpanel}
    }
    focus .sendpanel.entry
}

################## the "Quit" menu command #########################
proc menu_really_quit {} {pd {pd quit;}}

proc menu_quit {} {pdtk_check {Really quit?} {pd quit;}}

######### the "Pd" menu command, which puts the Pd window on top ########
proc menu_pop_pd {} {raise .}

######### the "audio" menu command  ###############
proc menu_audio {flag} {pd [concat pd dsp $flag \;]}

######### the "documentation" menu command  ###############

set doc_number 1

proc menu_opentext {filename} {
    global doc_number
    global pd_guidir
    global pd_myversion
    set name [format ".help%d" $doc_number]
    toplevel $name
    text $name.text -relief raised -bd 2 -font -*-courier-bold--normal--12-* \
    	-yscrollcommand "$name.scroll set" -background white
    scrollbar $name.scroll -command "$name.text yview"
    pack $name.scroll -side right -fill y
    pack $name.text -side left -fill both -expand 1
    
    set f [open $filename]
    while {![eof $f]} {
    	set bigstring [read $f 1000]
	regsub -all PD_BASEDIR $bigstring $pd_guidir bigstring2
    	regsub -all PD_VERSION $bigstring2 $pd_myversion bigstring3
    	$name.text insert end $bigstring3
    }
    close $f
    set doc_number [expr $doc_number + 1] 
}

set help_directory $pd_guidir/doc

proc menu_documentation {} {
    global help_directory
    global pd_nt
############iemlib##################
    global iem_new_open_flag
    
    set iem_new_open_flag "open"
############iemlib##################
 
    if {$pd_nt == 2} {
	cd $help_directory
	set filename [tk_getOpenFile -defaultextension .pd \
    	-filetypes { {{documentation} {.pd .txt .htm}} } ]
    }  else {
	set filename [tk_getOpenFile -defaultextension .pd \
    	-filetypes { {{documentation} {.pd .txt .htm}} } \
    	-initialdir $help_directory]
    }

    if {$filename != ""} {
    	if {[string first .txt $filename] >= 0} {
    	    menu_opentext $filename
    	} elseif {[string first .htm $filename] >= 0} {
	    if {$pd_nt == 0} {
#I wish I could get this to run in the background; the "&" doesn't do it:
	    	exec sh -c \
		    [format "mozilla file:%s || netscape file:%s &\n" \
		    	 $filename $filename]
	    } else {
	    tk_messageBox -message \
	    	{sorry -- can't open htm files yet; open this manually} \
		 -type ok 
    	    }
	} else {
	    set help_directory [string range $filename 0 \
    		[expr [string last / $filename ] - 1]]
    	    set basename [string range $filename \
    		[expr [string last / $filename ] + 1] end]
    	    pd [concat pd open [pdtk_enquote $basename] \
		 [pdtk_enquote $help_directory] \;]
    	}
    }
}

proc menu_doc_open {subdir basename} {
    global pd_guidir
############iemlib##################
    global iem_new_open_flag
    
    set iem_new_open_flag "open"
############iemlib##################
 
    set dirname $pd_guidir/$subdir

    if {[string first .txt $basename] >= 0} {
    	menu_opentext $dirname/$basename
    } else {
    	pd [concat pd open [pdtk_enquote $basename] \
		[pdtk_enquote $dirname] \;]
    }
}

#################### the "File" menu for the Pd window ##############
.mbar.file.menu add command -label New -command {menu_new} \
    -accelerator "Ctrl+n"
.mbar.file.menu add command -label Open -command {menu_open} \
    -accelerator "Ctrl+o"
.mbar.file.menu add command -label Message -command {menu_send} \
    -accelerator "Ctrl+m"
.mbar.file.menu add  separator
.mbar.file.menu add command -label Quit -command {menu_quit} \
    -accelerator "Ctrl+q"

#################### the "Find" menu for the Pd window ##############
.mbar.find.menu add command -label {last error?} -command {menu_finderror} 

#################### the "Audio" menu for the Pd window ##############
.mbar.audio.menu add command -label On -accelerator "Ctrl+/" \
    -command {menu_audio 1} 
.mbar.audio.menu add command -label Off -accelerator "Ctrl+." \
    -command {menu_audio 0} 

#################### the "Help" menu for the Pd window ##############
.mbar.help.menu add command -label {About Pd} \
    -command {menu_doc_open doc/1.manual 1.introduction.txt} 
.mbar.help.menu add command -label {Test Audio and MIDI} \
    -command {menu_doc_open doc/7.stuff/tools testtone.pd} 
.mbar.help.menu add command -label {Load Meter} \
    -command {menu_doc_open doc/7.stuff/tools load-meter.pd} 
.mbar.help.menu add command -label {Pure Documentation...} \
    -command {menu_documentation} 

###########  functions for menu functions on document windows ########

proc menu_save {name} {
    pdtk_canvas_checkgeometry $name
    pd [concat $name menusave \;]
}

proc menu_saveas {name} {
    pdtk_canvas_checkgeometry $name
    pd [concat $name menusaveas \;]
}

proc menu_print {name} {
    $name.c postscript -file x.ps
}

proc menu_close {name} {
    pd [concat $name menuclose \;]
}

proc menu_cut {name} {
    pd [concat $name cut \;]
}

proc menu_copy {name} {
    pd [concat $name copy \;]
}

proc menu_paste {name} {
    pd [concat $name paste \;]
}

proc menu_duplicate {name} {
    pd [concat $name duplicate \;]
}

proc menu_selectall {name} {
    pd [concat $name selectall \;]
}

proc menu_texteditor {name} {
    pd [concat $name texteditor \;]
}

proc menu_font {name} {
    pd [concat $name menufont \;]
}

proc menu_tidyup {name} {
    pd [concat $name tidy \;]
}

proc menu_editmode {name} {
    pd [concat $name editmode 0 \;]
}

proc menu_object {name accel} {
    pd [concat $name obj $accel \;]
}

proc menu_message {name accel} {
    pd [concat $name msg $accel \;]
}

proc menu_floatatom {name accel} {
    pd [concat $name floatatom $accel \;]
}

proc menu_symbolatom {name accel} {
    pd [concat $name symbolatom $accel \;]
}

proc menu_comment {name accel} {
    pd [concat $name text $accel \;]
}

proc menu_graph {name} {
    pd [concat $name graph \;]
}

proc menu_array {name} {
    pd [concat $name menuarray \;]
}

############iemlib##################
proc menu_bng {name accel} {
    pd [concat $name bng $accel \;]
}

proc menu_toggle {name accel} {
    pd [concat $name toggle $accel \;]
}

proc menu_numbox {name accel} {
    pd [concat $name numbox $accel \;]
}

proc menu_vslider {name accel} {
    pd [concat $name vslider $accel \;]
}

proc menu_hslider {name accel} {
    pd [concat $name hslider $accel \;]
}

proc menu_hdial {name accel} {
    pd [concat $name hdial $accel \;]
}

proc menu_vdial {name accel} {
    pd [concat $name vdial $accel \;]
}

proc menu_vumeter {name accel} {
    pd [concat $name vumeter $accel \;]
}

proc menu_mycnv {name accel} {
    pd [concat $name mycnv $accel \;]
}

proc menu_protectmode {name} {
    pd [concat $name protectmode 0 \;]
}

############iemlib##################

proc menu_windowparent {name} {
    pd [concat $name findparent \;]
}

proc menu_findagain {name} {
    pd [concat $name findagain \;]
}

proc menu_finderror {} {
    pd [concat pd finderror \;]
}

proc menu_domenuwindow {i} {
    raise $i
}

proc menu_fixwindowmenu {name} {
    global menu_windowlist
    $name.m.windows.m add command
    $name.m.windows.m delete 4 end
    foreach i $menu_windowlist {
	$name.m.windows.m add command -label [lindex $i 0] \
	    -command [concat menu_domenuwindow [lindex $i 1]]
    }
}

################## the "find" menu item ###################

set find_canvas nobody
set find_string ""
set find_count 1

proc find_apply {name} {
    global find_string
    global find_canvas
    regsub -all \; $find_string " _semi_ " find_string2
    regsub -all \, $find_string2 " _comma_ " find_string3
#    puts stderr [concat $find_canvas find $find_string3 \
#	\;]
    pd [concat $find_canvas find $find_string3 \
	\;]
    after 50 destroy $name
}

proc find_cancel {name} {
    after 50 destroy $name
}

proc menu_findobject {canvas} {
    global find_string
    global find_canvas
    global find_count
    
    set name [format ".find%d" $find_count]
    set find_count [expr $find_count + 1]

    set find_canvas $canvas
    
    toplevel $name

    label $name.label -text {find...}
    pack $name.label -side top

    entry $name.entry -textvariable find_string
    pack $name.entry -side top

    frame $name.buttonframe
    pack $name.buttonframe -side bottom -fill x -pady 2m
    button $name.buttonframe.cancel -text {Cancel}\
    	-command "find_cancel $name"
    button $name.buttonframe.ok -text {OK}\
    	-command "find_apply $name"
    pack $name.buttonframe.cancel -side left -expand 1
    pack $name.buttonframe.ok -side left -expand 1
    
    $name.entry select from 0
    $name.entry select adjust end
    bind $name.entry <KeyPress-Return> [ concat find_apply $name]
    focus $name.entry
}


############# pdtk_canvas_new -- create a new canvas ###############
proc pdtk_canvas_new {name width height geometry} {
    global pd_opendir
    global iem_new_open_flag
    
    toplevel $name
    frame $name.m -relief raised -bd 2
#    puts stderr [concat geometry: $geometry]
    wm geometry $name $geometry
    canvas $name.c -width $width -height $height -background white \
    	-yscrollcommand "$name.scrollvert set" \
    	-xscrollcommand "$name.scrollhort set" \
	-scrollregion [concat 0 0 $width $height] 

    scrollbar $name.scrollvert -command "$name.c yview"
    scrollbar $name.scrollhort -command "$name.c xview" \
    	-orient horizontal

    pack $name.m -side top -fill x
    pack $name.scrollhort -side bottom -fill x
    pack $name.scrollvert -side right -fill y
    pack $name.c -side left -expand 1 -fill both
    wm minsize $name 1 1
    wm geometry $name $geometry
    
# the file menu

    menubutton $name.m.file -text File -menu $name.m.file.m
    pack $name.m.file -side left
    menu $name.m.file.m

    $name.m.file.m add command -label New -command {menu_new} \
	-accelerator "Ctrl+n"

    $name.m.file.m add command -label Open -command {menu_open} \
	-accelerator "Ctrl+o"

    $name.m.file.m add command -label Message -command {menu_send} \
	-accelerator "Ctrl+m"

    $name.m.file.m add  separator
    $name.m.file.m add command -label Save -command [concat menu_save $name] \
	-accelerator "Ctrl+s"

    $name.m.file.m add command -label Close \
    	-command [concat menu_close $name] \
	-accelerator "Ctrl+w"

    $name.m.file.m add command -label "Save as..." \
    	-command [concat menu_saveas $name] \
	-accelerator "Ctrl+S"

    $name.m.file.m add command -label Print -command [concat menu_print $name] \
	-accelerator "Ctrl+p"

    $name.m.file.m add separator

    $name.m.file.m add command -label Quit -command {menu_quit} \
	-accelerator "Ctrl+q"

# the edit menu
    menubutton $name.m.edit -text Edit -menu $name.m.edit.m
    pack $name.m.edit -side left
    menu $name.m.edit.m
    

    $name.m.edit.m add command -label Cut -command [concat menu_cut $name] \
	-accelerator "Ctrl+x"

    $name.m.edit.m add command -label Copy -command [concat menu_copy $name] \
	-accelerator "Ctrl+c"

    $name.m.edit.m add command -label Paste \
    	-command [concat menu_paste $name] \
	-accelerator "Ctrl+v"

    $name.m.edit.m add command -label Duplicate \
    	-command [concat menu_duplicate $name] \
	-accelerator "Ctrl+d"

    $name.m.edit.m add command -label {Select all} \
    	-command [concat menu_selectall $name] \
	-accelerator "Ctrl+a"

    $name.m.edit.m add command -label {Text Editor} \
    	-command [concat menu_texteditor $name] \
	-accelerator "Ctrl+t"

    $name.m.edit.m add command -label Font \
    	-command [concat menu_font $name] 

    $name.m.edit.m add command -label {Tidy Up} \
    	-command [concat menu_tidyup $name]

    $name.m.edit.m add separator
    
############iemlib##################
# instead of "red = #BC3C60" we take "grey85", so there is no difference,
# if widget is selected or not.

    $name.m.edit.m add checkbutton -label "Edit mode" \
    	-indicatoron true -selectcolor grey85 \
    	-command [concat menu_editmode $name] \
	-accelerator "Ctrl+e"	



    $name.m.edit.m add checkbutton -label "Protect" \
    	-indicatoron true -selectcolor grey85 \
       	-command [concat menu_protectmode $name] \
	-accelerator "Ctrl+r"

    if { $iem_new_open_flag == "open" } {
            $name.m.edit.m entryconfigure "Edit mode" -indicatoron false }
    $name.m.edit.m entryconfigure "Protect" -indicatoron false
	
############iemlib##################

# the put menu
    menubutton $name.m.put -text Put -menu $name.m.put.m
    pack $name.m.put -side left
    menu $name.m.put.m

    $name.m.put.m add command -label Object \
    	-command [concat menu_object $name 0] \
	-accelerator "Ctrl+1"

    $name.m.put.m add command -label Message \
    	-command [concat menu_message $name 0] \
	-accelerator "Ctrl+2"

    $name.m.put.m add command -label Number \
    	-command [concat menu_floatatom $name 0] \
	-accelerator "Ctrl+3"

    $name.m.put.m add command -label Symbol \
    	-command [concat menu_symbolatom $name 0] \
	-accelerator "Ctrl+4"

    $name.m.put.m add command -label Comment \
    	-command [concat menu_comment $name 0] \
	-accelerator "Ctrl+5"
	
############iemlib##################

    $name.m.put.m add command -label Bang \
    	-command [concat menu_bng $name 0] \
	-accelerator "Alt+b"
    
    $name.m.put.m add command -label Toggle \
    	-command [concat menu_toggle $name 0] \
	-accelerator "Alt+t"
    
    $name.m.put.m add command -label Number2 \
    	-command [concat menu_numbox $name 0] \
	-accelerator "Alt+n"
    
    $name.m.put.m add command -label Vslider \
    	-command [concat menu_vslider $name 0] \
	-accelerator "Alt+v"
    
    $name.m.put.m add command -label Hslider \
    	-command [concat menu_hslider $name 0] \
	-accelerator "Alt+h"
    
    $name.m.put.m add command -label Vdial \
    	-command [concat menu_vdial $name 0] \
	-accelerator "Alt+d"
    
    $name.m.put.m add command -label Hdial \
    	-command [concat menu_hdial $name 0] \
	-accelerator "Alt+i"
    
    $name.m.put.m add command -label VU \
    	-command [concat menu_vumeter $name 0] \
	-accelerator "Alt+u"
    
    $name.m.put.m add command -label Canvas \
    	-command [concat menu_mycnv $name 0] \
	-accelerator "Alt+c"

############iemlib##################
    
    $name.m.put.m add command -label Graph \
    	-command [concat menu_graph $name] 

    $name.m.put.m add command -label Array \
    	-command [concat menu_array $name] 



# the find menu
    menubutton $name.m.find -text Find -menu $name.m.find.m
    pack $name.m.find -side left
    menu $name.m.find.m
    $name.m.find.m add command -label {Find...} -accelerator "Ctrl+f" \
    	-command [concat menu_findobject $name] 
    $name.m.find.m add command -label {Find Again} -accelerator "Ctrl+g" \
    	-command [concat menu_findagain $name] 
    $name.m.find.m add command -label {Find last error} \
    	-command [concat menu_finderror] 
    
# the window menu
    menubutton $name.m.windows -text Windows -menu $name.m.windows.m
    pack $name.m.windows -side left
    menu $name.m.windows.m -postcommand [concat menu_fixwindowmenu $name]
    $name.m.windows.m add command -label {parent window}\
    	-command [concat menu_windowparent $name] 
    $name.m.windows.m add command -label {Pd window} -command menu_pop_pd
    $name.m.windows.m add separator

# the audio menu
    menubutton $name.m.audio -text Audio -menu $name.m.audio.m
    pack $name.m.audio -side left
    menu $name.m.audio.m
    $name.m.audio.m add command -label On -accelerator "Ctrl+/" \
	-command {menu_audio 1} 
    $name.m.audio.m add command -label Off -accelerator "Ctrl+." \
	-command {menu_audio 0} 

# the help menu
    menubutton $name.m.help -text Help -menu $name.m.help.m
    pack $name.m.help -side right
    menu $name.m.help.m
    $name.m.help.m add command -label {Getting Started} \
	-command {menu_doc_open doc/1.manual 1.introduction.txt} 
    $name.m.help.m add command -label {Test Audio and MIDI} \
	-command {menu_doc_open doc/7.stuff/tools testtone.pd} 
    $name.m.help.m add command -label {Load Meter} \
	-command {menu_doc_open doc/7.stuff/tools load-meter.pd} 
    $name.m.help.m add command -label {Pure Documentation} \
	-command {menu_documentation} 

# the popup menu
    menu $name.popup -tearoff false
    $name.popup add command -label {Properties} \
	-command [concat popup_action $name 0] 
    $name.popup add command -label {Open} \
	-command [concat popup_action $name 1] 
    $name.popup add command -label {Help} \
	-command [concat popup_action $name 2] 

# WM protocol
    wm protocol $name WM_DELETE_WINDOW [concat menu_close $name]

# bindings.
# this is idiotic -- how do you just sense what mod keys are down and
# pass them on? I can't find it anywhere.
# Here we encode shift as 1, control 2, alt 4, in agreement
# with definitions in g_canvas.c.  The third button gets "8" but we don't
# bother with modifiers there.
# We don't handle multiple clicks yet.

    bind $name.c <Button> {pdtk_canvas_click %W %x %y %b 0}
    bind $name.c <Shift-Button> {pdtk_canvas_click %W %x %y %b 1}
    bind $name.c <Control-Button> {pdtk_canvas_click %W %x %y %b 2}
    bind $name.c <Control-Shift-Button> {pdtk_canvas_click %W %x %y %b 3}
    bind $name.c <Alt-Button> {pdtk_canvas_click %W %x %y %b 4}
    bind $name.c <Alt-Shift-Button> {pdtk_canvas_click %W %x %y %b 5}
    bind $name.c <Alt-Control-Button> {pdtk_canvas_click %W %x %y %b 6}
    bind $name.c <Alt-Control-Shift-Button> {pdtk_canvas_click %W %x %y %b 7}
    bind $name.c <Button-3> {pdtk_canvas_click %W %x %y %b 8}

    bind $name.c <ButtonRelease> {pdtk_canvas_mouseup %W %x %y %b}
    bind $name.c <Control-Key> {pdtk_canvas_ctrlkey %W %K 0}
    bind $name.c <Control-Shift-Key> {pdtk_canvas_ctrlkey %W %K 1}
    bind $name.c <Alt-Key> {pdtk_canvas_altkey %W %K %A}
#    bind $name.c <Mod1-Key> {puts stderr [concat mod1 %W %K %A]}
    bind $name.c <Key> {pdtk_canvas_key %W %K %A}
    bind $name.c <KeyRelease> {pdtk_canvas_keyup %W %K %A}
    bind $name.c <Motion> {pdtk_canvas_motion %W %x %y 0}
    bind $name.c <Alt-Motion> {pdtk_canvas_motion %W %x %y 4}
    bind $name.c <Map> {pdtk_canvas_map %W %s}
#    bind $name.c <Unmap> {puts stderr map}
    focus $name.c
#    puts stderr "all done"
#   after 1 [concat raise $name]
}

#################### event binding procedures ################

#get the name of the toplevel window for a canvas; this is also
#the name of the canvas object in Pd.

proc canvastosym {name} {
    string range $name 0 [expr [string length $name] - 3]
}

set pdtk_lastcanvasconfigured ""
set pdtk_lastcanvasconfiguration ""

proc pdtk_canvas_checkgeometry {topname} {
    set boo [winfo geometry $topname.c]
    set boo2 [wm geometry $topname]
    global pdtk_lastcanvasconfigured
    global pdtk_lastcanvasconfiguration
    if {$topname != $pdtk_lastcanvasconfigured || \
    	$boo != $pdtk_lastcanvasconfiguration} {
    	    set pdtk_lastcanvasconfigured $topname
    	    set pdtk_lastcanvasconfiguration $boo
    	    pd $topname relocate $boo $boo2 \;
    }
}

proc pdtk_canvas_click {name x y b f} {
#    puts stderr [concat got $f]
    pd [canvastosym $name] mouse [$name canvasx $x] [$name canvasy $y] $b $f \;
}

proc pdtk_canvas_shiftclick {name x y b} {
    pd [canvastosym $name] mouse [$name canvasx $x] [$name canvasy $y] $b 1 \;
}

proc pdtk_canvas_ctrlclick {name x y b} {
    pd [canvastosym $name] mouse [$name canvasx $x] [$name canvasy $y] $b 2 \;
}

proc pdtk_canvas_altclick {name x y b} {
    pd [canvastosym $name] mouse [$name canvasx $x] [$name canvasy $y] $b 3 \;
}

proc pdtk_canvas_dblclick {name x y b} {
    pd [canvastosym $name] mouse [$name canvasx $x] [$name canvasy $y] $b 4 \;
}

set pdtk_canvas_mouseup_name 0
set pdtk_canvas_mouseup_xminval 0
set pdtk_canvas_mouseup_xmaxval 0
set pdtk_canvas_mouseup_yminval 0
set pdtk_canvas_mouseup_ymaxval 0

proc pdtk_canvas_mouseup {name x y b} {
    pd [concat [canvastosym $name] mouseup [$name canvasx $x] \
    	[$name canvasy $y] $b \;]

# we use the mouseup event to update scrollbar ranges and recheck the
# geometry of the window since I haven't taken the time to figure out
# how to do it right.

    global pdtk_canvas_mouseup_name
    global pdtk_canvas_mouseup_xminval
    global pdtk_canvas_mouseup_xmaxval
    global pdtk_canvas_mouseup_yminval
    global pdtk_canvas_mouseup_ymaxval

    set size [$name bbox all]
    if {$size != ""} {
    	set xminval 0
    	set yminval 0
    	set xmaxval 100
    	set ymaxval 100
    	set x1 [lindex $size 0]
    	set x2 [lindex $size 2]
    	set y1 [lindex $size 1]
    	set y2 [lindex $size 3]
    	
    	if {$x1 < 0} {set xminval $x1}
    	if {$y1 < 0} {set yminval $y1}

    	if {$x2 > 100} {set xmaxval $x2}
    	if {$y2 > 100} {set ymaxval $y2}
    	
    	if {$pdtk_canvas_mouseup_name != $name || \
    	    $pdtk_canvas_mouseup_xminval != $xminval || \
    	    $pdtk_canvas_mouseup_xmaxval != $xmaxval || \
    	    $pdtk_canvas_mouseup_yminval != $yminval || \
    	    $pdtk_canvas_mouseup_ymaxval != $ymaxval } {
    	    
	    	set newsize "$xminval $yminval $xmaxval $ymaxval"
	    	$name configure -scrollregion $newsize
	    	set pdtk_canvas_mouseup_name $name
	    	set pdtk_canvas_mouseup_xminval $xminval
	    	set pdtk_canvas_mouseup_xmaxval $xmaxval
	    	set pdtk_canvas_mouseup_yminval $yminval
	    	set pdtk_canvas_mouseup_ymaxval $ymaxval
    	}

    }
    pdtk_canvas_checkgeometry [canvastosym $name]
}

proc pdtk_canvas_key {name key iso} {
#    puts stderr [concat down key= $key iso= $iso]
#    .controls.switches.meterbutton configure -text $key
#  HACK for MAC OSX -- backspace seems different; I don't understand why.
#  invesigate this LATER...
    global pd_nt
    if {$pd_nt == 2} {
	if {$key == "BackSpace"} {
	    set key 8
	    set keynum 8
	}
	if {$key == "Delete"} {
	    set key 8
	    set keynum 8
	}
    }
    if {$iso != ""} {
    	scan $iso %c keynum 
    	pd [canvastosym $name] key 1 $keynum \;
    } else {
    	pd [canvastosym $name] key 1 $key \;
    }
}

proc pdtk_canvas_keyup {name key iso} {
#    puts stderr [concat up key= $key iso= $iso]
    if {$iso != ""} {
    	scan $iso %c keynum 
    	pd [canvastosym $name] key 0 $keynum \;
    } else {
    	pd [canvastosym $name] key 0 $key \;
    }
}

proc pdtk_canvas_altkey {name key iso} {
#   puts stderr [concat alt-key $iso]
############iemlib##################
    set topname [string trimright $name .c]
    if {$key == "b" || $key == "B"} {menu_bng $topname 1}
    if {$key == "t" || $key == "T"} {menu_toggle $topname 1}
    if {$key == "n" || $key == "N"} {menu_numbox $topname 1}
    if {$key == "v" || $key == "V"} {menu_vslider $topname 1}
    if {$key == "h" || $key == "H"} {menu_hslider $topname 1}
    if {$key == "i" || $key == "I"} {menu_hdial $topname 1}
    if {$key == "d" || $key == "D"} {menu_vdial $topname 1}
    if {$key == "u" || $key == "U"} {menu_vumeter $topname 1}
    if {$key == "c" || $key == "C"} {menu_mycnv $topname 1}
############iemlib##################
}

proc pdtk_canvas_ctrlkey {name key shift} {
# first get rid of ".c" suffix; we'll refer to the toplevel instead
    set topname [string trimright $name .c]
#   puts stderr [concat ctrl-key $key $topname]

    if {$key == "n" || $key == "N"} {menu_new}
    if {$key == "o" || $key == "O"} {menu_open}
    if {$key == "m" || $key == "M"} {menu_send}
    if {$key == "q" || $key == "Q"}  {
     	if {$shift == 1} {menu_really_quit} else {menu_quit}
    }
    if {$key == "s" || $key == "S"} {
      	if {$shift == 1} {menu_saveas $topname} else {menu_save $topname}
    }
    if {$key == "w" || $key == "W"} {menu_close $topname}
    if {$key == "p" || $key == "P"} {menu_print $topname}
    if {$key == "x" || $key == "X"} {menu_cut $topname}
    if {$key == "c" || $key == "C"} {menu_copy $topname}
    if {$key == "v" || $key == "V"} {menu_paste $topname}
    if {$key == "d" || $key == "D"} {menu_duplicate $topname}
    if {$key == "a" || $key == "A"} {menu_selectall $topname}
    if {$key == "t" || $key == "T"} {menu_texteditor $topname}
    if {$key == "f" || $key == "F"} {menu_findobject $topname}
    if {$key == "g" || $key == "G"} {menu_findagain $topname}
    if {$key == "1"} {menu_object $topname 1}
    if {$key == "2"} {menu_message $topname 1}
    if {$key == "3"} {menu_floatatom $topname 1}
    if {$key == "4"} {menu_symbolatom $topname 1}
    if {$key == "5"} {menu_comment $topname 1}
    if {$key == "slash"} {menu_audio 1}
    if {$key == "period"} {menu_audio 0}
    if {$key == "e" || $key == "E"} {menu_editmode $topname}
############iemlib##################
    if {$key == "r" || $key == "R"} {menu_protectmode $topname}
############iemlib##################
}

proc pdtk_canvas_motion {name x y mods} {
#    puts stderr [concat [canvastosym $name] $name $x $y]
    pd [canvastosym $name] motion [$name canvasx $x] [$name canvasy $y] $mods \;
}

# "map" event tells us when the canvas becomes visible (arg is "0") or
# invisible (arg is "").  Invisibility means the Window Manager has minimized
# us.  We don't get a final "unmap" event when we destroy the window.
proc pdtk_canvas_map {name arg} {
    if {$arg == "0"} {
    	pd [canvastosym $name] map 1 \;
    } else {
    	pd [canvastosym $name] map 0 \;
    }
}

set saveas_dir nowhere

############ pdtk_canvas_saveas -- run a saveas dialog ##############

proc pdtk_canvas_saveas {name initfile initdir} {
   global pd_nt
   if {$pd_nt == 2} {
        cd $initdir
        set filename [tk_getSaveFile -initialfile $initfile \
        -defaultextension .pd \
            -filetypes { {{pd files} {.pd}} {{max files} {.pat}} }]
    } else {
        set filename [tk_getSaveFile -initialfile $initfile \
	   -initialdir $initdir  -defaultextension .pd \
            -filetypes { {{pd files} {.pd}} {{max files} {.pat}} }]
    }
    if {$filename != ""} {
    	set directory [string range $filename 0 \
    	    [expr [string last / $filename ] - 1]]
    	set basename [string range $filename \
    	    [expr [string last / $filename ] + 1] end]
    	pd [concat $name savetofile [pdtk_enquote $basename] \
	     [pdtk_enquote $directory] \;]
#    	pd [concat $name savetofile $basename $directory \;]
    }
}

############ pdtk_canvas_dofont -- run a font and resize dialog #########

set fontsize 0
set stretchval 0
set whichstretch 0

proc dofont_apply {name} {
    global fontsize
    global stretchval
    global whichstretch
    set cmd [concat $name font $fontsize $stretchval $whichstretch \;]
#    puts stderr $cmd
    pd $cmd
}

proc dofont_cancel {name} {
    set cmd [concat $name cancel \;]
#    puts stderr $cmd
    pd $cmd
}

proc pdtk_canvas_dofont {name initsize} {
    
    global fontsize
    set fontsize $initsize
    
    global stretchval
    set stretchval 100
    
    global whichstretch
    set whichstretch 1
    
    toplevel $name
    wm title $name  {FONT BOMB}
    wm protocol $name WM_DELETE_WINDOW [concat dofont_cancel $name]

    frame $name.buttonframe
    pack $name.buttonframe -side bottom -fill x -pady 2m
    button $name.buttonframe.cancel -text {Cancel}\
    	-command "dofont_cancel $name"
    button $name.buttonframe.ok -text {Do it}\
    	-command "dofont_apply $name"
    pack $name.buttonframe.cancel -side left -expand 1
    pack $name.buttonframe.ok -side left -expand 1
    
    frame $name.radiof
    pack $name.radiof -side left
    
    label $name.radiof.label -text {Font Size:}
    pack $name.radiof.label -side top

    radiobutton $name.radiof.radio8 -value 8 -variable fontsize -text "8"
    radiobutton $name.radiof.radio10 -value 10 -variable fontsize -text "10"
    radiobutton $name.radiof.radio12 -value 12 -variable fontsize -text "12"
    radiobutton $name.radiof.radio16 -value 16 -variable fontsize -text "16"
    radiobutton $name.radiof.radio24 -value 24 -variable fontsize -text "24"
    radiobutton $name.radiof.radio36 -value 36 -variable fontsize -text "36"
    pack $name.radiof.radio8 -side top -anchor w
    pack $name.radiof.radio10 -side top -anchor w
    pack $name.radiof.radio12 -side top -anchor w
    pack $name.radiof.radio16 -side top -anchor w
    pack $name.radiof.radio24 -side top -anchor w
    pack $name.radiof.radio36 -side top -anchor w

    frame $name.stretchf
    pack $name.stretchf -side left
    
    label $name.stretchf.label -text {Stretch:}
    pack $name.stretchf.label -side top
    
    entry $name.stretchf.entry -textvariable stretchval -width 5
    pack $name.stretchf.entry -side left

    radiobutton $name.stretchf.radio1 \
    	-value 1 -variable whichstretch -text "X and Y"
    radiobutton $name.stretchf.radio2 \
    	-value 2 -variable whichstretch -text "X only"
    radiobutton $name.stretchf.radio3 \
    	-value 3 -variable whichstretch -text "Y only"

    pack $name.stretchf.radio1 -side top -anchor w
    pack $name.stretchf.radio2 -side top -anchor w
    pack $name.stretchf.radio3 -side top -anchor w

}

############ pdtk_gatom_dialog -- run a gatom dialog #########

set gatomwidth 0
set gatomlo 0
set gatomhi 0

proc dogatom_apply {name} {
    global gatomwidth gatomlo gatomhi
    set cmd [concat $name param $gatomwidth $gatomlo $gatomhi \;]
#    puts stderr $cmd
    pd $cmd
}

proc dogatom_cancel {name} {
    set cmd [concat $name cancel \;]
#    puts stderr $cmd
    pd $cmd
}

proc dogatom_ok {name} {
    dogatom_apply $name
    dogatom_cancel $name
}

proc pdtk_gatom_dialog {name initwidth initlo inithi} {
    
    global gatomwidth gatomlo gatomhi
    set gatomwidth $initwidth
    set gatomlo $initlo
    set gatomhi $inithi
    
    toplevel $name
    wm title $name {Atom}
    wm protocol $name WM_DELETE_WINDOW [concat dogatom_cancel $name]

    frame $name.buttonframe
    pack $name.buttonframe -side bottom -fill x -pady 2m
    button $name.buttonframe.cancel -text {Cancel}\
    	-command "dogatom_cancel $name"
    button $name.buttonframe.ok -text {Apply}\
    	-command "dogatom_apply $name"
    pack $name.buttonframe.cancel -side left -expand 1
    pack $name.buttonframe.ok -side left -expand 1
    
    frame $name.paramhi
    pack $name.paramhi -side bottom
    label $name.paramhi.entryname -text "upper limit"
    entry $name.paramhi.entry -textvariable gatomhi -width 8
    pack $name.paramhi.entryname $name.paramhi.entry -side left

    frame $name.paramlo
    pack $name.paramlo -side bottom
    label $name.paramlo.entryname -text "lower limit"
    entry $name.paramlo.entry -textvariable gatomlo -width 8
    pack $name.paramlo.entryname $name.paramlo.entry -side left

    frame $name.params
    pack $name.params -side bottom
    label $name.params.entryname -text width
    entry $name.params.entry -textvariable gatomwidth -width 4
    pack $name.params.entryname $name.params.entry -side left

    bind $name.paramhi.entry <KeyPress-Return> [concat dogatom_ok $name]
    bind $name.paramlo.entry <KeyPress-Return> [concat dogatom_ok $name]
    bind $name.params.entry <KeyPress-Return> [concat dogatom_ok $name]
    $name.params.entry select from 0
    $name.params.entry select adjust end
    focus $name.params.entry
}

############ pdtk_canvas_popup -- popup menu for canvas #########

set popup_xpix 0
set popup_ypix 0

proc popup_action {name action} {
    global popup_xpix popup_ypix
    set cmd [concat $name done-popup $action $popup_xpix $popup_ypix \;]
#    puts stderr $cmd
    pd $cmd
}

proc pdtk_canvas_popup {name xpix ypix canprop canopen} {
    global popup_xpix popup_ypix
    set popup_xpix $xpix
    set popup_ypix $ypix
    if {$canprop == 0} {$name.popup entryconfigure 0 -state disabled}
    if {$canprop == 1} {$name.popup entryconfigure 0 -state active}
    if {$canopen == 0} {$name.popup entryconfigure 1 -state disabled}
    if {$canopen == 1} {$name.popup entryconfigure 1 -state active}
    tk_popup $name.popup [expr $xpix + [winfo rootx $name.c]] \
    	 [expr $ypix + [winfo rooty $name.c]] 0
}

############ pdtk_graph_dialog -- dialog window for graphs #########

# the graph and array dialogs can come up in many copies; but in TK the easiest
# way to get data from an "entry", etc., is to set an associated variable
# name.  This is especially true for grouped "radio buttons".  So we have
# to synthesize variable names for each instance of the dialog.  The dialog
# gets a TK pathname $id, from which it strips the leading "." to make a
# variable suffix $vid.  Then you can get the actual value out by asking for
# [eval concat $$variablename].  There should be an easier way but I don't see
# it yet.

proc graph_apply {id} {
# strip "." from the TK id to make a variable name suffix 
    set vid [string trimleft $id .]
# for each variable, make a local variable to hold its name...
    set var_graph_x1 [concat graph_x1_$vid]
    global $var_graph_x1
    set var_graph_x2 [concat graph_x2_$vid]
    global $var_graph_x2
    set var_graph_xpix [concat graph_xpix_$vid]
    global $var_graph_xpix
    set var_graph_y1 [concat graph_y1_$vid]
    global $var_graph_y1
    set var_graph_y2 [concat graph_y2_$vid]
    global $var_graph_y2
    set var_graph_ypix [concat graph_ypix_$vid]
    global $var_graph_ypix

    pd [concat $id dialog \
    	[eval concat $$var_graph_x1] \
    	[eval concat $$var_graph_y1] \
    	[eval concat $$var_graph_x2] \
    	[eval concat $$var_graph_y2] \
    	[eval concat $$var_graph_xpix] \
    	[eval concat $$var_graph_ypix] \
	\;]
}

proc graph_cancel {id} {
    set cmd [concat $id cancel \;]
#    puts stderr $cmd
    pd $cmd
}

proc graph_ok {id} {
    graph_apply $id
    graph_cancel $id
}

proc pdtk_graph_dialog {id x1 y1 x2 y2 xpix ypix} {
    set vid [string trimleft $id .]
    set var_graph_x1 [concat graph_x1_$vid]
    global $var_graph_x1
    set var_graph_x2 [concat graph_x2_$vid]
    global $var_graph_x2
    set var_graph_xpix [concat graph_xpix_$vid]
    global $var_graph_xpix
    set var_graph_y1 [concat graph_y1_$vid]
    global $var_graph_y1
    set var_graph_y2 [concat graph_y2_$vid]
    global $var_graph_y2
    set var_graph_ypix [concat graph_ypix_$vid]
    global $var_graph_ypix

    set $var_graph_x1 $x1
    set $var_graph_x2 $x2
    set $var_graph_xpix $xpix
    set $var_graph_y1 $y1
    set $var_graph_y2 $y2
    set $var_graph_ypix $ypix

    toplevel $id
    wm title $id {graph}
    wm protocol $id WM_DELETE_WINDOW [concat graph_cancel $id]

    label $id.label -text {GRAPH BOUNDS}
    pack $id.label -side top

    frame $id.buttonframe
    pack $id.buttonframe -side bottom -fill x -pady 2m
    button $id.buttonframe.cancel -text {Cancel}\
    	-command "graph_cancel $id"
    button $id.buttonframe.apply -text {Apply}\
    	-command "graph_apply $id"
    button $id.buttonframe.ok -text {OK}\
    	-command "graph_ok $id"
    pack $id.buttonframe.cancel -side left -expand 1
    pack $id.buttonframe.apply -side left -expand 1
    pack $id.buttonframe.ok -side left -expand 1
    
    frame $id.xrangef
    pack $id.xrangef -side top
    
    label $id.xrangef.l1 -text "X from:"
    entry $id.xrangef.x1 -textvariable $var_graph_x1 -width 7
    label $id.xrangef.l2 -text "to:"
    entry $id.xrangef.x2 -textvariable $var_graph_x2 -width 7
    label $id.xrangef.l3 -text "screen width:"
    entry $id.xrangef.xpix -textvariable $var_graph_xpix -width 7
    pack $id.xrangef.l1 $id.xrangef.x1 \
    	 $id.xrangef.l2 $id.xrangef.x2 \
	 $id.xrangef.l3 $id.xrangef.xpix -side left
    
    frame $id.yrangef
    pack $id.yrangef -side top

# dig in the following that the upper bound is labeled y1 but the variable is
# y2, etc. This is to deal with the inconsistent use of "upper and lower"
# graph bounds... in the dialog the upper Y bound is the lower valued Y pixel.
    label $id.yrangef.l1 -text "Y from:"
    entry $id.yrangef.y1 -textvariable $var_graph_y2 -width 7
    label $id.yrangef.l2 -text "to:"
    entry $id.yrangef.y2 -textvariable $var_graph_y1 -width 7
    label $id.yrangef.l3 -text "screen height:"
    entry $id.yrangef.ypix -textvariable $var_graph_ypix -width 7
    pack $id.yrangef.l1 $id.yrangef.y1 \
    	 $id.yrangef.l2 $id.yrangef.y2 \
	 $id.yrangef.l3 $id.yrangef.ypix -side left

    bind $id.xrangef.x1 <KeyPress-Return> [concat graph_ok $id]
    bind $id.xrangef.x2 <KeyPress-Return> [concat graph_ok $id]
    bind $id.xrangef.xpix <KeyPress-Return> [concat graph_ok $id]
    bind $id.yrangef.y1 <KeyPress-Return> [concat graph_ok $id]
    bind $id.yrangef.y2 <KeyPress-Return> [concat graph_ok $id]
    bind $id.yrangef.ypix <KeyPress-Return> [concat graph_ok $id]
    $id.xrangef.x2 select from 0
    $id.xrangef.x2 select adjust end
    focus $id.xrangef.x2
}

# begin of change "iemlib"
############ pdtk_iemgui_dialog -- dialog window for iem guis #########

set iemgui_define_min_flashhold 50
set iemgui_define_min_flashbreak 10
set iemgui_define_min_fontsize 4

proc iemgui_clip_dim {id} {
    set vid [string trimleft $id .]

    set var_iemgui_wdt [concat iemgui_wdt_$vid]
    global $var_iemgui_wdt
    set var_iemgui_min_wdt [concat iemgui_min_wdt_$vid]
    global $var_iemgui_min_wdt
    set var_iemgui_hgt [concat iemgui_hgt_$vid]
    global $var_iemgui_hgt
    set var_iemgui_min_hgt [concat iemgui_min_hgt_$vid]
    global $var_iemgui_min_hgt
    
    if {[eval concat $$var_iemgui_wdt] < [eval concat $$var_iemgui_min_wdt]} {
        set $var_iemgui_wdt [eval concat $$var_iemgui_min_wdt]
        $id.dim.w_ent configure -textvariable $var_iemgui_wdt
    }
    if {[eval concat $$var_iemgui_hgt] < [eval concat $$var_iemgui_min_hgt]} {
        set $var_iemgui_hgt [eval concat $$var_iemgui_min_hgt]
        $id.dim.h_ent configure -textvariable $var_iemgui_hgt
    }
}

proc iemgui_clip_num {id} {
    set vid [string trimleft $id .]

    set var_iemgui_num [concat iemgui_num_$vid]
    global $var_iemgui_num
    
    if {[eval concat $$var_iemgui_num] > 2000} {
        set $var_iemgui_num 2000
	$id.para.num_ent configure -textvariable $var_iemgui_num
    }
    if {[eval concat $$var_iemgui_num] < 1} {
        set $var_iemgui_num 1
        $id.para.num_ent configure -textvariable $var_iemgui_num
    }
}

proc iemgui_sched_rng {id} {
    set vid [string trimleft $id .]

    set var_iemgui_min_rng [concat iemgui_min_rng_$vid]
    global $var_iemgui_min_rng
    set var_iemgui_max_rng [concat iemgui_max_rng_$vid]
    global $var_iemgui_max_rng
    set var_iemgui_rng_sch [concat iemgui_rng_sch_$vid]
    global $var_iemgui_rng_sch

    global iemgui_define_min_flashhold
    global iemgui_define_min_flashbreak
    
    if {[eval concat $$var_iemgui_rng_sch] == 2} {
        if {[eval concat $$var_iemgui_max_rng] < [eval concat $$var_iemgui_min_rng]} {
            set hhh [eval concat $$var_iemgui_min_rng]
	    set $var_iemgui_min_rng [eval concat $$var_iemgui_max_rng]
	    set $var_iemgui_max_rng $hhh
            $id.rng.max_ent configure -textvariable $var_iemgui_max_rng
	    $id.rng.min_ent configure -textvariable $var_iemgui_min_rng }
        if {[eval concat $$var_iemgui_max_rng] < $iemgui_define_min_flashhold} {
	    set $var_iemgui_max_rng $iemgui_define_min_flashhold
            $id.rng.max_ent configure -textvariable $var_iemgui_max_rng
        }
	if {[eval concat $$var_iemgui_min_rng] < $iemgui_define_min_flashbreak} {
	    set $var_iemgui_min_rng $iemgui_define_min_flashbreak
	    $id.rng.min_ent configure -textvariable $var_iemgui_min_rng
        }
    }
    if {[eval concat $$var_iemgui_rng_sch] == 1} {
	if {[eval concat $$var_iemgui_min_rng] == 0.0} {
	    set $var_iemgui_min_rng 1.0
	    $id.rng.min_ent configure -textvariable $var_iemgui_min_rng
        }
    }
}

proc iemgui_verify_rng {id} {
    set vid [string trimleft $id .]

    set var_iemgui_min_rng [concat iemgui_min_rng_$vid]
    global $var_iemgui_min_rng
    set var_iemgui_max_rng [concat iemgui_max_rng_$vid]
    global $var_iemgui_max_rng
    set var_iemgui_lin0_log1 [concat iemgui_lin0_log1_$vid]
    global $var_iemgui_lin0_log1
    
    if {[eval concat $$var_iemgui_lin0_log1] == 1} {
        if {[eval concat $$var_iemgui_max_rng] == 0.0 && [eval concat $$var_iemgui_min_rng] == 0.0} {
	    set $var_iemgui_max_rng 1.0
	    $id.rng.max_ent configure -textvariable $var_iemgui_max_rng
	    }
        if {[eval concat $$var_iemgui_max_rng] > 0} {
            if {[eval concat $$var_iemgui_min_rng] <= 0} {
	        set $var_iemgui_min_rng [expr [eval concat $$var_iemgui_max_rng] * 0.01]
		$id.rng.min_ent configure -textvariable $var_iemgui_min_rng
	    }
        } else {
            if {[eval concat $$var_iemgui_min_rng] > 0} {
	        set $var_iemgui_max_rng [expr [eval concat $$var_iemgui_min_rng] * 0.01]
		$id.rng.max_ent configure -textvariable $var_iemgui_max_rng
	    }
	}
    }
}

proc iemgui_clip_fontsize {id} {
    set vid [string trimleft $id .]

    set var_iemgui_gn_fs [concat iemgui_gn_fs_$vid]
    global $var_iemgui_gn_fs
    
    global iemgui_define_min_fontsize

    if {[eval concat $$var_iemgui_gn_fs] < $iemgui_define_min_fontsize} {
        set $var_iemgui_gn_fs $iemgui_define_min_fontsize
        $id.gnfs.fs_ent configure -textvariable $var_iemgui_gn_fs
    }
}

proc iemgui_set_col_example {id} {
    set vid [string trimleft $id .]

    set var_iemgui_bcol [concat iemgui_bcol_$vid]
    global $var_iemgui_bcol
    set var_iemgui_fcol [concat iemgui_fcol_$vid]
    global $var_iemgui_fcol
    set var_iemgui_lcol [concat iemgui_lcol_$vid]
    global $var_iemgui_lcol
    
    $id.col_example_choose.lb_bk configure \
       -background [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activebackground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -foreground [format "#%6.6x" [eval concat $$var_iemgui_lcol]] \
       -activeforeground [format "#%6.6x" [eval concat $$var_iemgui_lcol]]
    
    if { [eval concat $$var_iemgui_fcol] >= 0 } {
       $id.col_example_choose.fr_bk configure \
       -background [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activebackground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -foreground [format "#%6.6x" [eval concat $$var_iemgui_fcol]] \
       -activeforeground [format "#%6.6x" [eval concat $$var_iemgui_fcol]]
    } else {
       $id.col_example_choose.fr_bk configure \
       -background [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activebackground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -foreground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activeforeground [format "#%6.6x" [eval concat $$var_iemgui_bcol]]}
}

proc iemgui_preset_col {id presetcol} {
    set vid [string trimleft $id .]

    set var_iemgui_l2_f1_b0 [concat iemgui_l2_f1_b0_$vid]
    global $var_iemgui_l2_f1_b0
    set var_iemgui_bcol [concat iemgui_bcol_$vid]
    global $var_iemgui_bcol
    set var_iemgui_fcol [concat iemgui_fcol_$vid]
    global $var_iemgui_fcol
    set var_iemgui_lcol [concat iemgui_lcol_$vid]
    global $var_iemgui_lcol
    
    if { [eval concat $$var_iemgui_l2_f1_b0] == 0 } { set $var_iemgui_bcol $presetcol }
    if { [eval concat $$var_iemgui_l2_f1_b0] == 1 } { set $var_iemgui_fcol $presetcol }
    if { [eval concat $$var_iemgui_l2_f1_b0] == 2 } { set $var_iemgui_lcol $presetcol }
    iemgui_set_col_example $id
}

proc iemgui_choose_col_bkfrlb {id} {
    set vid [string trimleft $id .]

    set var_iemgui_l2_f1_b0 [concat iemgui_l2_f1_b0_$vid]
    global $var_iemgui_l2_f1_b0
    set var_iemgui_bcol [concat iemgui_bcol_$vid]
    global $var_iemgui_bcol
    set var_iemgui_fcol [concat iemgui_fcol_$vid]
    global $var_iemgui_fcol
    set var_iemgui_lcol [concat iemgui_lcol_$vid]
    global $var_iemgui_lcol
    
    if {[eval concat $$var_iemgui_l2_f1_b0] == 0} {
        set $var_iemgui_bcol [expr [eval concat $$var_iemgui_bcol] & 0xFCFCFC]
        set helpstring [tk_chooseColor -title "Background-Color" -initialcolor [format "#%6.6x" [eval concat $$var_iemgui_bcol]]]
        if { $helpstring != "" } {
              set $var_iemgui_bcol [string replace $helpstring 0 0 "0x"]
              set $var_iemgui_bcol [expr [eval concat $$var_iemgui_bcol] & 0xFCFCFC] }
    }
    if {[eval concat $$var_iemgui_l2_f1_b0] == 1} {
        set $var_iemgui_fcol [expr [eval concat $$var_iemgui_fcol] & 0xFCFCFC]
        set helpstring [tk_chooseColor -title "Front-Color" -initialcolor [format "#%6.6x" [eval concat $$var_iemgui_fcol]]]
        if { $helpstring != "" } {
              set $var_iemgui_fcol [string replace $helpstring 0 0 "0x"]
              set $var_iemgui_fcol [expr [eval concat $$var_iemgui_fcol] & 0xFCFCFC] }
    }
    if {[eval concat $$var_iemgui_l2_f1_b0] == 2} {
	set $var_iemgui_lcol [expr [eval concat $$var_iemgui_lcol] & 0xFCFCFC]
        set helpstring [tk_chooseColor -title "Label-Color" -initialcolor [format "#%6.6x" [eval concat $$var_iemgui_lcol]]]
        if { $helpstring != "" } {
              set $var_iemgui_lcol [string replace $helpstring 0 0 "0x"]
              set $var_iemgui_lcol [expr [eval concat $$var_iemgui_lcol] & 0xFCFCFC] }
    }
    iemgui_set_col_example $id
}

proc iemgui_lilo {id} {
    set vid [string trimleft $id .]

    set var_iemgui_lin0_log1 [concat iemgui_lin0_log1_$vid]
    global $var_iemgui_lin0_log1
    set var_iemgui_lilo0 [concat iemgui_lilo0_$vid]
    global $var_iemgui_lilo0
    set var_iemgui_lilo1 [concat iemgui_lilo1_$vid]
    global $var_iemgui_lilo1
   
    iemgui_sched_rng $id

    if {[eval concat $$var_iemgui_lin0_log1] == 0} {
        set $var_iemgui_lin0_log1 1
        $id.para.lilo configure -text [eval concat $$var_iemgui_lilo1]
	iemgui_verify_rng $id
	iemgui_sched_rng $id
    } else {
        set $var_iemgui_lin0_log1 0
        $id.para.lilo configure -text [eval concat $$var_iemgui_lilo0]
    }
}

proc iemgui_toggle_font {id} {
    set vid [string trimleft $id .]

    set var_iemgui_gn_f [concat iemgui_gn_f_$vid]
    global $var_iemgui_gn_f
    
    set $var_iemgui_gn_f [expr [eval concat $$var_iemgui_gn_f] + 1]
    if {[eval concat $$var_iemgui_gn_f] > 2} {set $var_iemgui_gn_f 0}
    if {[eval concat $$var_iemgui_gn_f] == 0} {$id.gnfs.fb configure -text "courier" -font {courier 10 bold}}
    if {[eval concat $$var_iemgui_gn_f] == 1} {$id.gnfs.fb configure -text "helvetica" -font {helvetica 10 bold}}
    if {[eval concat $$var_iemgui_gn_f] == 2} {$id.gnfs.fb configure -text "times" -font {times 10 bold}}
}

proc iemgui_lb {id} {
    set vid [string trimleft $id .]

    set var_iemgui_loadbang [concat iemgui_loadbang_$vid]
    global $var_iemgui_loadbang

    if {[eval concat $$var_iemgui_loadbang] == 0} {
        set $var_iemgui_loadbang 1
        $id.para.lb configure -text "init"
    } else {
        set $var_iemgui_loadbang 0
        $id.para.lb configure -text "no init"
    }
}

proc iemgui_stdy_jmp {id} {
    set vid [string trimleft $id .]

    set var_iemgui_steady [concat iemgui_steady_$vid]
    global $var_iemgui_steady
    
    if {[eval concat $$var_iemgui_steady]} {
        set $var_iemgui_steady 0
        $id.para.stdy_jmp configure -text "jump on click"
    } else {
        set $var_iemgui_steady 1
        $id.para.stdy_jmp configure -text "steady on click"
    }
}

proc iemgui_apply {id} {
    set vid [string trimleft $id .]

    set var_iemgui_wdt [concat iemgui_wdt_$vid]
    global $var_iemgui_wdt
    set var_iemgui_min_wdt [concat iemgui_min_wdt_$vid]
    global $var_iemgui_min_wdt
    set var_iemgui_hgt [concat iemgui_hgt_$vid]
    global $var_iemgui_hgt
    set var_iemgui_min_hgt [concat iemgui_min_hgt_$vid]
    global $var_iemgui_min_hgt
    set var_iemgui_min_rng [concat iemgui_min_rng_$vid]
    global $var_iemgui_min_rng
    set var_iemgui_max_rng [concat iemgui_max_rng_$vid]
    global $var_iemgui_max_rng
    set var_iemgui_lin0_log1 [concat iemgui_lin0_log1_$vid]
    global $var_iemgui_lin0_log1
    set var_iemgui_lilo0 [concat iemgui_lilo0_$vid]
    global $var_iemgui_lilo0
    set var_iemgui_lilo1 [concat iemgui_lilo1_$vid]
    global $var_iemgui_lilo1
    set var_iemgui_loadbang [concat iemgui_loadbang_$vid]
    global $var_iemgui_loadbang
    set var_iemgui_num [concat iemgui_num_$vid]
    global $var_iemgui_num
    set var_iemgui_steady [concat iemgui_steady_$vid]
    global $var_iemgui_steady
    set var_iemgui_snd [concat iemgui_snd_$vid]
    global $var_iemgui_snd
    set var_iemgui_rcv [concat iemgui_rcv_$vid]
    global $var_iemgui_rcv
    set var_iemgui_gui_nam [concat iemgui_gui_nam_$vid]
    global $var_iemgui_gui_nam
    set var_iemgui_gn_dx [concat iemgui_gn_dx_$vid]
    global $var_iemgui_gn_dx
    set var_iemgui_gn_dy [concat iemgui_gn_dy_$vid]
    global $var_iemgui_gn_dy
    set var_iemgui_gn_f [concat iemgui_gn_f_$vid]
    global $var_iemgui_gn_f
    set var_iemgui_gn_fs [concat iemgui_gn_fs_$vid]
    global $var_iemgui_gn_fs
    set var_iemgui_bcol [concat iemgui_bcol_$vid]
    global $var_iemgui_bcol
    set var_iemgui_fcol [concat iemgui_fcol_$vid]
    global $var_iemgui_fcol
    set var_iemgui_lcol [concat iemgui_lcol_$vid]
    global $var_iemgui_lcol
    
    iemgui_clip_dim $id
    iemgui_clip_num $id
    iemgui_sched_rng $id
    iemgui_verify_rng $id
    iemgui_sched_rng $id
    iemgui_clip_fontsize $id
    
    if {[eval concat $$var_iemgui_snd] == ""} {set hhhsnd "empty"} else {set hhhsnd [eval concat $$var_iemgui_snd]}
    if {[eval concat $$var_iemgui_rcv] == ""} {set hhhrcv "empty"} else {set hhhrcv [eval concat $$var_iemgui_rcv]}
    if {[eval concat $$var_iemgui_gui_nam] == ""} {set hhhgui_nam "empty"
        } else {
    set hhhgui_nam [eval concat $$var_iemgui_gui_nam]}

    if {[string index $hhhsnd 0] == "$"} {
       set hhhsnd [string replace $hhhsnd 0 0 #] }
    if {[string index $hhhrcv 0] == "$"} {
       set hhhrcv [string replace $hhhrcv 0 0 #] }
    if {[string index $hhhgui_nam 0] == "$"} {
       set hhhgui_nam [string replace $hhhgui_nam 0 0 #] }
    
    pd [concat $id dialog \
        [eval concat $$var_iemgui_wdt] \
        [eval concat $$var_iemgui_hgt] \
        [eval concat $$var_iemgui_min_rng] \
        [eval concat $$var_iemgui_max_rng] \
	[eval concat $$var_iemgui_lin0_log1] \
        [eval concat $$var_iemgui_loadbang] \
        [eval concat $$var_iemgui_num] \
	$hhhsnd \
        $hhhrcv \
	$hhhgui_nam \
        [eval concat $$var_iemgui_gn_dx] \
        [eval concat $$var_iemgui_gn_dy] \
	[eval concat $$var_iemgui_gn_f] \
        [eval concat $$var_iemgui_gn_fs] \
	[eval concat $$var_iemgui_bcol] \
        [eval concat $$var_iemgui_fcol] \
        [eval concat $$var_iemgui_lcol] \
        [eval concat $$var_iemgui_steady] \
	\;]
}

proc iemgui_cancel {id} {pd [concat $id cancel \;]}

proc iemgui_ok {id} {
    iemgui_apply $id
    iemgui_cancel $id
}

proc pdtk_iemgui_dialog {id mainheader \
        dim_header wdt min_wdt wdt_label hgt min_hgt hgt_label \
	rng_header min_rng min_rng_label max_rng max_rng_label rng_sched \
	lin0_log1 lilo0_label lilo1_label loadbang steady num_label num \
	snd rcv \
        gui_name \
	gn_dx gn_dy \
	gn_f gn_fs \
	bcol fcol lcol} {

    set vid [string trimleft $id .]

    set var_iemgui_wdt [concat iemgui_wdt_$vid]
    global $var_iemgui_wdt
    set var_iemgui_min_wdt [concat iemgui_min_wdt_$vid]
    global $var_iemgui_min_wdt
    set var_iemgui_hgt [concat iemgui_hgt_$vid]
    global $var_iemgui_hgt
    set var_iemgui_min_hgt [concat iemgui_min_hgt_$vid]
    global $var_iemgui_min_hgt
    set var_iemgui_min_rng [concat iemgui_min_rng_$vid]
    global $var_iemgui_min_rng
    set var_iemgui_max_rng [concat iemgui_max_rng_$vid]
    global $var_iemgui_max_rng
    set var_iemgui_rng_sch [concat iemgui_rng_sch_$vid]
    global $var_iemgui_rng_sch
    set var_iemgui_lin0_log1 [concat iemgui_lin0_log1_$vid]
    global $var_iemgui_lin0_log1
    set var_iemgui_lilo0 [concat iemgui_lilo0_$vid]
    global $var_iemgui_lilo0
    set var_iemgui_lilo1 [concat iemgui_lilo1_$vid]
    global $var_iemgui_lilo1
    set var_iemgui_loadbang [concat iemgui_loadbang_$vid]
    global $var_iemgui_loadbang
    set var_iemgui_num [concat iemgui_num_$vid]
    global $var_iemgui_num
    set var_iemgui_steady [concat iemgui_steady_$vid]
    global $var_iemgui_steady
    set var_iemgui_snd [concat iemgui_snd_$vid]
    global $var_iemgui_snd
    set var_iemgui_rcv [concat iemgui_rcv_$vid]
    global $var_iemgui_rcv
    set var_iemgui_gui_nam [concat iemgui_gui_nam_$vid]
    global $var_iemgui_gui_nam
    set var_iemgui_gn_dx [concat iemgui_gn_dx_$vid]
    global $var_iemgui_gn_dx
    set var_iemgui_gn_dy [concat iemgui_gn_dy_$vid]
    global $var_iemgui_gn_dy
    set var_iemgui_gn_f [concat iemgui_gn_f_$vid]
    global $var_iemgui_gn_f
    set var_iemgui_gn_fs [concat iemgui_gn_fs_$vid]
    global $var_iemgui_gn_fs
    set var_iemgui_l2_f1_b0 [concat iemgui_l2_f1_b0_$vid]
    global $var_iemgui_l2_f1_b0
    set var_iemgui_bcol [concat iemgui_bcol_$vid]
    global $var_iemgui_bcol
    set var_iemgui_fcol [concat iemgui_fcol_$vid]
    global $var_iemgui_fcol
    set var_iemgui_lcol [concat iemgui_lcol_$vid]
    global $var_iemgui_lcol

    set $var_iemgui_wdt $wdt
    set $var_iemgui_min_wdt $min_wdt
    set $var_iemgui_hgt $hgt
    set $var_iemgui_min_hgt $min_hgt
    set $var_iemgui_min_rng $min_rng
    set $var_iemgui_max_rng $max_rng
    set $var_iemgui_rng_sch $rng_sched
    set $var_iemgui_lin0_log1 $lin0_log1
    set $var_iemgui_lilo0 $lilo0_label
    set $var_iemgui_lilo1 $lilo1_label
    set $var_iemgui_loadbang $loadbang
    set $var_iemgui_num $num
    set $var_iemgui_steady $steady
    if {$snd == "empty"} {set $var_iemgui_snd [format ""]
        } else {set $var_iemgui_snd [format "%s" $snd]}
    if {$rcv == "empty"} {set $var_iemgui_rcv [format ""]
        } else {set $var_iemgui_rcv [format "%s" $rcv]}
    if {$gui_name == "empty"} {set $var_iemgui_gui_nam [format ""]
        } else {set $var_iemgui_gui_nam [format "%s" $gui_name]}
    
    if {[string index [eval concat $$var_iemgui_snd] 0] == "#"} {
       set $var_iemgui_snd [string replace [eval concat $$var_iemgui_snd] 0 0 $] }
    if {[string index [eval concat $$var_iemgui_rcv] 0] == "#"} {
       set $var_iemgui_rcv [string replace [eval concat $$var_iemgui_rcv] 0 0 $] }
    if {[string index [eval concat $$var_iemgui_gui_nam] 0] == "#"} {
       set $var_iemgui_gui_nam [string replace [eval concat $$var_iemgui_gui_nam] 0 0 $] }
    set $var_iemgui_gn_dx $gn_dx
    set $var_iemgui_gn_dy $gn_dy
    set $var_iemgui_gn_f $gn_f
    set $var_iemgui_gn_fs $gn_fs
    
    set $var_iemgui_bcol $bcol
    set $var_iemgui_fcol $fcol
    set $var_iemgui_lcol $lcol
    
    set $var_iemgui_l2_f1_b0 0

    toplevel $id
    wm title $id [format "%s-PROPERTIES" $mainheader]
    wm protocol $id WM_DELETE_WINDOW [concat iemgui_cancel $id]
    
    frame $id.dim
    pack $id.dim -side top
    label $id.dim.head -text $dim_header
    label $id.dim.w_lab -text $wdt_label -width 6
    entry $id.dim.w_ent -textvariable $var_iemgui_wdt -width 5
    label $id.dim.dummy1 -text " " -width 10
    label $id.dim.h_lab -text $hgt_label -width 6
    entry $id.dim.h_ent -textvariable $var_iemgui_hgt -width 5
    pack $id.dim.head -side top
    pack $id.dim.w_lab $id.dim.w_ent $id.dim.dummy1 -side left
    if { $hgt_label != "empty" } {
        pack $id.dim.h_lab $id.dim.h_ent -side left}

    frame $id.rng
    pack $id.rng -side top
    label $id.rng.head -text $rng_header
    label $id.rng.min_lab -text $min_rng_label -width 6
    entry $id.rng.min_ent -textvariable $var_iemgui_min_rng -width 9
    label $id.rng.dummy1 -text " " -width 1
    label $id.rng.max_lab -text $max_rng_label -width 8
    entry $id.rng.max_ent -textvariable $var_iemgui_max_rng -width 9
    if { $rng_header != "empty" } {
        pack $id.rng.head -side top
	if { $min_rng_label != "empty" } {
            pack $id.rng.min_lab $id.rng.min_ent -side left}
	if { $max_rng_label != "empty" } {
	    pack $id.rng.dummy1 \
            $id.rng.max_lab $id.rng.max_ent -side left} }
    
    if { [eval concat $$var_iemgui_lin0_log1] >= 0 || [eval concat $$var_iemgui_loadbang] >= 0 || [eval concat $$var_iemgui_num] > 0 || [eval concat $$var_iemgui_steady] >= 0 } {
        label $id.space1 -text "---------------------------------"
        pack $id.space1 -side top }

    frame $id.para
    pack $id.para -side top
    label $id.para.dummy2 -text "" -width 1
    label $id.para.dummy3 -text "" -width 1
    if {[eval concat $$var_iemgui_lin0_log1] == 0} {
        button $id.para.lilo -text [eval concat $$var_iemgui_lilo0] -width 5 -command "iemgui_lilo $id" }
    if {[eval concat $$var_iemgui_lin0_log1] == 1} {
        button $id.para.lilo -text [eval concat $$var_iemgui_lilo1] -width 5 -command "iemgui_lilo $id" }
    if {[eval concat $$var_iemgui_loadbang] == 0} {
        button $id.para.lb -text "no init" -width 5 -command "iemgui_lb $id" }
    if {[eval concat $$var_iemgui_loadbang] == 1} {
        button $id.para.lb -text "init" -width 5 -command "iemgui_lb $id" }
    label $id.para.num_lab -text $num_label -width 9
    entry $id.para.num_ent -textvariable $var_iemgui_num -width 4
    if {[eval concat $$var_iemgui_steady] == 0} {
        button $id.para.stdy_jmp -text "jump on click" -width 11 -command "iemgui_stdy_jmp $id" }
    if {[eval concat $$var_iemgui_steady] == 1} {
        button $id.para.stdy_jmp -text "steady on click" -width 11 -command "iemgui_stdy_jmp $id" }
    if {[eval concat $$var_iemgui_lin0_log1] >= 0} {
        pack $id.para.lilo -side left -expand 1}
    if {[eval concat $$var_iemgui_loadbang] >= 0} {
        pack $id.para.dummy2 $id.para.lb -side left -expand 1}
    if {[eval concat $$var_iemgui_num] > 0} {
        pack $id.para.dummy3 $id.para.num_lab $id.para.num_ent -side left -expand 1}
    if {[eval concat $$var_iemgui_steady] >= 0} {
        pack $id.para.dummy3 $id.para.stdy_jmp -side left -expand 1}
    if { $snd != "nosndno" || $rcv != "norcvno" } {
        label $id.space2 -text "---------------------------------"
        pack $id.space2 -side top }
    
    frame $id.snd
    pack $id.snd -side top
    label $id.snd.dummy1 -text "" -width 2
    label $id.snd.lab -text "send-symbol:" -width 12
    entry $id.snd.ent -textvariable $var_iemgui_snd -width 20
    if { $snd != "nosndno" } {
        pack $id.snd.dummy1 $id.snd.lab $id.snd.ent -side left}
    
    frame $id.rcv
    pack $id.rcv -side top
    label $id.rcv.lab -text "receive-symbol:" -width 15
    entry $id.rcv.ent -textvariable $var_iemgui_rcv -width 20
    if { $rcv != "norcvno" } {
        pack $id.rcv.lab $id.rcv.ent -side left}
    
    frame $id.gnam
    pack $id.gnam -side top
    label $id.gnam.head -text "--------------label:---------------"
    label $id.gnam.dummy1 -text "" -width 1
    label $id.gnam.lab -text "name:" -width 6
    entry $id.gnam.ent -textvariable $var_iemgui_gui_nam -width 29
    label $id.gnam.dummy2 -text "" -width 1
    pack $id.gnam.head -side top
    pack $id.gnam.dummy1 $id.gnam.lab $id.gnam.ent $id.gnam.dummy2 -side left
    
    frame $id.gnxy
    pack $id.gnxy -side top
    label $id.gnxy.x_lab -text "x_off:" -width 6
    entry $id.gnxy.x_ent -textvariable $var_iemgui_gn_dx -width 5
    label $id.gnxy.dummy1 -text " " -width 10
    label $id.gnxy.y_lab -text "y_off:" -width 6
    entry $id.gnxy.y_ent -textvariable $var_iemgui_gn_dy -width 5
    pack $id.gnxy.x_lab $id.gnxy.x_ent $id.gnxy.dummy1 \
    	 $id.gnxy.y_lab $id.gnxy.y_ent -side left
    
    frame $id.gnfs
    pack $id.gnfs -side top
    label $id.gnfs.f_lab -text "font:" -width 6
    if {[eval concat $$var_iemgui_gn_f] == 0} {
        button $id.gnfs.fb -text "courier" -font {courier 10 bold} -width 7 -command "iemgui_toggle_font $id" }
    if {[eval concat $$var_iemgui_gn_f] == 1} {
        button $id.gnfs.fb -text "helvetica" -font {helvetica 10 bold} -width 7 -command "iemgui_toggle_font $id" }
    if {[eval concat $$var_iemgui_gn_f] == 2} {
        button $id.gnfs.fb -text "times" -font {times 10 bold} -width 7 -command "iemgui_toggle_font $id" }
    label $id.gnfs.dummy1 -text "" -width 1
    label $id.gnfs.fs_lab -text "fontsize:" -width 8
    entry $id.gnfs.fs_ent -textvariable $var_iemgui_gn_fs -width 5
    pack $id.gnfs.f_lab $id.gnfs.fb $id.gnfs.dummy1 \
    	 $id.gnfs.fs_lab $id.gnfs.fs_ent -side left
    
    label $id.col_head -text "--------------colors:--------------"
    pack $id.col_head -side top
    
    frame $id.col_select
    pack $id.col_select -side top
    radiobutton $id.col_select.radio0 -value 0 -variable $var_iemgui_l2_f1_b0 \
       -text "backgd" -width 5
    radiobutton $id.col_select.radio1 -value 1 -variable $var_iemgui_l2_f1_b0 \
       -text "front" -width 5
    radiobutton $id.col_select.radio2 -value 2 -variable $var_iemgui_l2_f1_b0 \
       -text "label" -width 5
    if { [eval concat $$var_iemgui_fcol] >= 0 } {
         pack $id.col_select.radio0 $id.col_select.radio1 $id.col_select.radio2 -side left
       } else {pack $id.col_select.radio0 $id.col_select.radio2 -side left}
    
    frame $id.col_example_choose
    pack $id.col_example_choose -side top
    button $id.col_example_choose.but -text "compose color" -width 10 \
             -command "iemgui_choose_col_bkfrlb $id"
    label $id.col_example_choose.dummy1 -text "" -width 1
    if { [eval concat $$var_iemgui_fcol] >= 0 } {
      button $id.col_example_choose.fr_bk -text "o=||=o" -width 5 \
       -background [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activebackground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -foreground [format "#%6.6x" [eval concat $$var_iemgui_fcol]] \
       -activeforeground [format "#%6.6x" [eval concat $$var_iemgui_fcol]] -pady 2
    } else {
      button $id.col_example_choose.fr_bk -text "o=||=o" -width 5 \
       -background [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activebackground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -foreground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activeforeground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] -pady 2}
    button $id.col_example_choose.lb_bk -text "testlabel" -width 7 \
       -background [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -activebackground [format "#%6.6x" [eval concat $$var_iemgui_bcol]] \
       -foreground [format "#%6.6x" [eval concat $$var_iemgui_lcol]] \
       -activeforeground [format "#%6.6x" [eval concat $$var_iemgui_lcol]] -pady 2
    
    pack $id.col_example_choose.but $id.col_example_choose.dummy1 \
       $id.col_example_choose.fr_bk $id.col_example_choose.lb_bk -side left
    
    label $id.space3 -text "------or click color preset:-------"
    pack $id.space3 -side top
    
    frame $id.bcol
    pack $id.bcol -side top
    foreach i { 0 1 2 3 4 5 6 7 8 9 } hexcol { 16579836 14737632 12369084 \
      16572640 16572608 16579784 14220504 14220540 14476540 16308476 } {
        button $id.bcol.c$i -background [format "#%6.6x" $hexcol] \
	    -activebackground [format "#%6.6x" $hexcol] \
            -font {courier 2 normal} -padx 7 -pady 6 \
            -command [format "iemgui_preset_col %s %d" $id $hexcol] }
    pack $id.bcol.c0 $id.bcol.c1 $id.bcol.c2 $id.bcol.c3 $id.bcol.c4 \
        $id.bcol.c5 $id.bcol.c6 $id.bcol.c7 $id.bcol.c8 $id.bcol.c9 -side left
    
    frame $id.fcol
    pack $id.fcol -side top
    foreach i { 0 1 2 3 4 5 6 7 8 9 } hexcol { 10526880 8158332 6316128 \
      16525352 16559172 15263784 1370132 2684148 3952892 16003312 } {
	button $id.fcol.c$i -background [format "#%6.6x" $hexcol] \
	    -activebackground [format "#%6.6x" $hexcol] \
            -font {courier 2 normal} -padx 7 -pady 6 \
            -command [format "iemgui_preset_col %s %d" $id $hexcol] }
    pack $id.fcol.c0 $id.fcol.c1 $id.fcol.c2 $id.fcol.c3 $id.fcol.c4 \
        $id.fcol.c5 $id.fcol.c6 $id.fcol.c7 $id.fcol.c8 $id.fcol.c9 -side left
    
    frame $id.lcol
    pack $id.lcol -side top
    foreach i { 0 1 2 3 4 5 6 7 8 9 } hexcol { 4210752 2105376 0 \
      9177096 5779456 7874580 2641940 17488 5256 5767248 } {
        button $id.lcol.c$i -background [format "#%6.6x" $hexcol] \
	    -activebackground [format "#%6.6x" $hexcol] \
            -font {courier 2 normal} -padx 7 -pady 6 \
            -command [format "iemgui_preset_col %s %d" $id $hexcol] }
    pack $id.lcol.c0 $id.lcol.c1 $id.lcol.c2 $id.lcol.c3 $id.lcol.c4 \
        $id.lcol.c5 $id.lcol.c6 $id.lcol.c7 $id.lcol.c8 $id.lcol.c9 -side left
    
    
    label $id.space4 -text "---------------------------------"
    pack $id.space4 -side top
    
    frame $id.cao
    pack $id.cao -side top
    button $id.cao.cancel -text {Cancel} -width 6 \
    	-command "iemgui_cancel $id"
    label $id.cao.dummy1 -text "" -width 3
    button $id.cao.apply -text {Apply} -width 6 \
    	-command "iemgui_apply $id"
    label $id.cao.dummy2 -text "" -width 3
    button $id.cao.ok -text {OK} -width 6 \
    	-command "iemgui_ok $id"
    pack $id.cao.cancel $id.cao.dummy1 \
        $id.cao.apply $id.cao.dummy2 \
	$id.cao.ok -side left
    
    label $id.space5 -text ""
    pack $id.space5 -side top

    bind $id.dim.w_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.dim.h_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.rng.min_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.rng.max_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.para.num_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.snd.ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.rcv.ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.gnam.ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.gnxy.x_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.gnxy.y_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.gnfs.fs_ent <KeyPress-Return> [concat iemgui_ok $id]
    bind $id.cao.ok <KeyPress-Return> [concat iemgui_ok $id]
    
    $id.dim.w_ent select from 0
    $id.dim.w_ent select adjust end
    focus $id.dim.w_ent
}
# end of change "iemlib"

############ pdtk_array_dialog -- dialog window for arrays #########
proc array_apply {id} {
# strip "." from the TK id to make a variable name suffix 
    set vid [string trimleft $id .]
# for each variable, make a local variable to hold its name...
    set var_array_name [concat array_name_$vid]
    global $var_array_name
    set var_array_n [concat array_n_$vid]
    global $var_array_n
    set var_array_saveit [concat array_saveit_$vid]
    global $var_array_saveit
    set var_array_otherflag [concat array_otherflag_$vid]
    global $var_array_otherflag
    set mofo [eval concat $$var_array_name]
    if {[string index $mofo 0] == "$"} {
       set mofo [string replace $mofo 0 0 #] }

    pd [concat $id arraydialog $mofo \
	[eval concat $$var_array_n] \
    	[eval concat $$var_array_saveit] \
	[eval concat $$var_array_otherflag] \
	\;]
}

proc array_cancel {id} {
    set cmd [concat $id cancel \;]
    pd $cmd
}

proc array_ok {id} {
    array_apply $id
    array_cancel $id
}

proc pdtk_array_dialog {id name n saveit newone} {
    set vid [string trimleft $id .]

    set var_array_name [concat array_name_$vid]
    global $var_array_name
    set var_array_n [concat array_n_$vid]
    global $var_array_n
    set var_array_saveit [concat array_saveit_$vid]
    global $var_array_saveit
    set var_array_otherflag [concat array_otherflag_$vid]
    global $var_array_otherflag

    set $var_array_name $name
    set $var_array_n $n
    set $var_array_saveit $saveit
    set $var_array_otherflag 0

    toplevel $id
    wm title $id {array}
    wm protocol $id WM_DELETE_WINDOW [concat array_cancel $id]

    frame $id.name
    pack $id.name -side top
    label $id.name.label -text "name"
    entry $id.name.entry -textvariable $var_array_name
    pack $id.name.label $id.name.entry -side left

    frame $id.n
    pack $id.n -side top
    label $id.n.label -text "size"
    entry $id.n.entry -textvariable $var_array_n
    pack $id.n.label $id.n.entry -side left

    checkbutton $id.saveme -text {save contents} -variable $var_array_saveit \
    	-anchor w
    pack $id.saveme -side top

    if {$newone != 0} {
	frame $id.radio
    	pack $id.radio -side top
    	radiobutton $id.radio.radio0 -value 0 \
	    -variable $var_array_otherflag \
	    -text "in new graph"
    	radiobutton $id.radio.radio1 -value 1 \
	    -variable $var_array_otherflag \
	    -text "in last graph"
    	pack $id.radio.radio0 -side top -anchor w
    	pack $id.radio.radio1 -side top -anchor w
    } else {	
    	checkbutton $id.deleteme -text {delete me} \
	    -variable $var_array_otherflag -anchor w
	pack $id.deleteme -side top
    }
    frame $id.buttonframe
    pack $id.buttonframe -side bottom -fill x -pady 2m
    button $id.buttonframe.cancel -text {Cancel}\
    	-command "array_cancel $id"
    if {$newone == 0} {button $id.buttonframe.apply -text {Apply}\
    	-command "array_apply $id"}
    button $id.buttonframe.ok -text {OK}\
    	-command "array_ok $id"
    pack $id.buttonframe.cancel -side left -expand 1
    if {$newone == 0} {pack $id.buttonframe.apply -side left -expand 1}
    pack $id.buttonframe.ok -side left -expand 1
    
    bind $id.name.entry <KeyPress-Return> [concat array_ok $id]
    bind $id.n.entry <KeyPress-Return> [concat array_ok $id]
    $id.name.entry select from 0
    $id.name.entry select adjust end
    focus $id.name.entry
}

############ pdtk_canvas_dialog -- dialog window for canvass #########
proc canvas_apply {id} {
# strip "." from the TK id to make a variable name suffix 
    set vid [string trimleft $id .]
# for each variable, make a local variable to hold its name...
    set var_canvas_xscale [concat canvas_xscale_$vid]
    global $var_canvas_xscale
    set var_canvas_yscale [concat canvas_yscale_$vid]
    global $var_canvas_yscale
    set var_canvas_graphme [concat canvas_graphme_$vid]
    global $var_canvas_graphme
#    set var_canvas_stretch [concat canvas_stretch_$vid]
#    global $var_canvas_stretch
    pd [concat $id donecanvasdialog \
    	[eval concat $$var_canvas_xscale] \
	[eval concat $$var_canvas_yscale] \
    	[eval concat $$var_canvas_graphme] \
	\;]
}

proc canvas_cancel {id} {
    set cmd [concat $id cancel \;]
    pd $cmd
}

proc canvas_ok {id} {
    canvas_apply $id
    canvas_cancel $id
}

proc pdtk_canvas_dialog {id xscale yscale graphme stretch} {
    set vid [string trimleft $id .]

    set var_canvas_xscale [concat canvas_xscale_$vid]
    global $var_canvas_xscale
    set var_canvas_yscale [concat canvas_yscale_$vid]
    global $var_canvas_yscale
    set var_canvas_graphme [concat canvas_graphme_$vid]
    global $var_canvas_graphme
#    set var_canvas_stretch [concat canvas_stretch_$vid]
#    global $var_canvas_stretch

    set $var_canvas_xscale $xscale
    set $var_canvas_yscale $yscale
    set $var_canvas_graphme $graphme
#    set $var_canvas_stretch $stretch

    toplevel $id
    wm title $id {canvas}
    wm protocol $id WM_DELETE_WINDOW [concat canvas_cancel $id]

    frame $id.xscale
    pack $id.xscale -side top
    label $id.xscale.label -text "X units per pixel"
    entry $id.xscale.entry -textvariable $var_canvas_xscale -width 10
    pack $id.xscale.label $id.xscale.entry -side left

    frame $id.yscale
    pack $id.yscale -side top
    label $id.yscale.label -text "Y units per pixel"
    entry $id.yscale.entry -textvariable $var_canvas_yscale -width 10
    pack $id.yscale.label $id.yscale.entry -side left

    checkbutton $id.graphme -text {graph on parent} \
    	-variable $var_canvas_graphme -anchor w
    pack $id.graphme -side top

#    checkbutton $id.stretch -text {stretch on resize} \
#    	-variable $var_canvas_stretch -anchor w
#    pack $id.stretch -side top


    frame $id.buttonframe
    pack $id.buttonframe -side bottom -fill x -pady 2m
    button $id.buttonframe.cancel -text {Cancel}\
    	-command "canvas_cancel $id"
    button $id.buttonframe.apply -text {Apply}\
    	-command "canvas_apply $id"
    button $id.buttonframe.ok -text {OK}\
    	-command "canvas_ok $id"
    pack $id.buttonframe.cancel -side left -expand 1
    pack $id.buttonframe.apply -side left -expand 1
    pack $id.buttonframe.ok -side left -expand 1

    bind $id.xscale.entry <KeyPress-Return> [concat canvas_ok $id]
    bind $id.yscale.entry <KeyPress-Return> [concat canvas_ok $id]
    $id.xscale.entry select from 0
    $id.xscale.entry select adjust end
    focus $id.xscale.entry
}

############ pdtk_data_dialog -- run a data dialog #########
proc dodata_send {name} {
#    puts stderr [$name.text get 0.0 end]

    for {set i 1} {[$name.text compare [concat $i.0 + 3 chars] < end]} \
    	    {incr i 1} {
#    	puts stderr [concat it's [$name.text get $i.0 [expr $i + 1].0]]
    	set cmd [concat $name data [$name.text get $i.0 [expr $i + 1].0] \;]
#	puts stderr $cmd
    	pd $cmd
    }
    set cmd [concat $name end \;]
#    puts stderr $cmd
    pd $cmd
}

proc dodata_cancel {name} {
    set cmd [concat $name cancel \;]
#    puts stderr $cmd
    pd $cmd
}

proc dodata_ok {name} {
    dodata_send $name
    dodata_cancel $name
}

proc pdtk_data_dialog {name stuff} {
    
    toplevel $name
    wm title $name {Atom}
    wm protocol $name WM_DELETE_WINDOW [concat dodata_cancel $name]

    frame $name.buttonframe
    pack $name.buttonframe -side bottom -fill x -pady 2m
    button $name.buttonframe.send -text {Send (Ctrl s)}\
    	-command [concat dodata_send $name]
    button $name.buttonframe.ok -text {OK (Ctrl t)}\
    	-command [concat dodata_ok $name]
    pack $name.buttonframe.send -side left -expand 1
    pack $name.buttonframe.ok -side left -expand 1

    text $name.text -relief raised -bd 2 -height 40 -width 60 \
    	-yscrollcommand "$name.scroll set" -font -*-courier-bold--normal--12-*
    scrollbar $name.scroll -command "$name.text yview"
    pack $name.scroll -side right -fill y
    pack $name.text -side left -fill both -expand 1
    $name.text insert end $stuff
    focus $name.text
    bind $name.text <Control-t> [concat dodata_ok $name]
    bind $name.text <Control-s> [concat dodata_send $name]
}

############ check or uncheck the "edit" menu item ##############
#####################iemlib#######################
proc pdtk_canvas_editval {name value} {
    if { $value } {
	$name.m.edit.m entryconfigure "Edit mode" -indicatoron true
    } else {                          
        $name.m.edit.m entryconfigure "Edit mode" -indicatoron false
    }                                                 
}

proc pdtk_canvas_protectval {name value} {
    if { $value } {
	$name.m.edit.m entryconfigure "Protect" -indicatoron true
    } else {                          
        $name.m.edit.m entryconfigure "Protect" -indicatoron false
    }                                                 
}
#####################iemlib#######################

############ pdtk_text_new -- create a new text object #2###########
proc pdtk_text_new {canvasname myname x y text font color} {
#    if {$font < 13} {set fontname [format -*-courier-bold----%d-* $font]}
#    if {$font >= 13} {set fontname [format -*-courier-----%d-* $font]}
    $canvasname create text $x $y \
    	-font [format -*-courier-bold--normal--%d-* $font] \
    	-tags $myname -text $text -fill $color  -anchor nw 
#    pd [concat $myname size [$canvasname bbox $myname] \;]
}

################ pdtk_text_set -- change the text ##################
proc pdtk_text_set {canvasname myname text} {
    $canvasname itemconfig $myname -text $text
#    pd [concat $myname size [$canvasname bbox $myname] \;]
}

############### event binding procedures for Pd window ################

proc pdtk_pd_ctrlkey {name key shift} {
#    puts stderr [concat key $key shift $shift]
#    .dummy itemconfig goo -text [concat ---> control-key event $key];
    if {$key == "n" || $key == "N"} {menu_new}
    if {$key == "o" || $key == "O"} {menu_open}
    if {$key == "m" || $key == "M"} {menu_send}
    if {$key == "q" || $key == "Q"} {
    	if {$shift == 1} {menu_really_quit} else    {menu_quit}
    }
    if {$key == "slash"} {menu_audio 1}
    if {$key == "period"} {menu_audio 0}
}

######### startup function.  ##############
# Tell pd the current directory; this is used in case the command line
# asked pd to open something.  Also, get character width and height for
# font sizes 8, 10, 12, 14, 16, and 24.

proc pdtk_pd_startup {version} {
    global pd_myversion
    set pd_myversion $version

    set width1 [font measure  -*-courier-bold--normal--8-* x]
    set height1 [lindex [font metrics -*-courier-bold--normal--8-*] 5]

    set width2 [font measure  -*-courier-bold--normal--10-* x]
    set height2 [lindex [font metrics -*-courier-bold--normal--10-*] 5]

    set width3 [font measure  -*-courier-bold--normal--12-* x]
    set height3 [lindex [font metrics -*-courier-bold--normal--12-*] 5]

    set width4 [font measure  -*-courier-bold--normal--14-* x]
    set height4 [lindex [font metrics -*-courier-bold--normal--14-*] 5]

    set width5 [font measure  -*-courier-bold--normal--16-* x]
    set height5 [lindex [font metrics -*-courier-bold--normal--16-*] 5]

    set width6 [font measure  -*-courier-bold--normal--24-* x]
    set height6 [lindex [font metrics -*-courier-bold--normal--24-*] 5]

    set width7 [font measure  -*-courier-bold--normal--36-* x]
    set height7 [lindex [font metrics -*-courier-bold--normal--36-*] 5]

    pd [concat pd init [pdtk_enquote [pwd]] \
    	8 $width1 $height1 \
    	10 $width2 $height2 \
    	12 $width3 $height3 \
    	14 $width4 $height4 \
    	16 $width5 $height5 \
    	24 $width6 $height6 \
    	36 $width7 $height7 \
    	\;];
}

##################### DSP ON/OFF, METERS, DIO ERROR ###################
proc pdtk_pd_dsp {value} {
    global ctrls_audio_on
    if {$value == "ON"} {set ctrls_audio_on 1} else {set ctrls_audio_on 0}
#    puts stderr [concat its $ctrls_audio_on]
}

proc pdtk_pd_meters {indb outdb inclip outclip} {
#    puts stderr [concat meters $indb $outdb $inclip $outclip]
    global ctrls_inlevel ctrls_outlevel
    set ctrls_inlevel $indb
    if {$inclip == 1} {
    	.controls.in.clip configure -background red
    } else {
    	.controls.in.clip configure -background grey
    }
    set ctrls_outlevel $outdb
    if {$outclip == 1} {
    	.controls.out.clip configure -background red
    } else {
    	.controls.out.clip configure -background grey
    }
    
}

proc pdtk_pd_dio {red} {
#    puts stderr [concat dio $red]
    if {$red == 1} {
    	.controls.dio configure -background red -activebackground red
    } else {
    	.controls.dio configure -background grey -activebackground lightgrey
    }
    	
}

############# text editing from the "edit" menu ###################
set edit_number 1

proc texteditor_send {name} {
    set topname [string trimright $name .text]
    for {set i 0} \
    	{[$name compare [concat 0.0 + [expr $i + 1] chars] < end]} \
    	    {incr i 1} {
    	set cha [$name get [concat 0.0 + $i chars]]
    	scan $cha %c keynum
    	pd [concat pd key 1 $keynum \;]
    }
}

proc texteditor_ok {name} {
    set topname [string trimright $name .text]
    texteditor_send $name
    destroy $topname
}


proc pdtk_pd_texteditor {stuff} {
    global edit_number
    set name [format ".text%d" $edit_number]
    set edit_number [expr $edit_number + 1]

    toplevel $name
    wm title $name {TEXT}

    frame $name.buttons
    pack $name.buttons -side bottom -fill x -pady 2m
    button $name.buttons.send -text {Send (Ctrl s)}\
    	-command "texteditor_send $name.text"
    button $name.buttons.ok -text {OK (Ctrl t)}\
    	-command "texteditor_ok $name.text"
    pack $name.buttons.send -side left -expand 1
    pack $name.buttons.ok -side left -expand 1

    text $name.text -relief raised -bd 2 -height 12 -width 60 \
    	-yscrollcommand "$name.scroll set" -font -*-courier-bold--normal--12-*
    scrollbar $name.scroll -command "$name.text yview"
    pack $name.scroll -side right -fill y
    pack $name.text -side left -fill both -expand 1
    $name.text insert end $stuff
    focus $name.text
    bind $name.text <Control-t> {texteditor_ok %W}
    bind $name.text <Control-s> {texteditor_send %W}
}

############# open and save dialogs for objects in Pd ##########

proc pdtk_openpanel {target} {
    global pd_opendir
    global pd_nt
    if {$pd_nt == 2} {
	cd $pd_opendir
	set filename [tk_getOpenFile ]
    } else {
	set filename [tk_getOpenFile \
    	    -initialdir $pd_opendir]
    }
    if {$filename != ""} {
    	set directory [string range $filename 0 \
    	    [expr [string last / $filename ] - 1]]
    	set pd_opendir $directory

    	pd [concat $target symbol [pdtk_enquote $filename] \;]
    }
}

proc pdtk_savepanel {target} {
    set filename [tk_getSaveFile]
    if {$filename != ""} {
    	pd [concat $target symbol [pdtk_enquote $filename] \;]
    }
}

########################### comport hack ########################

set com1 0
set com2 0
set com3 0
set com4 0

proc com1_open {} {
    global com1
    set com1 [open com1 w]
    .dummy itemconfig goo -text $com1
    fconfigure $com1 -buffering none
    fconfigure $com1 -mode 19200,e,8,2
}

proc com1_send {str} {
    global com1
    puts -nonewline $com1 $str
}


############# start a polling process to watch the socket ##############
# this is needed for nt, and presumably for Mac as well.
# in UNIX this is handled by a tcl callback (set up in t_tkcmd.c)

if {$pd_nt == 1} {
    proc polleofloop {} {
    	pd_pollsocket
    	after 20 polleofloop
    }

    polleofloop
}