#ifndef __UIRENDER_H__ #define __UIRENDER_H__ #pragma once namespace DuiLib { ///////////////////////////////////////////////////////////////////////////////////// // class UILIB_API CRenderClip { public: ~CRenderClip(); RECT rcItem; HDC hDC; HRGN hRgn; HRGN hOldRgn; static void GenerateClip(HDC hDC, RECT rc, CRenderClip& clip); static void GenerateRoundClip(HDC hDC, RECT rc, RECT rcItem, int width, int height, CRenderClip& clip); static void UseOldClipBegin(HDC hDC, CRenderClip& clip); static void UseOldClipEnd(HDC hDC, CRenderClip& clip); }; ///////////////////////////////////////////////////////////////////////////////////// // class UILIB_API CRenderEngine { public: static DWORD AdjustColor(DWORD dwColor, short H, short S, short L); static HBITMAP CreateARGB32Bitmap(HDC hDC, int cx, int cy, COLORREF** pBits); static void AdjustImage(bool bUseHSL, TImageInfo* imageInfo, short H, short S, short L); static TImageInfo* LoadImage(STRINGorID bitmap, LPCTSTR type = NULL, DWORD mask = 0); static void FreeImage(TImageInfo* bitmap, bool bDelete = true); static void DrawImage(HDC hDC, HBITMAP hBitmap, const RECT& rc, const RECT& rcPaint, \ const RECT& rcBmpPart, const RECT& rcCorners, bool alphaChannel, BYTE uFade = 255, bool hole = false, bool xtiled = false, bool ytiled = false); static bool DrawImage(HDC hDC, CPaintManagerUI* pManager, const RECT& rcItem, const RECT& rcPaint, TDrawInfo& drawInfo); static void DrawColor(HDC hDC, const RECT& rc, DWORD color); static void DrawGradient(HDC hDC, const RECT& rc, DWORD dwFirst, DWORD dwSecond, bool bVertical, int nSteps); //modify by hshong static void DrawGradientEx(HDC hDC,const RECT& rc,COLORREF crColors[],size_t nColors, DWORD dwFillMode=GRADIENT_FILL_RECT_H); // 以下函数中的颜色参数alpha值无效 static void DrawLine(HDC hDC, const RECT& rc, int nSize, DWORD dwPenColor, int nStyle = PS_SOLID); static void DrawRect(HDC hDC, const RECT& rc, int nSize, DWORD dwPenColor, int nStyle = PS_SOLID); static void DrawRoundRect(HDC hDC, const RECT& rc, int width, int height, int nSize, DWORD dwPenColor, int nStyle = PS_SOLID); static void DrawText(HDC hDC, CPaintManagerUI* pManager, RECT& rc, LPCTSTR pstrText, \ DWORD dwTextColor, int iFont, UINT uStyle); static void DrawHtmlText(HDC hDC, CPaintManagerUI* pManager, RECT& rc, LPCTSTR pstrText, DWORD dwTextColor, RECT* pLinks, CDuiString* sLinks, int& nLinkRects, UINT uStyle); static HBITMAP GenerateBitmap(CPaintManagerUI* pManager, CControlUI* pControl, RECT rc); static SIZE GetTextSize(HDC hDC, CPaintManagerUI* pManager , LPCTSTR pstrText, int iFont, UINT uStyle); }; } // namespace DuiLib #endif // __UIRENDER_H__