GeneralCommandType.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. SetRepeatMode = 29,
  38. ChannelUp = 30,
  39. ChannelDown = 31,
  40. SetMaxStreamingBitrate = 31,
  41. Guide = 32,
  42. ToggleStats = 33,
  43. PlayMediaSource = 34,
  44. PlayTrailers = 35
  45. }
  46. }