]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-def.hh
release: 1.0.15
[lilypond.git] / lily / include / paper-def.hh
index cb75f8437f683a3a08e7ae1432f0b06bd3cf999a..87bfe545731de4472bebe79619131a29990badc7 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996,1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c) 1996, 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "lily-proto.hh"
 
 #include "real.hh"
-#include "string.hh"
-#include "moment.hh"
 
+#include "moment.hh"
+#include "array.hh"
+#include "interval.hh"
+#include "music-output-def.hh"
 
 /** 
 
   TODO: 
   
   add support for multiple fontsizes 
-  split into "Input_paper_def" and Paper_def
 
   add support for other len->wid conversions.
 
   Input_engraver should be in here.
  */
-class Paper_def {
-    Lookup *lookup_p_;
-    Assoc<String, Real> *real_vars_p_;
+class Paper_def : public Music_output_def 
+{
+  Assoc<int, Lookup *> *lookup_p_assoc_p_;
+  static int default_count_i_;
+  bool ps_b_;
+
+protected:
+  VIRTUAL_COPY_CONS(Paper_def,Music_output_def);
 
-    Input_translator * itrans_p_;
 public:    
-    String outfile_str_;
-    
-    
-    /* *************** */
-    void set_var (String, Real);
-    Real get_var (String)const;
-    void reinit();
-    Paper_def();
-    void set (Lookup*);
-    void set (Input_translator *);
-    Global_translator * get_global_translator_p()const;
-    ~Paper_def();
-    Paper_def (Paper_def const&);
-    /// The distance between beams
-    Real interbeam_f()const;
-    /**
-      The distance between lines
-     */
-    Real interline_f()const;
-    /// half the distance between lines
-    Real internote_f()const;
-
-    /// thickness of the standard line 
-    Real rule_thickness()const;
-    Real whole_width()const;
-    Real linewidth_f()const;
-    /// height of the staff
-    Real standard_height()const;
-
-    /// width of a crotchet ball
-    Real note_width() const;
-    void print() const;
-
-    Lookup const * lookup_l(); // TODO naming
-
-    /** convert a duration to an idealspacing
-      influence using the geometric_ and  parameters.
-      */
-    Real duration_to_dist (Moment);
+  virtual ~Paper_def ();
+  DECLARE_MY_RUNTIME_TYPEINFO;
+
+  Array<Interval> shape_int_a_;
+
+  Real get_var (String) const;
+  void reinit ();
+  Paper_def ();
+  void set_lookup (int, Lookup*);
+
+  Paper_def (Paper_def const&);
+  /// The distance between beams of multiplicity_i
+  Real interbeam_f (int multiplicity_i) const;
+
+  /// The thickness of a beam
+  Real beam_thickness_f () const;
+
+  /// The distance between lines
+  Real interline_f () const;
+  /// half the distance between lines
+  Real internote_f () const;
+
+  /// thickness of the standard line 
+  Real rule_thickness () const;
+
+  /// thickness of the staff line
+  Real staffline_f () const;
+
+  Interval line_dimensions_int (int) const;
+  Real linewidth_f () const;
+
+  /// height of the staff
+  Real staffheight_f () const;
+
+  /// width of a crotchet ball
+  Real note_width () const;
+  void print () const;
+
+  Lookup const * lookup_l (int sz) const;      // TODO naming
+
+  /** convert a duration to an idealspacing
+    influence using the geometric_ and  paratime_signatures.
+    */
+  Real duration_to_dist (Moment, Real) const;
+  Real geometric_spacing (Moment) const;
+  Real arithmetic_constant (Moment minimal_mom) const;
+  Real arithmetic_spacing (Moment mom,Real constant) const;
+  virtual int get_next_default_count () const;
+  //urg
+  String tex_output_settings_str () const;
+  String ps_output_settings_str () const;
+  // urg
+  friend int yyparse (void*);
 };
 
 #endif // Paper_def_HH