1
0
forked from 0ad/0ad
0ad/source/tools/atlas/AtlasUI/ColourTester/ColourTesterImageCtrl.h
Ykkrosh 039f26f0c3 Fixed editor brokenness.
# More useful environment (water, lighting) editing
(now saved into the map files).
Fixed no-PCH a bit.

This was SVN commit r4002.
2006-06-11 07:03:59 +00:00

31 lines
647 B
C++

#include "wx/image.h"
#include "wx/filename.h"
class ColourTesterImageCtrl : public wxWindow
{
public:
ColourTesterImageCtrl(wxWindow* parent);
void SetImageFile(const wxFileName& fn);
void SetColour(const wxColour& colour);
void SetZoom(int amount);
wxString GetImageFiletype();
void OnPaint(wxPaintEvent& event);
private:
void CalculateImage();
bool m_Valid; // stores whether a valid image is loaded and displayable
unsigned int m_OriginalImage; // DevIL image id
unsigned int m_DxtcFormat;
wxImage m_FinalImage;
wxBitmap m_FinalBitmap;
unsigned char m_Colour[3]; // RGB bytes
int m_ZoomAmount;
DECLARE_EVENT_TABLE();
};