FoscLilypondGrobNameManager

Returns a FoscLilypondGrobNameManager.


Description

LilyPond grob name manager.

LilyPondGrobNameManager instances are created by the override factory function.

FIXME: neither of these examples works!


Attributes Summary

Instance Methods: Special Methods

at (abjad: getattr)
put (abjad: setattr)


Usage

  1. Example

    a = FoscStaff();
    a.add(FoscLeafMaker().(#[60,62,64,65], [1/4]));
    m = override(a);
    m.staffSymbol.color = 'red';
    a.format;
    \new Staff \with {
        \override StaffSymbol.color = #red
    } {
        c'4
        d'4
        e'4
        f'4
    }
    a.show;

  2. Example

    a = FoscNote(60, [1, 4]);
    m = override(a);
    m.noteHead.color = 'red';
    m.noteHead.fontSize = 4;
    a.format;
    \once \override NoteHead.color = #red
    \once \override NoteHead.font-size = #4
    c'4
    a.show;


Instance Methods: Special Methods


at

(abjad: getattr)

!!!TODO: deprecate ??


put

(abjad: setattr)

!!!TODO: deprecate ??