PeugeotView.h
上传用户:asikq0571
上传日期:2014-07-12
资源大小:528k
文件大小:3k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. // PeugeotView.h : interface of the CPeugeotView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PEUGEOTVIEW_H__B26D1D65_4811_4552_B23B_90B7276A9766__INCLUDED_)
  5. #define AFX_PEUGEOTVIEW_H__B26D1D65_4811_4552_B23B_90B7276A9766__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "MainFrm.h"
  10. class CPeugeotView : public CEditView
  11. {
  12. protected: // create from serialization only
  13. CPeugeotView();
  14. DECLARE_DYNCREATE(CPeugeotView)
  15. // Attributes
  16. public:
  17. CPeugeotDoc* GetDocument();
  18. // Operations
  19. public:
  20.     CPrtObj* m_pPrtObj;          //规约对象指针,指向所选的规约
  21. CAsyncSocket* m_pSocketObj;  //网络通讯对象指针,指向所选网络端口(不区分TCP协议)
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CPeugeotView)
  25. public:
  26. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. protected:
  29. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  30. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. void ClearMsg();
  36. void NetReceive();
  37. void DisplayMsg(CString dspstr);
  38. BOOL Send(BYTE* pBuff, DWORD dwBytesToSend, DWORD& dwBytesSended);
  39. virtual ~CPeugeotView();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CPeugeotView)
  48. afx_msg void OnTimer(UINT nIDEvent);
  49. //}}AFX_MSG
  50. //串口: '接收到数据'消息处理函数
  51. afx_msg LRESULT OnCommNotify(WPARAM wParam,LPARAM lParam); 
  52.     //服务端:客户端连接到服务端
  53. afx_msg LRESULT OnTCPSrvConnected(WPARAM wParam,LPARAM lParam); 
  54.     //服务端:客户端与服务端断开连接
  55. afx_msg LRESULT OnTCPSrvClosed(WPARAM wParam,LPARAM lParam); 
  56. //服务端:'接收到数据' 消息处理函数
  57. afx_msg LRESULT OnTCPSrvRec(WPARAM wParam,LPARAM lParam); 
  58. //客户端:客户端连接到服务端
  59. afx_msg LRESULT OnTCPCltConnected(WPARAM wParam,LPARAM lParam);
  60.     //客户端:服务端端口断开
  61. afx_msg LRESULT OnTCPCltClosed(WPARAM wParam,LPARAM lParam);
  62. //客户端:'接收到数据' 消息处理函数
  63. afx_msg LRESULT OnTCPCltRec(WPARAM wParam,LPARAM lParam); 
  64.     //UDP:'接收到数据' 消息处理函数
  65. afx_msg LRESULT OnUDPRec(WPARAM wParam,LPARAM lParam); 
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. #ifndef _DEBUG  // debug version in PeugeotView.cpp
  69. inline CPeugeotDoc* CPeugeotView::GetDocument()
  70.    { return (CPeugeotDoc*)m_pDocument; }
  71. #endif
  72. /////////////////////////////////////////////////////////////////////////////
  73. //{{AFX_INSERT_LOCATION}}
  74. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  75. #endif // !defined(AFX_PEUGEOTVIEW_H__B26D1D65_4811_4552_B23B_90B7276A9766__INCLUDED_)