573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
| 573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
|
-
+
-
-
-
+
-
-
| ;(mutex-lock! mx1)
(iup:attribute-set! lbl "TITLE" newval)
;(mutex-unlock! mx1)
)))))
lbl))
(store-button store-label)
(command-proc (lambda (command-text-box)
(let* ((cmd (iup:attribute command-text-box "VALUE"))
(let* ((cmd (iup:attribute command-text-box "VALUE")))
(fullcmd (conc (dtests:get-pre-command)
cmd
(dtests:get-post-command))))
(common:run-a-command cmd))))
(debug:print-info 02 *default-log-port* "Running command: " fullcmd)
(common:without-vars fullcmd "MT_.*"))))
(command-text-box (iup:textbox
#:expand "HORIZONTAL"
#:font "Courier New, -10"
#:action (lambda (obj cnum val)
;; (print "cnum=" cnum)
(if (eq? cnum 13)
(command-prox obj)))
|