DrawingEnums.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**
  2. * The supported styles to draw a rectangle on the music sheet
  3. */
  4. export enum OutlineAndFillStyleEnum {
  5. BaseWritingColor,
  6. FollowingCursor,
  7. AlternativeFollowingCursor,
  8. PlaybackCursor,
  9. Highlighted,
  10. ErrorUnderlay,
  11. Selected,
  12. SelectionSymbol,
  13. DebugColor1,
  14. DebugColor2,
  15. DebugColor3,
  16. SplitScreenDivision,
  17. GreyTransparentOverlay,
  18. MarkedArea1,
  19. MarkedArea2,
  20. MarkedArea3,
  21. MarkedArea4,
  22. MarkedArea5,
  23. MarkedArea6,
  24. MarkedArea7,
  25. MarkedArea8,
  26. MarkedArea9,
  27. MarkedArea10,
  28. Comment1,
  29. Comment2,
  30. Comment3,
  31. Comment4,
  32. Comment5,
  33. Comment6,
  34. Comment7,
  35. Comment8,
  36. Comment9,
  37. Comment10
  38. }
  39. export enum StyleSets {
  40. MarkedArea,
  41. Comment
  42. }
  43. /**
  44. * The layers which one can draw on (not suppoerted)
  45. */
  46. export enum GraphicalLayers {
  47. Background,
  48. Highlight,
  49. MeasureError,
  50. SelectionSymbol,
  51. Cursor,
  52. PSI_Debug,
  53. Notes,
  54. Comment,
  55. Debug_above
  56. }
  57. export enum NoteState {
  58. Normal,
  59. Selected,
  60. Follow_Confirmed,
  61. QFeedback_NotFound,
  62. QFeedback_OK,
  63. QFeedback_Perfect,
  64. Debug1,
  65. Debug2,
  66. Debug3
  67. }