diff options
author | lordjaxom <lordjaxom> | 2005-01-20 14:02:41 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-20 14:02:41 +0000 |
commit | 36547636e94027ced4f1b43fbfa8446c9b018dfb (patch) | |
tree | 21c4e21ae0f98d08c621abaeda3640213f3d8658 /xml/string.c | |
parent | cbc77f8e5e12610eb0c04ef14abfa592a24fe126 (diff) | |
download | vdr-plugin-text2skin-36547636e94027ced4f1b43fbfa8446c9b018dfb.tar.gz vdr-plugin-text2skin-36547636e94027ced4f1b43fbfa8446c9b018dfb.tar.bz2 |
- created aliases for all HasXXX and IsXXX items (i.e. PresentHasTimer if item concerns present event)
- implemented {PresentHasVPS}, {FollowingHasVPS}, {EventHasVPS} (HasVPS was really ChannelHasVPS)
Diffstat (limited to 'xml/string.c')
-rw-r--r-- | xml/string.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/xml/string.c b/xml/string.c index 183535e..12d8faf 100644 --- a/xml/string.c +++ b/xml/string.c @@ -1,5 +1,5 @@ /* - * $Id: string.c,v 1.11 2005/01/19 19:20:37 lordjaxom Exp $ + * $Id: string.c,v 1.12 2005/01/20 14:02:41 lordjaxom Exp $ */ #include "xml/string.h" @@ -15,26 +15,31 @@ static const char *Tokens[__COUNT_TOKEN__] = { "PresentTitle", "PresentShortText", "PresentDescription", "FollowingStartDateTime", "FollowingVPSDateTime", "FollowingEndDateTime", "FollowingDuration", "FollowingTitle", "FollowingShortText", "FollowingDescription", "Language", - "HasTeletext", "HasMultilang", "HasDolby", "IsEncrypted", "IsRadio", "IsRecording", - "CurrentRecording", "HasVPS", "HasTimer", "IsRunning", + "HasTeletext", "ChannelHasTeletext", "HasMultilang", "ChannelHasMultilang", "HasDolby", + "ChannelHasDolby", "IsEncrypted", "ChannelIsEncrypted", "IsRadio", "ChannelIsRadio", + "IsRecording", "CurrentRecording", "HasVPS", "HasTimer", "IsRunning", "ChannelHasVPS", + "PresentHasTimer", "PresentIsRunning", "PresentHasVPS", "FollowingHasTimer", + "FollowingIsRunning", "FollowingHasVPS", // Volume Display - "VolumeCurrent", "VolumeTotal", "IsMute", + "VolumeCurrent", "VolumeTotal", "IsMute", "VolumeIsMute", // Message Display "Message", "MessageStatus", "MessageInfo", "MessageWarning", "MessageError", // Replay Display - "ReplayTitle", "ReplayPositionIndex", "ReplayDurationIndex", "ReplayPrompt", "IsPlaying", - "IsFastForward", "IsFastRewind", "IsSlowForward", "IsSlowRewind", "IsPausing", + "ReplayTitle", "ReplayPositionIndex", "ReplayDurationIndex", "ReplayPrompt", + "IsPlaying", "ReplayIsPlaying", "IsFastForward", "ReplayIsFastForward", "IsFastRewind", + "ReplayIsFastRewind", "IsSlowForward", "ReplayIsSlowForward", "IsSlowRewind", + "ReplayIsSlowRewind", "IsPausing", "ReplayIsPausing", "ReplayPosition", "ReplayDuration", "ReplayRemaining", "ReplayMode", "ReplayIsShuffle", "ReplayIsLoop", // Menu Page "MenuTitle", "MenuGroup", "IsMenuGroup", "MenuItem", "IsMenuItem", "MenuCurrent", "IsMenuCurrent", "MenuText", "ButtonRed", "ButtonGreen", "ButtonYellow", "ButtonBlue", - "CanScrollUp", "CanScrollDown" + "CanScrollUp", "CanScrollDown", "EventHasTimer", "EventIsRunning", "EventHasVPS", }; std::string txToken::Token(const txToken &Token) |