| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 // Copyright 2014 PDFium Authors. All rights reserved. | 
|  | 2 // Use of this source code is governed by a BSD-style license that can be | 
|  | 3 // found in the LICENSE file. | 
|  | 4 | 
|  | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 
|  | 6 | 
|  | 7 #include "xfa/fwl/core/ifwl_formproxy.h" | 
|  | 8 | 
|  | 9 #include "xfa/fwl/core/fwl_noteimp.h" | 
|  | 10 | 
|  | 11 // static | 
|  | 12 IFWL_FormProxy* IFWL_FormProxy::Create(CFWL_WidgetImpProperties& properties, | 
|  | 13                                        IFWL_Widget* pOuter) { | 
|  | 14   return new IFWL_FormProxy(properties, pOuter); | 
|  | 15 } | 
|  | 16 | 
|  | 17 IFWL_FormProxy::IFWL_FormProxy(const CFWL_WidgetImpProperties& properties, | 
|  | 18                                IFWL_Widget* pOuter) | 
|  | 19     : IFWL_Form(properties, pOuter) {} | 
|  | 20 | 
|  | 21 IFWL_FormProxy::~IFWL_FormProxy() {} | 
|  | 22 | 
|  | 23 FWL_Error IFWL_FormProxy::GetClassName(CFX_WideString& wsClass) const { | 
|  | 24   wsClass = FWL_CLASS_FormProxy; | 
|  | 25   return FWL_Error::Succeeded; | 
|  | 26 } | 
|  | 27 | 
|  | 28 FWL_Type IFWL_FormProxy::GetClassID() const { | 
|  | 29   return FWL_Type::FormProxy; | 
|  | 30 } | 
|  | 31 | 
|  | 32 FX_BOOL IFWL_FormProxy::IsInstance(const CFX_WideStringC& wsClass) const { | 
|  | 33   if (wsClass == CFX_WideStringC(FWL_CLASS_FormProxy)) { | 
|  | 34     return TRUE; | 
|  | 35   } | 
|  | 36   return IFWL_Form::IsInstance(wsClass); | 
|  | 37 } | 
|  | 38 | 
|  | 39 FWL_Error IFWL_FormProxy::Initialize() { | 
|  | 40   if (IFWL_Widget::Initialize() != FWL_Error::Succeeded) | 
|  | 41     return FWL_Error::Indefinite; | 
|  | 42   m_pDelegate = new CFWL_FormProxyImpDelegate(this); | 
|  | 43   return FWL_Error::Succeeded; | 
|  | 44 } | 
|  | 45 | 
|  | 46 FWL_Error IFWL_FormProxy::Finalize() { | 
|  | 47   delete m_pDelegate; | 
|  | 48   m_pDelegate = nullptr; | 
|  | 49   return IFWL_Widget::Finalize(); | 
|  | 50 } | 
|  | 51 | 
|  | 52 FWL_Error IFWL_FormProxy::Update() { | 
|  | 53   return FWL_Error::Succeeded; | 
|  | 54 } | 
|  | 55 | 
|  | 56 FWL_Error IFWL_FormProxy::DrawWidget(CFX_Graphics* pGraphics, | 
|  | 57                                      const CFX_Matrix* pMatrix) { | 
|  | 58   return FWL_Error::Succeeded; | 
|  | 59 } | 
|  | 60 | 
|  | 61 CFWL_FormProxyImpDelegate::CFWL_FormProxyImpDelegate(IFWL_FormProxy* pOwner) | 
|  | 62     : m_pOwner(pOwner) {} | 
|  | 63 | 
|  | 64 void CFWL_FormProxyImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { | 
|  | 65   IFWL_WidgetDelegate* pDelegate = m_pOwner->m_pOuter->SetDelegate(nullptr); | 
|  | 66   pDelegate->OnProcessMessage(pMessage); | 
|  | 67 } | 
| OLD | NEW | 
|---|