| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_CFWL_EVENT_H_ | 7 #ifndef XFA_FWL_CORE_CFWL_EVENT_H_ |
| 8 #define XFA_FWL_CORE_CFWL_EVENT_H_ | 8 #define XFA_FWL_CORE_CFWL_EVENT_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/fx_coordinates.h" | 10 #include "core/fxcrt/fx_coordinates.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 Click, | 34 Click, |
| 35 Close, | 35 Close, |
| 36 CloseUp, | 36 CloseUp, |
| 37 ContextMenu, | 37 ContextMenu, |
| 38 DataSelected, | 38 DataSelected, |
| 39 DateChanged, | 39 DateChanged, |
| 40 Draw, | 40 Draw, |
| 41 DrawItem, | 41 DrawItem, |
| 42 DropDown, | 42 DropDown, |
| 43 EditChanged, | 43 EditChanged, |
| 44 GetSuggestedWords, | |
| 45 HoverChanged, | 44 HoverChanged, |
| 46 Idle, | 45 Idle, |
| 47 Key, | 46 Key, |
| 48 KillFocus, | 47 KillFocus, |
| 49 MenuCommand, | 48 MenuCommand, |
| 50 Mouse, | 49 Mouse, |
| 51 MouseWheel, | 50 MouseWheel, |
| 52 PostDropDown, | 51 PostDropDown, |
| 53 PreDropDown, | 52 PreDropDown, |
| 54 PreSelfAdaption, | 53 PreSelfAdaption, |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 168 |
| 170 FWL_EVENT_DEF(CFWL_EvtSizeChanged, | 169 FWL_EVENT_DEF(CFWL_EvtSizeChanged, |
| 171 CFWL_EventType::SizeChanged, | 170 CFWL_EventType::SizeChanged, |
| 172 IFWL_Widget* m_pWidget; | 171 IFWL_Widget* m_pWidget; |
| 173 CFX_RectF m_rtOld; | 172 CFX_RectF m_rtOld; |
| 174 CFX_RectF m_rtNew;) | 173 CFX_RectF m_rtNew;) |
| 175 | 174 |
| 176 FWL_EVENT_DEF(CFWL_EvtIdle, CFWL_EventType::Idle) | 175 FWL_EVENT_DEF(CFWL_EvtIdle, CFWL_EventType::Idle) |
| 177 | 176 |
| 178 #endif // XFA_FWL_CORE_CFWL_EVENT_H_ | 177 #endif // XFA_FWL_CORE_CFWL_EVENT_H_ |
| OLD | NEW |