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

Side by Side Diff: xfa/src/fwl/src/core/fwl_gridimp.cpp

Issue 1746053003: Remove foxitlib.h and foxitxfa.h and IWYU. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Review cleanup 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/src/fwl/src/core/fwl_formimp.cpp ('k') | xfa/src/fwl/src/core/fwl_noteimp.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 #include "xfa/src/foxitlib.h" 7 #include "xfa/src/fwl/src/core/include/fwl_gridimp.h"
8
8 #include "xfa/src/fwl/src/core/include/fwl_contentimp.h" 9 #include "xfa/src/fwl/src/core/include/fwl_contentimp.h"
9 #include "xfa/src/fwl/src/core/include/fwl_gridimp.h"
10 #include "xfa/src/fwl/src/core/include/fwl_noteimp.h" 10 #include "xfa/src/fwl/src/core/include/fwl_noteimp.h"
11 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h" 11 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h"
12 #include "xfa/src/fwl/src/core/include/fwl_threadimp.h" 12 #include "xfa/src/fwl/src/core/include/fwl_threadimp.h"
13 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h" 13 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h"
14 14
15 // static 15 // static
16 IFWL_Grid* IFWL_Grid::Create(const CFWL_WidgetImpProperties& properties) { 16 IFWL_Grid* IFWL_Grid::Create(const CFWL_WidgetImpProperties& properties) {
17 IFWL_Grid* pGrid = new IFWL_Grid; 17 IFWL_Grid* pGrid = new IFWL_Grid;
18 CFWL_GridImp* pGridImpl = new CFWL_GridImp(properties, nullptr); 18 CFWL_GridImp* pGridImpl = new CFWL_GridImp(properties, nullptr);
19 pGrid->SetImpl(pGridImpl); 19 pGrid->SetImpl(pGridImpl);
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1370 CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage); 1370 CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage);
1371 if (pMsg->m_dwCmd != FWL_MSGMOUSECMD_LButtonDown) { 1371 if (pMsg->m_dwCmd != FWL_MSGMOUSECMD_LButtonDown) {
1372 return 0; 1372 return 0;
1373 } 1373 }
1374 return 1; 1374 return 1;
1375 } 1375 }
1376 FWL_ERR CFWL_GridImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, 1376 FWL_ERR CFWL_GridImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics,
1377 const CFX_Matrix* pMatrix) { 1377 const CFX_Matrix* pMatrix) {
1378 return m_pOwner->DrawWidget(pGraphics, pMatrix); 1378 return m_pOwner->DrawWidget(pGraphics, pMatrix);
1379 } 1379 }
OLDNEW
« no previous file with comments | « xfa/src/fwl/src/core/fwl_formimp.cpp ('k') | xfa/src/fwl/src/core/fwl_noteimp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698