Initial checkin of Pika from heckimp
This commit is contained in:
28
plug-ins/script-fu/scripts/test/test7/test7.scm
Normal file
28
plug-ins/script-fu/scripts/test/test7/test7.scm
Normal file
@ -0,0 +1,28 @@
|
||||
#!/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")
|
Reference in New Issue
Block a user