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

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_CDlgSave_H__C1AC211B_8ABF_11D1_B145_000000000000__INCLUDED_)
  2. #define AFX_CDlgSave_H__C1AC211B_8ABF_11D1_B145_000000000000__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CDlgSave.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgSave dialog
  10. class CBrkPnts;
  11. #include "subdialog.h"
  12. class CDlgSave : public CSubDialog
  13. {
  14. // Construction
  15. public:
  16. void SetStats(BOOL fUpdate = FALSE);
  17. int m_cBrks;
  18. CDlgSave(CWnd* pParent = NULL);   // standard constructor
  19. void SetBrkPnts(CBrkPnts *pBrkPnts) {m_pBrkPnts = pBrkPnts;}
  20. ~CDlgSave();
  21. BOOL Create(CWnd *pParent);
  22. // Dialog Data
  23. //{{AFX_DATA(CDlgSave)
  24. enum { IDD = IDD_DLGSAVE };
  25. BOOL m_fSaveOnlyEnabled;
  26. CString m_strFile;
  27. BOOL m_fOutputWnd;
  28. CString m_strComment;
  29. BOOL m_fOld;
  30. CString m_strStats;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CDlgSave)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. CBrkPnts * m_pBrkPnts;
  41. // Generated message map functions
  42. //{{AFX_MSG(CDlgSave)
  43. afx_msg void OnButtonbrowse();
  44. afx_msg void OnButtonload();
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnButtonclear();
  47. afx_msg void OnSave();
  48. afx_msg void OnOK();
  49. afx_msg void OnBtnoutputwnd();
  50. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_CDlgSave_H__C1AC211B_8ABF_11D1_B145_000000000000__INCLUDED_)