Returns a FoscLilypondNameManager.
LilyPond name manager.
Base class from which grob, setting and tweak managers inherit.
| size | !!!TODO: can this be deprecated ?? |
| doesNotUnderstand | This allows for putting and accessing of attributes in vars through method calls to a FoscLilypondNameManager. |
| == | (abjad: eq) |
| asCompileString | (abjad: repr) |
| put | (abjad: setattr) |
!!!TODO: can this be deprecated ??
Override method inherited from Object.
This allows for putting and accessing of attributes in vars through method calls to a FoscLilypondNameManager.
Example
a = FoscLilypondNameManager();
a.color = 'red';
a.size = 12;
a.color.postln;FoscLilypondNameManager().prSetState(('color': red, 'size': 12))
a.size.postln;FoscLilypondNameManager().prSetState(('color': red, 'size': 12))Example
a = FoscNote(60, 1/4);
m = override(a);
m.noteHead.color = 'red';
m.noteHead.size = 12;
a.format;\once \override NoteHead.color = #red
\once \override NoteHead.size = #12
c'4(abjad: eq)
Is true when expr is a LilyPond name manager with attribute pairs equal to those of this LilyPond name manager. Otherwise false.
Returns true or false.
Example
m = FoscLilypondNameManager().prSetState((foo: 1, bar: 2));
n = FoscLilypondNameManager().prSetState((foo: 1, bar: 2));
(m == n).postln;true(abjad: repr)
Gets interpreter representation of LilyPond name manager.
Returns string.
Example
m = FoscLilypondNameManager();
m.prSetState((foo: 1, bar: 2));
m.asCompileString.postln;FoscLilypondNameManager().prSetState(('bar': 2, 'foo': 1))(abjad: setattr)
Sets attribute name of grob name manager to value.