ColorSnapDlg.h
上传用户:boxulig
上传日期:2022-06-30
资源大小:3348k
文件大小:2k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // ColorSnapDlg.h : header file
  2. //
  3. #if !defined(AFX_COLORSNAPDLG_H__40FC2CCD_0401_4315_84D6_8D0A41F45771__INCLUDED_)
  4. #define AFX_COLORSNAPDLG_H__40FC2CCD_0401_4315_84D6_8D0A41F45771__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CColorSnapDlg dialog
  10. class CColorSnapDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CColorSnapDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CColorSnapDlg)
  17. enum { IDD = IDD_COLORSNAP_DIALOG };
  18. // NOTE: the ClassWizard will add data members here
  19. //}}AFX_DATA
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CColorSnapDlg)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. protected:
  27. HICON m_hIcon;
  28. // Generated message map functions
  29. //{{AFX_MSG(CColorSnapDlg)
  30. virtual BOOL OnInitDialog();
  31. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  32. afx_msg void OnPaint();
  33. afx_msg HCURSOR OnQueryDragIcon();
  34. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  35. afx_msg void OnTimer(UINT nIDEvent);
  36. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  37. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  38. afx_msg void OnButton1();
  39. afx_msg void OnButton2();
  40. afx_msg void OnDestroy();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. bool bTimerRunning;//定时器是否在运行
  45. bool bCaptureWay;//0:定时器方法捕获 1:SetCapture方法捕获
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_COLORSNAPDLG_H__40FC2CCD_0401_4315_84D6_8D0A41F45771__INCLUDED_)