GetCapture.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #if !defined(AFX_GETCAPTURE_H__16689DE2_405C_4B2A_8A8D_BE5E6E24AD56__INCLUDED_)
  2. #define AFX_GETCAPTURE_H__16689DE2_405C_4B2A_8A8D_BE5E6E24AD56__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // GetCapture.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CGetCapture dialog
  10. class CGetCapture : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CGetCapture(CWnd* pParent = NULL); // standard constructor
  15. ~CGetCapture();
  16. BOOL IsExisted();
  17. // Dialog Data
  18. //{{AFX_DATA(CGetCapture)
  19. enum { IDD = IDD_DLG_GETCAPTURE };
  20. CComboBox m_JpegSize;
  21. CComboBox m_JpegQual;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CGetCapture)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CGetCapture)
  33. virtual BOOL OnInitDialog();
  34. afx_msg void OnCapture();
  35. afx_msg void OnBmpradio();
  36. afx_msg void OnJpegradio();
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. virtual void OnCancel();
  39. afx_msg void OnDestroy();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. private:
  43. BOOL m_RadioState;
  44. static int m_CaptureCount;
  45. CString m_sCurIP;
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_GETCAPTURE_H__16689DE2_405C_4B2A_8A8D_BE5E6E24AD56__INCLUDED_)