summaryrefslogtreecommitdiff
path: root/xfa/fde/cfde_txtedttextset.h
blob: 6c6266642bd8d129d1889f2416aebf6f23bbf6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2016 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_FDE_CFDE_TXTEDTTEXTSET_H_
#define XFA_FDE_CFDE_TXTEDTTEXTSET_H_

#include "xfa/fde/fde_visualset.h"

class CFDE_TxtEdtPage;

class CFDE_TxtEdtTextSet : public IFDE_TextSet {
 public:
  explicit CFDE_TxtEdtTextSet(CFDE_TxtEdtPage* pPage);
  ~CFDE_TxtEdtTextSet() override;

  // IFDE_VisualSet
  FDE_VISUALOBJTYPE GetType() override;
  void GetRect(FDE_TEXTEDITPIECE* hVisualObj, CFX_RectF& rt) override;

  // IFDE_TextSet
  int32_t GetString(FDE_TEXTEDITPIECE* pPiece, CFX_WideString& wsText) override;
  CFX_RetainPtr<CFGAS_GEFont> GetFont() override;
  FX_FLOAT GetFontSize() override;
  FX_ARGB GetFontColor() override;
  int32_t GetDisplayPos(FDE_TEXTEDITPIECE* pPiece,
                        FXTEXT_CHARPOS* pCharPos,
                        bool bCharCode = false,
                        CFX_WideString* pWSForms = nullptr) override;
  int32_t GetCharRects(const FDE_TEXTEDITPIECE* pPiece,
                       CFX_RectFArray& rtArray,
                       bool bBBox) override;

 private:
  CFDE_TxtEdtPage* const m_pPage;
};

#endif  // XFA_FDE_CFDE_TXTEDTTEXTSET_H_