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_SCROLLBARTP_H_ | 7 #ifndef XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ |
8 #define XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ | 8 #define XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ |
9 | 9 |
10 #include "xfa/fwl/theme/cfwl_widgettp.h" | 10 #include "xfa/fwl/theme/cfwl_widgettp.h" |
11 | 11 |
12 class CFWL_ScrollBarTP : public CFWL_WidgetTP { | 12 class CFWL_ScrollBarTP : public CFWL_WidgetTP { |
13 public: | 13 public: |
14 CFWL_ScrollBarTP(); | 14 CFWL_ScrollBarTP(); |
15 virtual ~CFWL_ScrollBarTP(); | 15 ~CFWL_ScrollBarTP() override; |
16 virtual FX_BOOL IsValidWidget(IFWL_Widget* pWidget); | 16 |
17 virtual uint32_t SetThemeID(IFWL_Widget* pWidget, | 17 // CFWL_WidgetTP |
18 uint32_t dwThemeID, | 18 bool IsValidWidget(IFWL_Widget* pWidget) override; |
19 FX_BOOL bChildren = TRUE); | 19 uint32_t SetThemeID(IFWL_Widget* pWidget, |
20 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams); | 20 uint32_t dwThemeID, |
21 virtual void* GetCapacity(CFWL_ThemePart* pThemePart, | 21 FX_BOOL bChildren = TRUE) override; |
22 CFWL_WidgetCapacity dwCapacity); | 22 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; |
| 23 void* GetCapacity(CFWL_ThemePart* pThemePart, |
| 24 CFWL_WidgetCapacity dwCapacity) override; |
23 | 25 |
24 protected: | 26 protected: |
25 struct SBThemeData { | 27 struct SBThemeData { |
26 FX_ARGB clrPawColorLight[4]; | 28 FX_ARGB clrPawColorLight[4]; |
27 FX_ARGB clrPawColorDark[4]; | 29 FX_ARGB clrPawColorDark[4]; |
28 FX_ARGB clrBtnBK[4][2]; | 30 FX_ARGB clrBtnBK[4][2]; |
29 FX_ARGB clrBtnBorder[4]; | 31 FX_ARGB clrBtnBorder[4]; |
30 FX_ARGB clrTrackBKStart; | 32 FX_ARGB clrTrackBKStart; |
31 FX_ARGB clrTrackBKEnd; | 33 FX_ARGB clrTrackBKEnd; |
32 }; | 34 }; |
(...skipping 19 matching lines...) Expand all Loading... |
52 const CFX_RectF* pRect, | 54 const CFX_RectF* pRect, |
53 FX_BOOL bVert, | 55 FX_BOOL bVert, |
54 FWLTHEME_STATE eState, | 56 FWLTHEME_STATE eState, |
55 CFX_Matrix* pMatrix = NULL); | 57 CFX_Matrix* pMatrix = NULL); |
56 void SetThemeData(uint32_t dwID); | 58 void SetThemeData(uint32_t dwID); |
57 | 59 |
58 struct SBThemeData* m_pThemeData; | 60 struct SBThemeData* m_pThemeData; |
59 }; | 61 }; |
60 | 62 |
61 #endif // XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ | 63 #endif // XFA_FWL_THEME_CFWL_SCROLLBARTP_H_ |
OLD | NEW |