2
0

GeneralCommandType.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. namespace MediaBrowser.Model.Session
  4. {
  5. /// <summary>
  6. /// This exists simply to identify a set of known commands.
  7. /// </summary>
  8. public enum GeneralCommandType
  9. {
  10. MoveUp = 0,
  11. MoveDown = 1,
  12. MoveLeft = 2,
  13. MoveRight = 3,
  14. PageUp = 4,
  15. PageDown = 5,
  16. PreviousLetter = 6,
  17. NextLetter = 7,
  18. ToggleOsd = 8,
  19. ToggleContextMenu = 9,
  20. Select = 10,
  21. Back = 11,
  22. TakeScreenshot = 12,
  23. SendKey = 13,
  24. SendString = 14,
  25. GoHome = 15,
  26. GoToSettings = 16,
  27. VolumeUp = 17,
  28. VolumeDown = 18,
  29. Mute = 19,
  30. Unmute = 20,
  31. ToggleMute = 21,
  32. SetVolume = 22,
  33. SetAudioStreamIndex = 23,
  34. SetSubtitleStreamIndex = 24,
  35. ToggleFullscreen = 25,
  36. DisplayContent = 26,
  37. GoToSearch = 27,
  38. DisplayMessage = 28,
  39. SetRepeatMode = 29,
  40. ChannelUp = 30,
  41. ChannelDown = 31,
  42. SetMaxStreamingBitrate = 31,
  43. Guide = 32,
  44. ToggleStats = 33,
  45. PlayMediaSource = 34,
  46. PlayTrailers = 35
  47. }
  48. }