home *** CD-ROM | disk | FTP | other *** search
/ The Houseplan Collection / HRCD2005.ISO / data1.cab / Zusatz / 3DS / DATA2.Z / EventDemoDlg.h < prev    next >
C/C++ Source or Header  |  1998-05-18  |  2KB  |  59 lines

  1. // EventDemoDlg.h : header file
  2. //
  3.  
  4. #if !defined(AFX_EVENTDEMODLG_H__E65C9366_EE50_11D1_9D9D_00A0C9251384__INCLUDED_)
  5. #define AFX_EVENTDEMODLG_H__E65C9366_EE50_11D1_9D9D_00A0C9251384__INCLUDED_
  6.  
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10.  
  11. class IArCon;
  12. class ArConEventSink;
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CEventDemoDlg dialog
  16.  
  17. class CEventDemoDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CEventDemoDlg(CWnd* pParent = NULL);    // standard constructor
  22.   ~CEventDemoDlg();
  23.   void Display(const CString & msg);
  24.   void CleanUp();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CEventDemoDlg)
  28.     enum { IDD = IDD_EVENTDEMO_DIALOG };
  29.     CListBox    m_eventList;
  30.     //}}AFX_DATA
  31.  
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CEventDemoDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.     HICON m_hIcon;
  41.   IArCon * m_pArConEXE;
  42.   ArConEventSink * m_pEventSink;
  43.   DWORD m_eventCookie;
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CEventDemoDlg)
  47.     virtual BOOL OnInitDialog();
  48.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  49.     afx_msg void OnPaint();
  50.     afx_msg HCURSOR OnQueryDragIcon();
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.  
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  57.  
  58. #endif // !defined(AFX_EVENTDEMODLG_H__E65C9366_EE50_11D1_9D9D_00A0C9251384__INCLUDED_)
  59.