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
form_fields.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/form_fields.h"
6
7namespace pdfium::form_fields {
8
9// ISO 32000-1:2008 table 220.
10// 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
22// ISO 32000-1:2008 table 220.
23// Values for FT keyword.
24const char kBtn[] = "Btn";
25const char kTx[] = "Tx";
26const char kCh[] = "Ch";
27const char kSig[] = "Sig";
28
29// 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
36} // namespace pdfium::form_fields
const char kParent[]