MemView.h
上传用户:tianjwyx
上传日期:2007-01-13
资源大小:813k
文件大小:2k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. #if !defined(AFX_MEMVIEW_H__3B42FCCA_B261_492F_A77C_10CDA133B648__INCLUDED_)
  2. #define AFX_MEMVIEW_H__3B42FCCA_B261_492F_A77C_10CDA133B648__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MemView.h : header file
  7. //
  8. #include "PieChartCtrl.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMemView dialog
  11. class CMemView : public CDialog
  12. {
  13. // Construction
  14. public:
  15. bool bPaint;
  16. void AddPiece(COLORREF colorBack,int nAngle, const CString& str);
  17. void DrawRect(int x, int y, int Len, int Height,COLORREF crColor, CString crText);
  18. void DrawText(int x, int y, CString Text);
  19. bool InitGrah();
  20. CMemView(CWnd* pParent = NULL);   // standard constructor
  21.     CPieChartCtrl m_wndChart;
  22. struct RECT
  23. {
  24. int x;
  25. int y;
  26. int Len;
  27. int Height;
  28. COLORREF crColor;
  29. CString crText;
  30. };
  31.     CArray<RECT,RECT>MyRect;
  32. // Dialog Data
  33. //{{AFX_DATA(CMemView)
  34. enum { IDD = IDD_TAB_MEM };
  35. CStatic m_MemView;
  36. //}}AFX_DATA
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CMemView)
  40. protected:
  41. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. protected:
  45.     
  46. // Generated message map functions
  47. //{{AFX_MSG(CMemView)
  48. afx_msg void OnPaint();
  49. virtual BOOL OnInitDialog();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_MEMVIEW_H__3B42FCCA_B261_492F_A77C_10CDA133B648__INCLUDED_)