blob: 32ef84ce8042948b40a1b19b841947902f6a9d39 [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// 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/form_fields.h"
6
7namespace pdfium {
8namespace form_fields {
9
10// ISO 32000-1:2008 table 220.
11// Entries common to all field dictionaries.
12const char kFT[] = "FT";
13const char kParent[] = "Parent";
14const char kKids[] = "Kids";
15const char kT[] = "T";
16const char kTU[] = "TU";
17const char kTM[] = "TM";
18const char kFf[] = "Ff";
19const char kV[] = "V";
20const char kDV[] = "DV";
21const char kAA[] = "AA";
22
23// ISO 32000-1:2008 table 220.
24// Values for FT keyword.
25const char kBtn[] = "Btn";
26const char kTx[] = "Tx";
27const char kCh[] = "Ch";
28const char kSig[] = "Sig";
29
30// ISO 32000-1:2008 table 222.
31// Entries common to fields containing variable text.
32const char kDA[] = "DA";
33const char kQ[] = "Q";
34const char kDS[] = "DS";
35const char kRV[] = "RV";
36
37} // namespace form_fields
38} // namespace pdfium