diff options
author | lordjaxom <lordjaxom> | 2004-07-14 16:49:10 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-07-14 16:49:10 +0000 |
commit | 5071a1754f3db0adcf477ecf8e5b2a818d1935bd (patch) | |
tree | 210c39c7871d0192ec5aad51096ea39fa47ccd9e /display.c | |
parent | f2a4ea2dc8c0d915e0f2af6f4ec1a228e1e94453 (diff) | |
download | vdr-plugin-text2skin-5071a1754f3db0adcf477ecf8e5b2a818d1935bd.tar.gz vdr-plugin-text2skin-5071a1754f3db0adcf477ecf8e5b2a818d1935bd.tar.bz2 |
- fixed display of scrollbar if there is no text presentv0.0.8
- fixed animation delay if update takes longer than the delay
- using backgrounds also in 8-bit fullscreen mode to improve performance
- implemented screen layer to improve performance
- corrected offsets and tab widths in main menu
- implemented parameters "current", "mark" and "selected" to choose mark colors
in replay display (defaults to the old values)
- implemented color value "None" to be able to unset a color
Diffstat (limited to 'display.c')
-rw-r--r-- | display.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,11 +1,12 @@ /* - * $Id: display.c,v 1.18 2004/06/24 18:37:30 lordjaxom Exp $ + * $Id: display.c,v 1.19 2004/07/02 19:00:22 lordjaxom Exp $ */ #include "render.h" #include "data.h" #include "loader.h" #include "display.h" +#include "scroller.h" // --- cText2SkinDisplayChannel ----------------------------------------------- @@ -248,6 +249,7 @@ void cText2SkinDisplayMenu::Clear(void) { mRender->mMenuEvent = NULL; mRender->mMenuRecording = NULL; mRender->mMenuText = ""; + Dprintf("Clear\n"); //mRender->mMessageText = ""; DELETENULL(mRender->mScroller); mRender->Unlock(); @@ -281,6 +283,7 @@ void cText2SkinDisplayMenu::SetButtons(const char *Red, const char *Green, const } void cText2SkinDisplayMenu::SetMessage(eMessageType Type, const char *Text) { + Dprintf("SetMessage %s\n", Text); if (Text == NULL) Text = ""; mRender->Lock(); if (mRender->mMessageType != Type || mRender->mMessageText != Text) { |