diff options
author | louis <louis.braun@gmx.de> | 2013-08-21 10:26:50 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-08-21 10:26:50 +0200 |
commit | 9e1fcfc0bff753031617324b5244805080be9430 (patch) | |
tree | f7a574ff7223751f4d2da9b295b90c50530e3dc8 /imageloader.h | |
parent | e99e14c6f02164f53fb5ef01cdc8f091aac1fc4a (diff) | |
download | skin-nopacity-9e1fcfc0bff753031617324b5244805080be9430.tar.gz skin-nopacity-9e1fcfc0bff753031617324b5244805080be9430.tar.bz2 |
Version 0.1.3, Added TVScrapper support
Diffstat (limited to 'imageloader.h')
-rw-r--r-- | imageloader.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/imageloader.h b/imageloader.h index a5a0b5f..27b90d9 100644 --- a/imageloader.h +++ b/imageloader.h @@ -21,6 +21,7 @@ public: bool LoadAdditionalEPGImage(cString name); bool LoadRecordingImage(cString Path); bool LoadAdditionalRecordingImage(cString path, cString name); + bool LoadPoster(const char *poster, int width, int height); void DrawBackground(tColor back, tColor blend, int width, int height, bool mirror = false); void DrawBackground2(tColor back, tColor blend, int width, int height); private: @@ -28,7 +29,8 @@ private: Color Argb2Color(tColor col); void toLowerCase(std::string &str); bool LoadImage(cString FileName, cString Path, cString Extension); - bool FirstImageInFolder(cString Path, cString Extension, cString *recImage); + bool LoadImage(const char *fullpath); + bool FirstImageInFolder(cString Path, cString Extension, cString *recImage); }; #endif //__NOPACITY_IMAGELOADER_H |