jellyfin/MediaBrowser.Model/Session/GeneralCommandType.cs

54 lines
1.3 KiB
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Session
2018-12-28 00:27:57 +01:00
{
/// <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,
DisplayMessage = 28,
SetRepeatMode = 29,
ChannelUp = 30,
ChannelDown = 31,
Guide = 32,
ToggleStats = 33,
PlayMediaSource = 34,
2020-10-08 01:16:03 +02:00
PlayTrailers = 35,
SetShuffleQueue = 36,
2020-10-08 15:21:55 +02:00
PlayState = 37,
2020-10-08 01:26:02 +02:00
PlayNext = 38,
ToggleOsdMenu = 39,
2021-12-24 22:18:24 +01:00
Play = 40,
SetMaxStreamingBitrate = 41
2018-12-28 00:27:57 +01:00
}
}