GeneralCommandType.cs 911 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. namespace MediaBrowser.Model.Session
  2. {
  3. /// <summary>
  4. /// This exists simply to identify a set of known commands.
  5. /// </summary>
  6. public enum GeneralCommandType
  7. {
  8. MoveUp = 0,
  9. MoveDown = 1,
  10. MoveLeft = 2,
  11. MoveRight = 3,
  12. PageUp = 4,
  13. PageDown = 5,
  14. PreviousLetter = 6,
  15. NextLetter = 7,
  16. ToggleOsd = 8,
  17. ToggleContextMenu = 9,
  18. Select = 10,
  19. Back = 11,
  20. TakeScreenshot = 12,
  21. SendKey = 13,
  22. SendString = 14,
  23. GoHome = 15,
  24. GoToSettings = 16,
  25. VolumeUp = 17,
  26. VolumeDown = 18,
  27. Mute = 19,
  28. Unmute = 20,
  29. ToggleMute = 21,
  30. SetVolume = 22,
  31. SetAudioStreamIndex = 23,
  32. SetSubtitleStreamIndex = 24,
  33. ToggleFullscreen = 25,
  34. DisplayContent = 26,
  35. GoToSearch = 27,
  36. DisplayMessage = 28
  37. }
  38. }