| 123456789101112131415161718192021222324252627 |
- /***********************************************
- * 工作室 : 软景工作室
- * 作者 : 肖尚德
- * 用途 :
- *************************************************/
- #ifndef _SKINDRAWHELPER_H
- #define _SKINDRAWHELPER_H
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class SKINSTDLL CSkinDrawHelper
- {
- public:
- CSkinDrawHelper(void);
- ~CSkinDrawHelper(void);
- bool DrawImageRect(CDC *pDC,CRect rtDest,SkinImageRect & imageRect);
- bool DrawImageSection(CDC *pDC,CRect rtDest,SkinImageSection &imageSection);
- // bool DrawFrameSkin(CDC *pDC,CRect rtDest,WindowSkin &windowSkin,bool bActive);
- // bool DrawButton(CDC *pDC,CRect rtDest,ButtonSkin &buttonSkin,ButtonState buttonState);
- // bool DrawButton(CDC *pDC,CRect rtDest,WinButtonSkin &buttonSkin,WinButtonState buttonState);
- };
- SKINSTDLL CSkinDrawHelper* GetSkinDrawHelper();
- #endif
|