summaryrefslogtreecommitdiff
path: root/marquee.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-28 18:06:02 +0000
committerlordjaxom <lordjaxom>2004-12-28 18:06:02 +0000
commit933d1f1e876f09d130ac576440ac34e6e5f50c25 (patch)
tree93f987326832688a63c0a747613770e1167a131e /marquee.h
parentefabce1166adbb02048bead9d7e38f215d486f04 (diff)
downloadvdr-plugin-text2skin-933d1f1e876f09d130ac576440ac34e6e5f50c25.tar.gz
vdr-plugin-text2skin-933d1f1e876f09d130ac576440ac34e6e5f50c25.tar.bz2
- removed unused marquee class
Diffstat (limited to 'marquee.h')
-rw-r--r--marquee.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/marquee.h b/marquee.h
deleted file mode 100644
index 36561c4..0000000
--- a/marquee.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * $Id: marquee.h,v 1.3 2004/12/28 01:24:35 lordjaxom Exp $
- */
-
-#ifndef VDR_TEXT2SKIN_MARQUEE_H
-#define VDR_TEXT2SKIN_MARQUEE_H
-
-#include <vdr/osd.h>
-#include <string>
-
-class cFont;
-class cText2SkinScreen;
-
-class cText2SkinMarquee {
-private:
- /*
- cText2SkinScreen *mScreen;
- const cFont *mFont;
- int mLeft;
- int mTop;
- int mWidth;
- int mHeight;
- std::string mText;
- bool mScrolling;
- int mOffset;
- int mDirection;
- tColor mColorFg;
- tColor mColorBg;
- uint mNextTime;
-
- cText2SkinMarquee(void) {} // disallow direct construction
-
-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,
- uint &UpdateIn);*/
-public:
- static void DrawText(cText2SkinScreen *Screen, int Left, int Top, int Width, int Height,
- const std::string &Text, const cFont *Font, tColor ColorFg, tColor ColorBg,
- uint Delay, int &Offset, int &Direction, uint &NextTime);
- //static void DrawText(uint &UpdateIn);
-
- //const std::string &Text(void) const { return mText; }
-};
-
-#endif // VDR_TEXT2SKIN_MARQUEE_H