MainFrm.h
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:2k
源码类别:

网络编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__DB316DDB_7F39_11D4_974C_0080C8F60D90__INCLUDED_)
  5. #define AFX_MAINFRM_H__DB316DDB_7F39_11D4_974C_0080C8F60D90__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ChildView.h"
  10. #include "SystemTray.h"
  11. #include "MyMonitor.h"
  12. #include "MyUdpThread.h"
  13. #include "MyUdpSocket.h"
  14. #include "LogIt.h"
  15. class CMainFrame : public CFrameWnd
  16. {
  17. private:
  18.     int BeginMyUdpThread(CMyUdpInfo* pMyUdpInfo);
  19. public:
  20. CMainFrame();
  21. void MyInfoBoxEx(CString strInfo, BOOL* pbMsgShowing);
  22. void MyInfoBox(CString strInfo, BOOL* pbMsgShowing);
  23. BOOL ShutdownValid();
  24. protected: // create from serialization only
  25. DECLARE_DYNCREATE(CMainFrame)
  26. // Attributes
  27. public:
  28. CSystemTray m_TrayIcon;
  29. CLogIt m_LogFile;
  30. CString m_csModuleName;
  31. BOOL m_bNotify;
  32. CMyUdpInfo m_MyUdpArray[UDP_THREAD_NUMBER];
  33. CWinThread* m_pMyUdpThread;
  34. DWORD m_dwSetThreadsState;
  35. // Operations
  36. private:
  37. CString FormatString(DWORD dwState, CString strAddress);
  38. void OnEvtConnected(WPARAM wParam, LPARAM lParam);
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CMainFrame)
  42. public:
  43. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  44. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~CMainFrame();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:  // control bar embedded members
  54. CStatusBar  m_wndStatusBar;
  55. CChildView    m_wndView;
  56. // Generated message map functions
  57. protected:
  58. LRESULT TreatSocketThreadMessage(WPARAM wParam, LPARAM lParam);
  59. //{{AFX_MSG(CMainFrame)
  60. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  61. afx_msg void OnAppAbout();
  62. afx_msg void OnPopupSuspend();
  63. afx_msg void OnPopupResume();
  64. afx_msg void OnPopupConfig();
  65. afx_msg void OnTimer(UINT nIDEvent);
  66. afx_msg void OnClose();
  67. afx_msg void OnEndSession(BOOL bEnding);
  68. afx_msg void OnPopupShutdowncancel();
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. };
  72. /////////////////////////////////////////////////////////////////////////////
  73. //{{AFX_INSERT_LOCATION}}
  74. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  75. #endif // !defined(AFX_MAINFRM_H__DB316DDB_7F39_11D4_974C_0080C8F60D90__INCLUDED_)