diff options
author | louis <louis.braun@gmx.de> | 2012-12-18 19:35:07 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2012-12-18 19:35:07 +0100 |
commit | 7010739a062c660bbd88b612e1635068325acf3f (patch) | |
tree | 8ce9bb1ebabf80a307433d6896e90b6eedb6a108 /imageloader.h | |
parent | ec274fcb4852434290a1a9fdc13c8fb747762099 (diff) | |
download | skin-nopacity-7010739a062c660bbd88b612e1635068325acf3f.tar.gz skin-nopacity-7010739a062c660bbd88b612e1635068325acf3f.tar.bz2 |
Displaying epg image for recordings using first found jpg in recordings folder
Diffstat (limited to 'imageloader.h')
-rw-r--r-- | imageloader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/imageloader.h b/imageloader.h index 96d1fdd..5d22fd8 100644 --- a/imageloader.h +++ b/imageloader.h @@ -18,6 +18,7 @@ public: bool LoadIcon(const char *cIcon, int size); bool LoadIcon(const char *cIcon, int width, int height); bool LoadEPGImage(int eventID); + bool LoadRecordingImage(cString Path); void DrawBackground(tColor back, tColor blend, int width, int height); void DrawBackground2(tColor back, tColor blend, int width, int height); private: @@ -25,6 +26,7 @@ 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); }; #endif //__NOPACITY_IMAGELOADER_H |