Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #pragma once
00028 #ifndef BUT_EXAMPLEPANE_H
00029 #define BUT_EXAMPLEPANE_H
00030
00031 #include <wx/wx.h>
00032 #include <wx/menu.h>
00033 #include <wx/panel.h>
00034 #include <wx/dialog.h>
00035
00036
00037 namespace rviz
00038 {
00039 class WindowManagerInterface;
00040 }
00041
00042 namespace srs_ui_but
00043 {
00044
00045
00049 class CExamplePanel : public wxPanel
00050 {
00051 public:
00053 CExamplePanel(wxWindow *parent, const wxString& title, rviz::WindowManagerInterface * wmi );
00054
00056 virtual void OnQuit(wxCommandEvent& event);
00057 protected:
00059 rviz::WindowManagerInterface * m_wmi;
00060
00061 };
00062
00066 class CExampleDialog : public wxDialog
00067 {
00068 public:
00070 CExampleDialog( wxWindow * parent, const wxString & title );
00071
00073 void OnQuit(wxCommandEvent& event);
00074
00075 };
00076
00080 class CExamplePanelControls : public wxPanel
00081 {
00082 public:
00084 CExamplePanelControls(wxWindow *parent, const wxString& title, rviz::WindowManagerInterface * wmi );
00085
00087 void OnChckToggle(wxCommandEvent& event);
00088
00090 virtual void OnReset(wxCommandEvent& event);
00091
00092 protected:
00094 rviz::WindowManagerInterface * m_wmi;
00095
00097 wxCheckBox * m_chkb;
00098
00100 wxButton * m_button;
00101
00102 private:
00103 DECLARE_EVENT_TABLE()
00104
00105 };
00106
00107 }
00108
00109
00110
00111 #endif // BUT_EXAMPLEPANE_H