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