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