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

Side by Side Diff: xfa/include/fwl/theme/pushbuttontp.h

Issue 1087053002: Merge to XFA: Kill CFX_Object. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 8 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/include/fwl/theme/monthcalendartp.h ('k') | xfa/include/fwl/theme/scrollbartp.h » ('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 _FWL_PUSHBUTTONTP_H 7 #ifndef _FWL_PUSHBUTTONTP_H
8 #define _FWL_PUSHBUTTONTP_H 8 #define _FWL_PUSHBUTTONTP_H
9 class CFWL_WidgetTP; 9 class CFWL_WidgetTP;
10 class CFWL_PushButtonTP; 10 class CFWL_PushButtonTP;
(...skipping 12 matching lines...) Expand all
23 void SetThemeData(FX_DWORD dwID); 23 void SetThemeData(FX_DWORD dwID);
24 void SetTopLineColor(FX_DWORD *pData); 24 void SetTopLineColor(FX_DWORD *pData);
25 void SetLeftLineColor(FX_DWORD *pData); 25 void SetLeftLineColor(FX_DWORD *pData);
26 void SetRightLineColor(FX_DWORD *pData); 26 void SetRightLineColor(FX_DWORD *pData);
27 void SetBottomLineColor(FX_DWORD *pData); 27 void SetBottomLineColor(FX_DWORD *pData);
28 void SetBackgroudColor(FX_DWORD *pData); 28 void SetBackgroudColor(FX_DWORD *pData);
29 void SetCaptionColor(FX_DWORD *pData); 29 void SetCaptionColor(FX_DWORD *pData);
30 void SetCornerColor(FX_DWORD *pData); 30 void SetCornerColor(FX_DWORD *pData);
31 FX_INT32 GetColorID(FX_DWORD dwStates); 31 FX_INT32 GetColorID(FX_DWORD dwStates);
32 32
33 struct PBThemeData : CFX_Object { 33 struct PBThemeData {
34 public:
35 FX_ARGB clrBorder[5]; 34 FX_ARGB clrBorder[5];
36 FX_ARGB clrStart[5]; 35 FX_ARGB clrStart[5];
37 FX_ARGB clrEnd[5]; 36 FX_ARGB clrEnd[5];
38 FX_ARGB clrFill[5]; 37 FX_ARGB clrFill[5];
39 } *m_pThemeData; 38 } *m_pThemeData;
40 }; 39 };
41 #endif 40 #endif
OLDNEW
« no previous file with comments | « xfa/include/fwl/theme/monthcalendartp.h ('k') | xfa/include/fwl/theme/scrollbartp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698