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

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

Issue 2230813002: Use smart pointers for class owned pointers in xfa/fwl/theme (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 4 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>
11
10 #include "xfa/fwl/theme/cfwl_widgettp.h" 12 #include "xfa/fwl/theme/cfwl_widgettp.h"
11 13
12 class CFWL_PushButtonTP : public CFWL_WidgetTP { 14 class CFWL_PushButtonTP : public CFWL_WidgetTP {
13 public: 15 public:
14 CFWL_PushButtonTP(); 16 CFWL_PushButtonTP();
15 ~CFWL_PushButtonTP() override; 17 ~CFWL_PushButtonTP() override;
16 18
17 // CFWL_WidgetTP 19 // CFWL_WidgetTP
18 bool IsValidWidget(IFWL_Widget* pWidget) override; 20 bool IsValidWidget(IFWL_Widget* pWidget) override;
19 uint32_t SetThemeID(IFWL_Widget* pWidget, 21 uint32_t SetThemeID(IFWL_Widget* pWidget,
(...skipping 14 matching lines...) Expand all
34 }; 36 };
35 37
36 void SetThemeData(uint32_t dwID); 38 void SetThemeData(uint32_t dwID);
37 void SetTopLineColor(uint32_t* pData); 39 void SetTopLineColor(uint32_t* pData);
38 void SetLeftLineColor(uint32_t* pData); 40 void SetLeftLineColor(uint32_t* pData);
39 void SetRightLineColor(uint32_t* pData); 41 void SetRightLineColor(uint32_t* pData);
40 void SetBottomLineColor(uint32_t* pData); 42 void SetBottomLineColor(uint32_t* pData);
41 void SetBackgroudColor(uint32_t* pData); 43 void SetBackgroudColor(uint32_t* pData);
42 void SetCaptionColor(uint32_t* pData); 44 void SetCaptionColor(uint32_t* pData);
43 void SetCornerColor(uint32_t* pData); 45 void SetCornerColor(uint32_t* pData);
44 int32_t GetColorID(uint32_t dwStates);
45 46
46 struct PBThemeData* m_pThemeData; 47 int32_t GetColorID(uint32_t dwStates) const;
48
49 std::unique_ptr<PBThemeData> m_pThemeData;
47 }; 50 };
48 51
49 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ 52 #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