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
|
\ popup.fs -- popup.scm|rb --> popup.fs
\ Translator/Author: Michael Scholz <mi-scholz@users.sourceforge.net>
\ Created: 05/12/23 00:28:28
\ Changed: 19/12/23 17:58:28
\
\ @(#)popup.fs 1.52 12/23/19
\ selection-popup-menu
\ graph-popup-menu
\ fft-popup-menu
\ edit-history-menu
\ listener-popup-menu
\
\ add-popups ( -- )
\
\ edhist-help-edits ( w c i -- )
\ change-menu-color ( menu new-color -- )
\ change-selection-popup-color ( new-color -- )
\ change-graph-popup-color ( new-color -- )
\ change-fft-popup-color ( new-color -- )
\ change-edhist-popup-color ( new-color -- )
\ change-listener-popup-color ( new-color -- )
'snd-motif provided? [unless] skip-file [then]
require snd-xm
require extensions
\ for prefs
: edhist-help-edits <{ w c info -- }>
"Edit History Functions"
"This popup menu gives access to the edit-list \
function handlers in Snd. \
At any time you can backup in the edit list, \
'save' the current trailing edits, make some \
new set of edits, then 'reapply' the saved edits. \
The 'apply' choice gives access to all \
currently saved edit lists -- any such list can be applied to any channel. \
'Clear' deletes all saved edit lists."
#( "{edit lists}" "{edit-list->function}" )
#( "extsnd.html#editlists" "extsnd.html#editlist_to_function" )
help-dialog drop
;
1 "PROC is the only argument." create-hook edhist-save-hook
hide
#() value cascade-popup-cb-list
: widget->name ( w -- s )
FXtName
;
: popup-post-it { menu info -- }
info menu Fset_menuToPost drop
;
\ --- make-simple-popdown-menu for fft-popup-menu ---
: popup-cascade-cb { children cb -- prc; w c i self -- }
3 proc-create ( prc )
cb , children ,
does> { w c info self -- }
self @ { cb }
self cell+ @ { children }
cb #( children ) run-proc drop
;
: make-simple-popdown-menu { label popdown-labels parent cascade-cb -- }
parent label #( FXmNbackground highlight-color )
undef FXmCreatePulldownMenu { top }
parent label
#( FXmNbackground highlight-color FXmNsubMenuId top )
FXmVaCreateManagedCascadeButton { menu }
#() { children }
nil { c }
popdown-labels proc? if
\ edhist sends a proc to set TOP to edhist-widgets
popdown-labels #( top ) run-proc drop
else
\ else arrays of #( name proc ) lists
popdown-labels each { poplab }
top poplab 0 array-ref
#( FXmNbackground highlight-color )
FXmVaCreateManagedPushButton to c
c FXmNactivateCallback poplab 1 array-ref
undef FXtAddCallback drop
children c array-push drop
end-each
then
cascade-cb if
menu FXmNcascadingCallback
children cascade-cb popup-cascade-cb
undef FXtAddCallback drop
then
;
\ --- make-popdown-entry for listener-popup-menu ---
#() value listener-values
: collector-cb { func collector -- prc; w c i self -- val }
3 proc-create ( prc )
func , collector ,
does> { w c info self -- val }
self @ { func }
self cell+ @ { collector }
collector #( sounds ) run-proc ( lst )
0 array-ref 1 >array func swap run-proc
;
: cas-cb ( func -- prc; w c i self -- val )
{ func }
3 proc-create ( prc )
func ,
does> { w c info self -- val }
self @ ( func ) #( w current-label 0 find-sound ) run-proc
;
: popdown-cascade-cb { func coll menu children -- prc; w c i self -- }
3 proc-create ( prc )
func , coll , menu , children ,
does> { w c info self -- }
self @ { func }
self cell+ @ { collector }
self 2 cells + @ { menu }
self 3 cells + @ { children }
children each ( child )
FXtUnmanageChild drop
end-each
collector #( sounds ) run-proc { snds }
children length { clen }
snds length { slen }
clen slen < if
slen clen ?do
menu ""
#( FXmNbackground highlight-color )
FXmVaCreateManagedPushButton { c }
c FXmNactivateCallback
func cas-cb
undef FXtAddCallback drop
children c array-push drop
loop
then
slen if
children each { child }
snds i array-ref { snd }
child snd short-file-name change-label
child FXtManageChild drop
end-each
then
;
: make-popdown-entry { label parent func collector with-one -- }
#f { widget }
#() { children }
with-one if
parent label
#( FXmNbackground highlight-color )
FXmVaCreateManagedPushButton to widget
widget FXmNactivateCallback
func collector collector-cb
undef FXtAddCallback drop
then
parent label #( FXmNbackground highlight-color )
undef FXmCreatePulldownMenu { menu }
parent label
#( FXmNbackground highlight-color
FXmNsubMenuId menu )
FXmVaCreateManagedCascadeButton { cas-wid }
cas-wid FXmNcascadingCallback
func collector menu children popdown-cascade-cb
undef FXtAddCallback drop
listener-values #( widget menu cas-wid collector )
array-push drop
;
\ --- make-popup-menu for graph-, fft-, and listener-menu ---
\
\ general entries:
\ entries: #( #( name type cb func ) ... )
\
\ simple popdown (fft-menu)
\ entries: #( #( name type labels-array cb ) ... )
\
\ special popdown (listener)
\ entries: #( #( name type func collector with-one ) ... )
: make-popup-menu ( name parent entries -- menu )
{ name parent entries }
parent name
#( FXmNpopupEnabled FXmPOPUP_AUTOMATIC
FXmNbackground highlight-color )
undef FXmCreatePopupMenu { menu }
entries each { entry }
#f { casc }
\ string
entry 0 array-ref { label }
\ 'label|'separator|'cascade|#f
entry 1 array-ref { typ }
typ 'label = if
FxmLabelWidgetClass
else
typ 'separator = if
FxmSeparatorWidgetClass
else
FxmPushButtonWidgetClass
then
then { class }
typ 'cascade = if
entry length 4 = if \ fft/edhist menu
label
entry 2 array-ref ( labels )
menu
entry 3 array-ref ( prc )
make-simple-popdown-menu
else \ listener menu
label
menu
entry 2 array-ref ( func )
entry 3 array-ref ( collector )
entry 4 array-ref ( with-one )
make-popdown-entry
then
else
label class menu
#( FXmNbackground highlight-color )
undef FXtCreateManagedWidget { wid }
entry 2 array-ref { cb } \ cb: 3 args or #f
cb if
wid FXmNactivateCallback cb
undef FXtAddCallback drop
then
entry 3 array-ref { prc } \ func: 1 arg or #f
prc if
prc #( wid ) run-proc drop
then
then
end-each
menu
;
\ --- selection popup ---
: sel-stop-play-cb { vars -- prc; self -- val }
0 proc-create ( prc )
vars ,
does> { self -- val }
self @ { vars }
vars :stopping array-assoc-ref if
vars :stopping #f array-assoc-set!
( vars ) :stop-widget array-assoc-ref { w }
w widget? if
w "Play" change-label
then
then
#f
;
: sel-play-again-cb ( -- val )
selection play
;
: sel-play-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ { vars }
vars :stopping array-assoc-ref if
w "Play" change-label
vars :stopping #f array-assoc-set!
( vars ) :stopping1 array-assoc-ref if
vars :stopping1 #f array-assoc-set!
( vars ) :stop-widget1 array-assoc-ref
"Loop play" change-label
stop-playing-selection-hook
<'> sel-play-again-cb remove-hook! drop
then
undef stop-playing
else
w "Stop" change-label
vars :stop-widget w array-assoc-set!
( vars ) :stopping #t array-assoc-set! drop
selection play
then
;
: sel-loop-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ { vars }
vars :stopping1 array-assoc-ref if
w "Loop play" change-label
vars :stopping1 #f array-assoc-set!
( vars ) :stopping array-assoc-ref if
vars :stopping #f array-assoc-set!
( vars ) :stop-widget array-assoc-ref "Play" change-label
then
stop-playing-selection-hook
<'> sel-play-again-cb remove-hook! drop
undef stop-playing
else
w "Stop!" change-label
vars :stop-widget1 w array-assoc-set!
( vars ) :stopping1 #t array-assoc-set! drop
stop-playing-selection-hook <'> sel-play-again-cb add-hook!
selection play
then
;
: as-one-edit-thunk { sel -- prc; self -- val }
0 proc-create ( prc )
sel ,
does> { self -- val }
self @ { sel }
sel 0 array-ref { snd }
sel 1 array-ref { chn }
snd chn selection-position { beg }
snd chn selection-framples { len }
beg 0> if
0 beg snd chn delete-samples drop
then
snd chn #f framples { frms }
len frms < if
len 1+ frms len - snd chn delete-samples drop
then
#f
;
: sel-del <{ w c info -- val }>
delete-selection
;
: sel-zero <{ w c info -- val }>
0.0 scale-selection-by
;
: sel-norm <{ w c info -- val }>
1.0 scale-selection-to
;
: sel-crop <{ w c info -- val }>
selection-members each ( sel )
as-one-edit-thunk "" as-one-edit drop
end-each
#f
;
: sel-save-as <{ w c info -- val }>
#t save-selection-dialog
;
: sel-copy <{ w c info -- val }>
snd-tempnam { new-file-name }
new-file-name save-selection drop
new-file-name open-sound
;
: sel-cut <{ w c info -- val }>
snd-tempnam { new-file-name }
new-file-name save-selection drop
delete-selection drop
new-file-name open-sound
;
: sel-marks <{ w c info -- val }>
selection-members each { select }
select 0 array-ref { snd }
select 1 array-ref { chn }
snd chn selection-position { pos }
snd chn selection-framples 1- { len }
pos snd chn #f 0 add-mark drop
pos len d+ snd chn #f 0 add-mark drop
end-each
#f
;
\ choice 2 == selection
: sel-appcnt <{ w c info -- val }>
\ (apply-controls :optional snd (choice 0) (beg 0) (dur len))
\ choice: 0 snd
\ 1 chn
\ 2 sel
selected-sound 2 undef undef apply-controls
;
: sel-rescnt <{ w c info -- val }>
selected-sound reset-controls
;
: sel-unsel <{ w c info -- val }>
#f #t #f set-selection-member?
;
: sel-rev <{ w c info -- val }>
reverse-selection
;
: sel-mix <{ w c info -- val }>
#f #f #f cursor mix-selection
;
: sel-invert <{ w c info -- val }>
-1.0 scale-selection-by
;
: sel-info <{ w c info -- val }>
selected-sound { snd }
snd selected-channel { chn }
snd chn selection-position { beg }
snd chn selection-framples { len }
" start: %d, %.3f\n" #( beg beg #f srate f/ ) string-format ( str )
" end: %d, %.3f\n" #( beg len + dup #f srate f/ ) string-format $+
" duration: %d, %.3f\n" #( len len #f srate f/ ) string-format $+
" chans: %d\n" #( selection-chans ) string-format $+
" maxamp: %.3f\n" #( #f #f selection-maxamp ) string-format $+ { str }
"Selection info" str info-dialog
;
let: ( -- menu )
#a( :stopping #f
:stopping1 #f
:stop-widget #f
:stop-widget1 #f ) { vars }
stop-playing-selection-hook vars sel-stop-play-cb add-hook!
"selection-popup" main-widgets 2 array-ref
#( #( "Selection" 'label #f #f )
#( "sep" 'separator #f #f )
#( "Play" #f vars sel-play-cb #f )
#( "Loop play" #f vars sel-loop-cb #f )
#( "Delete" #f <'> sel-del #f )
#( "-> 0.0" #f <'> sel-zero #f )
#( "-> 1.0" #f <'> sel-norm #f )
#( "Crop" #f <'> sel-crop #f )
#( "Save as" #f <'> sel-save-as #f )
#( "Copy -> new" #f <'> sel-copy #f )
#( "Cut -> new" #f <'> sel-cut #f )
#( "Snap marks" #f <'> sel-marks #f )
#( "Apply controls" #f <'> sel-appcnt #f )
#( "Reset controls" #f <'> sel-rescnt #f )
#( "Unselect" #f <'> sel-unsel #f )
#( "Reverse" #f <'> sel-rev #f )
#( "Mix" #f <'> sel-mix #f )
#( "Invert" #f <'> sel-invert #f )
#( "Info" #f <'> sel-info #f )
) make-popup-menu
;let constant selection-popup-menu
\ --- time domain popup ---
: graph-popup-snd ( -- snd ) #f snd-snd ;
: graph-popup-chn ( -- chn ) #f snd-chn ;
: stop-playing-cb { vars -- prc; snd self -- val }
1 proc-create ( prc )
vars ,
does> { snd self -- val }
self @ { vars }
vars :stopping array-assoc-ref if
vars :stopping #f array-assoc-set!
( vars ) :stop-widget array-assoc-ref ?dup-if
"Play" change-label
then
then
#f
;
: play-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ { vars }
vars :stopping array-assoc-ref if
vars :stopping #f array-assoc-set! drop
w "Play" change-label
undef stop-playing
else
w "Stop" change-label
vars :stopping #t array-assoc-set! drop
graph-popup-snd play
then
;
: stop-cb { vars -- prc; widget self -- val }
1 proc-create ( prc )
vars ,
does> { w self -- val }
self @ ( vars ) :stop-widget w array-assoc-set!
;
: pchan-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ ( vars ) :stopping #t array-assoc-set!
( vars ) :stop-widget array-assoc-ref "Stop" change-label
graph-popup-snd :channel graph-popup-chn play
;
: pcur-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ ( vars ) :stopping #t array-assoc-set!
( vars ) :stop-widget array-assoc-ref "Stop" change-label
graph-popup-snd
:start graph-popup-snd graph-popup-chn #f cursor
play
;
: pprev-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ ( vars ) :stopping #t array-assoc-set!
( vars ) :stop-widget array-assoc-ref "Stop" change-label
graph-popup-snd
:channel graph-popup-chn
:edit-position graph-popup-snd graph-popup-chn edit-position 1-
play
;
: porig-cb { vars -- prc; w c i self -- val }
3 proc-create ( prc )
vars ,
does> { w c info self -- val }
self @ ( vars ) :stopping #t array-assoc-set!
( vars ) :stop-widget array-assoc-ref "Stop" change-label
graph-popup-snd :channel graph-popup-chn :edit-position 0 play
;
: pundo-cb <{ w c info -- val }>
1 graph-popup-snd graph-popup-chn undo
;
: predo-cb <{ w c info -- val }>
1 graph-popup-snd graph-popup-chn redo
;
: prev-cb <{ w c info -- val }>
graph-popup-snd revert-sound
;
: popen-cb <{ w c info -- val }>
#t open-file-dialog
;
: psave-cb <{ w c info -- val }>
graph-popup-snd save-sound
;
: psaveas-cb <{ w c info -- val }>
graph-popup-snd select-sound drop #t save-sound-dialog
;
: pupdate-cb <{ w c info -- val }>
graph-popup-snd update-sound
;
: pclose-cb <{ w c info -- val }>
graph-popup-snd close-sound-extend
#f
;
: pmixsel-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn #f cursor
graph-popup-snd graph-popup-chn mix-selection
;
: pinssel-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn #f cursor
graph-popup-snd graph-popup-chn insert-selection
;
: prepsel-cb <{ w c info -- val }>
graph-popup-snd { snd }
graph-popup-chn { chn }
snd chn #f cursor { beg }
snd chn selection-framples { len }
snd chn selection-position { sbeg }
snd chn selection-member? not
beg len + sbeg < ||
beg sbeg len + > || if
beg len snd chn #f delete-samples drop
beg snd chn insert-selection
else
beg sbeg < if
beg sbeg beg - snd chn #f delete-samples
else
#f
then
then
;
: pselall-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn select-all
;
: punsel-cb <{ w c info -- val }>
#f #t #f set-selection-member?
;
: papcnt-cb <{ w c info -- val }>
\ (apply-controls :optional snd (choice 0) (beg 0) (dur len))
\ choice: 0 snd
\ 1 chn
\ 2 sel
graph-popup-snd 0 undef undef apply-controls
;
: precnt-cb <{ w c info -- val }>
graph-popup-snd reset-controls
;
: print-props { props -- str }
object-print-length { old-len }
print-length { old-vct-len }
3 set-object-print-length
3 set-print-length drop
"" ( str )
props each { prop } \ ( key . val )
( str )
" %s: %s\n"
#( prop 0 array-ref prop 1 array-ref ) string-format $+
end-each
( str )
old-len set-object-print-length
old-vct-len set-print-length drop
( str )
;
: paddmrk-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn #f cursor ( samp )
graph-popup-snd graph-popup-chn #f ( name ) 0 ( sync ) add-mark
;
: pdelmrk-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn #f marks { ms }
ms nil? unless
ms length 1 = if
ms 0 array-ref delete-mark drop
else
graph-popup-snd graph-popup-chn #f cursor { loc }
ms 0 array-ref { id }
loc id undef mark-sample - abs { cur-min }
ms each { m }
loc m undef mark-sample - abs { this-min }
this-min cur-min < if
this-min to cur-min
m to id
then
end-each
id delete-mark
then
then
#f
;
: pdelamrk-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn delete-marks
;
: pnextmrk-cb <{ w c info -- val }>
[char] j 4 graph-popup-snd graph-popup-chn key \ C-j
;
: plastmrk-cb <{ w c info -- val }>
[char] - 4 graph-popup-snd graph-popup-chn key drop \ C--
[char] j 4 graph-popup-snd graph-popup-chn key \ C-j
;
: pnorm-cb <{ w c info -- val }>
1.0 graph-popup-snd graph-popup-chn scale-to
;
: pinfo-cb <{ w c info -- val }>
graph-popup-snd { snd }
graph-popup-chn { chn }
snd chn #f framples { frms }
snd srate { sr }
" chans: %d, srate: %d\n" #( snd channels sr ) string-format ( str )
" format: %s [%s]\n"
#( snd sample-type mus-sample-type-name
snd header-type mus-header-type-name ) string-format $+
" length: %.3f (%d framples)\n" #( frms sr f/ frms ) string-format $+
snd #t #f maxamp each { mx }
"%6s %c: %.3f\n" #( "maxamp" [char] A i + mx ) string-format $+
end-each
snd comment empty? unless
" comment: %s\n" #( snd comment ) string-format $+
then
snd file-name mus-sound-loop-info { loops }
loops nil? unless
" loop: %s\n" #( loops ) string-format $+
then
snd header-type mus-soundfont = if
" sounds: %s\n" #( snd soundfont-info ) string-format $+
then
snd sound-properties { props }
props nil? unless
"properties:\n" $+
props print-props $+
then
snd channels 0 ?do
snd i channel-properties to props
props nil? unless
"chan %d properties:\n" #( i ) string-format $+
props print-props $+
then
loop { str }
snd file-name " info" $+ str info-dialog
;
: exit-cb <{ w c info -- val }>
0 snd-exit
;
let: ( -- menu )
#a( :stopping #f :stop-widget #f ) { vars }
stop-playing-hook vars stop-playing-cb add-hook!
"graph-popup" main-widgets 2 array-ref
#( #( "Snd" 'label #f #f )
#( "sep" 'separator #f #f )
#( "Play" #f vars play-cb vars stop-cb )
#( "Play channel" #f vars pchan-cb #f )
#( "Play from cursor" #f vars pcur-cb #f )
#( "Play previous" #f vars pprev-cb #f )
#( "Play original" #f vars porig-cb #f )
#( "Undo" #f <'> pundo-cb #f )
#( "Redo" #f <'> predo-cb #f )
#( "Revert" #f <'> prev-cb #f )
#( "Open" #f <'> popen-cb #f )
#( "Save" #f <'> psave-cb #f )
#( "Save as" #f <'> psaveas-cb #f )
#( "Update" #f <'> pupdate-cb #f )
#( "Close" #f <'> pclose-cb #f )
#( "Mix selection" #f <'> pmixsel-cb #f )
#( "Insert selection" #f <'> pinssel-cb #f )
#( "Replace with selection" #f <'> prepsel-cb #f )
#( "Select all" #f <'> pselall-cb #f )
#( "Unselect" #f <'> punsel-cb #f )
#( "Apply controls" #f <'> papcnt-cb #f )
#( "Reset controls" #f <'> precnt-cb #f )
#( "Add mark" #f <'> paddmrk-cb #f )
#( "Delete mark" #f <'> pdelmrk-cb #f )
#( "Delete all marks" #f <'> pdelamrk-cb #f )
#( "To next mark" #f <'> pnextmrk-cb #f )
#( "To last mark" #f <'> plastmrk-cb #f )
#( "-> 1.0" #f <'> pnorm-cb #f )
#( "Info" #f <'> pinfo-cb #f )
#( "sep" 'separator #f #f )
#( "Exit" #f <'> exit-cb #f )
) make-popup-menu
;let constant graph-popup-menu
: graph-popup-cb { snd chn -- prc; w self -- }
1 proc-create ( prc )
chn , snd ,
does> { w self -- }
self @ { chn }
self cell+ @ { snd }
snd chn edits { eds }
w widget->name { name }
name "Snd" string= if
snd channels 1 > if
"%s[%d]"
#( snd short-file-name chn )
string-format w swap change-label
else
w snd short-file-name change-label
then
#f
exit
then
name "Save" string=
name "Undo" string= ||
name "Revert" string= ||
name "Play previous" string= || if
w eds 0 array-ref 0> if
show-widget
else
hide-widget
then
exit
then
name "Play channel" string= if
w snd channels 1 > if
show-widget
else
hide-widget
then
exit
then
name "Redo" string= if
w eds 1 array-ref 0> if
show-widget
else
hide-widget
then
exit
then
name "Mix selection" string=
name "Insert selection" string= ||
name "Unselect" string= ||
name "Replace with selection" string= || if
w undef selection? if
show-widget
else
hide-widget
then
exit
then
name "Play from cursor" string= if
w snd chn #f cursor 0> if
show-widget
else
hide-widget
then
exit
then
name "Play original" string= if
w eds 0 array-ref 1 > if
show-widget
else
hide-widget
then
exit
then
name "Delete mark" string=
name "Delete all marks" string= ||
name "To next mark" string= ||
name "To last mark" string= || if
w snd chn #f marks nil? unless
show-widget
else
hide-widget
then
else
#f
then
;
\ --- fft popup ---
: choose-chan ( -- chn )
graph-popup-snd channel-style channels-separate = if
graph-popup-chn
else
#t
then
;
: fft-peaks-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn show-transform-peaks not
graph-popup-snd choose-chan set-show-transform-peaks
;
: fft-db-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn fft-log-magnitude not
graph-popup-snd choose-chan set-fft-log-magnitude
;
: fft-frq-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn fft-log-frequency not
graph-popup-snd choose-chan set-fft-log-frequency
;
: fft-norm-cb <{ w c info -- val }>
graph-popup-snd graph-popup-chn
transform-normalization dont-normalize = if
normalize-by-channel graph-popup-snd choose-chan
else
dont-normalize graph-popup-snd choose-chan
then set-transform-normalization
;
: grp-lst-cb { val -- prc; w c i self -- val }
3 proc-create ( prc )
val ,
does> { w c info self -- val }
self @ ( val ) graph-popup-snd choose-chan set-transform-graph-type
;
: grp-labs ( -- ary )
#( #( "once" graph-once grp-lst-cb )
#( "sonogram" graph-as-sonogram grp-lst-cb )
#( "spectrogram" graph-as-spectrogram grp-lst-cb ) )
;
: grp-set <{ lst -- }>
graph-popup-snd graph-popup-chn transform-graph-type { tp }
lst each ( child )
i tp <> set-sensitive
end-each
;
#( 32 64 128 256 512 1024 2048 4096 8192 16384 65536 262144 1048576 )
constant fft-siz-sizes
: siz-lst-cb { val -- prc; w c i self -- val }
3 proc-create ( prc )
val ,
does> { w c info self -- val }
self @ ( val ) graph-popup-snd choose-chan set-transform-size
;
: siz-labs ( -- ary )
fft-siz-sizes map
#( *key* object->string *key* siz-lst-cb )
end-map ( ary )
;
: siz-set <{ lst -- }>
graph-popup-snd graph-popup-chn transform-size { siz }
lst each ( child )
fft-siz-sizes i array-ref siz <> set-sensitive
end-each
;
#( rectangular-window
hann-window
welch-window
parzen-window
bartlett-window
hamming-window
blackman2-window
blackman3-window
blackman4-window
exponential-window
riemann-window
kaiser-window
cauchy-window
poisson-window
gaussian-window
tukey-window
dolph-chebyshev-window
hann-poisson-window
connes-window
samaraki-window
ultraspherical-window
bartlett-hann-window
bohman-window
flat-top-window
blackman5-window
blackman6-window
blackman7-window
blackman8-window
blackman9-window
blackman10-window
rv2-window
rv3-window
rv4-window
mlt-sine-window
papoulis-window
sinc-window ) constant fft-win-windows
: win-lst-cb { val -- prc; w c i self -- val }
3 proc-create ( prc )
val ,
does> { w c info self -- val }
self @ ( val ) graph-popup-snd choose-chan set-fft-window
;
: win-labs ( -- ary )
#( "Rectangular"
"Hann"
"Welch"
"Parzen"
"Bartlett"
"Hamming"
"Blackman2"
"Blackman3"
"Blackman4"
"Exponential"
"Riemann"
"Kaiser"
"Cauchy"
"Poisson"
"Gaussian"
"Tukey"
"Dolph-Chebyshev"
"Hann-Poisson"
"Connes"
"Samaraki"
"Ultraspherical"
"Bartlett-Hann"
"Bohman"
"Flat-top"
"Blackman5"
"Blackman6"
"Blackman7"
"Blackman8"
"Blackman9"
"Blackman10"
"Rife-Vincent2"
"Rife-Vincent3"
"Rife-Vincent4"
"MLT Sine"
"Papoulis"
"Sinc" ) map
#( *key* fft-win-windows i array-ref win-lst-cb )
end-map
;
: win-set <{ lst -- }>
graph-popup-snd graph-popup-chn fft-window { win }
lst each ( child )
fft-win-windows i array-ref win <> set-sensitive
end-each
;
#( fourier-transform
wavelet-transform
walsh-transform
autocorrelation
cepstrum
haar-transform ) value fft-trn-transform
: trn-lst-cb { val -- prc; w c i self -- val }
3 proc-create ( prc )
val ,
does> { w c info self -- }
self @ ( val ) graph-popup-snd choose-chan set-transform-type
;
: trn-labs ( -- ary )
#( "Fourier" "Wavelet" "Walsh" "Autocorrelate" "Cepstrum" "Haar" ) map
#( *key* fft-trn-transform i array-ref trn-lst-cb )
end-map ( ary )
;
: trn-set <{ lst -- }>
graph-popup-snd graph-popup-chn transform-type { trn }
lst each ( child )
fft-trn-transform i array-ref trn equal? not set-sensitive
end-each
;
: typ-lst-cb { val -- prc; w c i self -- val }
3 proc-create ( prc )
val ,
does> { w c info self -- val }
self @ ( val ) graph-popup-snd choose-chan set-wavelet-type
;
: typ-labs ( -- ary )
#( "doub4"
"doub6"
"doub8"
"doub10"
"doub12"
"doub14"
"doub16"
"doub18"
"doub20"
"battle-lemarie"
"burt-adelson"
"beylkin"
"coif2"
"coif4"
"coif6"
"sym2"
"sym3"
"sym4"
"sym5"
"sym6"
"doub22"
"doub24"
"doub26"
"doub28"
"doub30"
"doub32"
"doub34"
"doub36"
"doub38"
"doub40"
"doub42"
"doub44"
"doub46"
"doub48"
"doub50"
"doub52"
"doub54"
"doub56"
"doub58"
"doub60"
"doub62"
"doub64"
"doub66"
"doub68"
"doub70"
"doub72"
"doub74"
"doub76" ) map
#( *key* i typ-lst-cb )
end-map
;
: typ-set <{ lst -- }>
graph-popup-snd graph-popup-chn wavelet-type { tp }
lst each ( child )
i tp <> set-sensitive
end-each
;
: fft-color <{ w c info -- val }>
#t color-orientation-dialog
;
let: ( -- menu )
"fft-popup" main-widgets 2 array-ref
#( #( "Transform" 'label #f #f )
#( "sep" 'separator #f #f )
#( "Peaks" #f <'> fft-peaks-cb #f )
#( "dB" #f <'> fft-db-cb #f )
#( "Log freq" #f <'> fft-frq-cb #f )
#( "Normalize" #f <'> fft-norm-cb #f )
#( "Graph type" 'cascade grp-labs <'> grp-set )
#( "Size" 'cascade siz-labs <'> siz-set )
#( "Window" 'cascade win-labs <'> win-set )
#( "Transform type" 'cascade trn-labs <'> trn-set )
#( "Wavelet type" 'cascade typ-labs <'> typ-set )
#( "Color/Orientation" #f <'> fft-color #f )
) make-popup-menu
;let constant fft-popup-menu
: fft-popup-cb { snd chn -- prc; w self -- val }
1 proc-create ( prc )
chn , snd ,
does> { w self -- val }
self @ { chn }
self cell+ @ { snd }
w widget->name { name }
name "Peaks" string= if
w snd chn show-transform-peaks if
"No peaks"
else
"Peaks"
then change-label
else
name "dB" string= if
w snd chn fft-log-magnitude if
"Linear"
else
"dB"
then change-label
else
name "Log freq" string= if
w snd chn fft-log-frequency if
"Linear freq"
else
"Log freq"
then change-label
then
then
then
cascade-popup-cb-list each { entry }
entry 0 array-ref #( entry 1 array-ref ) run-proc drop
end-each
#f
;
: popup-install { snd chn xe ye info -- }
snd chn transform-graph? if
snd chn transform-graph axis-info
else
#f
then { fax }
snd chn lisp-graph? if
snd chn lisp-graph axis-info
else
#f
then { lax }
fax if
xe fax 10 array-ref >=
xe fax 12 array-ref <= && if
\ in fft
fft-popup-menu snd chn fft-popup-cb for-each-child
fft-popup-menu info popup-post-it
#f
else
#t
then
else
#t
then if
lax if
xe lax 10 array-ref >=
xe lax 12 array-ref <= && if
\ in lisp
#f
else
#t
then
else
#t
then if
undef selection? if
snd graph-popup-chn selection-position { pos }
snd srate { sr }
\ BEG and END should be floats
pos sr f/ { beg }
pos snd graph-popup-chn selection-framples f+
sr f/ { end }
xe beg snd chn undef x->position >=
xe end snd chn undef x->position <= && if
selection-popup-menu info popup-post-it
#f
else
#t
then
else
#t
then if
graph-popup-menu
graph-popup-snd graph-popup-chn
graph-popup-cb for-each-child
graph-popup-menu info popup-post-it
then
then
then
;
\ --- edit history popup ---
#() value edhist-funcs
#() value edhist-widgets
: edhist-snd ( -- snd ) #f snd-snd ;
: edhist-chn ( -- chn ) #f snd-chn ;
: edhist-funcs-index { key -- idx|-1 }
-1 ( idx )
edhist-funcs each
( val ) car key equal? if
drop \ drop -1
i \ set to current index
leave
then
end-each ( idx )
;
: edhist-funcs-ref { key -- val|#f }
key edhist-funcs-index { idx }
idx 0>= if
edhist-funcs idx array-ref cadr \ => proc
else
#f
then
;
: edhist-funcs-set! { key val -- }
key edhist-funcs-index { idx }
idx 0>= if
edhist-funcs idx #( key val ) array-set!
else
edhist-funcs #( key val ) array-push to edhist-funcs
then
;
: edhist-clear-edits <{ w c info -- #f }>
#() to edhist-funcs
#f
;
: edhist-save-edits <{ w c info -- val }>
edhist-snd { snd }
edhist-chn { chn }
#( snd chn ) edhist-funcs-ref { old-prc }
snd chn edits { cur-edits }
0 ( sum )
cur-edits each ( val )
+ ( sum += val )
end-each { sum }
snd chn cur-edits car 1+ sum edit-list->function { prc }
edhist-save-hook #( prc ) run-hook drop
#( snd chn ) prc edhist-funcs-set!
#f
;
: edhist-reapply-edits <{ w c info -- val }>
#( edhist-snd edhist-chn ) edhist-funcs-ref { prc }
prc proc? if
prc #( edhist-snd edhist-chn ) run-proc
else
#f
then
;
: edhist-set-wid <{ w -- }>
edhist-widgets w array-push to edhist-widgets
;
: edhist-apply <{ w c info -- val }>
\ context (c) is index (i) from edhist-apply-edits, see below
edhist-funcs c range? if
edhist-funcs c array-ref cadr ( prc )
#( edhist-snd edhist-chn ) run-proc
else
#f
then
;
: edhist-apply-edits <{ dummy -- val }>
edhist-widgets car { parent }
edhist-widgets cdr { wids }
edhist-funcs each car { label }
nil { button }
wids nil? if
parent "wid"
#( FXmNbackground highlight-color )
FXmVaCreateManagedPushButton to button
edhist-widgets button array-push to edhist-widgets
\ index (i) is context (c) in edhist-apply, see above
button FXmNactivateCallback
<'> edhist-apply i FXtAddCallback drop
else
wids car to button
wids cdr to wids
button FXtManageChild drop
then
label array? if \ label: #( snd chn )
button "%s[%s]"
#( label car short-file-name
label cadr ) string-format
else \ label: "file-name[chn]"
button label
then change-label
end-each
wids each ( w )
FXtUnmanageChild drop
end-each
#f
;
: edhist-close-hook-cb <{ snd -- }>
snd short-file-name { name }
snd channels 0 ?do
#( snd i ) edhist-funcs-ref { old-val }
old-val array? if
old-val 0 "%s[%d]" #( name i ) string-format array-set!
then
loop
;
let: ( -- menu )
close-hook <'> edhist-close-hook-cb add-hook!
"edhist-popup" main-widgets 2 array-ref
#( #( "Edits" 'label #f #f )
#( "sep" 'separator #f #f )
#( "Save" #f <'> edhist-save-edits #f )
#( "Reapply" #f <'> edhist-reapply-edits #f )
#( "Apply" 'cascade <'> edhist-set-wid <'> edhist-apply-edits )
#( "Clear" #f <'> edhist-clear-edits #f )
#( "sep" 'separator #f #f )
#( "Help" #f <'> edhist-help-edits #f )
) make-popup-menu
;let constant edit-history-menu
: edhist-popup-cb <{ w -- val }>
edhist-snd { snd }
edhist-chn { chn }
w FXtName { name }
name "Clear" string=
name "Apply" string= || if
w edhist-funcs empty? not set-sensitive
else
name "Save" string= if
snd chn edits { eds }
0 ( sum )
eds each ( val )
+ ( sum += val )
end-each { sum }
w sum 0> set-sensitive
else
name "Reapply" string= if
#( snd chn ) edhist-funcs-ref { prc }
w prc word? set-sensitive
then
then
then
#f
;
: edhist-popup-handler-cb <{ w c info -- val }>
info Fevent { ev }
FButtonPress ev Ftype = if
edit-history-menu <'> edhist-popup-cb for-each-child
edit-history-menu info popup-post-it
then
#f
;
: popup-handler-cb <{ w c info -- val }>
info Fevent { ev }
ev Fx_root w 0 0 FXtTranslateCoords 0 array-ref - { xe }
ev Fy { ye }
FButtonPress ev Ftype = if
edhist-snd edhist-chn xe ye info popup-install
then
#f
;
\ --- listener popup ---
: identity-cb <{ snds -- lst }>
snds
;
: edited-cb <{ snds -- lst }>
snds each { snd }
snd channels 0 ?do
snd i edits 0 array-ref 0= if
snds snd array-delete-key drop
then
loop
end-each
snds
;
: focused-cb <{ snds -- lst }>
snds length 1 > if
snds
else
#()
then
;
: list-play-cb <{ snd -- val }>
snd play
;
: list-focus-cb <{ us -- val }>
\ 5 == notebook-outer-pane
main-widgets 5 array-ref FWidget? if
us set-selected-sound
else
us sound-widgets 0 array-ref { pane }
main-widgets 1 array-ref #( FXmNallowShellResize #f )
FXtVaSetValues drop
sounds each ( them )
sound-widgets 0 array-ref FXtUnmanageChild drop
end-each
pane FXtManageChild drop
main-widgets 1 array-ref
#( FXmNallowShellResize auto-resize )
FXtVaSetValues
then
;
: list-help-cb <{ w c info -- val }>
listener-selection { selected }
selected if
selected undef snd-help { help }
help if
selected help info-dialog
then
then
;
: list-clear-cb <{ w c info -- val }>
clear-listener
;
: listener-edit <{ w -- }>
w FXtName "Help" string= if
listener-selection ?dup-if
1 >list w "Help on %S" rot
string-format change-label
w FXtManageChild
else
w FXtUnmanageChild
then drop
then
;
: listener-popup-cb <{ w c info -- }>
c { menu }
FButtonPress info Fevent Ftype = if
listener-values each { vals }
vals array? if
vals 0 array-ref { top-one }
vals 1 array-ref { top-two }
vals 2 array-ref { top-two-cascade }
vals 3 array-ref #( sounds )
run-proc length { len }
top-two FXtUnmanageChild drop
top-two-cascade FXtUnmanageChild drop
top-one if
top-one FXtUnmanageChild drop
then
len 1 > if
top-two-cascade FXtManageChild drop
top-two FXtManageChild drop
then
top-one FWidget?
len 1 = && if
top-one FXtManageChild drop
then
then
end-each
menu <'> listener-edit for-each-child
info menu Fset_menuToPost drop
then
;
let: ( -- menu )
main-widgets 4 array-ref ?dup-if
( parent )
else
#t set-show-listener drop
#f set-show-listener drop
main-widgets 4 array-ref
then { parent }
"listener-popup" parent
#( #( "Listener" 'label #f #f )
#( "sep" 'separator #f #f )
#( "Play" 'cascade <'> list-play-cb <'> identity-cb #t )
#( "Help" #f <'> list-help-cb #f )
#( "Open" #f <'> popen-cb #f )
#( "Clear listener" #f <'> list-clear-cb #f )
#( "Close" 'cascade <'> close-sound-extend <'> identity-cb #t )
#( "Save" 'cascade <'> save-sound <'> edited-cb #t )
#( "Revert" 'cascade <'> revert-sound <'> edited-cb #t )
#( "Focus" 'cascade <'> list-focus-cb <'> focused-cb #f )
#( "sep" 'separator #f #f )
#( "Exit" #f <'> exit-cb #f )
) make-popup-menu { menu }
parent FXmNpopupHandlerCallback <'> listener-popup-cb menu
FXtAddCallback drop
menu
;let constant listener-popup-menu
#() constant popups
: add-popup <{ snd -- }>
snd channels 0 ?do
popups #( snd i ) array-member? unless
popups #( snd i ) array-push to popups
snd i channel-widgets 7 array-ref ( chn-edhist )
FXmNpopupHandlerCallback
<'> edhist-popup-handler-cb undef
FXtAddCallback drop
snd i channel-widgets 0 array-ref ( chn-grf )
FXmNpopupHandlerCallback <'> popup-handler-cb
undef FXtAddCallback drop
then
loop
;
: change-color-col-cb { col -- prc; w self -- val }
1 proc-create ( prc )
col ,
does> { w self -- val }
w self @ ( col ) FXmChangeColor
;
set-current
: change-menu-color ( menu new-color -- )
doc" Change the color of MENU to NEW-COLOR. \
NEW-COLOR can be the color name, an xm Pixel, a snd color, \
or a list of rgb values (as in Snd's make-color)."
{ menu new-color }
new-color string? if \ assuming X11 color names here
main-widgets 1 array-ref { shell }
shell FXtDisplay { dpy }
dpy FDefaultScreen { scr }
dpy scr FDefaultColormap { cmap }
FXColor { col }
dpy cmap new-color col col FXAllocNamedColor 0= if
"can't allocate %S"
#( new-color ) string-format snd-error
else
col Fpixel
then
else
new-color color? if
new-color
else
new-color each
( vals-to-stack )
end-each make-color
then
then ( color-pixel ) menu swap
change-color-col-cb for-each-child
;
: change-selection-popup-color ( new-color -- )
doc" Change the selection popup menu's color: \
\"red\" change-selection-popup-color."
selection-popup-menu swap change-menu-color
;
: change-graph-popup-color ( new-color -- )
doc" Change the time-domain popup menu's color: \
basic-color change-graph-popup-color."
selection-popup-menu swap change-menu-color
;
: change-fft-popup-color ( new-color -- )
doc" Change the fft popup menu's color: \
#(0.5 0.5 0.5) change-fft-popup-color."
fft-popup-menu swap change-menu-color
;
: change-edhist-popup-color ( new-color -- )
doc" Change the time-domain popup menu's color: \
basic-color change-graph-popup-color."
edit-history-menu swap change-menu-color
;
: change-listener-popup-color ( new-color -- )
doc" Change the listener popup menu's color."
listener-popup-menu swap change-menu-color
;
: add-popups ( -- )
after-open-hook <'> add-popup add-hook!
sounds each ( snd )
add-popup
end-each
;
previous
\ install all popups
add-popups
\ popup.fs ends here
|