]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-def.hh
*** empty log message ***
[lilypond.git] / lily / include / paper-def.hh
index 2ce328406b9f4bda4972b0b203fcd6475c6733b2..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,77 +0,0 @@
-/*
-  paper-def.hh -- declare Paper_def
-
-  source file of the GNU LilyPond music typesetter
-
-  (c) 1996,1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#ifndef PAPER_DEF_HH
-#define PAPER_DEF_HH
-#include "lily-proto.hh"
-#include "real.hh"
-#include "string.hh"
-#include "moment.hh"
-
-
-/** 
-
-  symbols, dimensions and constants
-
-  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.
-
-  TODO: 
-  
-  add support for multiple fontsizes 
-  split into "Input_paper_def" and Paper_def
-  add support for other len->wid conversions.
- */
-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&);
-    /**
-      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;
-
-    /// height of the staff
-    Real standard_height()const;
-
-    /// width of a quaver 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 whole_width parameters.
-      */
-    Real duration_to_dist(Moment);
-};
-
-#endif // Paper_def_HH
-