CaptureDlg.h
上传用户:connie527
上传日期:2022-04-15
资源大小:4326k
文件大小:5k
源码类别:

行业应用

开发平台:

Visual C++

  1. // CaptureDlg.h : header file
  2. //
  3. //{{AFX_INCLUDES()
  4. #include "mscomm.h"
  5. //}}AFX_INCLUDES
  6. #if !defined(AFX_CAPTUREDLG_H__03C7FD01_013C_4EAC_9D74_5CF3316EF48F__INCLUDED_)
  7. #define AFX_CAPTUREDLG_H__03C7FD01_013C_4EAC_9D74_5CF3316EF48F__INCLUDED_
  8. #include "PreView.h"
  9. #include "Panel.h"
  10. #include "StageButton.h"
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCaptureDlg dialog
  16. #define FLEFTBAR      1   //左边框
  17. #define FLEFTTITLE    2   //左标题
  18. #define FRIGHTTITLE   4   //右标题
  19. #define FMIDTITLE     8   //中间标题
  20. #define FRIGHTBAR     16  //右边框
  21. #define FBOTTOMBAR    32  //底边框
  22. #define FMINBUTTON    64  //最小化按钮
  23. #define FMAXBUTTON    128 //最大化按钮
  24. #define FCLOSEBUTTON  256 //关闭按钮
  25. #define FALL          511 //所有标识
  26. #define MAXNUM        100
  27. //按钮状态
  28. enum CButtonState{bsNone,bsMin,bsMax,bsRes,bsClose};
  29. class CCaptureDlg : public CDialog
  30. {
  31. public:
  32. CBitmap      m_BKGround;
  33. CString      m_Caption;
  34. BOOL         m_IsMax;
  35. CButtonState m_ButtonState;     //按钮状态
  36. int          m_BorderWidth;     //边框宽度
  37. int          m_BorderHeight;    //边框高度
  38. int          m_FrameWidth ;     //窗体3D宽度
  39. int          m_FrameHeight;     //窗体3D高度
  40. int          m_CaptionHeight;   //标题栏的高度
  41. int          m_TitleDrawHeight; //标题栏实际的绘制高度
  42. int          m_ButtonWidth;     //按钮位图宽度
  43. int          m_ButtonHeight;    //按钮位图高度
  44. COLORREF     m_CapitonColor;    //标题字体颜色
  45. CFont        m_CaptionFont;     //标题字体
  46. BOOL         m_IsDrawForm ;
  47. CRect m_LTitleRc, m_MTitleRc,m_RTitleRc; //左,中,右标题显示区域
  48. CRect m_MinRect,m_MaxRect,m_CloseRect;   //标题栏按钮的显示区域
  49. public:
  50. int     m_DevNum; //当前芯片数,也就是有多少路
  51. BOOL    m_BStop;  //是否停止预览 
  52. CPanel  m_Frame;  //预览窗口的父窗口
  53. public:
  54. unsigned char (*m_pData) [MAXNUM]; //存储云台控制吗
  55. int      m_Len;                    //云台协议使用的字节数
  56. int      m_ActoinCount;            //云台控制动作数
  57. int      m_Port;                   //Com端口
  58. CString  m_Setting;                //环境
  59. HANDLE   m_hThread;                //线程句柄
  60. UINT     m_Num;
  61. CTime    m_StopTime;
  62. BOOL     m_Time;         
  63.     CString  m_LogPath;
  64. CString  m_UserName;
  65. CTime    m_LogTime;
  66. public:
  67. BOOL    m_Kinescope; //是否录像
  68. BOOL    m_Cancel;
  69. CString m_PathText;
  70. // Construction
  71. public:
  72. void OnInBrush();
  73. void OnReBrush();
  74. void OnInAperture();
  75. void OnReAperture();
  76. void OnReLen();
  77. void OnInLen();
  78. void OnReFoci();
  79. void OnInFoci();
  80. void OnRight();
  81. void OnLeft();
  82. void OnDown();
  83. void OnReset();
  84. void OnUp();
  85. void MoveCapture(UINT num);
  86. void OnCancel();
  87. CCaptureDlg(CWnd* pParent = NULL); // standard constructor
  88. // Dialog Data
  89. //{{AFX_DATA(CCaptureDlg)
  90. enum { IDD = IDD_CAPTURE_DIALOG };
  91. CStageButton m_ReBrush;
  92. CStageButton m_InBrush;
  93. CStageButton m_InAperture;
  94. CStageButton m_ReAperture;
  95. CStageButton m_ReLen;
  96. CStageButton m_InLen;
  97. CStageButton m_ReFoci;
  98. CStageButton m_InFoci;
  99. CStageButton m_ButtonRight;
  100. CStageButton m_ButtonLeft;
  101. CStageButton m_ButtonUp;
  102. CStageButton m_ButtonDown;
  103. CMSComm m_Com;
  104. //}}AFX_DATA
  105. // ClassWizard generated virtual function overrides
  106. //{{AFX_VIRTUAL(CCaptureDlg)
  107. protected:
  108. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  109. //}}AFX_VIRTUAL
  110. // Implementation
  111. public:
  112. void DrawCaption();
  113. void DrawDialog(UINT Flags);
  114. HICON m_hIcon;
  115. // Generated message map functions
  116. //{{AFX_MSG(CCaptureDlg)
  117. virtual BOOL OnInitDialog();
  118. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  119. afx_msg void OnPaint();
  120. afx_msg HCURSOR OnQueryDragIcon();
  121. afx_msg void OnTimer(UINT nIDEvent);
  122. afx_msg void OnSize(UINT nType, int cx, int cy);
  123. virtual void OnOK();
  124. afx_msg void OnSnapshot();
  125. afx_msg void OnWindowPosChanged(WINDOWPOS FAR* lpwndpos);
  126. afx_msg void OnBmp();
  127. afx_msg void OnJpg();
  128. afx_msg void OnVga();
  129. afx_msg void OnPci();
  130. afx_msg void OnSetting();
  131. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  132. afx_msg void OnNcMouseMove(UINT nHitTest, CPoint point);
  133. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  134. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  135. afx_msg BOOL OnNcActivate(BOOL bActive);
  136. afx_msg void OnControl();
  137. afx_msg void OnAutomatism();
  138. afx_msg void OnStop();
  139. afx_msg void OnKinescope();
  140. afx_msg void OnPlay();
  141. afx_msg void OnManage();
  142. //}}AFX_MSG
  143. DECLARE_MESSAGE_MAP()
  144. };
  145. //{{AFX_INSERT_LOCATION}}
  146. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  147. #endif // !defined(AFX_CAPTUREDLG_H__03C7FD01_013C_4EAC_9D74_5CF3316EF48F__INCLUDED_)