Go to the documentation of this file.00001
00008 #ifndef WXIMAGEPANEL_H_
00009 #define WXIMAGEPANEL_H_
00010
00011 #include <wx/wx.h>
00012
00013 namespace GUI_PTU {
00014
00015 class wxImagePanel : public wxPanel {
00016 private:
00017 wxBitmap* image;
00018
00019 public:
00020 wxImagePanel(wxWindow* parent);
00021
00022 void paintEvent(wxPaintEvent & evt);
00023 void paintNow();
00024
00025 void render(wxDC& dc);
00026
00027 void setImage(wxBitmap* image);
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 DECLARE_EVENT_TABLE()
00041 };
00042
00043 }
00044
00045 #endif