• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2016 The PDFium Authors
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 CORE_FPDFDOC_CPVT_LINEINFO_H_
8 #define CORE_FPDFDOC_CPVT_LINEINFO_H_
9 
10 #include <stdint.h>
11 
12 struct CPVT_LineInfo {
13   int32_t nTotalWord = 0;
14   int32_t nBeginWordIndex = -1;
15   int32_t nEndWordIndex = -1;
16   float fLineX = 0.0f;
17   float fLineY = 0.0f;
18   float fLineWidth = 0.0f;
19   float fLineAscent = 0.0f;
20   float fLineDescent = 0.0f;
21 };
22 
23 #endif  // CORE_FPDFDOC_CPVT_LINEINFO_H_
24