TREECPG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // TreeCtrlPage.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CTreeCtrlPage dialog
  14. #ifndef INC_TRCPAGE_H
  15. #define INC_TRCPAGE_H
  16. #include "mtreectl.h"
  17. #include "notifwdw.h"
  18. class CTreeCtrlPage : public CPropertyPage
  19. {
  20. DECLARE_DYNCREATE(CTreeCtrlPage)
  21. // Construction
  22. public:
  23. CTreeCtrlPage();
  24. ~CTreeCtrlPage();
  25. // Dialog Data
  26. //{{AFX_DATA(CTreeCtrlPage)
  27. enum { IDD = IDD_TREECTRL };
  28. CNotifyShowCase m_notifshowcase;
  29. CMyTreeCtrl m_mytreectrl;
  30. BOOL    m_bDisableDragDrop;
  31. BOOL    m_bHasButtons;
  32. BOOL    m_bHasLines;
  33. BOOL    m_bLinesAtRoot;
  34. BOOL    m_bEditLabels;
  35. BOOL    m_bShowSelAlways;
  36. CString m_cstrStatus;
  37. BOOL    m_bSingleExpand;
  38. //}}AFX_DATA
  39. HTREEITEM   m_rghItem[12];
  40. HTREEITEM   m_hitemDrag;
  41. HTREEITEM   m_hitemDrop;
  42. // Overrides
  43. // ClassWizard generate virtual function overrides
  44. //{{AFX_VIRTUAL(CTreeCtrlPage)
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. virtual BOOL OnInitDialog();
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. public:
  51. // Generated message map functions
  52. //{{AFX_MSG(CTreeCtrlPage)
  53. afx_msg void OnEditLabels();
  54. afx_msg void OnHasButtons();
  55. afx_msg void OnHasLines();
  56. afx_msg void OnLinesAtRoot();
  57. afx_msg void OnDisabledDragDrop();
  58. afx_msg void OnShowSelAlways();
  59. afx_msg void ShowNotification(LPNMHDR pnmhdr, LRESULT *pLResult);
  60. afx_msg void OnSingleExpand();
  61. //}}AFX_MSG
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. #endif