X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fdefine-stencil-commands.scm;h=2ff87cfc7292baa0443821d62d4be76642975fe3;hb=27f2d29a45a6ee4dac75b8e8137ec65a1be74fa1;hp=46d315381ea674d710f269f4e797beb7803773ce;hpb=11153496a76ccdfb764d4d9f217edc0a2d0f49c8;p=lilypond.git diff --git a/scm/define-stencil-commands.scm b/scm/define-stencil-commands.scm index 46d315381e..2ff87cfc72 100644 --- a/scm/define-stencil-commands.scm +++ b/scm/define-stencil-commands.scm @@ -3,43 +3,64 @@ ;; ;; source file of the GNU LilyPond music typesetter ;; -;; (c) 2005 Han-Wen Nienhuys +;; (c) 2005--2009 Han-Wen Nienhuys ;; -(map ly:register-stencil-expression - '(beam - bezier-sandwich - blank - bracket - char - circle - dashed-line - dashed-slur - dot - draw-line - filledbox - glyph-string - named-glyph - polygon - repeat-slash - round-filled-box - text - url-link - utf8-string - white-dot - white-text - embedded-ps - zigzag-line)) - ;; TODO: -;; - generate this list by registering the output-backend-commands -;; output-backend-commands should have docstrings. -;; - remove hard copies in output-ps output-tex +;; - stencil-commands should have docstrings. -(define-public (ly:all-output-backend-commands) - "Return list of output backend commands." - '( +(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 + bracket + char + circle + dashed-line + dashed-slur + dot + draw-line + ellipse + embedded-ps + embedded-svg + glyph-string grob-cause + named-glyph no-origin + oval + path placebox - unknown)) + polygon + repeat-slash + resetcolor + resetrotation + round-filled-box + setcolor + setrotation + text + unknown + url-link + utf-8-string + white-dot + white-text + zigzag-line + )) + +;; TODO: +;; - output-backend-commands should have docstrings. + +(define-public (ly:all-output-backend-commands) + "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 + (append (ly:all-stencil-commands) + (ly:all-output-backend-commands)))