]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-column-engraver.cc
Grand fixcc.py run on all .hh .cc files.
[lilypond.git] / lily / paper-column-engraver.cc
index 8b2b550f2f460891acb13dc46d2a36d3a1e15d14..31b8023bef734caac6f4c4bfb3ee8281091b922a 100644 (file)
@@ -36,7 +36,7 @@
 
 Paper_column_engraver::Paper_column_engraver ()
 {
-  last_moment_.main_part_ = Rational (-1,1); 
+  last_moment_.main_part_ = Rational (-1, 1);
   command_column_ = 0;
   musical_column_ = 0;
   breaks_ = 0;
@@ -62,7 +62,7 @@ Paper_column_engraver::finalize ()
   if (command_column_)
     {
       if (!scm_is_symbol (command_column_->get_property ("line-break-permission")))
-       command_column_->set_property ("line-break-permission", ly_symbol2scm ("allow"));
+        command_column_->set_property ("line-break-permission", ly_symbol2scm ("allow"));
       system_->set_bound (RIGHT, command_column_);
     }
 }
@@ -75,7 +75,7 @@ Paper_column_engraver::make_columns ()
   */
   Paper_column *p1 = make_paper_column ("NonMusicalPaperColumn");
   Paper_column *p2 = make_paper_column ("PaperColumn");
-  /* 
+  /*
      The columns are timestamped with now_mom () in
      stop_translation_timestep. Cannot happen now, because the
      first column is sometimes created before now_mom is initialised.
@@ -104,21 +104,21 @@ void
 Paper_column_engraver::acknowledge_staff_spacing (Grob_info gi)
 {
   Pointer_group_interface::add_grob (command_column_,
-                                    ly_symbol2scm ("spacing-wishes"),
-                                    gi.grob ());
+                                     ly_symbol2scm ("spacing-wishes"),
+                                     gi.grob ());
 }
 
 void
 Paper_column_engraver::acknowledge_note_spacing (Grob_info gi)
 {
   Pointer_group_interface::add_grob (musical_column_,
-                                    ly_symbol2scm ("spacing-wishes"),
-                                    gi.grob ());
+                                     ly_symbol2scm ("spacing-wishes"),
+                                     gi.grob ());
 }
 
 void
 Paper_column_engraver::set_columns (Paper_column *new_command,
-                                   Paper_column *new_musical)
+                                    Paper_column *new_musical)
 {
   command_column_ = new_command;
   musical_column_ = new_musical;
@@ -156,12 +156,12 @@ Paper_column_engraver::process_music ()
       string name = ly_scm2string (scm_symbol_to_string (name_sym));
       size_t end = name.rfind ("-event");
       if (end)
-       prefix = name.substr (0, end);
+        prefix = name.substr (0, end);
       else
-       {
-         programming_error ("Paper_column_engraver doesn't know about this break-event");
-         return;
-       }
+        {
+          programming_error ("Paper_column_engraver doesn't know about this break-event");
+          return;
+        }
 
       string perm_str = prefix + "-permission";
       string pen_str = prefix + "-penalty";
@@ -171,16 +171,16 @@ Paper_column_engraver::process_music ()
       SCM perm = break_events_[i]->get_property ("break-permission");
 
       if (scm_is_number (pen))
-       {
-         Real new_pen = robust_scm2double (cur_pen, 0.0) + scm_to_double (pen);
-         command_column_->set_property (pen_str.c_str (), scm_from_double (new_pen));
-         command_column_->set_property (perm_str.c_str (), ly_symbol2scm ("allow"));
-       }
+        {
+          Real new_pen = robust_scm2double (cur_pen, 0.0) + scm_to_double (pen);
+          command_column_->set_property (pen_str.c_str (), scm_from_double (new_pen));
+          command_column_->set_property (perm_str.c_str (), ly_symbol2scm ("allow"));
+        }
       else
-       command_column_->set_property (perm_str.c_str (), perm);
+        command_column_->set_property (perm_str.c_str (), perm);
     }
 
-  for (vsize i = 0 ; i < label_events_.size () ; i ++)
+  for (vsize i = 0; i < label_events_.size (); i++)
     {
       SCM label = label_events_[i]->get_property ("page-label");
       SCM labels = command_column_->get_property ("labels");
@@ -188,7 +188,7 @@ Paper_column_engraver::process_music ()
     }
 
   bool start_of_measure = (last_moment_.main_part_ != now_mom ().main_part_
-                          && !measure_position (context ()).main_part_);
+                           && !measure_position (context ()).main_part_);
 
   /*
     We can't do this in start_translation_timestep (), since time sig
@@ -199,9 +199,9 @@ Paper_column_engraver::process_music ()
       Moment mlen = Moment (measure_length (context ()));
       Grob *column = unsmob_grob (get_property ("currentCommandColumn"));
       if (column)
-       column->set_property ("measure-length", mlen.smobbed_copy ());
+        column->set_property ("measure-length", mlen.smobbed_copy ());
       else
-       programming_error ("No command column?");
+        programming_error ("No command column?");
     }
 }
 
@@ -221,37 +221,37 @@ Paper_column_engraver::stop_translation_timestep ()
       Grob *col = Item::is_non_musical (elem) ? command_column_ : musical_column_;
 
       if (!elem->get_parent (X_AXIS))
-       elem->set_parent (col, X_AXIS);
+        elem->set_parent (col, X_AXIS);
       if (!unsmob_grob (elem->get_object ("axis-group-parent-X")))
-       elem->set_object ("axis-group-parent-X", col->self_scm ());
+        elem->set_object ("axis-group-parent-X", col->self_scm ());
 
       if (Accidental_placement::has_interface (elem))
-       Separation_item::add_conditional_item (col, elem);
+        Separation_item::add_conditional_item (col, elem);
       else if (!Accidental_interface::has_interface (elem))
-       Separation_item::add_item (col, elem);
+        Separation_item::add_item (col, elem);
     }
   items_.clear ();
 
   if (to_boolean (get_property ("forbidBreak"))
-     && breaks_) /* don't honour forbidBreak if it occurs on the first moment of a score */
+      && breaks_) /* don't honour forbidBreak if it occurs on the first moment of a score */
     {
       command_column_->set_property ("page-turn-permission", SCM_EOL);
       command_column_->set_property ("page-break-permission", SCM_EOL);
       command_column_->set_property ("line-break-permission", SCM_EOL);
       for (vsize i = 0; i < break_events_.size (); i++)
-       {
-         SCM perm = break_events_[i]->get_property ("break-permission");
-         if (perm == ly_symbol2scm ("force") || perm == ly_symbol2scm ("allow"))
-           warning (_ ("forced break was overridden by some other event, "
-                       "should you be using bar checks?"));
-       }
+        {
+          SCM perm = break_events_[i]->get_property ("break-permission");
+          if (perm == ly_symbol2scm ("force") || perm == ly_symbol2scm ("allow"))
+            warning (_ ("forced break was overridden by some other event, "
+                        "should you be using bar checks?"));
+        }
     }
   else if (Paper_column::is_breakable (command_column_))
     {
       breaks_++;
 
-      if (! (breaks_%8))
-       progress_indication ("[" + to_string (breaks_) + "]");
+      if (! (breaks_ % 8))
+        progress_indication ("[" + to_string (breaks_) + "]");
     }
 
   context ()->get_score_context ()->unset_property (ly_symbol2scm ("forbidBreak"));
