MainFrm.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__8F79C405_2FF2_11D4_883D_0000210A0111__INCLUDED_)
  5. #define AFX_MAINFRM_H__8F79C405_2FF2_11D4_883D_0000210A0111__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include <winsock2.h>
  10. #define WSA_READ  WM_USER+400
  11. #define WSA_ACCEPT WM_USER+300
  12. #define WM_VIEW_OUTBAR_NOTIFY WM_USER+500
  13. #define WM_PREPARE_CLOSE WM_USER+600
  14. #define BUFSIZE 32768
  15. extern enum { PLAY, CAPTURE,SEND};
  16. extern enum { Play_Set,Play_Open,Play_Begin,Play_Pause,Play_Resume,Play_Stop};
  17. extern enum {Cap_Preview,Cap_Set,Cap_Begin,Cap_Pause,Cap_Resume,Cap_Stop};
  18. class COutlookBar:public CGfxOutBarCtrl
  19. {
  20. protected:
  21. // Construction
  22. DECLARE_DYNAMIC(COutlookBar)
  23. protected:
  24.  afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  25.  DECLARE_MESSAGE_MAP()
  26. };
  27. class CMainFrame : public CFrameWnd
  28. {
  29. protected: // create from serialization only
  30. DECLARE_DYNCREATE(CMainFrame)
  31.     CMainFrame();
  32. // Attributes
  33. public:
  34. // Operations
  35. public:
  36.     CStatusBar  m_wndStatusBar;
  37. CToolBar    m_wndToolBar;
  38.     CImageList m_ImageLarge;
  39. COutlookBar  m_wndOutlookBar;
  40. CGfxSplitterWnd m_wndSplitter;
  41. BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext); 
  42.  
  43. // Overrides
  44. // ClassWizard generated virtual function overrides
  45. //{{AFX_VIRTUAL(CMainFrame)
  46. public:
  47. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  48. virtual void ActivateFrame(int nCmdShow = -1);
  49. //}}AFX_VIRTUAL
  50. // Implementation
  51. public:
  52.   
  53. SOCKADDR_IN req_sin;
  54. virtual ~CMainFrame();
  55. #ifdef _DEBUG
  56. virtual void AssertValid() const;
  57. virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59. protected:  // control bar embedded members
  60. // Generated message map functions
  61. protected:
  62. //{{AFX_MSG(CMainFrame)
  63. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  64. afx_msg void OnViewStatusBar();
  65. afx_msg void OnUpdateViewStatusBar(CCmdUI* pCmdUI);
  66. afx_msg void OnClose();
  67. //}}AFX_MSG
  68. afx_msg LRESULT OnAccept(WPARAM wParam,LPARAM lParam); 
  69. afx_msg LRESULT OnRead(WPARAM wParam,LPARAM lParam); 
  70. afx_msg LRESULT OnOutbarNotify(WPARAM wParam, LPARAM lParam);
  71. DECLARE_MESSAGE_MAP()
  72. private:
  73. };
  74. /////////////////////////////////////////////////////////////////////////////
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  77. #endif // !defined(AFX_MAINFRM_H__8F79C405_2FF2_11D4_883D_0000210A0111__INCLUDED_)