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_INCLUDE_FWL_LIGHTWIDGET_THEME_H_ | 7 #ifndef XFA_INCLUDE_FWL_LIGHTWIDGET_THEME_H_ |
8 #define XFA_INCLUDE_FWL_LIGHTWIDGET_THEME_H_ | 8 #define XFA_INCLUDE_FWL_LIGHTWIDGET_THEME_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "core/fxcrt/include/fx_coordinates.h" | 13 #include "core/fxcrt/include/fx_coordinates.h" |
14 #include "core/fxcrt/include/fx_system.h" | 14 #include "core/fxcrt/include/fx_system.h" |
15 #include "core/include/fxge/fx_dib.h" | 15 #include "core/include/fxge/fx_dib.h" |
16 #include "xfa/fwl/core/ifwl_themeprovider.h" | 16 #include "xfa/fwl/core/ifwl_themeprovider.h" |
17 | 17 |
18 class CFWL_WidgetTP; | 18 class CFWL_WidgetTP; |
19 class IFWL_Widget; | 19 class IFWL_Widget; |
20 class CFWL_ThemePart; | 20 class CFWL_ThemePart; |
21 class CFWL_ThemeText; | 21 class CFWL_ThemeText; |
22 | 22 |
23 class CFWL_Theme : public IFWL_ThemeProvider { | 23 class CFWL_Theme : public IFWL_ThemeProvider { |
24 public: | 24 public: |
25 CFWL_Theme(); | 25 CFWL_Theme(); |
26 ~CFWL_Theme() override; | 26 ~CFWL_Theme() override; |
27 | 27 |
28 // IFWL_ThemeProvider: | 28 // IFWL_ThemeProvider: |
29 FX_BOOL IsValidWidget(IFWL_Widget* pWidget) override; | 29 FX_BOOL IsValidWidget(IFWL_Widget* pWidget) override; |
30 FX_DWORD GetThemeID(IFWL_Widget* pWidget) override; | 30 uint32_t GetThemeID(IFWL_Widget* pWidget) override; |
31 FX_DWORD SetThemeID(IFWL_Widget* pWidget, | 31 uint32_t SetThemeID(IFWL_Widget* pWidget, |
32 FX_DWORD dwThemeID, | 32 uint32_t dwThemeID, |
33 FX_BOOL bChildren = TRUE) override; | 33 FX_BOOL bChildren = TRUE) override; |
34 FWL_ERR GetThemeMatrix(IFWL_Widget* pWidget, CFX_Matrix& matrix) override; | 34 FWL_ERR GetThemeMatrix(IFWL_Widget* pWidget, CFX_Matrix& matrix) override; |
35 FWL_ERR SetThemeMatrix(IFWL_Widget* pWidget, | 35 FWL_ERR SetThemeMatrix(IFWL_Widget* pWidget, |
36 const CFX_Matrix& matrix) override; | 36 const CFX_Matrix& matrix) override; |
37 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; | 37 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; |
38 FX_BOOL DrawText(CFWL_ThemeText* pParams) override; | 38 FX_BOOL DrawText(CFWL_ThemeText* pParams) override; |
39 void* GetCapacity(CFWL_ThemePart* pThemePart, FX_DWORD dwCapacity) override; | 39 void* GetCapacity(CFWL_ThemePart* pThemePart, uint32_t dwCapacity) override; |
40 FX_BOOL IsCustomizedLayout(IFWL_Widget* pWidget) override; | 40 FX_BOOL IsCustomizedLayout(IFWL_Widget* pWidget) override; |
41 FWL_ERR GetPartRect(CFWL_ThemePart* pThemePart, CFX_RectF& rtPart) override; | 41 FWL_ERR GetPartRect(CFWL_ThemePart* pThemePart, CFX_RectF& rtPart) override; |
42 FX_BOOL IsInPart(CFWL_ThemePart* pThemePart, | 42 FX_BOOL IsInPart(CFWL_ThemePart* pThemePart, |
43 FX_FLOAT fx, | 43 FX_FLOAT fx, |
44 FX_FLOAT fy) override; | 44 FX_FLOAT fy) override; |
45 FX_BOOL CalcTextRect(CFWL_ThemeText* pParams, CFX_RectF& rect) override; | 45 FX_BOOL CalcTextRect(CFWL_ThemeText* pParams, CFX_RectF& rect) override; |
46 | 46 |
47 FWL_ERR Initialize(); | 47 FWL_ERR Initialize(); |
48 FWL_ERR Finalize(); | 48 FWL_ERR Finalize(); |
49 FWL_ERR SetFont(IFWL_Widget* pWidget, | 49 FWL_ERR SetFont(IFWL_Widget* pWidget, |
50 const FX_WCHAR* strFont, | 50 const FX_WCHAR* strFont, |
51 FX_FLOAT fFontSize, | 51 FX_FLOAT fFontSize, |
52 FX_ARGB rgbFont); | 52 FX_ARGB rgbFont); |
53 CFWL_WidgetTP* GetTheme(IFWL_Widget* pWidget); | 53 CFWL_WidgetTP* GetTheme(IFWL_Widget* pWidget); |
54 | 54 |
55 protected: | 55 protected: |
56 std::vector<std::unique_ptr<CFWL_WidgetTP>> m_ThemesArray; | 56 std::vector<std::unique_ptr<CFWL_WidgetTP>> m_ThemesArray; |
57 }; | 57 }; |
58 | 58 |
59 #endif // XFA_INCLUDE_FWL_LIGHTWIDGET_THEME_H_ | 59 #endif // XFA_INCLUDE_FWL_LIGHTWIDGET_THEME_H_ |
OLD | NEW |