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

操作系统开发

开发平台:

Visual C++

  1. //GraphDataColor.h - Version 3.0 (Brian Convery, May, 2001)
  2. #if !defined(AFX_GRAPHDATACOLOR_H__3CBDC4C5_494F_11D5_AD40_006008198224__INCLUDED_)
  3. #define AFX_GRAPHDATACOLOR_H__3CBDC4C5_494F_11D5_AD40_006008198224__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // GraphDataColor.h : header file
  8. //
  9. #include "Graph.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CGraphDataColor window
  12. class CGraphDataColor : public CStatic
  13. {
  14. // Construction
  15. public:
  16. CGraphDataColor(int group, COLORREF color);
  17. // Attributes
  18. public:
  19. int dataGroup; //just an id indicator to help searching
  20. COLORREF groupColor;
  21. // Operations
  22. public:
  23. COLORREF GetColor();
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CGraphDataColor)
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CGraphDataColor();
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CGraphDataColor)
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_GRAPHDATACOLOR_H__3CBDC4C5_494F_11D5_AD40_006008198224__INCLUDED_)