diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-03 12:15:53 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-03 18:22:31 +0000 |
commit | fa50df5605a14ca4c9ba440506685981f1c8b04b (patch) | |
tree | 993f3af23213e8c86c62314b502f6144ce13688b /xfa/fxfa/parser/cxfa_caption.h | |
parent | 39628b04bc86461426f2dcf5a568f5e9e70ad997 (diff) | |
download | pdfium-fa50df5605a14ca4c9ba440506685981f1c8b04b.tar.xz |
Fold CXFA_CaptionData into CXFA_Caption
This CL folds the CXFA_CaptionData wrapper class into CXFA_Caption.
Change-Id: I65302656a89985dec4d0ec1f42b5eaa95d22aae2
Reviewed-on: https://pdfium-review.googlesource.com/22150
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
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_ |