vdr
1.7.27
|
Public Member Functions | |
cSkinCursesDisplayReplay (bool ModeOnly) | |
virtual | ~cSkinCursesDisplayReplay () |
virtual void | SetTitle (const char *Title) |
virtual void | SetMode (bool Play, bool Forward, int Speed) |
virtual void | SetProgress (int Current, int Total) |
virtual void | SetCurrent (const char *Current) |
virtual void | SetTotal (const char *Total) |
virtual void | SetJump (const char *Jump) |
virtual void | SetMessage (eMessageType Type, const char *Text) |
virtual void | Flush (void) |
Private Attributes | |
cOsd * | osd |
bool | message |
Definition at line 485 of file skincurses.c.
cSkinCursesDisplayReplay::cSkinCursesDisplayReplay | ( | bool | ModeOnly | ) |
Definition at line 502 of file skincurses.c.
References clrBackground, clrTransparent, cOsd::DrawRectangle(), message, osd, ScOsdHeight, and ScOsdWidth.
cSkinCursesDisplayReplay::~cSkinCursesDisplayReplay | ( | ) | [virtual] |
Definition at line 509 of file skincurses.c.
References osd.
void cSkinCursesDisplayReplay::Flush | ( | void | ) | [virtual] |
Actually draws the OSD display to the output device.
Reimplemented from cSkinDisplay.
Definition at line 570 of file skincurses.c.
References cOsd::Flush(), and osd.
void cSkinCursesDisplayReplay::SetCurrent | ( | const char * | Current | ) | [virtual] |
Sets the current position within the recording, as a user readable string if the form "h:mm:ss.ff".
The ".ff" part, indicating the frame number, is optional and the actual implementation needs to take care that it is erased from the display when a Current string with ".ff" is followed by one without it.
Implements cSkinDisplayReplay.
Definition at line 542 of file skincurses.c.
References clrBackground, clrWhite, cOsd::DrawText(), osd, and Utf8StrLen().
void cSkinCursesDisplayReplay::SetJump | ( | const char * | Jump | ) | [virtual] |
Sets the prompt that allows the user to enter a jump point.
Jump is a string of the form "Jump: mm:ss". The actual implementation needs to be able to handle variations in the length of this string, which will occur when the user enters an actual value. If Jump is NULL, the jump prompt shall be removed from the display.
Implements cSkinDisplayReplay.
Definition at line 552 of file skincurses.c.
References clrBackground, clrWhite, cOsd::DrawText(), osd, ScOsdWidth, and taCenter.
Referenced by SetMode().
void cSkinCursesDisplayReplay::SetMessage | ( | eMessageType | Type, |
const char * | Text | ||
) | [virtual] |
Sets a one line message Text, with the given Type.
Type can be used to determine, e.g., the colors for displaying the Text. If Text is NULL, any previously displayed message must be removed, and any previous contents overwritten by the message must be restored.
Implements cSkinDisplayReplay.
Definition at line 557 of file skincurses.c.
References clrMessage, cOsd::DrawText(), message, osd, cOsd::RestoreRegion(), cOsd::SaveRegion(), ScOsdWidth, and taCenter.
void cSkinCursesDisplayReplay::SetMode | ( | bool | Play, |
bool | Forward, | ||
int | Speed | ||
) | [virtual] |
Sets the current replay mode, which can be used to display some indicator, showing the user whether we are currently in normal play mode, fast forward etc.
Implements cSkinDisplayReplay.
Definition at line 519 of file skincurses.c.
References SetJump(), Setup, cSetup::ShowReplayMode, and strn0cpy().
void cSkinCursesDisplayReplay::SetProgress | ( | int | Current, |
int | Total | ||
) | [virtual] |
This function will be called whenever the position in or the total length of the recording has changed.
A cProgressBar shall then be used to display a progress indicator.
Implements cSkinDisplayReplay.
Definition at line 535 of file skincurses.c.
References clrGreen, clrWhite, cOsd::DrawRectangle(), osd, and ScOsdWidth.
void cSkinCursesDisplayReplay::SetTitle | ( | const char * | Title | ) | [virtual] |
Sets the title of the recording.
Implements cSkinDisplayReplay.
Definition at line 514 of file skincurses.c.
References clrBackground, clrWhite, cOsd::DrawText(), osd, and ScOsdWidth.
void cSkinCursesDisplayReplay::SetTotal | ( | const char * | Total | ) | [virtual] |
Sets the total length of the recording, as a user readable string if the form "h:mm:ss".
Implements cSkinDisplayReplay.
Definition at line 547 of file skincurses.c.
References clrBackground, clrWhite, cOsd::DrawText(), osd, ScOsdWidth, and Utf8StrLen().
bool cSkinCursesDisplayReplay::message [private] |
Definition at line 488 of file skincurses.c.
Referenced by cSkinCursesDisplayReplay(), and SetMessage().
cOsd* cSkinCursesDisplayReplay::osd [private] |
Definition at line 487 of file skincurses.c.
Referenced by cSkinCursesDisplayReplay(), Flush(), SetCurrent(), SetJump(), SetMessage(), SetProgress(), SetTitle(), SetTotal(), and ~cSkinCursesDisplayReplay().