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

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

Issue 2524173002: Merge IFWL and CFWL classes. (Closed)
Patch Set: make chrome build happy Created 4 years 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
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 void Initialize() override; 20 void Initialize() override;
21 void Finalize() override; 21 void Finalize() override;
22 bool IsValidWidget(IFWL_Widget* pWidget) override; 22 bool IsValidWidget(CFWL_Widget* pWidget) override;
23 void DrawBackground(CFWL_ThemeBackground* pParams) override; 23 void DrawBackground(CFWL_ThemeBackground* pParams) override;
24 void* GetCapacity(CFWL_ThemePart* pThemePart, 24 void* GetCapacity(CFWL_ThemePart* pThemePart,
25 CFWL_WidgetCapacity dwCapacity) override; 25 CFWL_WidgetCapacity dwCapacity) override;
26 26
27 protected: 27 protected:
28 struct PBThemeData { 28 struct PBThemeData {
29 FX_ARGB clrBorder[5]; 29 FX_ARGB clrBorder[5];
30 FX_ARGB clrStart[5]; 30 FX_ARGB clrStart[5];
31 FX_ARGB clrEnd[5]; 31 FX_ARGB clrEnd[5];
32 FX_ARGB clrFill[5]; 32 FX_ARGB clrFill[5];
33 }; 33 };
34 34
35 void SetTopLineColor(uint32_t* pData); 35 void SetTopLineColor(uint32_t* pData);
36 void SetLeftLineColor(uint32_t* pData); 36 void SetLeftLineColor(uint32_t* pData);
37 void SetRightLineColor(uint32_t* pData); 37 void SetRightLineColor(uint32_t* pData);
38 void SetBottomLineColor(uint32_t* pData); 38 void SetBottomLineColor(uint32_t* pData);
39 void SetBackgroudColor(uint32_t* pData); 39 void SetBackgroudColor(uint32_t* pData);
40 void SetCaptionColor(uint32_t* pData); 40 void SetCaptionColor(uint32_t* pData);
41 void SetCornerColor(uint32_t* pData); 41 void SetCornerColor(uint32_t* pData);
42 42
43 int32_t GetColorID(uint32_t dwStates) const; 43 int32_t GetColorID(uint32_t dwStates) const;
44 44
45 std::unique_ptr<PBThemeData> m_pThemeData; 45 std::unique_ptr<PBThemeData> m_pThemeData;
46 46
47 private: 47 private:
48 void SetThemeData(); 48 void SetThemeData();
49 }; 49 };
50 50
51 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_ 51 #endif // XFA_FWL_THEME_CFWL_PUSHBUTTONTP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698