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 <memory> | 10 #include <memory> |
11 | 11 |
12 #include "xfa/fwl/theme/cfwl_widgettp.h" | 12 #include "xfa/fwl/theme/cfwl_widgettp.h" |
13 | 13 |
14 class CFWL_PushButtonTP : public CFWL_WidgetTP { | 14 class CFWL_PushButtonTP : public CFWL_WidgetTP { |
15 public: | 15 public: |
16 CFWL_PushButtonTP(); | 16 CFWL_PushButtonTP(); |
17 ~CFWL_PushButtonTP() override; | 17 ~CFWL_PushButtonTP() override; |
18 | 18 |
19 // CFWL_WidgetTP | 19 // CFWL_WidgetTP |
| 20 void Initialize() override; |
| 21 void Finalize() override; |
20 bool IsValidWidget(IFWL_Widget* pWidget) override; | 22 bool IsValidWidget(IFWL_Widget* pWidget) override; |
21 uint32_t SetThemeID(IFWL_Widget* pWidget, uint32_t dwThemeID) override; | 23 uint32_t SetThemeID(IFWL_Widget* pWidget, uint32_t dwThemeID) override; |
22 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; | 24 void DrawBackground(CFWL_ThemeBackground* pParams) override; |
23 void* GetCapacity(CFWL_ThemePart* pThemePart, | 25 void* GetCapacity(CFWL_ThemePart* pThemePart, |
24 CFWL_WidgetCapacity dwCapacity) override; | 26 CFWL_WidgetCapacity dwCapacity) override; |
25 FWL_Error Initialize() override; | |
26 FWL_Error Finalize() override; | |
27 | 27 |
28 protected: | 28 protected: |
29 struct PBThemeData { | 29 struct PBThemeData { |
30 FX_ARGB clrBorder[5]; | 30 FX_ARGB clrBorder[5]; |
31 FX_ARGB clrStart[5]; | 31 FX_ARGB clrStart[5]; |
32 FX_ARGB clrEnd[5]; | 32 FX_ARGB clrEnd[5]; |
33 FX_ARGB clrFill[5]; | 33 FX_ARGB clrFill[5]; |
34 }; | 34 }; |
35 | 35 |
36 void SetThemeData(uint32_t dwID); | 36 void SetThemeData(uint32_t dwID); |
37 void SetTopLineColor(uint32_t* pData); | 37 void SetTopLineColor(uint32_t* pData); |
38 void SetLeftLineColor(uint32_t* pData); | 38 void SetLeftLineColor(uint32_t* pData); |
39 void SetRightLineColor(uint32_t* pData); | 39 void SetRightLineColor(uint32_t* pData); |
40 void SetBottomLineColor(uint32_t* pData); | 40 void SetBottomLineColor(uint32_t* pData); |
41 void SetBackgroudColor(uint32_t* pData); | 41 void SetBackgroudColor(uint32_t* pData); |
42 void SetCaptionColor(uint32_t* pData); | 42 void SetCaptionColor(uint32_t* pData); |
43 void SetCornerColor(uint32_t* pData); | 43 void SetCornerColor(uint32_t* pData); |
44 | 44 |
45 int32_t GetColorID(uint32_t dwStates) const; | 45 int32_t GetColorID(uint32_t dwStates) const; |
46 | 46 |
47 std::unique_ptr<PBThemeData> m_pThemeData; | 47 std::unique_ptr<PBThemeData> m_pThemeData; |
48 }; | 48 }; |
49 | 49 |
50 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ | 50 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ |
OLD | NEW |