| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef FPDFSDK_INCLUDE_FSDK_COMMON_H_ | 7 #ifndef FPDFSDK_INCLUDE_FSDK_COMMON_H_ |
| 8 #define FPDFSDK_INCLUDE_FSDK_COMMON_H_ | 8 #define FPDFSDK_INCLUDE_FSDK_COMMON_H_ |
| 9 | 9 |
| 10 #define BFFT_SIGNATURE "Signature" | 10 #define BFFT_SIGNATURE "Signature" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #define FIELDFLAG_RADIO (1 << 15) | 26 #define FIELDFLAG_RADIO (1 << 15) |
| 27 #define FIELDFLAG_PUSHBUTTON (1 << 16) | 27 #define FIELDFLAG_PUSHBUTTON (1 << 16) |
| 28 #define FIELDFLAG_RADIOSINUNISON (1 << 27) | 28 #define FIELDFLAG_RADIOSINUNISON (1 << 27) |
| 29 // for choice fields | 29 // for choice fields |
| 30 #define FIELDFLAG_COMBO (1 << 17) | 30 #define FIELDFLAG_COMBO (1 << 17) |
| 31 #define FIELDFLAG_EDIT (1 << 18) | 31 #define FIELDFLAG_EDIT (1 << 18) |
| 32 #define FIELDFLAG_SORT (1 << 19) | 32 #define FIELDFLAG_SORT (1 << 19) |
| 33 #define FIELDFLAG_MULTISELECT (1 << 21) | 33 #define FIELDFLAG_MULTISELECT (1 << 21) |
| 34 #define FIELDFLAG_COMMITONSELCHANGE (1 << 26) | 34 #define FIELDFLAG_COMMITONSELCHANGE (1 << 26) |
| 35 | 35 |
| 36 #define BBS_SOLID 0 | |
| 37 #define BBS_DASH 1 | |
| 38 #define BBS_BEVELED 2 | |
| 39 #define BBS_INSET 3 | |
| 40 #define BBS_UNDERLINE 4 | |
| 41 | |
| 42 #endif // FPDFSDK_INCLUDE_FSDK_COMMON_H_ | 36 #endif // FPDFSDK_INCLUDE_FSDK_COMMON_H_ |
| OLD | NEW |