Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1961)

Side by Side Diff: xfa/fwl/theme/cfwl_scrollbartp.h

Issue 1946213003: Remove CLASSHASH defines in favour of an enum class. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/theme/cfwl_pushbuttontp.cpp ('k') | xfa/fwl/theme/cfwl_scrollbartp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « xfa/fwl/theme/cfwl_pushbuttontp.cpp ('k') | xfa/fwl/theme/cfwl_scrollbartp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698