OLD | NEW |
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/include/fx_coordinates.h" | 10 #include "core/fxcrt/include/fx_coordinates.h" |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 IFWL_Widget; |
81 | 81 |
82 class CFWL_ThemePart { | 82 class CFWL_ThemePart { |
83 public: | 83 public: |
84 CFWL_ThemePart() | 84 CFWL_ThemePart(); |
85 : m_pWidget(nullptr), | |
86 m_iPart(CFWL_Part::None), | |
87 m_dwStates(CFWL_PartState_Normal), | |
88 m_bMaximize(false), | |
89 m_bStaticBackground(false), | |
90 m_pData(nullptr) { | |
91 m_rtPart.Reset(); | |
92 m_matrix.SetIdentity(); | |
93 } | |
94 | 85 |
95 CFX_Matrix m_matrix; | 86 CFX_Matrix m_matrix; |
96 CFX_RectF m_rtPart; | 87 CFX_RectF m_rtPart; |
97 IFWL_Widget* m_pWidget; | 88 IFWL_Widget* m_pWidget; |
98 CFWL_Part m_iPart; | 89 CFWL_Part m_iPart; |
99 uint32_t m_dwStates; | 90 uint32_t m_dwStates; |
100 bool m_bMaximize; | 91 bool m_bMaximize; |
101 bool m_bStaticBackground; | 92 bool m_bStaticBackground; |
102 void* m_pData; | 93 void* m_pData; |
103 }; | 94 }; |
104 | 95 |
| 96 inline CFWL_ThemePart::CFWL_ThemePart() |
| 97 : m_pWidget(nullptr), |
| 98 m_iPart(CFWL_Part::None), |
| 99 m_dwStates(CFWL_PartState_Normal), |
| 100 m_bMaximize(false), |
| 101 m_bStaticBackground(false), |
| 102 m_pData(nullptr) { |
| 103 m_rtPart.Reset(); |
| 104 m_matrix.SetIdentity(); |
| 105 } |
| 106 |
105 #endif // XFA_FWL_CORE_CFWL_THEMEPART_H_ | 107 #endif // XFA_FWL_CORE_CFWL_THEMEPART_H_ |
OLD | NEW |