]> git.donarmstrong.com Git - lilypond.git/blob - scm/molecule.scm
0e3f21ecaa673c03b38d249ea69cc43d8704f683
[lilypond.git] / scm / molecule.scm
1
2 (define-public (stack-molecules axis dir padding mols)
3   "Stack molecules MOLS in direction AXIS,DIR, using PADDING."
4   (if (null? mols)
5       '()
6       (if (pair? mols)
7           (ly:combine-molecule-at-edge (car mols) axis dir 
8                                        (stack-molecules axis dir padding (cdr mols))
9                                        padding
10                                        )
11           )
12   ))
13
14
15 (define-public (stack-lines dir padding baseline mols)
16   "Stack vertically with a baseline-skip."
17   (if (null? mols)
18       '()
19       (if (pair? mols)
20           (ly:combine-molecule-at-edge (car mols) Y dir 
21                                        (stack-lines Y dir padding (cdr mols))
22                                        padding baseline 
23                                        )
24           )
25   ))
26
27
28 (define-public (fontify-text font-metric text)
29   "Set TEXT with font FONT-METRIC, returning a molecule."
30   (let* ((b  (ly:text-dimension font-metric text)))
31     (ly:make-molecule
32      (ly:fontify-atom font-metric `(text ,text)) (car b) (cdr b))
33     ))
34
35 (define-public (bracketify-molecule mol axis thick protusion padding)
36   "Add brackets around MOL, producing a new molecule."
37
38   (let* (
39          (ext (ly:get-molecule-extent mol axis))
40          (lb (ly:bracket axis ext thick (- protusion)))
41          (rb (ly:bracket axis ext thick protusion))
42          )
43     (set! mol (ly:combine-molecule-at-edge mol (other-axis  axis) 1 lb padding))
44     (set! mol (ly:combine-molecule-at-edge mol (other-axis  axis) -1 rb padding))
45     mol
46   ))
47
48
49
50 (define-public (box-molecule xext yext)
51   "Make a filled box."
52   
53   (ly:make-molecule
54       (list 'filledbox (- (car xext)) (cdr xext)
55                        (- (car yext)) (cdr yext))
56       xext yext)                       
57 )
58
59 (define-public (box-grob-molecule grob)
60   "Make a box of exactly the extents of the grob.  The box precisely
61 encloses the contents.
62 "
63   (let* ((xext (ly:get-extent grob grob 0))
64          (yext (ly:get-extent grob grob 1))
65          (mol (ly:make-molecule '() '(10000 . -10000) '(10000 . -10000)))
66          (thick 0.1)
67          )
68
69     (set! mol (ly:add-molecule mol (box-molecule xext (cons (- (car yext) thick) (car yext) ))))
70     (set! mol (ly:add-molecule mol (box-molecule xext (cons  (cdr yext) (+ (cdr yext) thick) ))))
71     (set! mol (ly:add-molecule mol (box-molecule (cons (cdr xext) (+ (cdr xext) thick)) yext)))
72     (set! mol (ly:add-molecule mol (box-molecule (cons (- (car xext) thick) (car xext)) yext)))
73     mol
74   ))