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

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

Issue 2017863002: Fix MSVC C4800 build warnings. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: put C4800 back Created 4 years, 6 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 | « fpdfsdk/fsdk_baseform.cpp ('k') | xfa/fwl/core/fwl_formimp.cpp » ('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 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
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
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_
OLDNEW
« no previous file with comments | « fpdfsdk/fsdk_baseform.cpp ('k') | xfa/fwl/core/fwl_formimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698