home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c10 / lab01 / baseline / finddlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  821 b   |  38 lines

  1. // FindDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CFindDlg dialog
  6.  
  7. class CFindDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CFindDlg(CWnd* pParent = NULL);   // standard constructor
  12.     enum { LIKE, EXACT, CONTAINS };   //Match type desired
  13.  
  14. // Dialog Data
  15.     //{{AFX_DATA(CFindDlg)
  16.     enum { IDD = IDD_DIALOG_FIND };
  17.     int        m_nMatchType;
  18.     CString    m_strFind;
  19.     //}}AFX_DATA
  20.  
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CFindDlg)
  25.     protected:
  26.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27.     //}}AFX_VIRTUAL
  28.  
  29. // Implementation
  30. protected:
  31.  
  32.     // Generated message map functions
  33.     //{{AFX_MSG(CFindDlg)
  34.     virtual BOOL OnInitDialog();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.