| 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 XFA_FWL_CORE_FWL_WIDGETDEF_H_ | 7 #ifndef XFA_FWL_CORE_FWL_WIDGETDEF_H_ |
| 8 #define XFA_FWL_CORE_FWL_WIDGETDEF_H_ | 8 #define XFA_FWL_CORE_FWL_WIDGETDEF_H_ |
| 9 | 9 |
| 10 #define FWL_WGTSTYLE_OverLapper (0L << 0) | 10 #define FWL_WGTSTYLE_OverLapper (0L << 0) |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #define FWL_WGTSTATE_Deactivated (1L << 3) | 49 #define FWL_WGTSTATE_Deactivated (1L << 3) |
| 50 #define FWL_WGTSTATE_Focused (1L << 4) | 50 #define FWL_WGTSTATE_Focused (1L << 4) |
| 51 #define FWL_WGTSTATE_Invisible (1L << 5) | 51 #define FWL_WGTSTATE_Invisible (1L << 5) |
| 52 #define FWL_WGTSTATE_MAX (6) | 52 #define FWL_WGTSTATE_MAX (6) |
| 53 | 53 |
| 54 #define FWL_VKEY_LButton 0x01 | 54 #define FWL_VKEY_LButton 0x01 |
| 55 #define FWL_VKEY_RButton 0x02 | 55 #define FWL_VKEY_RButton 0x02 |
| 56 #define FWL_VKEY_MButton 0x04 | 56 #define FWL_VKEY_MButton 0x04 |
| 57 #define FWL_VKEY_Back 0x08 | 57 #define FWL_VKEY_Back 0x08 |
| 58 #define FWL_VKEY_Tab 0x09 | 58 #define FWL_VKEY_Tab 0x09 |
| 59 #define FWL_VKEY_NewLine 0x0A |
| 59 #define FWL_VKEY_Clear 0x0C | 60 #define FWL_VKEY_Clear 0x0C |
| 60 #define FWL_VKEY_Return 0x0D | 61 #define FWL_VKEY_Return 0x0D |
| 61 #define FWL_VKEY_Shift 0x10 | 62 #define FWL_VKEY_Shift 0x10 |
| 62 #define FWL_VKEY_Control 0x11 | 63 #define FWL_VKEY_Control 0x11 |
| 63 #define FWL_VKEY_Menu 0x12 | 64 #define FWL_VKEY_Menu 0x12 |
| 64 #define FWL_VKEY_Pause 0x13 | 65 #define FWL_VKEY_Pause 0x13 |
| 65 #define FWL_VKEY_Capital 0x14 | 66 #define FWL_VKEY_Capital 0x14 |
| 66 #define FWL_VKEY_Kana 0x15 | 67 #define FWL_VKEY_Kana 0x15 |
| 67 #define FWL_VKEY_Hangul 0x15 | 68 #define FWL_VKEY_Hangul 0x15 |
| 68 #define FWL_VKEY_Junja 0x17 | 69 #define FWL_VKEY_Junja 0x17 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 #define FWL_VKEY_Exsel 0xF8 | 218 #define FWL_VKEY_Exsel 0xF8 |
| 218 #define FWL_VKEY_Ereof 0xF9 | 219 #define FWL_VKEY_Ereof 0xF9 |
| 219 #define FWL_VKEY_Play 0xFA | 220 #define FWL_VKEY_Play 0xFA |
| 220 #define FWL_VKEY_Zoom 0xFB | 221 #define FWL_VKEY_Zoom 0xFB |
| 221 #define FWL_VKEY_NoName 0xFC | 222 #define FWL_VKEY_NoName 0xFC |
| 222 #define FWL_VKEY_PA1 0xFD | 223 #define FWL_VKEY_PA1 0xFD |
| 223 #define FWL_VKEY_OEM_Clear 0xFE | 224 #define FWL_VKEY_OEM_Clear 0xFE |
| 224 #define FWL_VKEY_Unknown 0 | 225 #define FWL_VKEY_Unknown 0 |
| 225 | 226 |
| 226 #endif // XFA_FWL_CORE_FWL_WIDGETDEF_H_ | 227 #endif // XFA_FWL_CORE_FWL_WIDGETDEF_H_ |
| OLD | NEW |