GuiDrawLayer.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #if !defined(AFX_GUIDRAWLAYER_H__0BFB5AA0_94B4_47FC_8F93_84DB87A364F8__INCLUDED_)
  14. #define AFX_GUIDRAWLAYER_H__0BFB5AA0_94B4_47FC_8F93_84DB87A364F8__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. #include "GuiLib.h" 
  19. class GUILIBDLLEXPORT GuiDrawLayer  
  20. {
  21. public:
  22. GuiDrawLayer();
  23. virtual ~GuiDrawLayer();
  24. public:
  25. //************************************************************
  26. void DrawArrow(CDC* pDC,CRect m_rc,BOOL m_bDown=TRUE);
  27. HICON GetIcon(int nIcon);
  28. static HICON LoadIconLib(UINT uIcon);
  29. static COLORREF GetRGBColorXP();
  30. static COLORREF GetRGBFondoXP();
  31. static COLORREF GetRGBCaptionXP();
  32. static COLORREF GetRGBPressBXP();
  33. static COLORREF GetRGBColorFace();
  34. static COLORREF GetRGBColorShadow();
  35. static COLORREF GetRGBColorBTNHigh();
  36. static COLORREF GetRGBColorTabs();
  37. static COLORREF GetRGBColorWhite();
  38. static void DrawCheck(CDC* pDC,CRect m_rcTemp);
  39. static BOOL IsGrayed();
  40. static void DrawShade( CRect Rect,CPoint cp,CDC* pDC);
  41. static COLORREF DarkenColor( long lScale, COLORREF lColor);
  42. //************************************************************
  43. protected:
  44. //**********************************
  45. CImageList m_img;
  46. CPoint mHeight;
  47. int m_iWidthDrowDown;
  48. //**********************************
  49. };
  50. #endif // !defined(AFX_GUIDRAWLAYER_H__0BFB5AA0_94B4_47FC_8F93_84DB87A364F8__INCLUDED_)