diff options
Diffstat (limited to 'xml')
-rw-r--r-- | xml/string.c | 13 | ||||
-rw-r--r-- | xml/string.h | 6 |
2 files changed, 12 insertions, 7 deletions
diff --git a/xml/string.c b/xml/string.c index 424b4d0..26e3a22 100644 --- a/xml/string.c +++ b/xml/string.c @@ -1,12 +1,12 @@ /* - * $Id: string.c,v 1.7 2005/01/07 21:48:28 lordjaxom Exp $ + * $Id: string.c,v 1.8 2005/01/11 18:18:31 lordjaxom Exp $ */ #include "xml/string.h" #include "render.h" static const char *Tokens[__COUNT_TOKEN__] = { - "DateTime", "FreeDiskSpace", + "DateTime", "FreeDiskSpace", "AudioTrack", "AudioChannel", // Channel Display "ChannelNumber", "ChannelName", "ChannelShortName", "ChannelBouquet", "ChannelPortal", @@ -28,12 +28,13 @@ static const char *Tokens[__COUNT_TOKEN__] = { // Replay Display "ReplayTitle", "ReplayPositionIndex", "ReplayDurationIndex", "ReplayPrompt", "IsPlaying", "IsFastForward", "IsFastRewind", "IsSlowForward", "IsSlowRewind", "IsPausing", - "ReplayPosition", "ReplayDuration", "ReplayRemaining", "ReplayMode", + "ReplayPosition", "ReplayDuration", "ReplayRemaining", "ReplayMode", "ReplayIsShuffle", + "ReplayIsLoop", // Menu Page - "MenuTitle", "MenuGroup", "IsMenuGroup", "MenuItem", "IsMenuItem", "MenuCurrent", "IsMenuCurrent", - "MenuText", "ButtonRed", "ButtonGreen", "ButtonYellow", "ButtonBlue", "CanScrollUp", - "CanScrollDown" + "MenuTitle", "MenuGroup", "IsMenuGroup", "MenuItem", "IsMenuItem", "MenuCurrent", + "IsMenuCurrent", "MenuText", "ButtonRed", "ButtonGreen", "ButtonYellow", "ButtonBlue", + "CanScrollUp", "CanScrollDown" }; std::string txToken::Token(const txToken &Token) diff --git a/xml/string.h b/xml/string.h index 787d81e..7fe7be7 100644 --- a/xml/string.h +++ b/xml/string.h @@ -1,5 +1,5 @@ /* - * $Id: string.h,v 1.8 2005/01/07 21:48:51 lordjaxom Exp $ + * $Id: string.h,v 1.9 2005/01/11 18:18:31 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_XML_STRING_H @@ -12,6 +12,8 @@ enum exToken { tDateTime, tFreeDiskSpace, + tAudioTrack, + tAudioChannel, // Channel Display tChannelNumber, @@ -78,6 +80,8 @@ enum exToken { tReplayDuration, tReplayRemaining, tReplayMode, + tReplayIsShuffle, + tReplayIsLoop, // Menu Page tMenuTitle, |