summaryrefslogtreecommitdiff
path: root/xfa/src/fwl/src/basewidget/fwl_formproxyimp.cpp
blob: 6ecfeeeb0fee319433878faca7a52e3d86f103f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#include "../../../foxitlib.h"
#include "../core/include/fwl_targetimp.h"
#include "../core/include/fwl_noteimp.h"
#include "../core/include/fwl_widgetimp.h"
#include "../core/include/fwl_panelimp.h"
#include "../core/include/fwl_formimp.h"
#include "include/fwl_formproxyimp.h"
CFWL_FormProxyImp::CFWL_FormProxyImp(IFWL_Widget *pOuter )
    : CFWL_FormImp(pOuter)
{
}
CFWL_FormProxyImp::CFWL_FormProxyImp(const CFWL_WidgetImpProperties &properties, IFWL_Widget *pOuter )
    : CFWL_FormImp(properties, pOuter)
{
}
CFWL_FormProxyImp::~CFWL_FormProxyImp()
{
}
FWL_ERR CFWL_FormProxyImp::GetClassName(CFX_WideString &wsClass) const
{
    wsClass = FWL_CLASS_FormProxy;
    return FWL_ERR_Succeeded;
}
FX_DWORD CFWL_FormProxyImp::GetClassID() const
{
    return FWL_CLASSHASH_FormProxy;
}
FX_BOOL CFWL_FormProxyImp::IsInstance(const CFX_WideStringC& wsClass) const
{
    if (wsClass == CFX_WideStringC(FWL_CLASS_FormProxy)) {
        return TRUE;
    }
    return CFWL_FormImp::IsInstance(wsClass);
}
FWL_ERR CFWL_FormProxyImp::Initialize()
{
    _FWL_ERR_CHECK_RETURN_VALUE_IF_FAIL(CFWL_WidgetImp::Initialize(), FWL_ERR_Indefinite);
    m_pDelegate = (IFWL_WidgetDelegate *)FX_NEW CFWL_FormProxyImpDelegate(this);
    return FWL_ERR_Succeeded;
}
FWL_ERR CFWL_FormProxyImp::Finalize()
{
    if ( m_pDelegate) {
        delete (CFWL_FormProxyImpDelegate*)m_pDelegate;
        m_pDelegate = NULL;
    }
    return CFWL_WidgetImp::Finalize();
}
FWL_ERR CFWL_FormProxyImp::Update()
{
    return FWL_ERR_Succeeded;
}
FWL_ERR CFWL_FormProxyImp::DrawWidget(CFX_Graphics *pGraphics, const CFX_Matrix *pMatrix )
{
    return FWL_ERR_Succeeded;
}
CFWL_FormProxyImpDelegate::CFWL_FormProxyImpDelegate(CFWL_FormProxyImp *pOwner)
    : m_pOwner(pOwner)
{
}
int32_t CFWL_FormProxyImpDelegate::OnProcessMessage(CFWL_Message *pMessage)
{
    IFWL_WidgetDelegate *pDelegate = m_pOwner->m_pOuter->SetDelegate(NULL);
    return pDelegate->OnProcessMessage(pMessage);
}