Go to the documentation of this file.00001
00021 #ifndef WXIMAGEPANEL_H_
00022 #define WXIMAGEPANEL_H_
00023
00024 #include <wx/wx.h>
00025
00026
00027 class wxImagePanel : public wxPanel {
00028
00029 private:
00030 wxBitmap* image;
00031
00032 public:
00033 wxImagePanel(wxWindow* parent, int height, int width);
00034
00035 void paintEvent(wxPaintEvent & evt);
00036 void paintNow();
00037
00038 void render(wxDC& dc);
00039
00040 void setImage(wxBitmap* image);
00041
00042
00043 DECLARE_EVENT_TABLE()
00044 };
00045
00046
00047
00048 #endif