00001 #ifndef _VU_HELP_PANEL_H_
00002 #define _VU_HELP_PANEL_H_
00003
00004 #include <wx/wx.h>
00005 #include <wx/dialog.h>
00006
00007 #include "vuSimpleTypes.h"
00008
00010
00011 class vuHelpPanel : public wxDialog
00012 {
00013 public:
00014 vuHelpPanel(wxWindow *parent);
00015 ~vuHelpPanel();
00016
00017 void setTitle(const wxString& _title);
00018 void setHelpText(const wxString& _helpText);
00019
00020 protected:
00021 DECLARE_EVENT_TABLE()
00022
00023 private:
00024 wxTextCtrl *m_textCtrl;
00025 void _initFont();
00026
00027
00028 };
00029
00030 #endif