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

Side by Side Diff: xfa/fwl/basewidget/fwl_caretimp.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
« no previous file with comments | « xfa/fwl/basewidget/fwl_barcodeimp.cpp ('k') | xfa/fwl/basewidget/fwl_checkboximp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_caretimp.h" 7 #include "xfa/fwl/basewidget/fwl_caretimp.h"
8 8
9 #include "xfa/fwl/basewidget/ifwl_caret.h" 9 #include "xfa/fwl/basewidget/ifwl_caret.h"
10 #include "xfa/fwl/core/cfwl_themebackground.h" 10 #include "xfa/fwl/core/cfwl_themebackground.h"
11 #include "xfa/fwl/core/fwl_noteimp.h" 11 #include "xfa/fwl/core/fwl_noteimp.h"
12 #include "xfa/fwl/core/fwl_targetimp.h"
13 #include "xfa/fwl/core/fwl_widgetimp.h" 12 #include "xfa/fwl/core/fwl_widgetimp.h"
14 #include "xfa/fwl/core/ifwl_themeprovider.h" 13 #include "xfa/fwl/core/ifwl_themeprovider.h"
15 14
16 // static 15 // static
17 IFWL_Caret* IFWL_Caret::Create(const CFWL_WidgetImpProperties& properties, 16 IFWL_Caret* IFWL_Caret::Create(const CFWL_WidgetImpProperties& properties,
18 IFWL_Widget* pOuter) { 17 IFWL_Widget* pOuter) {
19 IFWL_Caret* pCaret = new IFWL_Caret; 18 IFWL_Caret* pCaret = new IFWL_Caret;
20 CFWL_CaretImp* pCaretImpl = new CFWL_CaretImp(properties, pOuter); 19 CFWL_CaretImp* pCaretImpl = new CFWL_CaretImp(properties, pOuter);
21 pCaret->SetImpl(pCaretImpl); 20 pCaret->SetImpl(pCaretImpl);
22 pCaretImpl->SetInterface(pCaret); 21 pCaretImpl->SetInterface(pCaret);
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 } 148 }
150 CFWL_CaretImpDelegate::CFWL_CaretImpDelegate(CFWL_CaretImp* pOwner) 149 CFWL_CaretImpDelegate::CFWL_CaretImpDelegate(CFWL_CaretImp* pOwner)
151 : m_pOwner(pOwner) {} 150 : m_pOwner(pOwner) {}
152 int32_t CFWL_CaretImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { 151 int32_t CFWL_CaretImpDelegate::OnProcessMessage(CFWL_Message* pMessage) {
153 return 1; 152 return 1;
154 } 153 }
155 FWL_ERR CFWL_CaretImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics, 154 FWL_ERR CFWL_CaretImpDelegate::OnDrawWidget(CFX_Graphics* pGraphics,
156 const CFX_Matrix* pMatrix) { 155 const CFX_Matrix* pMatrix) {
157 return m_pOwner->DrawWidget(pGraphics, pMatrix); 156 return m_pOwner->DrawWidget(pGraphics, pMatrix);
158 } 157 }
OLDNEW
« no previous file with comments | « xfa/fwl/basewidget/fwl_barcodeimp.cpp ('k') | xfa/fwl/basewidget/fwl_checkboximp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698