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/core/fwl_panelimp.h" | 7 #include "xfa/src/fwl/core/fwl_panelimp.h" |
8 | 8 |
9 #include "xfa/include/fwl/core/fwl_content.h" | 9 #include "xfa/include/fwl/core/fwl_content.h" |
10 #include "xfa/include/fwl/core/fwl_grid.h" | 10 #include "xfa/include/fwl/core/fwl_grid.h" |
11 #include "xfa/include/fwl/core/fwl_panel.h" | 11 #include "xfa/include/fwl/core/fwl_panel.h" |
12 #include "xfa/src/fwl/src/core/fwl_noteimp.h" | 12 #include "xfa/src/fwl/core/fwl_noteimp.h" |
13 #include "xfa/src/fwl/src/core/fwl_targetimp.h" | 13 #include "xfa/src/fwl/core/fwl_targetimp.h" |
14 #include "xfa/src/fwl/src/core/fwl_widgetimp.h" | 14 #include "xfa/src/fwl/core/fwl_widgetimp.h" |
15 #include "xfa/src/fwl/src/core/fwl_widgetmgrimp.h" | 15 #include "xfa/src/fwl/core/fwl_widgetmgrimp.h" |
16 | 16 |
17 // static | 17 // static |
18 IFWL_Panel* IFWL_Panel::Create(CFWL_WidgetImpProperties& properties, | 18 IFWL_Panel* IFWL_Panel::Create(CFWL_WidgetImpProperties& properties, |
19 IFWL_Widget* pOuter) { | 19 IFWL_Widget* pOuter) { |
20 IFWL_Panel* pPanel = new IFWL_Panel; | 20 IFWL_Panel* pPanel = new IFWL_Panel; |
21 CFWL_PanelImp* pPanelImpl = new CFWL_PanelImp(properties, pOuter); | 21 CFWL_PanelImp* pPanelImpl = new CFWL_PanelImp(properties, pOuter); |
22 pPanel->SetImpl(pPanelImpl); | 22 pPanel->SetImpl(pPanelImpl); |
23 pPanelImpl->SetInterface(pPanel); | 23 pPanelImpl->SetInterface(pPanel); |
24 return pPanel; | 24 return pPanel; |
25 } | 25 } |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 IFWL_CustomPanel::IFWL_CustomPanel() {} | 143 IFWL_CustomPanel::IFWL_CustomPanel() {} |
144 IFWL_Content* IFWL_CustomPanel::GetContent() { | 144 IFWL_Content* IFWL_CustomPanel::GetContent() { |
145 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->GetContent(); | 145 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->GetContent(); |
146 } | 146 } |
147 FWL_ERR IFWL_CustomPanel::SetContent(IFWL_Content* pContent) { | 147 FWL_ERR IFWL_CustomPanel::SetContent(IFWL_Content* pContent) { |
148 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetContent(pContent); | 148 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetContent(pContent); |
149 } | 149 } |
150 FWL_ERR IFWL_CustomPanel::SetProxy(IFWL_Proxy* pProxy) { | 150 FWL_ERR IFWL_CustomPanel::SetProxy(IFWL_Proxy* pProxy) { |
151 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetProxy(pProxy); | 151 return static_cast<CFWL_CustomPanelImp*>(GetImpl())->SetProxy(pProxy); |
152 } | 152 } |
OLD | NEW |