Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
annotation_common.cpp
Go to the documentation of this file.
1// Copyright 2021 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#include "constants/annotation_common.h"
6
7namespace pdfium::annotation {
8
9// PDF 1.7 spec, table 8.15.
10// Entries common to all annotation dictionaries.
11const char kType[] = "Type";
12const char kSubtype[] = "Subtype";
13const char kRect[] = "Rect";
14const char kContents[] = "Contents";
15const char kP[] = "P";
16const char kNM[] = "NM";
17const char kM[] = "M";
18const char kF[] = "F";
19const char kAP[] = "AP";
20const char kAS[] = "AS";
21const char kBorder[] = "Border";
22const char kC[] = "C";
23const char kStructParent[] = "StructParent";
24const char kOC[] = "OC";
25
26// Entries for polygon and polyline annotations.
27const char kVertices[] = "Vertices";
28
29// Entries for ink annotations
30const char kInkList[] = "InkList";
31
32// Entries for line annotations
33const char kL[] = "L";
34
35} // namespace pdfium::annotation