1 ;;;; framework-socket.scm
3 (define-module (scm framework-socket)
4 #:export (output-framework)
7 (use-modules (ice-9 regex)
17 (define-public (output-framework channel book scopes fields )
19 ((ctor-arg (if (string? channel)
20 (open-output-file (format "~a.socket" channel))
22 (outputter (ly:make-paper-outputter
25 (systems (ly:paper-book-systems book)))
28 (ly:outputter-dump-stencil outputter
29 (paper-system-stencil (car systems))))
32 (define-public output-classic-framework output-framework)
35 (define-public (convert-to-ps . args) #t)
36 (define-public (convert-to-pdf . args) #t)
37 (define-public (convert-to-png . args) #t)