00001 #ifndef LYRICMS_H 00002 #define LYRICMS_H 00003 #include "MusicSymbol.h" 00009 class LyricMS:public MusicSymbol{ 00010 QString text; 00011 public: 00012 LyricMS(double x,double y,QString text,QFont f); 00013 QFont font; 00014 //QFont oldfont; 00015 void draw(Painter * p); 00016 Collider * getCollider(); 00017 QString toString(); 00018 int graphicHeight; 00019 }; 00020 00021 00022 #endif
1.3.6