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

Side by Side Diff: xfa/fwl/basewidget/fwl_pictureboximp.cpp

Issue 1921853006: More FWL interface cleanup. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 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
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/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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698