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

Side by Side Diff: xfa/fwl/theme/cfwl_pushbuttontp.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_pictureboxtp.cpp ('k') | xfa/fwl/theme/cfwl_pushbuttontp.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_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
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_
OLDNEW
« no previous file with comments | « xfa/fwl/theme/cfwl_pictureboxtp.cpp ('k') | xfa/fwl/theme/cfwl_pushbuttontp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698