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

Side by Side Diff: xfa/fwl/core/cfwl_widgetimpproperties.h

Issue 1835703002: Remove FX_DWORD from XFA, part 2 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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/core/cfwl_themetext.h ('k') | xfa/fwl/core/fwl_formimp.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 2016 PDFium Authors. All rights reserved. 1 // Copyright 2016 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_CORE_CFWL_WIDGETIMPPROPERTIES_H_ 7 #ifndef XFA_FWL_CORE_CFWL_WIDGETIMPPROPERTIES_H_
8 #define XFA_FWL_CORE_CFWL_WIDGETIMPPROPERTIES_H_ 8 #define XFA_FWL_CORE_CFWL_WIDGETIMPPROPERTIES_H_
9 9
10 #include "core/fxcrt/include/fx_coordinates.h" 10 #include "core/fxcrt/include/fx_coordinates.h"
(...skipping 13 matching lines...) Expand all
24 m_pThemeProvider(nullptr), 24 m_pThemeProvider(nullptr),
25 m_pDataProvider(nullptr), 25 m_pDataProvider(nullptr),
26 m_pParent(nullptr), 26 m_pParent(nullptr),
27 m_pOwner(nullptr) { 27 m_pOwner(nullptr) {
28 m_ctmOnParent.SetIdentity(); 28 m_ctmOnParent.SetIdentity();
29 m_rtWidget.Set(0, 0, 0, 0); 29 m_rtWidget.Set(0, 0, 0, 0);
30 } 30 }
31 31
32 CFX_Matrix m_ctmOnParent; 32 CFX_Matrix m_ctmOnParent;
33 CFX_RectF m_rtWidget; 33 CFX_RectF m_rtWidget;
34 FX_DWORD m_dwStyles; 34 uint32_t m_dwStyles;
35 FX_DWORD m_dwStyleExes; 35 uint32_t m_dwStyleExes;
36 FX_DWORD m_dwStates; 36 uint32_t m_dwStates;
37 IFWL_ThemeProvider* m_pThemeProvider; 37 IFWL_ThemeProvider* m_pThemeProvider;
38 IFWL_DataProvider* m_pDataProvider; 38 IFWL_DataProvider* m_pDataProvider;
39 IFWL_Widget* m_pParent; 39 IFWL_Widget* m_pParent;
40 IFWL_Widget* m_pOwner; 40 IFWL_Widget* m_pOwner;
41 }; 41 };
42 42
43 #endif // XFA_FWL_CORE_CFWL_WIDGETIMPPROPERTIES_H_ 43 #endif // XFA_FWL_CORE_CFWL_WIDGETIMPPROPERTIES_H_
OLDNEW
« no previous file with comments | « xfa/fwl/core/cfwl_themetext.h ('k') | xfa/fwl/core/fwl_formimp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698