DlgDlg.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // DlgDlg.h : header file
  2. //
  3. #if !defined(AFX_DLGDLG_H__0C0656DC_98B8_458F_B8B5_F3A9046F912A__INCLUDED_)
  4. #define AFX_DLGDLG_H__0C0656DC_98B8_458F_B8B5_F3A9046F912A__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgDlg dialog
  10. class CDlgDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CDlgDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CDlgDlg)
  17. enum { IDD = IDD_DLGSAMPLE_DIALOG };
  18. // NOTE: the ClassWizard will add data members here
  19. //}}AFX_DATA
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CDlgDlg)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. protected:
  27. HICON m_hIcon;
  28. CPropTree m_Tree;
  29. // Generated message map functions
  30. //{{AFX_MSG(CDlgDlg)
  31. virtual BOOL OnInitDialog();
  32. afx_msg void OnPaint();
  33. afx_msg HCURSOR OnQueryDragIcon();
  34. afx_msg void OnSize(UINT nType, int cx, int cy);
  35. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  36. //}}AFX_MSG
  37. afx_msg void OnItemChanged(NMHDR* pNotifyStruct, LRESULT* plResult);
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_DLGDLG_H__0C0656DC_98B8_458F_B8B5_F3A9046F912A__INCLUDED_)