X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fdefine-stencil-commands.scm;h=6fc7188aa90101b200605990394a2d61b5584193;hb=f114f22fd1ca52a46d76b34480bb0f19282a0e84;hp=b2b2f92d68bf5d1ac455346057e5639b7baee2d9;hpb=797245ff520d9c44f0308bbc2828bb4747c84123;p=lilypond.git diff --git a/scm/define-stencil-commands.scm b/scm/define-stencil-commands.scm index b2b2f92d68..6fc7188aa9 100644 --- a/scm/define-stencil-commands.scm +++ b/scm/define-stencil-commands.scm @@ -6,7 +6,12 @@ ;; (c) 2005--2009 Han-Wen Nienhuys ;; -(map ly:register-stencil-expression +;; TODO: +;; - stencil-commands should have docstrings. + +(define-public (ly:all-stencil-commands) + "Return the list of stencil commands that can be +defined in the output modules (output-*.scm)" '(beam bezier-sandwich blank @@ -27,8 +32,10 @@ polygon repeat-slash resetcolor + resetrotation round-filled-box setcolor + setrotation text url-link utf-8-string @@ -40,19 +47,21 @@ no-origin placebox unknown - - delay-stencil-evaluation )) ;; TODO: -;; - generate this list by registering the output-backend-commands -;; output-backend-commands should have docstrings. -;; - remove hard copies in output-ps +;; - output-backend-commands should have docstrings. (define-public (ly:all-output-backend-commands) - "Return list of output backend commands." - '(combine-stencil - color - translate-stencil)) + "Return the list of extra output backend commands that +are used internally in lily/stencil-interpret.cc." + '(color + combine-stencil + delay-stencil-evaluation + rotate-stencil + translate-stencil + )) -(map ly:register-stencil-expression (ly:all-output-backend-commands)) +(map ly:register-stencil-expression + (append (ly:all-stencil-commands) + (ly:all-output-backend-commands)))