00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef VETSIM_DIALOGS_H
00026 #define VETSIM_DIALOGS_H
00027
00028 #include <wx/artprov.h>
00029 #include <wx/xrc/xmlres.h>
00030 #include <wx/intl.h>
00031 #include <wx/sizer.h>
00032 #include <wx/button.h>
00033 #include <wx/gdicmn.h>
00034 #include <wx/string.h>
00035 #include <wx/dialog.h>
00036 #include <wx/font.h>
00037 #include <wx/colour.h>
00038 #include <wx/settings.h>
00039
00040 namespace cornelluniversity {
00041 namespace vetcpr {
00042
00047 class DlgAbout : public wxDialog
00048 {
00049 private:
00050
00051 protected:
00052 enum {
00053 ID_DLG_ABOUT = 1000,
00054 };
00055
00056 wxStdDialogButtonSizer* m_button_sizer_dlg_about;
00057 wxButton* m_button_sizer_dlg_aboutOk;
00058 wxButton* m_button_sizer_dlg_aboutCancel;
00059
00060 public:
00061
00062 DlgAbout( wxWindow* parent, wxWindowID id = ID_DLG_ABOUT, const wxString& title = _("About VetSim CPR"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 346,223 ), long style = wxDEFAULT_DIALOG_STYLE );
00063 ~DlgAbout();
00064
00065 };
00066
00071 class DlgHelp : public wxDialog
00072 {
00073 private:
00074
00075 protected:
00076 enum
00077 {
00078 ID_DLG_HELP = 1000,
00079 };
00080
00081 wxStdDialogButtonSizer* m_button_sizer_dlg_help;
00082 wxButton* m_button_sizer_dlg_helpOk;
00083 wxButton* m_button_sizer_dlg_helpCancel;
00084
00085 public:
00086
00087 DlgHelp( wxWindow* parent, wxWindowID id = ID_DLG_HELP, const wxString& title = _("VetSim CPR Help"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 346,223 ), long style = wxDEFAULT_DIALOG_STYLE );
00088 ~DlgHelp();
00089
00090 };
00091
00092
00093 }
00094 }
00095
00096 #endif // VETSIM_DIALOGS_H