Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.4KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 7 technical preview.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For the technical preview this file cannot be licensed commercially.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. namespace juce
  14. {
  15. /** The list of available roles for an AccessibilityHandler object.
  16. When creating a custom AccessibilityHandler you should select the role that
  17. best describes the UI element being represented.
  18. @tags{Accessibility}
  19. */
  20. enum class AccessibilityRole
  21. {
  22. button,
  23. toggleButton,
  24. radioButton,
  25. comboBox,
  26. image,
  27. slider,
  28. label,
  29. staticText,
  30. editableText,
  31. menuItem,
  32. menuBar,
  33. popupMenu,
  34. table,
  35. tableHeader,
  36. column,
  37. row,
  38. cell,
  39. hyperlink,
  40. list,
  41. listItem,
  42. tree,
  43. treeItem,
  44. progressBar,
  45. group,
  46. dialogWindow,
  47. window,
  48. scrollBar,
  49. tooltip,
  50. splashScreen,
  51. ignored,
  52. unspecified
  53. };
  54. }