00001 #ifndef PlaneDirectionViewerPanel_H_ 00002 #define PlaneDirectionViewerPanel_H_ 00003 00004 #include <wx/wx.h> 00005 #include "PlaneDirectionManagerData.h" 00006 00007 class PlaneDirectionViewerPanel : public wxPanel { 00008 00009 public: 00010 PlaneDirectionViewerPanel(wxWindow* parent, PlaneDirectionManagerData* data, int index); 00011 ~PlaneDirectionViewerPanel(); 00012 00013 void onCheckBoxChange(wxCommandEvent& event); 00014 00015 void onColorChange(wxCommandEvent& event); 00016 00017 private: 00018 int _index; 00019 wxCheckBox* checkbox; 00020 00021 wxBitmapButton* _colorchoose; 00022 }; 00023 00024 #endif /*PlaneDirectionViewerPanel_H_*/