Articulation_enums.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* Articulation_enums.h
  2. *
  3. * Copyright (C) 1992-2005,2009,2013,2015-2017 Paul Boersma
  4. *
  5. * This code is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This code is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. enums_begin (kArt_muscle, 0)
  19. enums_add (kArt_muscle, 0, _, U"_")
  20. enums_add (kArt_muscle, 1, LUNGS, U"Lungs")
  21. enums_add (kArt_muscle, 2, INTERARYTENOID, U"Interarytenoid") // constriction of larynx; 0 = breathing, 1 = constricted glottis
  22. enums_add (kArt_muscle, 3, CRICOTHYROID, U"Cricothyroid") // vocal-cord tension
  23. enums_add (kArt_muscle, 4, VOCALIS, U"Vocalis") // vocal-cord tension
  24. enums_add (kArt_muscle, 5, THYROARYTENOID, U"Thyroarytenoid")
  25. enums_add (kArt_muscle, 6, POSTERIOR_CRICOARYTENOID, U"PosteriorCricoarytenoid") // opening of glottis
  26. enums_add (kArt_muscle, 7, LATERAL_CRICOARYTENOID, U"LateralCricoarytenoid") // opening of glottis
  27. enums_add (kArt_muscle, 8, STYLOHYOID, U"Stylohyoid") // up movement of hyoid bone
  28. enums_add (kArt_muscle, 9, STERNOHYOID, U"Sternohyoid") // down movement of hyoid bone
  29. enums_add (kArt_muscle, 10, THYROPHARYNGEUS, U"Thyropharyngeus") // constriction of ventricular folds
  30. enums_add (kArt_muscle, 11, LOWER_CONSTRICTOR, U"LowerConstrictor")
  31. enums_add (kArt_muscle, 12, MIDDLE_CONSTRICTOR, U"MiddleConstrictor")
  32. enums_add (kArt_muscle, 13, UPPER_CONSTRICTOR, U"UpperConstrictor")
  33. enums_add (kArt_muscle, 14, SPHINCTER, U"Sphincter") // constriction of pharynx
  34. enums_add (kArt_muscle, 15, HYOGLOSSUS, U"Hyoglossus") // down movement of tongue body
  35. enums_add (kArt_muscle, 16, STYLOGLOSSUS, U"Styloglossus") // up movement of tongue body
  36. enums_add (kArt_muscle, 17, GENIOGLOSSUS, U"Genioglossus") // forward movement of tongue body
  37. enums_add (kArt_muscle, 18, UPPER_TONGUE, U"UpperTongue") // up curling of the tongue tip
  38. enums_add (kArt_muscle, 19, LOWER_TONGUE, U"LowerTongue") // down curling of the tongue
  39. enums_add (kArt_muscle, 20, TRANSVERSE_TONGUE, U"TransverseTongue") // thickening of tongue
  40. enums_add (kArt_muscle, 21, VERTICAL_TONGUE, U"VerticalTongue") // thinning of tongue
  41. enums_add (kArt_muscle, 22, RISORIUS, U"Risorius") // spreading of lips
  42. enums_add (kArt_muscle, 23, ORBICULARIS_ORIS, U"OrbicularisOris") // rounding of lips
  43. enums_add (kArt_muscle, 24, LEVATOR_PALATINI, U"LevatorPalatini") // closing of velo-pharyngeal port; 0 = open ("nasal"), 1 = closed ("oral")
  44. enums_add (kArt_muscle, 25, TENSOR_PALATINI, U"TensorPalatini")
  45. enums_add (kArt_muscle, 26, MASSETER, U"Masseter") // closing of jaw; 0 = open, 1 = closed
  46. enums_add (kArt_muscle, 27, MYLOHYOID, U"Mylohyoid") // opening of jaw
  47. enums_add (kArt_muscle, 28, LATERAL_PTERYGOID, U"LateralPterygoid") // horizontal jaw position
  48. enums_add (kArt_muscle, 29, BUCCINATOR, U"Buccinator") // oral wall tension
  49. enums_end (kArt_muscle, 29, LUNGS)
  50. /* End of file Articulation.enums */