diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_caption.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_caption.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_caption.h b/xfa/fxfa/parser/cxfa_caption.h index 8d6ce13fb9..7a52254d77 100644 --- a/xfa/fxfa/parser/cxfa_caption.h +++ b/xfa/fxfa/parser/cxfa_caption.h @@ -7,12 +7,24 @@ #ifndef XFA_FXFA_PARSER_CXFA_CAPTION_H_ #define XFA_FXFA_PARSER_CXFA_CAPTION_H_ +#include "xfa/fxfa/parser/cxfa_fontdata.h" #include "xfa/fxfa/parser/cxfa_node.h" +class CXFA_Margin; +class CXFA_Value; + class CXFA_Caption : public CXFA_Node { public: CXFA_Caption(CXFA_Document* doc, XFA_PacketType packet); ~CXFA_Caption() override; + + bool IsVisible(); + bool IsHidden(); + XFA_AttributeEnum GetPlacementType(); + float GetReserve() const; + CXFA_Margin* GetMargin(); + CXFA_FontData GetFontData(); + CXFA_Value* GetValue(); }; #endif // XFA_FXFA_PARSER_CXFA_CAPTION_H_ |