Exemplo n.º 1
0
 public ChordLinePane(string text, SongFormatOptions options, float x0, string label)
     : base(options, x0, label)
 {
     m_text = text;
 }
Exemplo n.º 2
0
 public SongFormatter(string text, SongFormatOptions options)
 {
     m_panegrp = new PaneGrp();
     m_text = text;
     m_options = options;
 }
Exemplo n.º 3
0
 protected Pane(SongFormatOptions options)
 {
     m_options = options;
 }
Exemplo n.º 4
0
 protected LabelablePane(SongFormatOptions options, float x0, string label)
     : base(options)
 {
     m_x0 = x0;
     m_label = label;
 }
Exemplo n.º 5
0
 public LabelLinePane(SongFormatOptions options, string label)
     : base(options)
 {
     m_label = label;
 }
Exemplo n.º 6
0
 public ParagraphSeparatorPane(SongFormatOptions options)
     : base(options)
 {
 }
Exemplo n.º 7
0
 public SongFormatPane(SongFormatOptions options)
     : base(options)
 {
 }