]> git.donarmstrong.com Git - lilypond.git/blob - scm/paper.scm
Merge branch 'lilypond/translation' into staging
[lilypond.git] / scm / paper.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 2004--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;;
5 ;;;; LilyPond is free software: you can redistribute it and/or modify
6 ;;;; it under the terms of the GNU General Public License as published by
7 ;;;; the Free Software Foundation, either version 3 of the License, or
8 ;;;; (at your option) any later version.
9 ;;;;
10 ;;;; LilyPond is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;;;; GNU General Public License for more details.
14 ;;;;
15 ;;;; You should have received a copy of the GNU General Public License
16 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
17
18 ; for define-safe-public when byte-compiling using Guile V2
19 (use-modules (scm safe-utility-defs))
20
21 (define-public (set-paper-dimension-variables mod)
22   (module-define! mod 'dimension-variables
23                   '(blot-diameter
24                     bottom-margin
25                     cm
26                     footnote-footer-padding
27                     footnote-padding
28                     horizontal-shift
29                     in
30                     indent
31                     inner-margin
32                     inner-margin-default-scaled
33                     ledger-line-thickness
34                     left-margin
35                     left-margin-default-scaled
36                     line-thickness
37                     line-width
38                     mm
39                     outer-margin
40                     outer-margin-default-scaled
41                     paper-height
42                     paper-width
43                     pt
44                     right-margin
45                     right-margin-default-scaled
46                     short-indent
47                     staff-height
48                     staff-space
49                     top-margin)))
50
51 (define (calc-line-thickness staff-space pt)
52   ;; linear interpolation.
53
54   ;; !! synchronize with feta-params.mf
55   (let*
56       ((x1 (* 4.125 pt))
57        (x0 (* 5 pt))
58        (f1 (* 0.47 pt))
59        (f0 (* 0.50 pt)))
60
61     (/
62      (+
63       (* f1 (- staff-space x0))
64       (* f0 (- x1 staff-space)))
65      (- x1 x0))))
66
67 (define-public (layout-set-absolute-staff-size-in-module module staff-height)
68   (let*
69       ((pt (eval 'pt module))
70        (ss (/ staff-height 4))
71        (factor (/ staff-height (* 20 pt)))
72        (setm! (lambda (sym val)
73                 (module-define! module sym val))))
74
75     ;; Synchronized with the `text-font-size'
76     ;; binding in add-pango-fonts (see font.scm).
77     (setm! 'text-font-size (* 11 factor))
78
79     (setm! 'output-scale ss)
80     (setm! 'fonts (make-century-schoolbook-tree factor))
81     (setm! 'staff-height staff-height)
82     (setm! 'staff-space ss)
83
84     (setm! 'line-thickness (calc-line-thickness ss pt))
85
86     ;;  sync with feta
87     (setm! 'ledger-line-thickness (+ (* 0.5 pt) (/ ss 10)))
88
89     ;;  sync with feta
90     (setm! 'blot-diameter (* 0.4 pt))
91     ))
92
93 (define-public (layout-set-absolute-staff-size sz)
94   "Set the absolute staff size inside of a @code{\\layout@{@}} block.
95 @var{sz} is in points."
96   (layout-set-absolute-staff-size-in-module (current-module) sz))
97
98 (define-public (layout-set-staff-size sz)
99   "Set the staff size inside of a @code{\\layout@{@}} block.
100 @var{sz} is in points."
101
102   (layout-set-absolute-staff-size (* (eval 'pt (current-module)) sz)))
103
104 (define-safe-public (set-global-staff-size sz)
105   "Set the default staff size, where SZ is thought to be in PT."
106   (let* ((current-mod (current-module))
107          (parser (eval 'parser current-mod))
108          (pap (ly:parser-lookup parser '$defaultpaper))
109          (in-layout? (or (module-defined? current-mod 'is-paper)
110                          (module-defined? current-mod 'is-layout)))
111
112          ;; maybe not necessary.
113          ;; but let's be paranoid. Maybe someone still refers to the
114          ;; old one.
115          (new-paper (ly:output-def-clone pap))
116
117          (new-scope (ly:output-def-scope new-paper)))
118
119     (if in-layout?
120         (ly:warning (_ "set-global-staff-size: not in toplevel scope")))
121
122     (layout-set-absolute-staff-size-in-module new-scope
123                                               (* sz (eval 'pt new-scope)))
124     (module-define! current-mod '$defaultpaper new-paper)))
125
126 (define-public paper-alist
127
128   ;; don't use decimals.
129   ;; ISO 216 has a tolerance of +- 2mm
130
131   '(("a10" . (cons (* 26 mm) (* 37 mm)))
132     ("a9" . (cons (* 37 mm) (* 52 mm)))
133     ("a8" . (cons (* 52 mm) (* 74 mm)))
134     ("a7" . (cons (* 74 mm) (* 105 mm)))
135     ("a6" . (cons (* 105 mm) (* 148 mm)))
136     ("a5" . (cons (* 148 mm) (* 210 mm)))
137     ("a4" . (cons (* 210 mm) (* 297 mm)))
138     ("a3" . (cons (* 297 mm) (* 420 mm)))
139     ("a2" . (cons (* 420 mm) (* 594 mm)))
140     ("a1" . (cons (* 594 mm) (* 841 mm)))
141     ("a0" . (cons (* 841 mm) (* 1189 mm)))
142     ("b10" . (cons (* 31 mm) (* 44 mm)))
143     ("b9" . (cons (* 44 mm) (* 62 mm)))
144     ("b8" . (cons (* 62 mm) (* 88 mm)))
145     ("b7" . (cons (* 88 mm) (* 125 mm)))
146     ("b6" . (cons (* 125 mm) (* 176 mm)))
147     ("b5" . (cons (* 176 mm) (* 250 mm)))
148     ("b4" . (cons (* 250 mm) (* 353 mm)))
149     ("b3" . (cons (* 353 mm) (* 500 mm)))
150     ("b2" . (cons (* 500 mm) (* 707 mm)))
151     ("b1" . (cons (* 707 mm) (* 1000 mm)))
152     ("b0" . (cons (* 1000 mm) (* 1414 mm)))
153     ;; Below are two extended sizes defined in DIn 476
154     ("4a0" . (cons (* 1682 mm) (* 2378 mm)))
155     ("2a0" . (cons (* 1189 mm) (* 1682 mm)))
156     ;; Below are ISO 269 standard C series
157     ("c10" . (cons (* 28 mm) (* 40 mm)))
158     ("c9" . (cons (* 40 mm) (* 57 mm)))
159     ("c8" . (cons (* 57 mm) (* 81 mm)))
160     ("c7" . (cons (* 81 mm) (* 114 mm)))
161     ("c6" . (cons (* 114 mm) (* 162 mm)))
162     ("c5" . (cons (* 162 mm) (* 229 mm)))
163     ("c4" . (cons (* 229 mm) (* 324 mm)))
164     ("c3" . (cons (* 324 mm) (* 458 mm)))
165     ("c2" . (cons (* 458 mm) (* 648 mm)))
166     ("c1" . (cons (* 648 mm) (* 917 mm)))
167     ("c0" . (cons (* 917 mm) (* 1297 mm)))
168     ;; Below are North American paper sizes
169     ("junior-legal" . (cons (* 8.0 in) (* 5.0 in)))
170     ("legal" . (cons (* 8.5 in) (* 14.0 in)))
171     ("letter" . (cons (* 8.5 in) (* 11.0 in)))
172     ;; Ledger (17x11) is a 90 degree rotation of Tabloid
173     ("17x11" . (cons (* 17.0 in) (* 11.0 in)))
174     ("ledger" . (cons (* 17.0 in) (* 11.0 in)))
175     ;; Tabloid (11x17)
176     ("11x17" . (cons (* 11.0 in) (* 17.0 in)))
177     ("tabloid" . (cons (* 11.0 in) (* 17.0 in)))
178     ;; government-letter by IEEE Printer Working Group, for children's writing
179     ("government-letter" . (cons (* 8 in) (* 10.5 in)))
180     ("government-legal" . (cons (* 8.5 in) (* 13.0 in)))
181     ("philippine-legal" . (cons (* 8.5 in) (* 13.0 in)))
182     ;; ANSI sizes
183     ("ansi a" . (cons (* 8.5 in) (* 11.0 in)))
184     ("ansi b" . (cons (* 17.0 in) (* 11.0 in)))
185     ("ansi c" . (cons (* 17.0 in) (* 22.0 in)))
186     ("ansi d" . (cons (* 22.0 in) (* 34.0 in)))
187     ("ansi e" . (cons (* 34.0 in) (* 44.0 in)))
188     ("engineering f" . (cons (* 28.0 in) (* 40.0 in)))
189     ;; G and H are very rare, and the lengths are variable up to 90 inches
190     ;; North American Architectural sizes
191     ("arch a" . (cons (* 9.0 in) (* 12.0 in)))
192     ("arch b" . (cons (* 12.0 in) (* 18.0 in)))
193     ("arch c" . (cons (* 18.0 in) (* 24.0 in)))
194     ("arch d" . (cons (* 24.0 in) (* 36.0 in)))
195     ("arch e" . (cons (* 36.0 in) (* 48.0 in)))
196     ("arch e1" . (cons (* 30.0 in) (* 42.0 in)))
197     ;; Other sizes
198     ;; Some are antique sizes which are still using in UK
199     ("statement" . (cons (* 5.5 in) (* 8.5 in)))
200     ("half letter" . (cons (* 5.5 in) (* 8.5 in)))
201     ("quarto" . (cons (* 8.0 in) (* 10.0 in)))
202     ("octavo" . (cons (* 6.75 in) (* 10.5 in)))
203     ("executive" . (cons (* 7.25 in) (* 10.5 in)))
204     ("monarch" . (cons (* 7.25 in) (* 10.5 in)))
205     ("foolscap" . (cons (* 8.27 in) (* 13.0 in)))
206     ("folio" . (cons (* 8.27 in) (* 13.0 in)))
207     ("super-b" . (cons (* 13.0 in) (* 19.0 in)))
208     ("post" . (cons (* 15.5 in) (* 19.5 in)))
209     ("crown" . (cons (* 15.0 in) (* 20.0 in)))
210     ("large post" . (cons (* 16.5 in) (* 21.0 in)))
211     ("demy" . (cons (* 17.5 in) (* 22.5 in)))
212     ("medium" . (cons (* 18.0 in) (* 23.0 in)))
213     ("broadsheet" . (cons (* 18.0 in) (* 24.0 in)))
214     ("royal" . (cons (* 20.0 in) (* 25.0 in)))
215     ("elephant" . (cons (* 23.0 in) (* 28.0 in)))
216     ("double demy" . (cons (* 22.5 in) (* 35.0 in)))
217     ("quad demy" . (cons (* 35.0 in) (* 45.0 in)))
218     ("atlas" . (cons (* 26.0 in) (* 34.0 in)))
219     ("imperial" . (cons (* 22.0 in) (* 30.0 in)))
220     ("antiquarian" . (cons (* 31.0 in) (* 53.0 in)))
221     ;; PA4 based sizes
222     ("pa0" . (cons (* 840 mm) (* 1120 mm)))
223     ("pa1" . (cons (* 560 mm) (* 840 mm)))
224     ("pa2" . (cons (* 420 mm) (* 560 mm)))
225     ("pa3" . (cons (* 280 mm) (* 420 mm)))
226     ("pa4" . (cons (* 210 mm) (* 280 mm)))
227     ("pa5" . (cons (* 140 mm) (* 210 mm)))
228     ("pa6" . (cons (* 105 mm) (* 140 mm)))
229     ("pa7" . (cons (* 70 mm) (* 105 mm)))
230     ("pa8" . (cons (* 52 mm) (* 70 mm)))
231     ("pa9" . (cons (* 35 mm) (* 52 mm)))
232     ("pa10" . (cons (* 26 mm) (* 35 mm)))
233     ;; F4 used in southeast Asia and Australia
234     ("f4" . (cons (* 210 mm) (* 330 mm)))
235     ;; Used for very small @lilypond examples in the Documentation
236     ;; based on a8 size but landscape not portrait
237     ("a8landscape" . (cons (* 74 mm) (* 52 mm)))
238     ))
239
240 ;; todo: take dimension arguments.
241
242 (define (set-paper-dimensions m w h)
243   "M is a module (i.e. layout->scope_ )"
244   (let*
245       ;; page layout - what to do with (printer specific!) margin settings?
246       ((paper-default (eval-carefully
247                        (assoc-get
248                         (ly:get-option 'paper-size)
249                         paper-alist
250                         #f
251                         #t)
252                        m
253                        (cons w h)))
254        ;; Horizontal margins, marked with 'preserve, are stored
255        ;; in renamed variables because they must not be overwritten.
256        ;; Output_def::normalize () needs to know
257        ;; whether the user set the value or not.
258        (scaleable-values `((("left-margin" . ,w) . preserve)
259                            (("right-margin" . ,w) . preserve)
260                            (("inner-margin" . ,w) . preserve)
261                            (("outer-margin" . ,w) . preserve)
262                            (("binding-offset" . ,w) . '())
263                            (("top-margin" . ,h) . '())
264                            (("bottom-margin" . ,h) . '())
265                            (("indent" . ,w) . '())
266                            (("short-indent" . ,w) . '())))
267        (scaled-values
268         (map
269          (lambda (entry)
270            (let ((entry-symbol
271                   (string->symbol
272                    (string-append (caar entry) "-default")))
273                  (orientation (cdar entry)))
274              (if paper-default
275                  (cons (if (eq? (cdr entry) 'preserve)
276                            (string-append (caar entry) "-default-scaled")
277                            (caar entry))
278                        (round (* orientation
279                                  (/ (eval-carefully entry-symbol m 0)
280                                     (if (= orientation w)
281                                         (car paper-default)
282                                         (cdr paper-default))))))
283                  entry)))
284          scaleable-values)))
285
286     (module-define! m 'paper-width w)
287     (module-define! m 'paper-height h)
288     ;; Sometimes, lilypond-book doesn't estimate a correct line-width.
289     ;; Therefore, we need to unset line-width.
290     (module-remove! m 'line-width)
291
292     (for-each
293      (lambda (value)
294        (let ((value-symbol (string->symbol (car value)))
295              (number (cdr value)))
296          (module-define! m value-symbol number)))
297      scaled-values)))
298
299 (define (internal-set-paper-size module name landscape?)
300   (define (swap x)
301     (cons (cdr x) (car x)))
302
303   (let* ((entry (assoc-get name paper-alist))
304          (is-paper? (module-defined? module 'is-paper))
305          (mm (eval 'mm module)))
306
307     (cond
308      ((not is-paper?)
309       (ly:warning (_ "This is not a \\layout {} object, ~S") module))
310      (entry
311
312       (set! entry (eval entry module))
313       (if landscape?
314           (set! entry (swap entry)))
315       (set-paper-dimensions module (car entry) (cdr entry))
316
317       (module-define! module 'papersizename name)
318       (module-define! module 'landscape
319                       (if landscape? #t #f)))
320      (else
321       (ly:warning (_ "Unknown paper size: ~a") name)))))
322
323 (define-safe-public (set-default-paper-size name . rest)
324   (internal-set-paper-size
325    (ly:output-def-scope (eval '$defaultpaper (current-module)))
326    name
327    (memq 'landscape rest)))
328
329 (define-public (set-paper-size name . rest)
330   (if (module-defined? (current-module) 'is-paper)
331       (internal-set-paper-size (current-module) name
332                                (memq 'landscape rest))
333
334       ;;; TODO: should raise (generic) exception with throw, and catch
335       ;;; that in parse-scm.cc
336       (ly:warning (_ "Must use #(set-paper-size .. ) within \\paper { ... }"))))
337
338 (define-public (scale-layout paper scale)
339   "Return a clone of the paper, scaled by the given scale factor."
340   (let* ((new-paper (ly:output-def-clone paper))
341          (dim-vars (ly:output-def-lookup paper 'dimension-variables))
342          (old-scope (ly:output-def-scope paper))
343          (scope (ly:output-def-scope new-paper)))
344
345     (for-each
346      (lambda (v)
347        (let* ((var (module-variable old-scope v))
348               (val (if (variable? var) (variable-ref var) #f)))
349
350          (if (number? val)
351              (module-define! scope v (/ val scale))
352              ;; Cannot warn for non-numbers, eg. for paper-width, paper-height.
353              )))
354      dim-vars)
355     ;; Mark the clone.
356     (ly:output-def-set-variable! new-paper 'cloned #t)
357     new-paper))