00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef VETSIM_PREFERENCES_CFG_H
00021 #define VETSIM_PREFERENCES_CFG_H
00022
00023 #include <wx/artprov.h>
00024 #include <wx/xrc/xmlres.h>
00025 #include <wx/intl.h>
00026 #include <wx/sizer.h>
00027 #include <wx/button.h>
00028 #include <wx/gdicmn.h>
00029 #include <wx/string.h>
00030 #include <wx/dialog.h>
00031 #include <wx/font.h>
00032 #include <wx/colour.h>
00033 #include <wx/settings.h>
00034
00035 namespace cornelluniversity {
00036 namespace vetcpr {
00037
00042 class DlgPreferences : public wxDialog
00043 {
00044 private:
00045
00046 protected:
00047 enum
00048 {
00049 ID_DLG_PREFERENCES = 1000,
00050 };
00051
00052 wxStdDialogButtonSizer* m_button_sizer_dlg_preferences;
00053 wxButton* m_button_sizer_dlg_preferencesSave;
00054 wxButton* m_button_sizer_dlg_preferencesCancel;
00055
00056 public:
00057
00058 DlgPreferences( wxWindow* parent, wxWindowID id = ID_DLG_PREFERENCES, const wxString& title = _("VetSim CPR Preferences"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 346,223 ), long style = wxDEFAULT_DIALOG_STYLE );
00059 ~DlgPreferences();
00060
00061 };
00062
00063 }
00064 }
00065
00066 #endif // VETSIM_PREFERENCES_CFG_H