CopyFilesDlg.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:2k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. #if !defined(AFX_COPYFILESDLG_H__4AE2A944_C846_11D2_B38F_B714758B3535__INCLUDED_)
  2. #define AFX_COPYFILESDLG_H__4AE2A944_C846_11D2_B38F_B714758B3535__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CopyFilesDlg.h : header file
  7. //
  8. #include "FileList.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CCopyFilesDlg dialog
  11. class CCopyFilesDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CCopyFilesDlg(CWnd* pParent = NULL);   // standard constructor
  16. DWORD m_dwSize;
  17. CString m_strSrc, m_strDest;
  18. CFileList *m_flSrc, *m_flDest;
  19. void CopyFF();
  20. void CopyFD();
  21. void CopyDF();
  22. void CopyDD();
  23. void UpdateProg(DWORD dwSize);
  24. void SearchDirectory(LPCTSTR strPath, BOOL bCreateDest = FALSE);
  25. CMap <CString, LPCTSTR, CString, LPCTSTR> m_map;
  26. // Dialog Data
  27. //{{AFX_DATA(CCopyFilesDlg)
  28. enum { IDD = IDD_FILECPYDLG };
  29. CStatic m_prompt;
  30. CStatic m_percent;
  31. CProgressCtrl m_prog;
  32. CAnimateCtrl m_avi;
  33. //}}AFX_DATA
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CCopyFilesDlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CCopyFilesDlg)
  44. virtual BOOL OnInitDialog();
  45. virtual void OnOK();
  46. virtual void OnCancel();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_COPYFILESDLG_H__4AE2A944_C846_11D2_B38F_B714758B3535__INCLUDED_)