diff options
author | lordjaxom <lordjaxom> | 2004-12-21 20:26:25 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-21 20:26:25 +0000 |
commit | daa586ba0112a61d92a57e33e648f00b4105dd65 (patch) | |
tree | 9c4bb00087570023bf7706b60d2124ebfedb7d7d /marquee.h | |
parent | c05277882c111760d4e275b8521bb057e913a946 (diff) | |
download | vdr-plugin-text2skin-daa586ba0112a61d92a57e33e648f00b4105dd65.tar.gz vdr-plugin-text2skin-daa586ba0112a61d92a57e33e648f00b4105dd65.tar.bz2 |
- finished {CurrentRecording}
- improved marquee
- added some missing checks
Diffstat (limited to 'marquee.h')
-rw-r--r-- | marquee.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,5 @@ /* - * $Id: marquee.h,v 1.1 2004/12/19 22:03:14 lordjaxom Exp $ + * $Id: marquee.h,v 1.2 2004/12/21 20:26:25 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_MARQUEE_H @@ -33,12 +33,14 @@ public: cText2SkinMarquee(const cText2SkinMarquee &Src); cText2SkinMarquee(cText2SkinScreen *Screen, int Left, int Top, int Width, int Height, const std::string &Text, const cFont *Font, tColor ColorFg, tColor ColorBg, - int &UpdateIn); + uint &UpdateIn); void Set(cText2SkinScreen *Screen, int Left, int Top, int Width, int Height, const std::string &Text, const cFont *Font, tColor ColorFg, tColor ColorBg, - int &UpdateIn); - void DrawText(int &UpdateIn); + uint &UpdateIn); + void DrawText(uint &UpdateIn); + + const std::string &Text(void) const { return mText; } }; #endif // VDR_TEXT2SKIN_MARQUEE_H |