This commit is contained in:
Oleg Korshul
2018-04-16 12:32:59 +03:00
parent c749cbf081
commit c4abf6d149
28 changed files with 306 additions and 281 deletions

View File

@ -35,6 +35,7 @@
#include <string>
#include "../common/Types.h"
#include "./../graphics/config.h"
#include "./../common/IGrObject.h"
class GRAPHICS_DECL CBgraFrame
{
@ -77,6 +78,9 @@ public:
bool Resize(const long& nNewWidth, const long& nNewHeight, bool bDestroyData = true);
bool ReColorPatternImage(const std::wstring& strFileName, unsigned int rgbColorBack, unsigned int rgbColorFore);
public:
void FromImage(IGrObject* pGraphics);
};
#endif