DlgIntensity.h
上传用户:sgmlaoniu
上传日期:2013-03-16
资源大小:403k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGINTENSITY_H__8E573E68_C1E6_4152_9BB6_C322E02CD789__INCLUDED_)
  2. #define AFX_DLGINTENSITY_H__8E573E68_C1E6_4152_9BB6_C322E02CD789__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgIntensity.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgIntensity dialog
  10. class CDlgIntensity : public CDialog
  11. {
  12. // Construction
  13. public:
  14. // 当前鼠标拖动状态,0表示未拖动,1表示正在拖动下限,2表示正在拖动上限。
  15. int m_iIsDraging;
  16. // 相应鼠标事件的矩形区域
  17. CRect m_MouseRect;
  18. // DIB的高度
  19. LONG m_lHeight;
  20. // DIB的宽度
  21. LONG m_lWidth;
  22. // 指向当前DIB象素的指针
  23. char * m_lpDIBBits;
  24. // 各个灰度值的计数
  25. LONG m_lCount[256];
  26. CDlgIntensity(CWnd* pParent = NULL);   // standard constructor
  27. // Dialog Data
  28. //{{AFX_DATA(CDlgIntensity)
  29. enum { IDD = IDD_DLG_INTENSITY };
  30. // 显示灰度区间的下限
  31. int m_iLowGray;
  32. // 显示灰度区间的上限
  33. int m_iUpGray;
  34. // NOTE: the ClassWizard will add data members here
  35. //}}AFX_DATA
  36. // Overrides
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CDlgIntensity)
  39. protected:
  40. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. protected:
  44. // Generated message map functions
  45. //{{AFX_MSG(CDlgIntensity)
  46. afx_msg void OnPaint();
  47. virtual void OnOK();
  48. virtual BOOL OnInitDialog();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_DLGINTENSITY_H__8E573E68_C1E6_4152_9BB6_C322E02CD789__INCLUDED_)