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

Side by Side Diff: xfa/fwl/core/cfwl_themepart.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 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_THEMEPART_H_ 7 #ifndef XFA_FWL_CORE_CFWL_THEMEPART_H_
8 #define XFA_FWL_CORE_CFWL_THEMEPART_H_ 8 #define XFA_FWL_CORE_CFWL_THEMEPART_H_
9 9
10 #include "core/fxcrt/fx_coordinates.h" 10 #include "core/fxcrt/fx_coordinates.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 CFWL_PartState_Hovered = 1 << 7, 70 CFWL_PartState_Hovered = 1 << 7,
71 CFWL_PartState_Inactive = 1 << 8, 71 CFWL_PartState_Inactive = 1 << 8,
72 CFWL_PartState_Neutral = 1 << 9, 72 CFWL_PartState_Neutral = 1 << 9,
73 CFWL_PartState_Pressed = 1 << 10, 73 CFWL_PartState_Pressed = 1 << 10,
74 CFWL_PartState_ReadOnly = 1 << 11, 74 CFWL_PartState_ReadOnly = 1 << 11,
75 CFWL_PartState_LSelected = 1 << 12, 75 CFWL_PartState_LSelected = 1 << 12,
76 CFWL_PartState_RSelected = 1 << 13, 76 CFWL_PartState_RSelected = 1 << 13,
77 CFWL_PartState_Selected = 1 << 14 77 CFWL_PartState_Selected = 1 << 14
78 }; 78 };
79 79
80 class IFWL_Widget; 80 class CFWL_Widget;
81 81
82 class CFWL_ThemePart { 82 class CFWL_ThemePart {
83 public: 83 public:
84 CFWL_ThemePart(); 84 CFWL_ThemePart();
85 85
86 CFX_Matrix m_matrix; 86 CFX_Matrix m_matrix;
87 CFX_RectF m_rtPart; 87 CFX_RectF m_rtPart;
88 IFWL_Widget* m_pWidget; 88 CFWL_Widget* m_pWidget;
89 CFWL_Part m_iPart; 89 CFWL_Part m_iPart;
90 uint32_t m_dwStates; 90 uint32_t m_dwStates;
91 bool m_bMaximize; 91 bool m_bMaximize;
92 bool m_bStaticBackground; 92 bool m_bStaticBackground;
93 void* m_pData; 93 void* m_pData;
94 }; 94 };
95 95
96 #endif // XFA_FWL_CORE_CFWL_THEMEPART_H_ 96 #endif // XFA_FWL_CORE_CFWL_THEMEPART_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698