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

Side by Side Diff: xfa/fwl/core/fwl_panelimp.cpp

Issue 1827923002: Move xfa/include/fwl/{core,basewidget} to xfa/fwl/{core,basewidget}. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 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/core/fwl_noteimp.cpp ('k') | xfa/fwl/core/fwl_sdadapterimp.h » ('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/core/fwl_panelimp.h" 7 #include "xfa/fwl/core/fwl_panelimp.h"
8 8
9 #include "xfa/fwl/core/cfwl_widgetimpproperties.h"
9 #include "xfa/fwl/core/fwl_noteimp.h" 10 #include "xfa/fwl/core/fwl_noteimp.h"
10 #include "xfa/fwl/core/fwl_targetimp.h" 11 #include "xfa/fwl/core/fwl_targetimp.h"
11 #include "xfa/fwl/core/fwl_widgetimp.h" 12 #include "xfa/fwl/core/fwl_widgetimp.h"
12 #include "xfa/fwl/core/fwl_widgetmgrimp.h" 13 #include "xfa/fwl/core/fwl_widgetmgrimp.h"
13 #include "xfa/include/fwl/core/fwl_content.h" 14 #include "xfa/fwl/core/ifwl_content.h"
14 #include "xfa/include/fwl/core/fwl_grid.h" 15 #include "xfa/fwl/core/ifwl_custompanel.h"
15 #include "xfa/include/fwl/core/fwl_panel.h" 16 #include "xfa/fwl/core/ifwl_grid.h"
17 #include "xfa/fwl/core/ifwl_panel.h"
18 #include "xfa/fwl/core/ifwl_proxy.h"
16 19
17 // static 20 // static
18 IFWL_Panel* IFWL_Panel::Create(CFWL_WidgetImpProperties& properties, 21 IFWL_Panel* IFWL_Panel::Create(CFWL_WidgetImpProperties& properties,
19 IFWL_Widget* pOuter) { 22 IFWL_Widget* pOuter) {
20 IFWL_Panel* pPanel = new IFWL_Panel; 23 IFWL_Panel* pPanel = new IFWL_Panel;
21 CFWL_PanelImp* pPanelImpl = new CFWL_PanelImp(properties, pOuter); 24 CFWL_PanelImp* pPanelImpl = new CFWL_PanelImp(properties, pOuter);
22 pPanel->SetImpl(pPanelImpl); 25 pPanel->SetImpl(pPanelImpl);
23 pPanelImpl->SetInterface(pPanel); 26 pPanelImpl->SetInterface(pPanel);
24 return pPanel; 27 return pPanel;
25 } 28 }
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 IFWL_CustomPanel::IFWL_CustomPanel() {} 146 IFWL_CustomPanel::IFWL_CustomPanel() {}
144 IFWL_Content* IFWL_CustomPanel::GetContent() { 147 IFWL_Content* IFWL_CustomPanel::GetContent() {
145 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->GetContent(); 148 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->GetContent();
146 } 149 }
147 FWL_ERR IFWL_CustomPanel::SetContent(IFWL_Content* pContent) { 150 FWL_ERR IFWL_CustomPanel::SetContent(IFWL_Content* pContent) {
148 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetContent(pContent); 151 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetContent(pContent);
149 } 152 }
150 FWL_ERR IFWL_CustomPanel::SetProxy(IFWL_Proxy* pProxy) { 153 FWL_ERR IFWL_CustomPanel::SetProxy(IFWL_Proxy* pProxy) {
151 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetProxy(pProxy); 154 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetProxy(pProxy);
152 } 155 }
OLDNEW
« no previous file with comments | « xfa/fwl/core/fwl_noteimp.cpp ('k') | xfa/fwl/core/fwl_sdadapterimp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698