blob: e0aae86cec88ccb1f8ccc483cd3876d4948cce1e [file] [log] [blame]
// 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
#ifndef XFA_FXFA_CXFA_TEXTPROVIDER_H_
#define XFA_FXFA_CXFA_TEXTPROVIDER_H_
#include "core/fxcrt/fx_string.h"
#include "fxjs/gc/heap.h"
#include "third_party/base/optional.h"
#include "v8/include/cppgc/garbage-collected.h"
#include "v8/include/cppgc/member.h"
#include "v8/include/cppgc/visitor.h"
#include "xfa/fxfa/cxfa_textlayout.h"
class CXFA_Font;
class CXFA_Node;
class CXFA_Para;
enum XFA_TEXTPROVIDERTYPE {
XFA_TEXTPROVIDERTYPE_Text,
XFA_TEXTPROVIDERTYPE_Datasets,
XFA_TEXTPROVIDERTYPE_Caption,
XFA_TEXTPROVIDERTYPE_Rollover,
XFA_TEXTPROVIDERTYPE_Down,
};
class CXFA_TextProvider : public cppgc::GarbageCollected<CXFA_TextProvider> {
public:
CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED;
~CXFA_TextProvider();
void Trace(cppgc::Visitor* visitor) const;
CXFA_Node* GetTextNode(bool* bRichText);
CXFA_Para* GetParaIfExists();
CXFA_Font* GetFontIfExists();
bool IsCheckButtonAndAutoWidth() const;
Optional<WideString> GetEmbeddedObj(const WideString& wsAttr) const;
private:
CXFA_TextProvider(CXFA_Node* pNode, XFA_TEXTPROVIDERTYPE eType);
cppgc::Member<CXFA_Node> m_pNode;
XFA_TEXTPROVIDERTYPE m_eType;
};
#endif // XFA_FXFA_CXFA_TEXTPROVIDER_H_