]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-def.hh
release: 1.3.93
[lilypond.git] / lily / include / paper-def.hh
index fba93580cb53fb30585786bd7979ecc972de60ab..17847564c689ab44e6e793ebb5430250e1410065 100644 (file)
@@ -1,55 +1,81 @@
 /*
-  paper-def.hh -- declare 
+  paper-def.hh -- declare Paper_def
 
-  source file of the LilyPond music typesetter
+  source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
-#ifndef Paper_def_HH
-#define Paper_def_HH
-#include "proto.hh"
+#ifndef PAPER_DEF_HH
+#define PAPER_DEF_HH
+
+
+#include "lily-proto.hh"
+#include "lily-guile.hh"
 #include "real.hh"
-#include "string.hh"
+
 #include "moment.hh"
+#include "array.hh"
+#include "interval.hh"
+#include "music-output-def.hh"
+#include "protected-scm.hh"
 
+/** 
 
-/** symbols, dimensions and constants
+  Symbols, dimensions and constants pertaining to visual output.
 
   This struct takes care of all kinds of symbols, dimensions and
- constants. Most of them are related to the point-size of the fonts,
- so therefore, the lookup table for symbols is also in here.
+  constants. Most of them are related to the point-size of the fonts,
+  so therefore, the lookup table for symbols is also in here.
+
+  TODO: 
+  
+  add support for multiple fontsizes 
+
+  remove all utility funcs 
+  
+
+  add support for other len->wid conversions.
+
+
+  Interesting variables:
+  
+  /// The distance between lines
+  interline
+  
+*/
+class Paper_def : public Music_output_def 
+{
+  Protected_scm lookup_alist_;
+protected:
+  VIRTUAL_COPY_CONS(Music_output_def);
 
- */
-class Paper_def {
-    Lookup *lookup_p_;
 public:    
-    String outfile;
-
-    Real linewidth;
-
-    /// how much space does a whole note take (ideally?)
-    Real whole_width;
-
-    /// ideal = geometric_ ^ log2(duration)
-    Real geometric_;
-    
-    /* *************** */
-    void reinit();
-    Paper_def(Lookup*);
-    void set(Lookup*);
-    ~Paper_def();
-    Paper_def(Paper_def const&);
-    Real interline()const;
-    Real internote()const;
-    Real rule_thickness()const;
-    Real standard_height()const;
-    Real note_width() const;
-    void print() const;
-    const Lookup* lookup_l();  // TODO naming
-    Real duration_to_dist(Moment);
+  virtual ~Paper_def ();
+  static int default_count_i_;
+  /*
+    JUNKME
+   */
+  Real get_realvar (SCM symbol) const;
+  Real get_var (String id) const;
+  SCM get_scmvar (String id)const; 
+  void reinit ();
+  Paper_def ();
+  void set_lookup (int, SCM lookup_smob);
+  Paper_def (Paper_def const&);
+
+  Interval line_dimensions_int (int) const;
+
+  Lookup const * lookup_l (int sz) const;      // TODO naming
+  virtual int get_next_default_count () const;
+  static void reset_default_count();
+  void output_settings (Paper_outputter*) const;
+  Paper_stream* paper_stream_p () const;
+  String base_output_str () const;
+
+  // urg
+  friend int yyparse (void*);
 };
 
 #endif // Paper_def_HH
-