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

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

Issue 2422373002: Cleanup unneeded FWL theme code. (Closed)
Patch Set: Created 4 years, 2 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_monthcalendartp.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 <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 bool IsValidWidget(IFWL_Widget* pWidget) override; 20 bool IsValidWidget(IFWL_Widget* pWidget) override;
21 uint32_t SetThemeID(IFWL_Widget* pWidget, 21 uint32_t SetThemeID(IFWL_Widget* pWidget, uint32_t dwThemeID) override;
22 uint32_t dwThemeID,
23 FX_BOOL bChildren = TRUE) override;
24 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; 22 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override;
25 void* GetCapacity(CFWL_ThemePart* pThemePart, 23 void* GetCapacity(CFWL_ThemePart* pThemePart,
26 CFWL_WidgetCapacity dwCapacity) override; 24 CFWL_WidgetCapacity dwCapacity) override;
27 FWL_Error Initialize() override; 25 FWL_Error Initialize() override;
28 FWL_Error Finalize() override; 26 FWL_Error Finalize() override;
29 27
30 protected: 28 protected:
31 struct PBThemeData { 29 struct PBThemeData {
32 FX_ARGB clrBorder[5]; 30 FX_ARGB clrBorder[5];
33 FX_ARGB clrStart[5]; 31 FX_ARGB clrStart[5];
34 FX_ARGB clrEnd[5]; 32 FX_ARGB clrEnd[5];
35 FX_ARGB clrFill[5]; 33 FX_ARGB clrFill[5];
36 }; 34 };
37 35
38 void SetThemeData(uint32_t dwID); 36 void SetThemeData(uint32_t dwID);
39 void SetTopLineColor(uint32_t* pData); 37 void SetTopLineColor(uint32_t* pData);
40 void SetLeftLineColor(uint32_t* pData); 38 void SetLeftLineColor(uint32_t* pData);
41 void SetRightLineColor(uint32_t* pData); 39 void SetRightLineColor(uint32_t* pData);
42 void SetBottomLineColor(uint32_t* pData); 40 void SetBottomLineColor(uint32_t* pData);
43 void SetBackgroudColor(uint32_t* pData); 41 void SetBackgroudColor(uint32_t* pData);
44 void SetCaptionColor(uint32_t* pData); 42 void SetCaptionColor(uint32_t* pData);
45 void SetCornerColor(uint32_t* pData); 43 void SetCornerColor(uint32_t* pData);
46 44
47 int32_t GetColorID(uint32_t dwStates) const; 45 int32_t GetColorID(uint32_t dwStates) const;
48 46
49 std::unique_ptr<PBThemeData> m_pThemeData; 47 std::unique_ptr<PBThemeData> m_pThemeData;
50 }; 48 };
51 49
52 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ 50 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_
OLDNEW
« no previous file with comments | « xfa/fwl/theme/cfwl_monthcalendartp.cpp ('k') | xfa/fwl/theme/cfwl_pushbuttontp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698