home *** CD-ROM | disk | FTP | other *** search
- // Dialogs.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CAnimalDlg dialog
- class CAnimalDlg : public CDialog
- {
- // Construction
- public:
- CAnimalDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CAnimalDlg)
- enum { IDD = IDD_ANIMAL_ENTRY };
- CListBox m_classNames;
- CString m_animal;
- CString m_type;
- UINT m_weight;
- CString m_class;
- //}}AFX_DATA
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CAnimalDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CAnimalDlg)
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- // CModifyDlg dialog
- class CModifyDlg : public CDialog
- {
- // Construction
- public:
- CModifyDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CModifyDlg)
- enum { IDD = IDD_ANIMAL_MODIFY };
- CString m_animal;
- int m_weight;
- //}}AFX_DATA
-
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CModifyDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CModifyDlg)
- // NOTE: the ClassWizard will add member functions here
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- // CModifyTypeDlg dialog
- class CModifyTypeDlg : public CDialog
- {
- // Construction
- public:
- CModifyTypeDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CModifyTypeDlg)
- enum { IDD = IDD_TYPE_MODIFY };
- CString m_type;
- //}}AFX_DATA
-
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CModifyTypeDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CModifyTypeDlg)
- afx_msg void OnChangeType();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-