]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/volta-engraver.cc
Run grand-replace (issue 3765)
[lilypond.git] / lily / volta-engraver.cc
index 708b535d260610c207e3d98ba0df287eb91fecec..de7d08db95e09eb55ce85235eca5625df8dd2984 100644 (file)
@@ -1,15 +1,25 @@
 /*
-  volta-engraver.cc -- implement Volta_engraver
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 2000--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 2000--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "engraver.hh"
 
 #include "axis-group-interface.hh"
-#include "bar-line.hh"
 #include "context.hh"
 #include "grob-array.hh"
 #include "international.hh"
@@ -72,14 +82,14 @@ Volta_engraver::process_music ()
       SCM c = scm_car (cs);
 
       if (scm_is_pair (c)
-         && scm_car (c) == ly_symbol2scm ("volta")
-         && scm_is_pair (scm_cdr (c)))
-       {
-         if (scm_cadr (c) == SCM_BOOL_F)
-           end = true;
-         else
-           start_string_ = scm_cadr (c);
-       }
+          && scm_car (c) == ly_symbol2scm ("volta")
+          && scm_is_pair (scm_cdr (c)))
+        {
+          if (scm_cadr (c) == SCM_BOOL_F)
+            end = true;
+          else
+            start_string_ = scm_cadr (c);
+        }
 
       cs = scm_cdr (cs);
     }
@@ -90,7 +100,7 @@ Volta_engraver::process_music ()
       Moment now = now_mom ();
 
       bool early_stop = unsmob_moment (l)
-       && *unsmob_moment (l) <= now - started_mom_;
+                        && *unsmob_moment (l) <= now - started_mom_;
 
       end = end || early_stop;
     }
@@ -110,11 +120,11 @@ Volta_engraver::process_music ()
       warning (_ ("already have a volta spanner, ending that one prematurely"));
 
       if (end_volta_bracket_)
-       {
-         warning (_ ("also already have an ended spanner"));
-         warning (_ ("giving up"));
-         return;
-       }
+        {
+          warning (_ ("also already have an ended spanner"));
+          warning (_ ("giving up"));
+          return;
+        }
 
       end_volta_bracket_ = volta_bracket_;
       volta_bracket_ = 0;
@@ -130,7 +140,7 @@ Volta_engraver::process_music ()
       volta_bracket_->set_property ("text", start_string_);
 
       if (!volta_spanner_)
-       volta_spanner_ = make_spanner ("VoltaBracketSpanner", SCM_EOL);
+        volta_spanner_ = make_spanner ("VoltaBracketSpanner", SCM_EOL);
 
       Axis_group_interface::add_element (volta_spanner_, volta_bracket_);
     }
@@ -163,7 +173,7 @@ Volta_engraver::stop_translation_timestep ()
   if (end_volta_bracket_ && !volta_bracket_)
     {
       for (SCM s = get_property ("stavesFound"); scm_is_pair (s); s = scm_cdr (s))
-       Side_position_interface::add_support (volta_spanner_, unsmob_grob (scm_car (s)));
+        Side_position_interface::add_support (volta_spanner_, unsmob_grob (scm_car (s)));
       volta_spanner_ = 0;
     }
 
@@ -181,18 +191,18 @@ Volta_engraver::stop_translation_timestep ()
 */
 ADD_ACKNOWLEDGER (Volta_engraver, bar_line);
 ADD_TRANSLATOR (Volta_engraver,
-               /* doc */
-               "Make volta brackets.",
+                /* doc */
+                "Make volta brackets.",
 
-               /* create */
-               "VoltaBracket "
-               "VoltaBracketSpanner ",
+                /* create */
+                "VoltaBracket "
+                "VoltaBracketSpanner ",
 
-               /* read */
-               "repeatCommands "
-               "voltaSpannerDuration "
-               "stavesFound ",
+                /* read */
+                "repeatCommands "
+                "voltaSpannerDuration "
+                "stavesFound ",
 
-               /* write */
-               ""
-               );
+                /* write */
+                ""
+               );