| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ | 7 #ifndef XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ |
| 8 #define XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ | 8 #define XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/theme/cfwl_widgettp.h" | 10 #include "xfa/fwl/theme/cfwl_widgettp.h" |
| 11 | 11 |
| 12 class CFWL_PushButtonTP : public CFWL_WidgetTP { | 12 class CFWL_PushButtonTP : public CFWL_WidgetTP { |
| 13 public: | 13 public: |
| 14 CFWL_PushButtonTP(); | 14 CFWL_PushButtonTP(); |
| 15 ~CFWL_PushButtonTP() override; | 15 ~CFWL_PushButtonTP() override; |
| 16 | 16 |
| 17 FX_BOOL IsValidWidget(IFWL_Widget* pWidget) override; | 17 FX_BOOL IsValidWidget(IFWL_Widget* pWidget) override; |
| 18 uint32_t SetThemeID(IFWL_Widget* pWidget, | 18 uint32_t SetThemeID(IFWL_Widget* pWidget, |
| 19 uint32_t dwThemeID, | 19 uint32_t dwThemeID, |
| 20 FX_BOOL bChildren = TRUE) override; | 20 FX_BOOL bChildren = TRUE) override; |
| 21 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; | 21 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; |
| 22 void* GetCapacity(CFWL_ThemePart* pThemePart, | 22 void* GetCapacity(CFWL_ThemePart* pThemePart, |
| 23 CFWL_WidgetCapacity dwCapacity) override; | 23 CFWL_WidgetCapacity dwCapacity) override; |
| 24 FWL_ERR Initialize() override; | 24 FWL_Error Initialize() override; |
| 25 FWL_ERR Finalize() override; | 25 FWL_Error Finalize() override; |
| 26 | 26 |
| 27 protected: | 27 protected: |
| 28 struct PBThemeData { | 28 struct PBThemeData { |
| 29 FX_ARGB clrBorder[5]; | 29 FX_ARGB clrBorder[5]; |
| 30 FX_ARGB clrStart[5]; | 30 FX_ARGB clrStart[5]; |
| 31 FX_ARGB clrEnd[5]; | 31 FX_ARGB clrEnd[5]; |
| 32 FX_ARGB clrFill[5]; | 32 FX_ARGB clrFill[5]; |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 void SetThemeData(uint32_t dwID); | 35 void SetThemeData(uint32_t dwID); |
| 36 void SetTopLineColor(uint32_t* pData); | 36 void SetTopLineColor(uint32_t* pData); |
| 37 void SetLeftLineColor(uint32_t* pData); | 37 void SetLeftLineColor(uint32_t* pData); |
| 38 void SetRightLineColor(uint32_t* pData); | 38 void SetRightLineColor(uint32_t* pData); |
| 39 void SetBottomLineColor(uint32_t* pData); | 39 void SetBottomLineColor(uint32_t* pData); |
| 40 void SetBackgroudColor(uint32_t* pData); | 40 void SetBackgroudColor(uint32_t* pData); |
| 41 void SetCaptionColor(uint32_t* pData); | 41 void SetCaptionColor(uint32_t* pData); |
| 42 void SetCornerColor(uint32_t* pData); | 42 void SetCornerColor(uint32_t* pData); |
| 43 int32_t GetColorID(uint32_t dwStates); | 43 int32_t GetColorID(uint32_t dwStates); |
| 44 | 44 |
| 45 struct PBThemeData* m_pThemeData; | 45 struct PBThemeData* m_pThemeData; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ | 48 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ |
| OLD | NEW |