OLD | NEW |
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_CORE_FWL_FORMIMP_H_ | 7 #ifndef XFA_FWL_CORE_FWL_FORMIMP_H_ |
8 #define XFA_FWL_CORE_FWL_FORMIMP_H_ | 8 #define XFA_FWL_CORE_FWL_FORMIMP_H_ |
9 | 9 |
10 #include "xfa/fwl/core/fwl_widgetimp.h" | 10 #include "xfa/fwl/core/fwl_widgetimp.h" |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 CFWL_SysBtn* m_pCaptionBox; | 153 CFWL_SysBtn* m_pCaptionBox; |
154 CFWL_NoteLoop* m_pNoteLoop; | 154 CFWL_NoteLoop* m_pNoteLoop; |
155 CFWL_WidgetImp* m_pSubFocus; | 155 CFWL_WidgetImp* m_pSubFocus; |
156 RestoreInfo m_InfoStart; | 156 RestoreInfo m_InfoStart; |
157 FX_FLOAT m_fCXBorder; | 157 FX_FLOAT m_fCXBorder; |
158 FX_FLOAT m_fCYBorder; | 158 FX_FLOAT m_fCYBorder; |
159 int32_t m_iCaptureBtn; | 159 int32_t m_iCaptureBtn; |
160 int32_t m_iSysBox; | 160 int32_t m_iSysBox; |
161 int32_t m_eResizeType; | 161 int32_t m_eResizeType; |
162 FX_BOOL m_bLButtonDown; | 162 FX_BOOL m_bLButtonDown; |
163 FX_BOOL m_bMaximized; | 163 bool m_bMaximized; |
164 FX_BOOL m_bSetMaximize; | 164 FX_BOOL m_bSetMaximize; |
165 FX_BOOL m_bCustomizeLayout; | 165 FX_BOOL m_bCustomizeLayout; |
166 FWL_FORMSIZE m_eFormSize; | 166 FWL_FORMSIZE m_eFormSize; |
167 FX_BOOL m_bDoModalFlag; | 167 FX_BOOL m_bDoModalFlag; |
168 FX_FLOAT m_fSmallIconSz; | 168 FX_FLOAT m_fSmallIconSz; |
169 FX_FLOAT m_fBigIconSz; | 169 FX_FLOAT m_fBigIconSz; |
170 CFX_DIBitmap* m_pBigIcon; | 170 CFX_DIBitmap* m_pBigIcon; |
171 CFX_DIBitmap* m_pSmallIcon; | 171 CFX_DIBitmap* m_pSmallIcon; |
172 FX_BOOL m_bMouseIn; | 172 FX_BOOL m_bMouseIn; |
173 friend class CFWL_FormImpDelegate; | 173 friend class CFWL_FormImpDelegate; |
(...skipping 13 matching lines...) Expand all Loading... |
187 void OnMouseMove(CFWL_MsgMouse* pMsg); | 187 void OnMouseMove(CFWL_MsgMouse* pMsg); |
188 void OnMouseHover(CFWL_MsgMouse* pMsg); | 188 void OnMouseHover(CFWL_MsgMouse* pMsg); |
189 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 189 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
190 void OnLButtonDblClk(CFWL_MsgMouse* pMsg); | 190 void OnLButtonDblClk(CFWL_MsgMouse* pMsg); |
191 void OnWindowMove(CFWL_MsgWindowMove* pMsg); | 191 void OnWindowMove(CFWL_MsgWindowMove* pMsg); |
192 void OnClose(CFWL_MsgClose* pMsg); | 192 void OnClose(CFWL_MsgClose* pMsg); |
193 CFWL_FormImp* m_pOwner; | 193 CFWL_FormImp* m_pOwner; |
194 }; | 194 }; |
195 | 195 |
196 #endif // XFA_FWL_CORE_FWL_FORMIMP_H_ | 196 #endif // XFA_FWL_CORE_FWL_FORMIMP_H_ |
OLD | NEW |