]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-def.hh
release: 1.3.118
[lilypond.git] / lily / include / paper-def.hh
1 /*
2   paper-def.hh -- declare Paper_def
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef PAPER_DEF_HH
11 #define PAPER_DEF_HH
12
13
14 #include "lily-proto.hh"
15 #include "lily-guile.hh"
16 #include "real.hh"
17
18 #include "moment.hh"
19 #include "array.hh"
20 #include "interval.hh"
21 #include "music-output-def.hh"
22 #include "protected-scm.hh"
23
24 /** 
25
26   Symbols, dimensions and constants pertaining to visual output.
27
28   This struct takes care of all kinds of symbols, dimensions and
29   constants. Most of them are related to the point-size of the fonts,
30   so therefore, the lookup table for symbols is also in here.
31
32   TODO: 
33   
34   add support for multiple fontsizes 
35
36   remove all utility funcs 
37   
38
39   add support for other len->wid conversions.
40
41
42   Interesting variables:
43   
44   /// The distance between lines
45   interline
46   
47 */
48 class Paper_def : public Music_output_def 
49 {
50 protected:
51   VIRTUAL_COPY_CONS(Music_output_def);
52
53
54 public:    
55   SCM font_descriptions ()const;
56   virtual ~Paper_def ();
57   static int default_count_i_;
58   
59   /*
60     JUNKME
61    */
62   Real get_realvar (SCM symbol) const;
63   Real get_var (String id) const;
64   SCM get_scmvar (String id)const; 
65   void reinit ();
66   Paper_def ();
67   Paper_def (Paper_def const&);
68
69   Interval line_dimensions_int (int) const;
70
71   virtual int get_next_default_count () const;
72   static void reset_default_count();
73   void output_settings (Paper_outputter*) const;
74   Paper_outputter* paper_outputter_p () ;
75
76   Font_metric * find_font (SCM name, Real mag);
77   
78   // urg
79   friend int yyparse (void*);
80 };
81
82 #endif // Paper_def_HH