COLORLIS.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // colorlis.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CColorMenu window
  14. class CColorMenu : public CMenu
  15. {
  16. // Construction
  17. public:
  18. CColorMenu();
  19. // Attributes
  20. public:
  21. static int BASED_CODE indexMap[17];
  22. static COLORREF GetColor(UINT id);
  23. // Operations
  24. public:
  25. // Implementation
  26. public:
  27. virtual void DrawItem(LPDRAWITEMSTRUCT lpDIS);
  28. virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMIS);
  29. };
  30. /////////////////////////////////////////////////////////////////////////////