PIKApp/plug-ins/script-fu/scripts/test/test7/test7.scm

29 lines
690 B
Scheme
Raw Normal View History

2023-09-26 00:35:21 +02:00
#!/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")