diff options
author | lordjaxom <lordjaxom> | 2004-12-19 22:03:02 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-19 22:03:02 +0000 |
commit | 9aeb43d010d2452890d2c04832f1dfda8d963c4d (patch) | |
tree | 4907fb636d40fc14a8f4d53ce33540afab3119cb /scroller.c | |
parent | ac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d (diff) | |
download | vdr-plugin-text2skin-9aeb43d010d2452890d2c04832f1dfda8d963c4d.tar.gz vdr-plugin-text2skin-9aeb43d010d2452890d2c04832f1dfda8d963c4d.tar.bz2 |
Initial revision
Diffstat (limited to 'scroller.c')
-rw-r--r-- | scroller.c | 17 |
1 files changed, 5 insertions, 12 deletions
@@ -1,22 +1,15 @@ /* - * $Id: scroller.c,v 1.3 2004/12/08 17:13:26 lordjaxom Exp $ + * $Id: scroller.c,v 1.1 2004/12/19 22:03:18 lordjaxom Exp $ */ #include "scroller.h" #include "screen.h" #include <vdr/tools.h> -cText2SkinScroller::cText2SkinScroller(void) { - mScreen = NULL; - mLeft = mTop = mWidth = mHeight = 0; - mFont = NULL; - mColorFg = 0; - mColorBg = 0; - mOffset = 0; - mShown = 0; -} - -cText2SkinScroller::cText2SkinScroller(cText2SkinScreen *Screen, int Left, int Top, int Width, int Height, const char *Text, const cFont *Font, tColor ColorFg, tColor ColorBg) { +cText2SkinScroller::cText2SkinScroller(cText2SkinScreen *Screen, int Left, int Top, int Width, + int Height, const char *Text, const cFont *Font, + tColor ColorFg, tColor ColorBg) +{ Set(Screen, Left, Top, Width, Height, Text, Font, ColorFg, ColorBg); } |