diff options
author | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-06-07 19:09:34 +0000 |
commit | e0de96fc7168daeaf414fb6196e08969468427d2 (patch) | |
tree | de7f2dfb83796a7c77e5600a23b8b6b26f284796 /SKINS | |
parent | 6094765d94e4caaf0813039dff826b731f277753 (diff) | |
download | vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.gz vdr-plugin-text2skin-e0de96fc7168daeaf414fb6196e08969468427d2.tar.bz2 |
- fixed Timebar which sometimes displayed something beyond 100%v0.0.2
- fixed scrolling in EPG detail display
- added "MenuEventEndTime", "MenuEventVPSTime" and "MenuEventDate"
- added "DateTimeF" and "MenuEventDateTimeF" for free formattable dates
- added parameter format that holds the format string for the above items
- implemented setup menu to flush image cache
Diffstat (limited to 'SKINS')
-rw-r--r-- | SKINS | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -155,6 +155,13 @@ Item: Item=Time Description: Draws a time string into the given area. Otherwise, see Item=Text Parameters: x, y, width, height, fg, font, align, text +Item: Item=DateTimeF +Description: Draws a string expressing some details of the current date and + time. What is to be displayed will be decided by the skin author. + The paremeter "format" holds a format string according to the + manpage of strftime. +Parameters: x, y, width, height, fg, font, align, text, format + Item: Item=ChannelLogo Description: Draws a logo for the current channel (if present). The logo's filename will be the channel name, and the parameter type @@ -445,6 +452,29 @@ Description: Draws the start time of the currently selected event when viewing EPG entries. Parameters: x, y, width, height, fg, font, align, text +Item: Item=MenuEventEndTime +Description: Draws the end time of the currently selected event when viewing + EPG entries. +Parameters: x, y, width, height, fg, font, align, text + +Item: Item=MenuEventVPSTime +Description: Draws the vps time of the currently selected event when viewing + EPG entries, if that is different from the start time. +Parameters: x, y, width, height, fg, font, align, text + +Item: Item=MenuEventDate +Description: Draws the date of the currently selected event when viewing + EPG entries. +Parameters: x, y, width, height, fg, font, align, text + +Item: Item=MenuEventDateTimeF +Description: Draws a string expressing some details of the start time of the + currently selected event when viewing EPG entries. What is to + be displayed will be decided by the skin author. The paremeter + "format" holds a format string according to the manpage of + strftime. +Parameters: x, y, width, height, fg, font, align, text, format + Item: Item=MenuRecording Description: Draws the summary of the currently selected recording when browsing recordings in a scrollable text-area. If this item is @@ -520,6 +550,10 @@ Parameter: type Description: The string giving the file extensions for logos. Default: not given +Parameter: type +Description: The format string for a date/time display according to strftime. +Default: "" + Parameter: align Description: A number describing the text alignment. Possible values are '0' for left aligned, '1' for centered and '2' for right aligned. |