mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Implemented handling the "Parental Rating Descriptor"
This commit is contained in:
@@ -83,3 +83,4 @@ VDR Plugin 'skincurses' Revision History
|
||||
2010-01-03: Version 0.1.8
|
||||
|
||||
- Displaying "genre" in event descriptions.
|
||||
- Displaying "parental rating" in event descriptions.
|
||||
|
@@ -3,7 +3,7 @@
|
||||
*
|
||||
* See the README file for copyright information and how to reach the author.
|
||||
*
|
||||
* $Id: skincurses.c 2.1 2010/01/03 11:05:44 kls Exp $
|
||||
* $Id: skincurses.c 2.2 2010/01/03 14:08:04 kls Exp $
|
||||
*/
|
||||
|
||||
#include <ncurses.h>
|
||||
@@ -402,6 +402,10 @@ void cSkinCursesDisplayMenu::SetEvent(const cEvent *Event)
|
||||
osd->DrawText(ScOsdWidth - Utf8StrLen(buffer), y, buffer, clrBlack, clrYellow, &Font);
|
||||
}
|
||||
y += ts.Height();
|
||||
if (Event->ParentalRating()) {
|
||||
cString buffer = cString::sprintf(" %s ", *Event->GetParentalRatingString());
|
||||
osd->DrawText(ScOsdWidth - Utf8StrLen(buffer), y, buffer, clrBlack, clrYellow, &Font);
|
||||
}
|
||||
y += 1;
|
||||
ts.Set(osd, 0, y, ScOsdWidth, ScOsdHeight - y - 2, Event->Title(), &Font, clrCyan, clrBackground);
|
||||
y += ts.Height();
|
||||
|
Reference in New Issue
Block a user