|  | // Copyright 2014 PDFium Authors. All rights reserved. | 
|  | // Use of this source code is governed by a BSD-style license that can be | 
|  | // found in the LICENSE file. | 
|  |  | 
|  | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 
|  |  | 
|  | #ifndef XFA_FWL_THEME_CFWL_CHECKBOXTP_H_ | 
|  | #define XFA_FWL_THEME_CFWL_CHECKBOXTP_H_ | 
|  |  | 
|  | #include <memory> | 
|  |  | 
|  | #include "xfa/fwl/theme/cfwl_utils.h" | 
|  | #include "xfa/fwl/theme/cfwl_widgettp.h" | 
|  |  | 
|  | class CFWL_CheckBoxTP : public CFWL_WidgetTP { | 
|  | public: | 
|  | CFWL_CheckBoxTP(); | 
|  | ~CFWL_CheckBoxTP() override; | 
|  |  | 
|  | // CFWL_WidgeTP | 
|  | void Initialize() override; | 
|  | void Finalize() override; | 
|  | void DrawText(CFWL_ThemeText* pParams) override; | 
|  | void DrawBackground(CFWL_ThemeBackground* pParams) override; | 
|  |  | 
|  | protected: | 
|  | struct CKBThemeData { | 
|  | FX_ARGB clrBoxBk[13][2]; | 
|  | FX_ARGB clrSignBorderNormal; | 
|  | FX_ARGB clrSignBorderDisable; | 
|  | FX_ARGB clrSignCheck; | 
|  | FX_ARGB clrSignNeutral; | 
|  | FX_ARGB clrSignNeutralNormal; | 
|  | FX_ARGB clrSignNeutralHover; | 
|  | FX_ARGB clrSignNeutralPressed; | 
|  | }; | 
|  |  | 
|  | void DrawCheckSign(CFWL_Widget* pWidget, | 
|  | CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF& pRtBox, | 
|  | int32_t iState, | 
|  | CFX_Matrix* pMatrix); | 
|  | void DrawSignCheck(CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF* pRtSign, | 
|  | FX_ARGB argbFill, | 
|  | CFX_Matrix* pMatrix); | 
|  | void DrawSignCircle(CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF* pRtSign, | 
|  | FX_ARGB argbFill, | 
|  | CFX_Matrix* pMatrix); | 
|  | void DrawSignCross(CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF* pRtSign, | 
|  | FX_ARGB argbFill, | 
|  | CFX_Matrix* pMatrix); | 
|  | void DrawSignDiamond(CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF* pRtSign, | 
|  | FX_ARGB argbFill, | 
|  | CFX_Matrix* pMatrix); | 
|  | void DrawSignSquare(CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF* pRtSign, | 
|  | FX_ARGB argbFill, | 
|  | CFX_Matrix* pMatrix); | 
|  | void DrawSignStar(CXFA_Graphics* pGraphics, | 
|  | const CFX_RectF* pRtSign, | 
|  | FX_ARGB argbFill, | 
|  | CFX_Matrix* pMatrix); | 
|  |  | 
|  | void InitCheckPath(float fCheckLen); | 
|  |  | 
|  | std::unique_ptr<CKBThemeData> m_pThemeData; | 
|  | std::unique_ptr<CXFA_GEPath> m_pCheckPath; | 
|  |  | 
|  | private: | 
|  | void SetThemeData(); | 
|  | }; | 
|  |  | 
|  | #endif  // XFA_FWL_THEME_CFWL_CHECKBOXTP_H_ |