DLGNOTE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGNOTE_H__336AB173_9104_11D1_82FF_00A0C91BC942__INCLUDED_)
  2. #define AFX_DLGNOTE_H__336AB173_9104_11D1_82FF_00A0C91BC942__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgNote.h : header file
  7. //
  8. class CMarkIt;
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CDlgNote dialog
  11. class CDlgNote : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CDlgNote(CWnd* pParent = NULL);   // standard constructor
  16. void SetMarkIt(CMarkIt *pMarkIt) { m_pMarkIt = pMarkIt; }
  17. // Dialog Data
  18. //{{AFX_DATA(CDlgNote)
  19. enum { IDD = IDD_DIALOGNOTE };
  20. CString m_strNote;
  21. CString m_strLogFile;
  22. BOOL m_fEcho;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CDlgNote)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. CMarkIt * m_pMarkIt;
  33. // Generated message map functions
  34. //{{AFX_MSG(CDlgNote)
  35. virtual BOOL OnInitDialog();
  36. afx_msg void OnButtonbrowse();
  37. virtual void OnOK();
  38. afx_msg void OnButtonDump();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_DLGNOTE_H__336AB173_9104_11D1_82FF_00A0C91BC942__INCLUDED_)