/users/dtb26/GITROOT/vetsim/vs-cpr/src/dialogs.h

Go to the documentation of this file.
00001 
00005 /*
00006 * AUTHOR    : David Brooks (dtb26@cornell.edu)
00007 * PLATFORM  : non-specific
00008 * DATE      : 10/26/2012 11:18:42 AM
00009 * COPYRIGHT : TBD
00010 *
00011 * File      : $Source:$
00012 * Revision  : $Revision:$
00013 * Author    : $Author:$
00014 * Date      : $Date:$
00015 * Tag name  : $Name:$
00016 * Locker    : $Locker:$
00017 * State     : $State: Exp $
00018 */
00019 /* 
00020    small supportive dialogs.  Note this file is not intended to be all-inclusive; you may well find additional
00021    dialog implementations under other headers.  This file holds the small, mostly static, unlikely to need
00022    a lot of functionality dialogs such as the "about" interface
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 }; //eoc DlgAbout{...}
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 }; //eoc DlgHelp{...}
00091 
00092 
00093 } // namespace vetcpr
00094 } // namespace cornelluniversity
00095 
00096 #endif // VETSIM_DIALOGS_H

Generated on Wed Nov 14 12:01:01 2012 for VetSim Applications by  doxygen 1.4.7