SendDlg.h
上传用户:fengliqin8
上传日期:2007-04-13
资源大小:28k
文件大小:2k
源码类别:

进程与线程

开发平台:

Visual C++

  1. // SendDlg.h : header file
  2. //
  3. #if !defined(AFX_SENDDLG_H__B1FA7D63_8F13_43C1_896B_67F13D5733FC__INCLUDED_)
  4. #define AFX_SENDDLG_H__B1FA7D63_8F13_43C1_896B_67F13D5733FC__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "TcpClient.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSendDlg dialog
  11. class CSendDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. void DispInfo(CString strInfo);
  16. CSendDlg(CWnd* pParent = NULL); // standard constructor
  17. ~CSendDlg(void);
  18. // Dialog Data
  19. //{{AFX_DATA(CSendDlg)
  20. enum { IDD = IDD_SEND_DIALOG };
  21. CStatic m_ctlCnnStatus;
  22. CStatic m_ctlInfo;
  23. DWORD m_dwPackageSize;
  24. CString m_strServerIp;
  25. int m_nPort;
  26. CString m_strFileName;
  27. CString m_strMsg;
  28. //}}AFX_DATA
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CSendDlg)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. HICON m_hIcon;
  37. // Generated message map functions
  38. //{{AFX_MSG(CSendDlg)
  39. virtual BOOL OnInitDialog();
  40. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  41. afx_msg void OnPaint();
  42. afx_msg HCURSOR OnQueryDragIcon();
  43. afx_msg void OnConnect();
  44. afx_msg void OnDisconnect();
  45. afx_msg void OnSendFile();
  46. afx_msg void OnSendMsg();
  47. afx_msg void OnCancelSend();
  48. afx_msg void OnDestroy();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. private:
  52. CTcpClient *m_pTcpClient;
  53. static void OnSocketSendErr(void *pNotifyObj, SOCKET hSocket);
  54. static void OnSocketRecvErr(void *pNotifyObj, SOCKET hSocket);
  55. static void OnSocketClose(void *pNotifyObj, SOCKET hSocket);
  56. static void OnOneNetMsg(void *pNotifyObj, char *Msg, int nMsgLen);
  57. static void OnSendFileRefuseRecv(void *pNoitfyObj, char *szPathName);
  58. static void OnSendFileCancelRecv(void *pNotifyObj, char *szPathName);
  59. static void OnSendFileRecvFail(void *pNotifyObj, char *szPathName);
  60. static void OnSendFileSucc(void *pNotifyObj, char *szPathName);
  61. static void OnSendFileFail(void *pNotifyObj, char *szPathName);
  62. static void OnSendFileProgress(void *pNotifyObj, int nSentBytes, int nTotalBytes);
  63. };
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_SENDDLG_H__B1FA7D63_8F13_43C1_896B_67F13D5733FC__INCLUDED_)