@@ -266,7 +266,7 @@ Paper_column_engraver::stop_translation_timestep ()
       && scm_is_integer (barnum))
     {
       SCM where = scm_cons (barnum,
-                           mpos);
+                            mpos);
 
       command_column_->set_property ("rhythmic-location", where);
       musical_column_->set_property ("rhythmic-location", where);
@@ -288,27 +288,27 @@ ADD_ACKNOWLEDGER (Paper_column_engraver, note_spacing);
 ADD_ACKNOWLEDGER (Paper_column_engraver, staff_spacing);
 
 ADD_TRANSLATOR (Paper_column_engraver,
-               /* doc */
-               "Take care of generating columns.\n"
-               "\n"
-               "This engraver decides whether a column is breakable.  The"
-               " default is that a column is always breakable.  However,"
-               " every @code{Bar_engraver} that does not have a barline at a"
-               " certain point will set @code{forbidBreaks} in the score"
-               " context to stop line breaks.  In practice, this means that"
-               " you can make a break point by creating a bar line (assuming"
-               " that there are no beams or notes that prevent a break"
-               " point).",
-               
-               /* create */
-               "PaperColumn "
-               "NonMusicalPaperColumn ",
-
-               /* read */
+                /* doc */
+                "Take care of generating columns.\n"
+                "\n"
+                "This engraver decides whether a column is breakable.  The"
+                " default is that a column is always breakable.  However,"
+                " every @code{Bar_engraver} that does not have a barline at a"
+                " certain point will set @code{forbidBreaks} in the score"
+                " context to stop line breaks.  In practice, this means that"
+                " you can make a break point by creating a bar line (assuming"
+                " that there are no beams or notes that prevent a break"
+                " point).",
+
+                /* create */
+                "PaperColumn "
+                "NonMusicalPaperColumn ",
+
+                /* read */
                 "forbidBreak ",
 
-               /* write */
+                /* write */
                 "forbidBreak "
-               "currentCommandColumn "
-               "currentMusicalColumn "
-               );
+                "currentCommandColumn "
+                "currentMusicalColumn "
+               );