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