| 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 #include "xfa/src/fwl/src/core/fwl_gridimp.h" | 7 #include "xfa/src/fwl/core/fwl_gridimp.h" |
| 8 | 8 |
| 9 #include "xfa/src/fwl/src/core/fwl_contentimp.h" | 9 #include "xfa/src/fwl/core/fwl_contentimp.h" |
| 10 #include "xfa/src/fwl/src/core/fwl_noteimp.h" | 10 #include "xfa/src/fwl/core/fwl_noteimp.h" |
| 11 #include "xfa/src/fwl/src/core/fwl_targetimp.h" | 11 #include "xfa/src/fwl/core/fwl_targetimp.h" |
| 12 #include "xfa/src/fwl/src/core/fwl_threadimp.h" | 12 #include "xfa/src/fwl/core/fwl_threadimp.h" |
| 13 #include "xfa/src/fwl/src/core/fwl_widgetimp.h" | 13 #include "xfa/src/fwl/core/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); |
| 20 pGridImpl->SetInterface(pGrid); | 20 pGridImpl->SetInterface(pGrid); |
| 21 return pGrid; | 21 return pGrid; |
| 22 } | 22 } |
| 23 IFWL_Grid::IFWL_Grid() {} | 23 IFWL_Grid::IFWL_Grid() {} |
| (...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1354 FX_FLOAT fSize = fPerSize * pColRow->m_Size.fLength; | 1354 FX_FLOAT fSize = fPerSize * pColRow->m_Size.fLength; |
| 1355 pColRow->m_fActualSize = fSize; | 1355 pColRow->m_fActualSize = fSize; |
| 1356 } | 1356 } |
| 1357 } else { | 1357 } else { |
| 1358 SetScaledColRowsSize(autoNoMinMaxs, fTotalSize, fTotalScaledNum); | 1358 SetScaledColRowsSize(autoNoMinMaxs, fTotalSize, fTotalScaledNum); |
| 1359 } | 1359 } |
| 1360 } else { | 1360 } else { |
| 1361 } | 1361 } |
| 1362 } | 1362 } |
| 1363 CFWL_GridImpDelegate::CFWL_GridImpDelegate(CFWL_GridImp* pOwner) | 1363 CFWL_GridImpDelegate::CFWL_GridImpDelegate(CFWL_GridImp* pOwner) |
| 1364 : m_pOwner(pOwner) { | 1364 : m_pOwner(pOwner) {} |
| 1365 } | |
| 1366 int32_t CFWL_GridImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { | 1365 int32_t CFWL_GridImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { |
| 1367 if (pMessage->GetClassID() != FWL_MSGHASH_Mouse) { | 1366 if (pMessage->GetClassID() != FWL_MSGHASH_Mouse) { |
| 1368 return 0; | 1367 return 0; |
| 1369 } | 1368 } |
| 1370 CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage); | 1369 CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage); |
| 1371 if (pMsg->m_dwCmd != FWL_MSGMOUSECMD_LButtonDown) { | 1370 if (pMsg->m_dwCmd != FWL_MSGMOUSECMD_LButtonDown) { |
| 1372 return 0; | 1371 return 0; |
| 1373 } | 1372 } |
| 1374 return 1; | 1373 return 1; |
| 1375 } | 1374 } |
| 1376 FWL_ERR CFWL_GridImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, | 1375 FWL_ERR CFWL_GridImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, |
| 1377 const CFX_Matrix* pMatrix) { | 1376 const CFX_Matrix* pMatrix) { |
| 1378 return m_pOwner->DrawWidget(pGraphics, pMatrix); | 1377 return m_pOwner->DrawWidget(pGraphics, pMatrix); |
| 1379 } | 1378 } |
| OLD | NEW |