]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/time-signature.hh
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / include / time-signature.hh
index fbe2f826b06e77e110728fe5c081c9756bd22052..2c712ba1e776c169196c56074e3b2c74866c1ed1 100644 (file)
@@ -1,31 +1,41 @@
 /*
-  time_signature.hh -- declare Time_signature
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1996--1999 Han-Wen Nienhuys
+  Copyright (C) 1996--2010 Han-Wen Nienhuys
+
+  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/>.
 */
 
 #ifndef METER_HH
 #define METER_HH
 
-#include "item.hh"
-#include "array.hh"
-#include "real.hh"
+#include "grob-interface.hh"
+#include "lily-proto.hh"
 
 /**
    Print a time_signature sign.
-  TODO:
-
-  C style time_signatures, 2+3+2/8 time_signatures, alla breve.
-  
- */
-class Time_signature: public Item {
-protected:
-  virtual Molecule*do_brew_molecule_p() const;
-public:
-  Time_signature () ;
-  Array<int> args_;
-  
-  VIRTUAL_COPY_CONS(Score_element);
+
+   TODO:
+
+   2+3+2/8 time_signatures
+*/
+struct Time_signature
+{
+  DECLARE_GROB_INTERFACE();
+  static Stencil special_time_signature (Grob *, SCM, int, int);
+  static Stencil numbered_time_signature (Grob *, int, int);
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
 };
 #endif // METER_HH