diff options
Diffstat (limited to 'imageloader.h')
-rw-r--r-- | imageloader.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/imageloader.h b/imageloader.h index cade4d0..96d1fdd 100644 --- a/imageloader.h +++ b/imageloader.h @@ -11,20 +11,20 @@ using namespace Magick; class cImageLoader { public: - cImageLoader(); - ~cImageLoader(); - cImage GetImage(); - bool LoadLogo(const char *logo, int width, int height); - bool LoadIcon(const char *cIcon, int size); - bool LoadIcon(const char *cIcon, int width, int height); - bool LoadEPGImage(int eventID); - void DrawBackground(tColor back, tColor blend, int width, int height); - void DrawBackground2(tColor back, tColor blend, int width, int height); + cImageLoader(); + ~cImageLoader(); + cImage GetImage(); + bool LoadLogo(const char *logo, int width, int height); + bool LoadIcon(const char *cIcon, int size); + bool LoadIcon(const char *cIcon, int width, int height); + bool LoadEPGImage(int eventID); + void DrawBackground(tColor back, tColor blend, int width, int height); + void DrawBackground2(tColor back, tColor blend, int width, int height); private: - Image buffer; - Color Argb2Color(tColor col); - void toLowerCase(std::string &str); - bool LoadImage(cString FileName, cString Path, cString Extension); + Image buffer; + Color Argb2Color(tColor col); + void toLowerCase(std::string &str); + bool LoadImage(cString FileName, cString Path, cString Extension); }; #endif //__NOPACITY_IMAGELOADER_H |