home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / protview / demowinx / data.1 / TREEDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  1.1 KB  |  46 lines

  1. // TreeDialog.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CTreeDialog dialog
  6. //{{AFX_INCLUDES()
  7. #include "pvtreeview.h"
  8. //}}AFX_INCLUDES
  9.  
  10. class CTreeDialog : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     CTreeDialog(CWnd* pParent = NULL);   // standard constructor
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CTreeDialog)
  18.     enum { IDD = IDD_TREEVIEW };
  19.     CPVTreeView    m_treeview;
  20.     //}}AFX_DATA
  21.  
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CTreeDialog)
  26.     protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. protected:
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CTreeDialog)
  35.     virtual BOOL OnInitDialog();
  36.     afx_msg void OnUpMultibtnctrl1();
  37.     afx_msg void OnDownMultibtnctrl1();
  38.     afx_msg void OnLeftMultibtnctrl1();
  39.     afx_msg void OnRightMultibtnctrl1();
  40.     afx_msg void OnClickButton1();
  41.     afx_msg void OnKeyDownTreeview1(short FAR* KeyCode, short Shift);
  42.     DECLARE_EVENTSINK_MAP()
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.