1 // Copyright 2019 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CONSTANTS_FORM_FIELDS_H_ 6 #define CONSTANTS_FORM_FIELDS_H_ 7 8 namespace pdfium { 9 namespace form_fields { 10 11 // PDF 1.7 spec, table 8.69. 12 // Entries common to all field dictionaries. 13 constexpr char kFT[] = "FT"; 14 constexpr char kParent[] = "Parent"; 15 constexpr char kKids[] = "Kids"; 16 constexpr char kT[] = "T"; 17 constexpr char kTU[] = "TU"; 18 constexpr char kTM[] = "TM"; 19 constexpr char kFf[] = "Ff"; 20 constexpr char kV[] = "V"; 21 constexpr char kDV[] = "DV"; 22 constexpr char kAA[] = "AA"; 23 24 // FT values from PDF 1.7 spec, table 8.69. 25 constexpr char kBtn[] = "Btn"; 26 constexpr char kTx[] = "Tx"; 27 constexpr char kCh[] = "Ch"; 28 constexpr char kSig[] = "Sig"; 29 30 } // namespace form_fields 31 } // namespace pdfium 32 33 #endif // CONSTANTS_FORM_FIELDS_H_ 34