home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / WeightSetSelectDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  1.4 KB  |  57 lines

  1. #if !defined(AFX_WEIGHTSETSELECTDLG_H__4656181C_77EB_4A8D_A0D2_AC565B28F2DA__INCLUDED_)
  2. #define AFX_WEIGHTSETSELECTDLG_H__4656181C_77EB_4A8D_A0D2_AC565B28F2DA__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // WeightSetSelectDlg.h : header file
  8. //
  9.  
  10.  
  11. #include "model.h"
  12.  
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // WeightSetSelectDlg dialog
  16.  
  17. class WeightSetSelectDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     WeightSetSelectDlg(Model *pModel, DWORD iStartingSet, CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(WeightSetSelectDlg)
  25.     enum { IDD = IDD_WEIGHTSETSELECT };
  26.     CListBox    m_WeightSets;
  27.     //}}AFX_DATA
  28.  
  29.  
  30.     // The set they selected or INVALID_MODEL_WEIGHTSET if none.
  31.     DWORD        m_SelectedSet;
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(WeightSetSelectDlg)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     Model        *m_pModel;
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(WeightSetSelectDlg)
  47.     virtual void OnOK();
  48.     virtual BOOL OnInitDialog();
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_WEIGHTSETSELECTDLG_H__4656181C_77EB_4A8D_A0D2_AC565B28F2DA__INCLUDED_)
  57.