1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
# This file is part of python-ly, https://pypi.python.org/pypi/python-ly
#
# Copyright (c) 2011 - 2015 by Wilbert Berendsen
#
# This program 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 2
# of the License, or (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
"""
Query functions to get data from the LilyPond-generated _data.py module.
"""
def grob_properties(grob):
"""Returns the list of properties the named grob supports."""
from . import _data
return sorted(set(prop
for iface in _data.grobs.get(grob, [])
for prop in _data.interfaces[iface]))
def grob_properties_with_interface(grob):
"""Returns a list of two-tuples (property, interface)."""
from . import _data
return sorted(
(prop, iface)
for iface in _data.grobs.get(grob, [])
for prop in _data.interfaces[iface])
def grob_interfaces(grob, prop=None):
"""Returns the list of interfaces a grob supports.
If prop is given, only returns the interfaces that define prop.
"""
from . import _data
ifaces = _data.grobs.get(grob, [])
if prop is None:
return ifaces
return [iface for iface in ifaces
if prop in grob_interface_properties(iface)]
def grob_interface_properties(iface):
"""Returns the list of properties an interface supports."""
from . import _data
return _data.interfaces.get(iface, [])
def grob_interfaces_for_property(prop):
"""Returns the list of interfaces that define the property.
Most times returns one, but several interface names may be returned.
"""
from . import _data
return [iface
for iface, props in _data.interfaces.items()
if prop in props]
def grobs():
"""Returns the sorted list of all grob names."""
from . import _data
return sorted(_data.grobs.keys())
def all_grob_properties():
"""Returns the list of all properties."""
from . import _data
return sorted(set(sum(_data.interfaces.values(), [])))
def context_properties():
"""Returns the list of context properties."""
from . import _data
return _data.contextproperties
def engravers():
"""Returns the list of engravers and performers."""
from . import _data
return _data.engravers
def music_glyphs():
"""Returns the list of glyphs in the emmentaler font."""
from . import _data
return _data.musicglyphs
def scheme_keywords():
"""Returns the list of guile keywords."""
from . import _data
return _data.scheme_keywords
def scheme_functions():
"""Returns the list of scheme functions."""
from . import _data
return _data.scheme_functions
def scheme_variables():
"""Returns the list of scheme variables."""
from . import _data
return _data.scheme_variables
def scheme_constants():
"""Returns the list of scheme constants."""
from . import _data
return _data.scheme_constants
def all_scheme_words():
"""Returns the list of all scheme words."""
from . import _data
return _data.scheme_keywords + _data.scheme_functions \
+ _data.scheme_variables + _data.scheme_constants
|