blob: d4ca63d071da35ad9526bbc81435e75e0fdf29ea (
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
41
42
43
44
45
46
|
// Copyright 2018 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_DATA_H_
#define XFA_FDE_CFDE_DATA_H_
#include "core/fxcrt/fx_coordinates.h"
enum class FDE_TextAlignment : uint8_t {
kTopLeft = 0,
kCenterLeft,
kCenter,
kCenterRight
};
struct FDE_TextStyle {
FDE_TextStyle()
: single_line_(false), line_wrap_(false), last_line_height_(false) {}
~FDE_TextStyle() {}
void Reset() {
single_line_ = false;
line_wrap_ = false;
last_line_height_ = false;
}
bool single_line_;
bool line_wrap_;
bool last_line_height_;
};
struct FDE_TTOPIECE {
FDE_TTOPIECE();
FDE_TTOPIECE(const FDE_TTOPIECE& that);
~FDE_TTOPIECE();
int32_t iStartChar;
int32_t iChars;
uint32_t dwCharStyles;
CFX_RectF rtPiece;
};
#endif // XFA_FDE_CFDE_DATA_H_
|