diff options
Diffstat (limited to 'bitmap.h')
-rw-r--r-- | bitmap.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* - * $Id: bitmap.h,v 1.9 2004/06/08 20:45:52 lordjaxom Exp $ + * $Id: bitmap.h,v 1.10 2004/06/12 18:00:05 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_BITMAP_H @@ -25,7 +25,7 @@ private: cText2SkinBitmap(void); public: - static cText2SkinBitmap *Load(const char *Filename); + static cText2SkinBitmap *Load(const char *Filename, int Alpha = 0); static void FlushCache(void) { mCache.Flush(); } virtual ~cText2SkinBitmap(); @@ -33,12 +33,12 @@ public: cBitmap &Get(int &UpdateIn); void SetColor(int Index, tColor Color) { mBitmaps[mCurrent]->SetColor(Index, Color); } - bool LoadXpm(const char *Filename); + bool LoadXpm(const char *Filename, int Alpha); #ifdef HAVE_IMLIB2 - bool LoadImlib(const char *Filename); + bool LoadImlib(const char *Filename, int Alpha); #endif #ifdef HAVE_IMAGEMAGICK - bool LoadMagick(const char *Filename); + bool LoadMagick(const char *Filename, int Alpha); #endif }; |