jellyfin-server/MediaBrowser.Model/Session/GeneralCommandType.cs

44 lines
1.0 KiB
C#
Raw Normal View History

namespace MediaBrowser.Model.Session
{
/// <summary>
/// This exists simply to identify a set of known commands.
/// </summary>
public enum GeneralCommandType
{
MoveUp = 0,
MoveDown = 1,
MoveLeft = 2,
MoveRight = 3,
PageUp = 4,
PageDown = 5,
PreviousLetter = 6,
NextLetter = 7,
ToggleOsd = 8,
ToggleContextMenu = 9,
Select = 10,
Back = 11,
TakeScreenshot = 12,
SendKey = 13,
SendString = 14,
GoHome = 15,
GoToSettings = 16,
VolumeUp = 17,
VolumeDown = 18,
Mute = 19,
Unmute = 20,
ToggleMute = 21,
SetVolume = 22,
SetAudioStreamIndex = 23,
SetSubtitleStreamIndex = 24,
ToggleFullscreen = 25,
DisplayContent = 26,
GoToSearch = 27,
2015-07-24 15:20:11 +00:00
DisplayMessage = 28,
2015-11-09 18:18:37 +00:00
SetRepeatMode = 29,
ChannelUp = 30,
2017-01-04 08:02:08 +00:00
ChannelDown = 31,
2017-04-25 18:23:20 +00:00
SetMaxStreamingBitrate = 31,
2017-06-25 17:50:17 +00:00
Guide = 32,
ToggleStats = 33
}
}