| 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/basewidget/include/fwl_pictureboximp.h" | 7 #include "xfa/src/fwl/src/basewidget/include/fwl_pictureboximp.h" |
| 8 | 8 |
| 9 #include "xfa/include/fwl/lightwidget/picturebox.h" | 9 #include "xfa/include/fwl/lightwidget/picturebox.h" |
| 10 #include "xfa/src/foxitlib.h" | |
| 11 #include "xfa/src/fwl/src/core/include/fwl_noteimp.h" | 10 #include "xfa/src/fwl/src/core/include/fwl_noteimp.h" |
| 12 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h" | 11 #include "xfa/src/fwl/src/core/include/fwl_targetimp.h" |
| 13 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h" | 12 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h" |
| 14 | 13 |
| 15 // static | 14 // static |
| 16 IFWL_PictureBox* IFWL_PictureBox::Create( | 15 IFWL_PictureBox* IFWL_PictureBox::Create( |
| 17 const CFWL_WidgetImpProperties& properties, | 16 const CFWL_WidgetImpProperties& properties, |
| 18 IFWL_Widget* pOuter) { | 17 IFWL_Widget* pOuter) { |
| 19 IFWL_PictureBox* pPictureBox = new IFWL_PictureBox; | 18 IFWL_PictureBox* pPictureBox = new IFWL_PictureBox; |
| 20 CFWL_PictureBoxImp* pPictureBoxImpl = | 19 CFWL_PictureBoxImp* pPictureBoxImpl = |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 } | 142 } |
| 144 return FALSE; | 143 return FALSE; |
| 145 } | 144 } |
| 146 CFWL_PictureBoxImpDelegate::CFWL_PictureBoxImpDelegate( | 145 CFWL_PictureBoxImpDelegate::CFWL_PictureBoxImpDelegate( |
| 147 CFWL_PictureBoxImp* pOwner) | 146 CFWL_PictureBoxImp* pOwner) |
| 148 : m_pOwner(pOwner) {} | 147 : m_pOwner(pOwner) {} |
| 149 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, | 148 FWL_ERR CFWL_PictureBoxImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, |
| 150 const CFX_Matrix* pMatrix) { | 149 const CFX_Matrix* pMatrix) { |
| 151 return m_pOwner->DrawWidget(pGraphics, pMatrix); | 150 return m_pOwner->DrawWidget(pGraphics, pMatrix); |
| 152 } | 151 } |
| OLD | NEW |