demoDlg.h
上传用户:gzysjn
上传日期:2013-07-12
资源大小:225k
文件大小:1k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. // demoDlg.h : header file
  2. //
  3. #if !defined(AFX_DEMODLG_H__C53ABDF0_20DE_4DB4_A67E_E9139914D3F6__INCLUDED_)
  4. #define AFX_DEMODLG_H__C53ABDF0_20DE_4DB4_A67E_E9139914D3F6__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "cxcore.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CDemoDlg dialog
  11. class CDemoDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CvScalar hsv2rgb( float hue );
  16. // void on_mouse( int event, int x, int y, int flags, void* param );
  17. CDemoDlg(CWnd* pParent = NULL); // standard constructor
  18. //
  19. // Dialog Data
  20. //{{AFX_DATA(CDemoDlg)
  21. enum { IDD = IDD_DEMO_DIALOG };
  22. // NOTE: the ClassWizard will add data members here
  23. //}}AFX_DATA
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CDemoDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. HICON m_hIcon;
  32. // Generated message map functions
  33. //{{AFX_MSG(CDemoDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnPaint();
  36. afx_msg HCURSOR OnQueryDragIcon();
  37. virtual void OnOK();
  38. afx_msg void OnButtonEdge();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_DEMODLG_H__C53ABDF0_20DE_4DB4_A67E_E9139914D3F6__INCLUDED_)