29 lines
690 B
Scheme
29 lines
690 B
Scheme
#!/usr/bin/env pika-script-fu-interpreter-3.0
|
|
|
|
; Test non-canonical name for PDB procedure
|
|
; pika-script-fu-interpreter does not enforce canonical name.
|
|
; Other parts of PIKA (PDB) does not enforce canonical name
|
|
; for PDB procedures defined by .scm scripts.
|
|
|
|
; Canonical means starts with "script-fu-"
|
|
; Here the name doesn't, its just "test7"
|
|
|
|
; Expect "Test>Test SF interpreter 7" in the menus
|
|
; Expect when chosen, message on PIKA message bar.
|
|
|
|
|
|
(define (test7)
|
|
(pika-message "Hello test7")
|
|
)
|
|
|
|
(script-fu-register "test7"
|
|
"Test SF interpreter 7"
|
|
"Just gives a message from Pika"
|
|
"lkk"
|
|
"lkk"
|
|
"2022"
|
|
"" ; all image types
|
|
)
|
|
|
|
(script-fu-menu-register "test7" "<Image>/Test")
|