X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Ffont.scm;h=48ed0e2d15af55a2ac9a8ea213fd5e1376e559a3;hb=803adf3348491f20a8ec35febf9e1fab5e16573b;hp=103390097614d45e88a178ec0442e6d515bcd4da;hpb=974b5c76bc9606752de44d128c13a9f2adc0e322;p=lilypond.git diff --git a/scm/font.scm b/scm/font.scm index 1033900976..48ed0e2d15 100644 --- a/scm/font.scm +++ b/scm/font.scm @@ -1,8 +1,19 @@ -;;;; font.scm -- construct font trees +;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; source file of the GNU LilyPond music typesetter -;;;; -;;;; (c) 2004--2007 Han-Wen Nienhuys +;;;; Copyright (C) 2004--2009 Han-Wen Nienhuys +;;;; +;;;; LilyPond is free software: you can redistribute it and/or modify +;;;; it under the terms of the GNU General Public License as published by +;;;; the Free Software Foundation, either version 3 of the License, or +;;;; (at your option) any later version. +;;;; +;;;; LilyPond is distributed in the hope that it will be useful, +;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;;; GNU General Public License for more details. +;;;; +;;;; You should have received a copy of the GNU General Public License +;;;; along with LilyPond. If not, see . ;; TODO: ;; @@ -28,14 +39,14 @@ qualifier default) (make #:qualifier qualifier - #:default default + #:default default #:children (make-hash-table 11))) (define-method (display (leaf ) port) (map (lambda (x) (display x port)) (list "#" ))) @@ -50,7 +61,7 @@ "(def: " (font-default node) ") {\n")) - (for-each + (for-each (lambda (x) (display "\n") (display (car x) port) @@ -65,7 +76,7 @@ (define-method (add-font (node ) fprops size-family) (define (assoc-delete key alist) (assoc-remove! (list-copy alist) key)) - + (define (make-node fprops size-family) (if (null? fprops) (make-font-tree-leaf (car size-family) (cdr size-family)) @@ -140,26 +151,34 @@ ;; Each size family is a vector of fonts, loaded with a delay. The ;; vector should be sorted according to ascending design size. -(define-public (add-music-fonts node factor) +(define-public (add-music-fonts node name family factor) (for-each (lambda (x) (add-font node - (list (cons 'font-encoding (car x))) + (list (cons 'font-encoding (car x)) + (cons 'font-family family)) (cons (* factor (cadr x)) (caddr x)))) `((fetaDynamic ,(ly:pt 20.0) ,feta-alphabet-size-vector) (fetaNumber ,(ly:pt 20.0) ,feta-alphabet-size-vector) (fetaMusic ,(ly:pt 20.0) - #(,(delay (ly:system-font-load "emmentaler-11")) - ,(delay (ly:system-font-load "emmentaler-13")) - ,(delay (ly:system-font-load "emmentaler-14")) - ,(delay (ly:system-font-load "emmentaler-16")) - ,(delay (ly:system-font-load "emmentaler-18")) - ,(delay (ly:system-font-load "emmentaler-20")) - ,(delay (ly:system-font-load "emmentaler-23")) - ,(delay (ly:system-font-load "emmentaler-26")))) + #( + ,(delay (ly:system-font-load (string-append name "-11"))) + ,(delay (ly:system-font-load (string-append name "-13"))) + ,(delay (ly:system-font-load (string-append name "-14"))) + ,(delay (ly:system-font-load (string-append name "-16"))) + ,(delay (ly:system-font-load (string-append name "-18"))) + ,(delay (ly:system-font-load (string-append name "-20"))) + ,(delay (ly:system-font-load (string-append name "-23"))) + ,(delay (ly:system-font-load (string-append name "-26"))) + )) (fetaBraces ,(ly:pt 20.0) - #(,(delay (ly:system-font-load "aybabtu"))))))) + #(,(delay (ly:system-font-load + ;;; TODO: rename aybabtu to emmentaler-brace + (if (string=? name "emmentaler") + "aybabtu" + (string-append name "-brace")) + ))))))) (define-public (add-pango-fonts node lily-family family factor) (define (add-node shape series) @@ -178,15 +197,17 @@ (font-shape . ,shape))) (ly:pt 12))))))) - (add-node 'upright 'normal) - (add-node 'caps 'normal) - (add-node 'upright 'bold) + (add-node 'upright 'normal) + (add-node 'caps 'normal) + (add-node 'upright 'bold) (add-node 'italic 'normal) (add-node 'italic 'bold)) (define-public (make-pango-font-tree roman-str sans-str typewrite-str factor) (let ((n (make-font-tree-node 'font-encoding 'fetaMusic))) - (add-music-fonts n factor) + (add-music-fonts n "emmentaler" 'feta factor) +;; Let's not do this [yet], see input/regression/gonville.ly +;; (add-music-fonts n "gonville" 'gonville factor) (add-pango-fonts n 'roman roman-str factor) (add-pango-fonts n 'sans sans-str factor) (add-pango-fonts n 'typewriter typewrite-str factor) @@ -194,8 +215,17 @@ (define-public (make-century-schoolbook-tree factor) (make-pango-font-tree - "Century Schoolbook L" - "Sans" "Mono" factor)) + "Century Schoolbook L,serif" + "sans-serif" "monospace" factor)) + +(define-public all-text-font-encodings + '(latin1)) + +(define-public all-music-font-encodings + '(fetaBraces + fetaDynamic + fetaMusic + fetaNumber)) (define-public (magstep s) (exp (* (/ s 6) (log 2))))