52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
// Copyright 2014 The PDFium Authors
|
|
// 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 XFA_FXFA_CXFA_FFIMAGEEDIT_H_
|
|
#define XFA_FXFA_CXFA_FFIMAGEEDIT_H_
|
|
|
|
#include "v8/include/cppgc/member.h"
|
|
#include "v8/include/cppgc/prefinalizer.h"
|
|
#include "xfa/fxfa/cxfa_fffield.h"
|
|
|
|
class CXFA_FFImageEdit final : public CXFA_FFField {
|
|
CPPGC_USING_PRE_FINALIZER(CXFA_FFImageEdit, PreFinalize);
|
|
|
|
public:
|
|
CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;
|
|
~CXFA_FFImageEdit() override;
|
|
|
|
void PreFinalize();
|
|
|
|
// CXFA_FFField:
|
|
void Trace(cppgc::Visitor* visitor) const override;
|
|
void RenderWidget(CFGAS_GEGraphics* pGS,
|
|
const CFX_Matrix& matrix,
|
|
HighlightOption highlight) override;
|
|
bool LoadWidget() override;
|
|
bool AcceptsFocusOnButtonDown(
|
|
Mask<XFA_FWL_KeyFlag> dwFlags,
|
|
const CFX_PointF& point,
|
|
CFWL_MessageMouse::MouseCommand command) override;
|
|
bool OnLButtonDown(Mask<XFA_FWL_KeyFlag> dwFlags,
|
|
const CFX_PointF& point) override;
|
|
void OnProcessMessage(CFWL_Message* pMessage) override;
|
|
void OnProcessEvent(CFWL_Event* pEvent) override;
|
|
void OnDrawWidget(CFGAS_GEGraphics* pGraphics,
|
|
const CFX_Matrix& matrix) override;
|
|
FormFieldType GetFormFieldType() override;
|
|
|
|
private:
|
|
explicit CXFA_FFImageEdit(CXFA_Node* pNode);
|
|
|
|
void SetFWLRect() override;
|
|
bool UpdateFWLData() override;
|
|
bool CommitData() override;
|
|
|
|
cppgc::Member<IFWL_WidgetDelegate> m_pOldDelegate;
|
|
};
|
|
|
|
#endif // XFA_FXFA_CXFA_FFIMAGEEDIT_H_
|