GVCaptureDlg.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:4k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. //
  20. #if !defined(AFX_GVCAPTUREDLG_H__B47276CF_24BF_4F76_BA5B_5844030959E5__INCLUDED_)
  21. #define AFX_GVCAPTUREDLG_H__B47276CF_24BF_4F76_BA5B_5844030959E5__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "capture.h"
  26. #include "afxwin.h"
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CGVCaptureDlg dialog
  29. class CGVCaptureDlg : public CDialog
  30. {
  31. // Construction
  32. public:
  33. CGVCaptureDlg(CWnd* pParent = NULL); // standard constructor
  34. // Dialog Data
  35. //{{AFX_DATA(CGVCaptureDlg)
  36. enum { IDD = IDD_GVCAPTURE_DIALOG };
  37. CButton mchkNeedOverlay;
  38. CButton mbtnSaveFile;
  39. CButton m_chkOnlyAudio;
  40. CButton m_chkPreview;
  41. CComboBox m_comboxVideoEncoder;
  42. CComboBox m_comboxVideoCap;
  43. CComboBox m_comboxAudioEncoder;
  44. CString mstrSavePath;
  45. //}}AFX_DATA
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CGVCaptureDlg)
  48. protected:
  49. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  50. //}}AFX_VIRTUAL
  51. public:
  52. void OnNotifyStop();
  53. void OnNotifyPlay();
  54. // Implementation
  55. private:
  56. bool GetTotalPath(char*aszFileName, char* aszTotalPath);
  57. bool LoadFilterConfig();
  58. bool SaveFilterConfig();
  59. HICON m_hIcon;
  60. // capture devices name
  61.     CStringArray m_strArrayVideoCapDevice;
  62.     // capture devices name
  63.     CStringArray m_strArrayAudioCapDevice;
  64. // encoder name
  65. CStringArray m_strArrayVideoEncoders;
  66. // audio encoder name
  67. CStringArray m_strArrayAudioEncoders;
  68. CCaptureGraph m_grfCapture;
  69. CString m_strCurVideoCapDevice;
  70.     CString m_strCurAudioCapDevice;
  71. CString m_strCurVideoEncoder;
  72. CString m_strCurAudioEncoder;
  73. AM_MEDIA_TYPE* mpTemAudioAMT;//临时媒体类型
  74. DWORD m_dwTimer;
  75. DWORD m_dwEscape;
  76. BOOL m_bPause;
  77. char mszAVIFilePath[MAX_PATH + 1];
  78. protected:
  79. // Generated message map functions
  80. //{{AFX_MSG(CGVCaptureDlg)
  81. virtual BOOL OnInitDialog();
  82. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  83. afx_msg void OnPaint();
  84. afx_msg HCURSOR OnQueryDragIcon();
  85. afx_msg void OnBtnVideocapConfig();
  86. afx_msg void OnBtnVideoCompressorConfig();
  87. afx_msg void OnBtnAudioCompressorConfig();
  88. afx_msg void OnBtnBeginCap();
  89. afx_msg void OnBtnPauseCap();
  90. afx_msg void OnBtnStopCap();
  91. afx_msg void OnChkPreview();
  92. afx_msg void OnTimer(UINT nIDEvent);
  93. afx_msg void OnClose();
  94. afx_msg void OnSelchangeCmbAudioCompressor();
  95. afx_msg void OnSelchangeCmbVideoCapture();
  96. afx_msg void OnSelchangeCmbVideoCompressor();
  97. afx_msg void OnCheckOnlyAudio();
  98. afx_msg void OnBtnSyscof();
  99. afx_msg void OnBtnVideocapIniConfig();
  100. afx_msg void OnChkSave();
  101. afx_msg void OnBtnSetoverlay();
  102. afx_msg void OnChkOverlay();
  103. afx_msg BOOL OnEraseBkgnd( CDC * pDC);
  104. //}}AFX_MSG
  105. DECLARE_MESSAGE_MAP()
  106. public:
  107. afx_msg void OnBnClickedCheck1();
  108. afx_msg void OnBnClickedChkCrossbar();
  109. // 是否选择CrossBar
  110. CButton m_bChkCrossBar;
  111.     CComboBox m_comboxAudioCap;
  112.     afx_msg void OnCbnSelchangeCmbAudioCapture();
  113.     afx_msg void OnBnClickedBtnAudioCapConfig();
  114. };
  115. //{{AFX_INSERT_LOCATION}}
  116. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  117. #endif // !defined(AFX_GVCAPTUREDLG_H__B47276CF_24BF_4F76_BA5B_5844030959E5__INCLUDED_)