PropDlg.h
上传用户:wujian85
上传日期:2010-04-08
资源大小:227k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_PROPDLG_H__91A4B002_0AB6_11D2_8412_0000B43382FE__INCLUDED_)
  2. #define AFX_PROPDLG_H__91A4B002_0AB6_11D2_8412_0000B43382FE__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // PropDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPropDlg dialog
  10. #include "PropPage1.h"
  11. #include "PropPage2.h"
  12. #include "PropPage3.h"
  13. #include "gfx.h"
  14. class Doc;
  15. class View;
  16. class CPropDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. void SetObject(Doc * pd, View * pv);
  21. CPropDlg(CWnd* pParent = NULL);   // standard constructor
  22. // Dialog Data
  23. //{{AFX_DATA(CPropDlg)
  24. enum { IDD = IDD_PROP_DLG };
  25. CTabCtrl wndTab;
  26. //}}AFX_DATA
  27. CPropPage1 dlgSheet1;
  28. CPropPage2 dlgSheet2;
  29. CPropPage3 dlgSheet3;
  30. enum { iNumDialog = 3};
  31. GfxTabSupport(iNumDialog);
  32. View * pView;
  33. Doc  * pDoc;
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CPropDlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CPropDlg)
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult);
  46. afx_msg void OnBtApply();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_PROPDLG_H__91A4B002_0AB6_11D2_8412_0000B43382FE__INCLUDED_)