SendFileDlg.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #if !defined(AFX_SENDFILEDLG_H__49BD1314_8BC6_4486_96F0_B30C36DB7A45__INCLUDED_)
  12. #define AFX_SENDFILEDLG_H__49BD1314_8BC6_4486_96F0_B30C36DB7A45__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // SendFileDlg.h : header file
  17. //
  18. #include "filesession.h"
  19. class IcqLinkBase;
  20. class ContactInfo;
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CSendFileDlg dialog
  23. class CSendFileDlg : public CDialog, public FileSessionListener
  24. {
  25. // Construction
  26. public:
  27. CSendFileDlg(FileSession *, CWnd* pParent = NULL);   // standard constructor
  28. ~CSendFileDlg();
  29. virtual const char *getPathName(const char *name, uint32 size);
  30. virtual void onFileReceive();
  31. virtual void onFileProgress(uint32 bytes);
  32. virtual void onFileFinished();
  33. // Dialog Data
  34. //{{AFX_DATA(CSendFileDlg)
  35. enum { IDD = IDD_SEND_FILE };
  36. CStatic m_faceStatic;
  37. CProgressCtrl m_ctlProgress;
  38. CString m_uin;
  39. CString m_nick;
  40. //}}AFX_DATA
  41. private:
  42. IcqLinkBase *icqLink;
  43. ContactInfo *contact;
  44. FileSession *session;
  45. CString pathName;
  46. CString fileName;
  47. uint32 fileSize;
  48. uint32 bytesSent;
  49. uint32 lastBytes;
  50. DWORD lastTime;
  51. int frame;
  52. // Overrides
  53. // ClassWizard generated virtual function overrides
  54. //{{AFX_VIRTUAL(CSendFileDlg)
  55. protected:
  56. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  57. virtual void PostNcDestroy();
  58. //}}AFX_VIRTUAL
  59. // Implementation
  60. protected:
  61. // Generated message map functions
  62. //{{AFX_MSG(CSendFileDlg)
  63. virtual BOOL OnInitDialog();
  64. afx_msg void OnTimer(UINT nIDEvent);
  65. virtual void OnCancel();
  66. //}}AFX_MSG
  67. DECLARE_MESSAGE_MAP()
  68. };
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_SENDFILEDLG_H__49BD1314_8BC6_4486_96F0_B30C36DB7A45__INCLUDED_)