Home | History | Annotate | Download | only in fpdfsdk
      1 // Copyright 2014 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 FPDFSDK_FSDK_COMMON_H_
      8 #define FPDFSDK_FSDK_COMMON_H_
      9 
     10 // for all fields
     11 #define FIELDFLAG_READONLY 1
     12 #define FIELDFLAG_REQUIRED 2
     13 // for text fields
     14 #define FIELDFLAG_MULTILINE (1 << 12)
     15 #define FIELDFLAG_PASSWORD (1 << 13)
     16 #define FIELDFLAG_FILESELECT (1 << 20)
     17 #define FIELDFLAG_DONOTSPELLCHECK (1 << 22)
     18 #define FIELDFLAG_DONOTSCROLL (1 << 23)
     19 #define FIELDFLAG_COMB (1 << 24)
     20 #define FIELDFLAG_RICHTEXT (1 << 25)
     21 // for button fileds
     22 #define FIELDFLAG_RADIOSINUNISON (1 << 27)
     23 // for choice fields
     24 #define FIELDFLAG_EDIT (1 << 18)
     25 #define FIELDFLAG_MULTISELECT (1 << 21)
     26 #define FIELDFLAG_COMMITONSELCHANGE (1 << 26)
     27 
     28 #endif  // FPDFSDK_FSDK_COMMON_H_
     29