| 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 // CFWL_WidgetTP |
| 18 bool IsValidWidget(IFWL_Widget* pWidget) override; |
| 18 uint32_t SetThemeID(IFWL_Widget* pWidget, | 19 uint32_t SetThemeID(IFWL_Widget* pWidget, |
| 19 uint32_t dwThemeID, | 20 uint32_t dwThemeID, |
| 20 FX_BOOL bChildren = TRUE) override; | 21 FX_BOOL bChildren = TRUE) override; |
| 21 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; | 22 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; |
| 22 void* GetCapacity(CFWL_ThemePart* pThemePart, | 23 void* GetCapacity(CFWL_ThemePart* pThemePart, |
| 23 CFWL_WidgetCapacity dwCapacity) override; | 24 CFWL_WidgetCapacity dwCapacity) override; |
| 24 FWL_Error Initialize() override; | 25 FWL_Error Initialize() override; |
| 25 FWL_Error Finalize() override; | 26 FWL_Error Finalize() override; |
| 26 | 27 |
| 27 protected: | 28 protected: |
| (...skipping 11 matching lines...) Expand all Loading... |
| 39 void SetBottomLineColor(uint32_t* pData); | 40 void SetBottomLineColor(uint32_t* pData); |
| 40 void SetBackgroudColor(uint32_t* pData); | 41 void SetBackgroudColor(uint32_t* pData); |
| 41 void SetCaptionColor(uint32_t* pData); | 42 void SetCaptionColor(uint32_t* pData); |
| 42 void SetCornerColor(uint32_t* pData); | 43 void SetCornerColor(uint32_t* pData); |
| 43 int32_t GetColorID(uint32_t dwStates); | 44 int32_t GetColorID(uint32_t dwStates); |
| 44 | 45 |
| 45 struct PBThemeData* m_pThemeData; | 46 struct PBThemeData* m_pThemeData; |
| 46 }; | 47 }; |
| 47 | 48 |
| 48 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ | 49 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ |
| OLD | NEW |