home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / componen / interact / demo / data.2 / samples / vc / EXPAND / EXPAND~1.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  1.2 KB  |  50 lines

  1. // expandDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CExpandDlg dialog
  6. //{{AFX_INCLUDES()
  7. #include "ido.h"
  8. //}}AFX_INCLUDES
  9.  
  10. #define UM_TOP  WM_USER + 101
  11. #define UM_OPEN WM_USER + 102
  12.  
  13.  
  14. class CExpandDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18.     CExpandDlg(CWnd* pParent = NULL);    // standard constructor
  19.  
  20.    afx_msg LRESULT CreateTopDiagram(WPARAM wParam, LPARAM lParam);
  21.    afx_msg LRESULT CreateOpenDiagram(WPARAM wParam, LPARAM lParam);
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CExpandDlg)
  25.     enum { IDD = IDD_EXPAND_DIALOG };
  26.     CIDO    m_IDO;
  27.     //}}AFX_DATA
  28.  
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CExpandDlg)
  31.     protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. protected:
  37.     HICON m_hIcon;
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CExpandDlg)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  43.     afx_msg void OnPaint();
  44.     afx_msg HCURSOR OnQueryDragIcon();
  45.     afx_msg void OnClickEntityInteractctrl1(long MouseStatus);
  46.     DECLARE_EVENTSINK_MAP()
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.