blob: 84531fb6f421d9f93ee15d29730dd7a2a5587514 [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2021 The PDFium Authors
Lei Zhangef235032021-06-08 08:23:28 +00002// 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
Tom Sepez909a33c2023-08-10 19:17:01 +00007namespace pdfium::form_fields {
Lei Zhangef235032021-06-08 08:23:28 +00008
Tom Sepez48c2e692022-08-31 01:14:38 +00009// ISO 32000-1:2008 table 220.
Lei Zhangef235032021-06-08 08:23:28 +000010// Entries common to all field dictionaries.
11const char kFT[] = "FT";
12const char kParent[] = "Parent";
13const char kKids[] = "Kids";
14const char kT[] = "T";
15const char kTU[] = "TU";
16const char kTM[] = "TM";
17const char kFf[] = "Ff";
18const char kV[] = "V";
19const char kDV[] = "DV";
20const char kAA[] = "AA";
21
Tom Sepez48c2e692022-08-31 01:14:38 +000022// ISO 32000-1:2008 table 220.
23// Values for FT keyword.
Lei Zhangef235032021-06-08 08:23:28 +000024const char kBtn[] = "Btn";
25const char kTx[] = "Tx";
26const char kCh[] = "Ch";
27const char kSig[] = "Sig";
28
Tom Sepez48c2e692022-08-31 01:14:38 +000029// ISO 32000-1:2008 table 222.
30// Entries common to fields containing variable text.
31const char kDA[] = "DA";
32const char kQ[] = "Q";
33const char kDS[] = "DS";
34const char kRV[] = "RV";
35
Tom Sepez909a33c2023-08-10 19:17:01 +000036} // namespace pdfium::form_fields