You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
// Copyright 2016 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
|
|
|
|
#ifndef FPDFSDK_FPDFXFA_CPDFXFA_WIDGET_H_
|
|
#define FPDFSDK_FPDFXFA_CPDFXFA_WIDGET_H_
|
|
|
|
#include "core/fxcrt/fx_coordinates.h"
|
|
#include "core/fxcrt/fx_string.h"
|
|
#include "core/fxcrt/observed_ptr.h"
|
|
#include "core/fxcrt/unowned_ptr.h"
|
|
#include "fpdfsdk/cpdfsdk_annot.h"
|
|
#include "xfa/fxfa/cxfa_ffwidget.h"
|
|
|
|
class CPDFSDK_InteractiveForm;
|
|
class CPDFSDK_PageView;
|
|
|
|
class CPDFXFA_Widget final : public CPDFSDK_Annot {
|
|
public:
|
|
CPDFXFA_Widget(CXFA_FFWidget* pXFAFFWidget,
|
|
CPDFSDK_PageView* pPageView,
|
|
CPDFSDK_InteractiveForm* pInteractiveForm);
|
|
~CPDFXFA_Widget() override;
|
|
|
|
// CPDFSDK_Annot:
|
|
CPDFXFA_Widget* AsXFAWidget() override;
|
|
CPDF_Annot::Subtype GetAnnotSubtype() const override;
|
|
CFX_FloatRect GetRect() const override;
|
|
|
|
CXFA_FFWidget* GetXFAFFWidget() const { return m_pXFAFFWidget.Get(); }
|
|
CPDFSDK_InteractiveForm* GetInteractiveForm() const {
|
|
return m_pInteractiveForm.Get();
|
|
}
|
|
|
|
private:
|
|
UnownedPtr<CPDFSDK_InteractiveForm> const m_pInteractiveForm;
|
|
ObservedPtr<CXFA_FFWidget> const m_pXFAFFWidget;
|
|
};
|
|
|
|
#endif // FPDFSDK_FPDFXFA_CPDFXFA_WIDGET_H_
|