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

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_LOGGINGDLG_H__FB7E06FB_DD1D_11D0_8E12_00C04FB68D60__INCLUDED_)
  2. #define AFX_LOGGINGDLG_H__FB7E06FB_DD1D_11D0_8E12_00C04FB68D60__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // LoggingDlg.H : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CLoggingDlg dialog
  10. class CLoggingDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CLoggingDlg(CWnd* pParent = NULL);   // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CLoggingDlg)
  17. enum { IDD = IDD_LOGGING };
  18. CButton m_butFileNameBrowse;
  19. CEdit   m_eboxFileName;
  20. CString m_strFileName;
  21. int     m_iLogType;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CLoggingDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CLoggingDlg)
  33. virtual BOOL OnInitDialog();
  34. afx_msg void OnLogToDebug();
  35. afx_msg void OnLogToFile();
  36. afx_msg void OnFileNameBrowse();
  37. afx_msg void OnLogToNull();
  38. afx_msg void OnLogToOutput();
  39. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  40. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_LOGGINGDLG_H__FB7E06FB_DD1D_11D0_8E12_00C04FB68D60__INCLUDED_)