ViewHistogram.h
上传用户:alisonmail
上传日期:2013-02-28
资源大小:500k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. #ifndef __VIEWHISTOGRAM_H__
  2. #define __VIEWHISTOGRAM_H__
  3. // ViewHistogram.h : header file
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CViewHistogram dialog
  7. class CViewHistogram : public CDialog
  8. {
  9. // Construction
  10. public:
  11. CViewHistogram(CWnd* pParent = NULL);   // standard constructor
  12. int m_nCurSel;
  13. int *m_pnHistogram;
  14. // Dialog Data
  15. //{{AFX_DATA(CViewHistogram)
  16. enum { IDD = IDD_HISTOGRAM };
  17. CTabCtrl m_Histogram;
  18. //}}AFX_DATA
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CViewHistogram)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  24. virtual void PostNcDestroy();
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. // Generated message map functions
  29. //{{AFX_MSG(CViewHistogram)
  30. afx_msg void OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult);
  31. afx_msg void OnPaint();
  32. virtual BOOL OnInitDialog();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  38. #endif // __VIEWHISTOGRAM_H__