diff options
author | lordjaxom <lordjaxom> | 2004-12-08 18:48:39 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-08 18:48:39 +0000 |
commit | 5382d18d05d358bb1c313c642395e835aa44a6a0 (patch) | |
tree | 2b5ef58620b3640c5b21e8eafe92ee4b266b1d30 /bitmap.h | |
parent | eb2f2c9600e8f69788232582191b141002bcd522 (diff) | |
download | vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.gz vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.bz2 |
1.0-pre1v1.0-pre1
Diffstat (limited to 'bitmap.h')
-rw-r--r-- | bitmap.h | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,5 +1,5 @@ /* - * $Id: bitmap.h,v 1.12 2004/06/18 16:08:11 lordjaxom Exp $ + * $Id: bitmap.h,v 1.2 2004/12/08 18:47:37 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_BITMAP_H @@ -13,16 +13,16 @@ class cText2SkinBitmap { private: static cText2SkinCache mCache; - vector<cBitmap*> mBitmaps; - int mCurrent; - time_t mDelay; - time_t mLastGet; + std::vector<cBitmap*> mBitmaps; + int mCurrent; + time_t mDelay; + time_t mLastGet; // disallow direct construction cText2SkinBitmap(void); public: - static cText2SkinBitmap *Load(const char *Filename, int Alpha = 0); + static cText2SkinBitmap *Load(const std::string &Filename, int Alpha = 0); static void ResetCache(void) { mCache.Reset(); } static void FlushCache(void) { mCache.Flush(); } @@ -33,12 +33,12 @@ public: void SetColor(int Index, tColor Color); void SetAlpha(int Alpha); - bool LoadXpm(const char *Filename, int Alpha); + bool LoadXpm(const char *Filename); #ifdef HAVE_IMLIB2 - bool LoadImlib(const char *Filename, int Alpha); + bool LoadImlib(const char *Filename); #endif #ifdef HAVE_IMAGEMAGICK - bool LoadMagick(const char *Filename, int Alpha); + bool LoadMagick(const char *Filename); #endif }; |