GeneralCommandType.cs 1.3 KB

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