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 /xml/object.h | |
parent | ac920774dee48c0a85b3c6fc8c6785c1a5dd8f6d (diff) | |
download | vdr-plugin-text2skin-9aeb43d010d2452890d2c04832f1dfda8d963c4d.tar.gz vdr-plugin-text2skin-9aeb43d010d2452890d2c04832f1dfda8d963c4d.tar.bz2 |
Initial revision
Diffstat (limited to 'xml/object.h')
-rw-r--r-- | xml/object.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xml/object.h b/xml/object.h index 41a626a..4778b83 100644 --- a/xml/object.h +++ b/xml/object.h @@ -1,5 +1,5 @@ /* - * $Id: object.h,v 1.5 2004/12/14 20:02:31 lordjaxom Exp $ + * $Id: object.h,v 1.1 2004/12/19 22:03:27 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_XML_OBJECT_H @@ -48,6 +48,7 @@ public: enum eType { image, text, + marquee, rectangle, ellipse, slope, @@ -80,6 +81,7 @@ private: cxString mTotal; std::string mFontFace; int mFontSize; + uint mIndex; cxObjects *mObjects; // used for block objects such as <list> cxDisplay *mDisplay; cxSkin *mSkin; @@ -106,6 +108,7 @@ public: std::string Text(void) const { return mText.Evaluate(); } int Current(void) const { return mCurrent.Evaluate(); } int Total(void) const { return mTotal.Evaluate(); } + uint Index(void) const { return mIndex; } cxDisplay *Display(void) const { return mDisplay; } cxSkin *Skin(void) const { return mSkin; } |