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

操作系统开发

开发平台:

Visual C++

  1. //GraphLegendSet.h - Version 3.0 (Brian Convery, May, 2001)
  2. #if !defined(AFX_GRAPHLEGENDSET_H__3CBDC4C4_494F_11D5_AD40_006008198224__INCLUDED_)
  3. #define AFX_GRAPHLEGENDSET_H__3CBDC4C4_494F_11D5_AD40_006008198224__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // GraphLegendSet.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CGraphLegendSet window
  11. class CGraphLegendSet : public CStatic
  12. {
  13. // Construction
  14. public:
  15. CGraphLegendSet();
  16. // Attributes
  17. public:
  18. int legendId; //only used for searching through a list of this object
  19. private :
  20. CString legendLabel;
  21. // Operations
  22. public:
  23. void SetLegendLabel(int id, CString legendText);
  24. CString GetLegendLabel();
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CGraphLegendSet)
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CGraphLegendSet();
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(CGraphLegendSet)
  35. // NOTE - the ClassWizard will add and remove member functions here.
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_GRAPHLEGENDSET_H__3CBDC4C4_494F_11D5_AD40_006008198224__INCLUDED_)