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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #ifndef XFA_FXFA_CXFA_FFWIDGET_TYPE_H_
8 #define XFA_FXFA_CXFA_FFWIDGET_TYPE_H_
9 
10 enum class XFA_FFWidgetType {
11   kNone = 0,
12   kBarcode,
13   kButton,
14   kCheckButton,
15   kChoiceList,
16   kDateTimeEdit,
17   kImageEdit,
18   kNumericEdit,
19   kPasswordEdit,
20   kSignature,
21   kTextEdit,
22   kArc,
23   kLine,
24   kRectangle,
25   kText,
26   kImage,
27   kSubform,
28   kExclGroup
29 };
30 
31 #endif  // XFA_FXFA_CXFA_FFWIDGET_TYPE_H_
32