source/code/CppSdl/CppSdlImageHolder.hpp
browsing at commit = 4f1d27f1fff7440c1eb9f7bfddb16162668d1b15
/*
* File: CppSdlImageHolder.hpp
* Author: poul
*
* Created on 29. september 2010, 19:46
*/
#ifndef _CPPSDLIMAGEHOLDER_HPP
#define _CPPSDLIMAGEHOLDER_HPP
#include "SDL.h"
#include <string>
#include "CppSdlException.hpp"
namespace CppSdl {
class CppSdlImageHolder {
public:
CppSdlImageHolder(std::string filename);
CppSdlImageHolder(const CppSdlImageHolder& orig);
CppSdlImageHolder(char *rawdata, int datasize);
virtual ~CppSdlImageHolder();
SDL_Surface *GetRawDataInsecure();
void Cut(Uint32 x,Uint32 y,Sint32 w,Sint32 h);
Uint32 GetWidth();
Uint32 GetHeight();
void PaintTo(SDL_Surface *target, int x, int y);
void OptimizeForBlit(bool allowAlpha = true);
private:
Uint32 counter;
SDL_Rect area;
SDL_Surface *data;
};
}
#endif /* _CPPSDLIMAGEHOLDER_HPP */