HistogramDlg.h
上传用户:mjs2008
上传日期:2021-05-16
资源大小:5089k
文件大小:2k
源码类别:

生物技术

开发平台:

Visual C++

  1. #if !defined(AFX_HISTOGRAMDLG_H__77409AF7_7EFF_40AA_8EC2_D685336A0732__INCLUDED_)
  2. #define AFX_HISTOGRAMDLG_H__77409AF7_7EFF_40AA_8EC2_D685336A0732__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // HistogramDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHistogramDlg dialog
  10. class CHistogramDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. double ratior, ratiog, ratiob;
  15. bool m_bUserRatio;
  16. RECT m_ChartRect;
  17. void DrawData(CDC *dc, char type);
  18. void DrawFrame(CDC *dc, char type);
  19. DWORD m_Histogram[3][256];
  20. void GenHistogramData(void);
  21. CHistogramDlg(CWnd* pParent = NULL);   // standard constructor
  22. // Dialog Data
  23. //{{AFX_DATA(CHistogramDlg)
  24. enum { IDD = IDD_HISTOGRAM };
  25. int m_Thresh_B;
  26. int m_Thresh_G;
  27. int m_Thresh_R;
  28. int m_Thresh_BMax;
  29. int m_Thresh_GMax;
  30. int m_Thresh_RMax;
  31. int m_nMag;
  32. //}}AFX_DATA
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CHistogramDlg)
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. // Generated message map functions
  42. //{{AFX_MSG(CHistogramDlg)
  43. virtual BOOL OnInitDialog(void);
  44. afx_msg void OnPaint(void);
  45. afx_msg void OnRed(void);
  46. afx_msg void OnGreen(void);
  47. afx_msg void OnBlue(void);
  48. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  49. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  50. afx_msg void OnExclusivePressed(void);
  51. virtual void OnOK(void);
  52. afx_msg void OnHistogramSame(void);
  53. afx_msg void OnChangeHistogramMagnify(void);
  54. DECLARE_EVENTSINK_MAP()
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_HISTOGRAMDLG_H__77409AF7_7EFF_40AA_8EC2_D685336A0732__INCLUDED_)