Home | History | Annotate | Download | only in parser
      1 // Copyright 2017 PDFium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
      6 
      7 #ifndef XFA_FXFA_PARSER_CXFA_FONT_H_
      8 #define XFA_FXFA_PARSER_CXFA_FONT_H_
      9 
     10 #include "core/fxge/fx_dib.h"
     11 #include "xfa/fxfa/parser/cxfa_node.h"
     12 
     13 class CXFA_Font : public CXFA_Node {
     14  public:
     15   CXFA_Font(CXFA_Document* doc, XFA_PacketType packet);
     16   ~CXFA_Font() override;
     17 
     18   float GetBaselineShift() const;
     19   float GetHorizontalScale();
     20   float GetVerticalScale();
     21   float GetLetterSpacing();
     22   int32_t GetLineThrough();
     23   int32_t GetUnderline();
     24   XFA_AttributeEnum GetUnderlinePeriod();
     25   float GetFontSize() const;
     26   WideString GetTypeface();
     27 
     28   bool IsBold();
     29   bool IsItalic();
     30 
     31   FX_ARGB GetColor();
     32   void SetColor(FX_ARGB color);
     33 };
     34 
     35 #endif  // XFA_FXFA_PARSER_CXFA_FONT_H_
     36