]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/musical-request.hh
* VERSION (MY_PATCH_LEVEL): make 1.7.0
[lilypond.git] / lily / include / musical-request.hh
index 9905362080bc5e8084c0cf3f08c4c5a57b172a4c..d9b67bb9b6a4f0a137c1e0aa8fde957b8334ef48 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "lily-proto.hh"
 #include "request.hh"
 #include "duration.hh"
-#include "musical-pitch.hh"
-
-/**
-  A request which is coupled to a note (that has duration).
-  Base class only
- */
-class Musical_req  : public virtual Request  {
-public:
-
-
-  REQUESTMETHODS(Musical_req);
-};
-
-
+#include "pitch.hh"
+#include "array.hh"
 
 /** a request with a duration.
   This request is used only used as a base class.
  */
-class Rhythmic_req  : public virtual Musical_req  {
+class Rhythmic_req  : public virtual Request  {
 public:
-  Duration duration_;
-    
-  bool do_equal_b (Request*) const;
+  bool do_equal_b (Request const*) const;
   void compress (Moment);
   virtual Moment length_mom () const;
   static int compare (Rhythmic_req const&,Rhythmic_req const&);
-  REQUESTMETHODS(Rhythmic_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
 class Skip_req  : public Rhythmic_req  {
 public:
-  REQUESTMETHODS(Skip_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
-struct Spacing_req :virtual Request {
-  Moment next;
-  Real distance;
-  Real strength;
-  Spacing_req();
-  REQUESTMETHODS(Spacing_req);
-};
 
-struct Abbreviation_req : public Musical_req {
-  REQUESTMETHODS (Abbreviation_req);
-  Abbreviation_req ();
-  int type_i_;
+struct Tremolo_req : public Request {
+  VIRTUAL_COPY_CONS (Music);
+  Tremolo_req ();
 };
 
-class Blank_req  : public Spacing_req, Rhythmic_req  {
-public:
-  REQUESTMETHODS(Spacing_req);
+struct Chord_tremolo_notify_req : public Request
+{
+
+  Rational factor_;
+  VIRTUAL_COPY_CONS(Chord_tremolo_notify_req);
+  Chord_tremolo_notify_req();
 };
 
-/** a syllable  or lyric is a string with rhythm.
+
+/**
+   a syllable or lyric is a string with rhythm.
   */
-class Lyric_req  : public  Rhythmic_req  {
+class Lyric_req : public Rhythmic_req
+{
+protected:
+  VIRTUAL_COPY_CONS (Music);
+};
+
+
+class Articulation_req : public Script_req
+{
 public:
-  String text_str_;
-  REQUESTMETHODS(Lyric_req);
+  String get_articulation_string ();
+protected:
+  virtual bool do_equal_b (Request const*) const;
+
+  VIRTUAL_COPY_CONS (Music);
 };
 
+class Text_script_req : public Script_req
+{
+protected:
+  VIRTUAL_COPY_CONS (Music);
+  virtual bool do_equal_b (Request const*) const;
+};
 
+class String_number_req : public Script_req
+{
+protected:
+  VIRTUAL_COPY_CONS (Music);
+  virtual bool do_equal_b (Request const*) const;
+};
 
 /// request which has some kind of pitch
-struct Melodic_req :virtual Musical_req
+struct Melodic_req :virtual Request
 {
-  Musical_pitch pitch_;
-  /// transpose. #delta# is relative to central c.
-  virtual void transpose (Musical_pitch delta);
-  Melodic_req();
-  bool do_equal_b (Request*) const;
   static int compare (Melodic_req const&,Melodic_req const&);
-  REQUESTMETHODS(Melodic_req);
-};
+  
+protected:
+  virtual bool do_equal_b (Request const*) const;
 
-/// specify tonic of a chord
-struct Tonic_req : public Melodic_req
-{
-  Tonic_req ();
-  REQUESTMETHODS(Tonic_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
-/// Put a note of specified type, height, and with accidental on the staff.
-class Note_req  : public Rhythmic_req, virtual public Melodic_req  {
-public:
-    
-  /// force/supress printing of accidental.
+/*
+   Put a note of specified type, height, and with accidental on the staff.
+    /// force/supress printing of accidental.
   bool forceacc_b_;
   /// Cautionary, i.e. parenthesized accidental.
   bool cautionary_b_;
-  Note_req();
-  bool do_equal_b (Request*) const;
-  REQUESTMETHODS(Note_req);
+
+ */
+class Note_req  : public Rhythmic_req, virtual public Melodic_req  {
+public:
+    
+  Note_req ();
+protected:
+
+  bool do_equal_b (Request const*) const;
+  VIRTUAL_COPY_CONS (Music);
 };
 
 /**
@@ -113,82 +116,67 @@ Put a rest on the staff. Why a request? It might be a good idea to not typeset t
 */
 class Rest_req : public Rhythmic_req {
 public:
-  REQUESTMETHODS(Rest_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
-/**
- Part: typeset a measure with the number of measures rest
- Score: typeset all individual measures ass full rests
- */
-class Multi_measure_rest_req : public Rhythmic_req  {
-public:
-  REQUESTMETHODS(Multi_measure_rest_req);
 
+/// an extender line
+class Extender_req : public Request  {
+public:
+  VIRTUAL_COPY_CONS (Music);
 };
 
-class Musical_span_req : public Span_req, public virtual Musical_req
-{
+/// a centred hyphen
+class Hyphen_req : public Request  {
 public:
-  REQUESTMETHODS(Musical_span_req);
-  
+  VIRTUAL_COPY_CONS (Music);
 };
 
-
-/** 
- Start / stop an abbreviation beam at this note. 
+/** is anyone  playing a note?
+    Used for communication between Music & Lyrics
  */
-class Abbreviation_beam_req : public Musical_span_req  {
+class Busy_playing_req : public Request
+{
 public:
-  REQUESTMETHODS (Abbreviation_beam_req);
-
-  Abbreviation_beam_req ();
-
-  int type_i_;
+  VIRTUAL_COPY_CONS (Music);
 };
 
 
 
-/// a slur
-class Slur_req  : public Musical_span_req  {
+/**
+   instruct lyric context to alter typesetting.  */
+class Melisma_req : public Span_req
+{
 public:
-  REQUESTMETHODS(Slur_req);
-
+  VIRTUAL_COPY_CONS (Music);
 };
 
-/// an extender line
-class Extender_req : public Musical_span_req  {
-public:
-  REQUESTMETHODS(Extender_req);
-  Extender_req ();
-};
 
-class Musical_script_req : public Musical_req,  public Script_req {
+/**
+   Helping req to signal start of a melisma from within a context, and
+   to   */
+class Melisma_playing_req : public Request
+{
 public:
-  REQUESTMETHODS(Musical_script_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
-
-class Dynamic_req  : public virtual Musical_req  {
+class Arpeggio_req : public Request
+{
 public:
-  REQUESTMETHODS(Dynamic_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
-class Absolute_dynamic_req  : public Dynamic_req  {
+class Glissando_req : public Request
+{
 public:
-  String loudness_str_;
-  virtual bool do_equal_b (Request*) const;
-  String loudness_str () const;
-  Absolute_dynamic_req();
-  REQUESTMETHODS(Absolute_dynamic_req);
+  VIRTUAL_COPY_CONS (Music);
 };
 
-class Span_dynamic_req  : public Dynamic_req, public Musical_span_req  {
+class Bass_figure_req:  public Rhythmic_req
+{
 public:
-  virtual bool do_equal_b (Request*) const;
-  /// Grow or shrink the volume: 1=cresc, -1 = decresc 
-  Direction dynamic_dir_;
-  Span_dynamic_req();
-  REQUESTMETHODS(Span_dynamic_req);
+  VIRTUAL_COPY_CONS(Music);
 };
 
 #endif // MUSICALREQUESTS_HH