]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.59
authorfred <fred>
Sun, 24 Mar 2002 19:42:08 +0000 (19:42 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:42:08 +0000 (19:42 +0000)
NEWS
init/table_sixteen.ini
lily/include/bow.hh [new file with mode: 0644]
lily/parser.y
tex/dimen.tex

diff --git a/NEWS b/NEWS
index 9bbb2e1f442e1aebb60b424cce5560cd43b6a59a..f01134bef9341e74722580f024b26ddb64102725 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+pl 59
+       - Slur now into voicegroups, and take stems into account.
+       - bf: rest size in table.
+       - split Slur in baseclass Bow
+       - Tie, Tie_req, Tie_register
+
+******
+may 2
 pl 58
        - lexer cleanup
        - national chars in lyrics
@@ -20,7 +28,7 @@ pl 57.jcn2
        - small toccata-fuga-E.ly fixes
        - \bar "||"; is now doublebar, "|." is finishbar
        - collision hshift fix, with on-line assistance
-
+******
 pl 57
        - lots of TODO doco
        - text alignment bugfix
@@ -62,7 +70,7 @@ pl 55
        - script-on-rest bug
        - doc update
        - transpose syntax
-
+******
 pl 54
        - bugfix Colhpos.cc::OK assert fail.
        - Inclusion of MusixTeX MF files, 
index b93ddb7b318d94de22fc2d85ad692328d65d41e4..a205cddaff613840cf861ffc4b87a9527eec3047 100644 (file)
@@ -108,8 +108,8 @@ table_sixteen=
      }
 
      "rests" = \table {
-            "1"        "\wholerest"            -5\pt   1\pt    -1\pt   1\pt
-            "2"        "\halfrest"             -5\pt   1\pt    -1\pt   1\pt
+            "1"        "\wholerest"            0\pt    6\pt    0\pt    2\pt
+            "2"        "\halfrest"             0\pt    6\pt    -2\pt   0\pt
             "4"        "\quartrest"            -5\pt   2\pt    -5\pt   5\pt
             "8"        "\eighthrest"           0\pt    5\pt    0\pt    8\pt
             "16"       "\sixteenthrest"                0\pt    6\pt    0\pt    12\pt
diff --git a/lily/include/bow.hh b/lily/include/bow.hh
new file mode 100644 (file)
index 0000000..ab3908a
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+  bow.hh -- declare Bow
+
+  source file of the LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+
+#ifndef BOW_HH
+#define BOW_HH
+#include "directional-spanner.hh"
+
+/**
+  base class for anything that looks like a slur.
+  */
+class Bow : public Directional_spanner {
+protected:
+    int left_pos_i_;
+    int right_pos_i_;
+    Real left_dx_f_;
+    Real right_dx_f_;
+    Molecule*brew_molecule_p()const;
+public:
+    Bow();
+    NAME_MEMBERS(Bow);
+    Offset center() const;  
+};
+#endif // BOW_HH
index b384729562f3152c96e2f24cf1a9306614d55fdb..6ece45d55e4012f4bcacbb4cd6b2f30d0b70570d 100644 (file)
@@ -1,7 +1,7 @@
 %{ // -*-Fundamental-*-
 #include <iostream.h>
 
-#define MUDELA_VERSION "0.0.56"
+#define MUDELA_VERSION "0.0.57"
 
 #include "script-def.hh"
 #include "symtable.hh"
@@ -807,7 +807,10 @@ close_plet_parens:
        ;
 
 close_request_parens:
-       '('     { 
+       '~'     {
+               $$ = '~';
+       }
+       | '('   { 
                $$='(';
        }
        | ']'   { 
index 9d36059462e171b1f502249ed5d0b7347fde6463..4ae5e1376c7df063e25a8636a9af502907541334 100644 (file)
@@ -1,4 +1,4 @@
-\font\musicfont=cmsy10
+\font\musicfont=musix16
 \font\slurfont=xslu16
 \def\thefont{\musicfont}