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

操作系统开发

开发平台:

Visual C++

  1. //GraphLegend.h - Version 3.0 (Brian Convery, May, 2001)
  2. #if !defined(AFX_GRAPHLEGEND_H__99A8A552_4029_40CC_839A_D8210C46CD8B__INCLUDED_)
  3. #define AFX_GRAPHLEGEND_H__99A8A552_4029_40CC_839A_D8210C46CD8B__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // GraphLegend.h : header file
  8. //
  9. #include "GraphLegendSet.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CGraphLegend window
  12. class CGraphLegend : public CStatic
  13. {
  14. // Construction
  15. public:
  16. CGraphLegend();
  17. // Attributes
  18. public:
  19. private:
  20. int legendLength;
  21. CObList *legendLabels;
  22. // Operations
  23. public:
  24. void SetLegendText(int datagroup, CString label);
  25. CString GetLegendText(int datagroup);
  26. int GetLegendLength();
  27. void Remove(int dataGroup);
  28. void RemoveAll();
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CGraphLegend)
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CGraphLegend();
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CGraphLegend)
  39. // NOTE - the ClassWizard will add and remove member functions here.
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_GRAPHLEGEND_H__99A8A552_4029_40CC_839A_D8210C46CD8B__INCLUDED_)