home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / HISTORY.ZIP / Hacks / HistoryEditDemo / HistoryEditDemoDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-15  |  1.6 KB  |  57 lines

  1. // HistoryEditDemoDlg.h : header file
  2. //
  3.  
  4. #if !defined(AFX_HISTORYEDITDEMODLG_H__63E7CA67_BC22_11D1_8EE6_94D40BC10000__INCLUDED_)
  5. #define AFX_HISTORYEDITDEMODLG_H__63E7CA67_BC22_11D1_8EE6_94D40BC10000__INCLUDED_
  6.  
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10.  
  11. #include "HistoryEdit.h"
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CHistoryEditDemoDlg dialog
  15.  
  16. class CHistoryEditDemoDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CHistoryEditDemoDlg(CWnd* pParent = NULL);    // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CHistoryEditDemoDlg)
  24.     enum { IDD = IDD_HISTORYEDITDEMO_DIALOG };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CHistoryEditDemoDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     HICON m_hIcon;
  37.   CHistoryEdit    m_HistoryEdit;    // CHistoryEdit control
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CHistoryEditDemoDlg)
  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 OnAllowselect();
  46.     afx_msg void OnAdd();
  47.     afx_msg void OnClear();
  48.     afx_msg void OnClose();
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_HISTORYEDITDEMODLG_H__63E7CA67_BC22_11D1_8EE6_94D40BC10000__INCLUDED_)
  57.