| 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_MESSAGE_H_ | 7 #ifndef XFA_FWL_CORE_CFWL_MESSAGE_H_ |
| 8 #define XFA_FWL_CORE_CFWL_MESSAGE_H_ | 8 #define XFA_FWL_CORE_CFWL_MESSAGE_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/fx_basic.h" |
| 10 #include "core/fxcrt/fx_string.h" | 11 #include "core/fxcrt/fx_string.h" |
| 11 #include "core/fxcrt/fx_system.h" | 12 #include "core/fxcrt/fx_system.h" |
| 12 #include "xfa/fwl/core/fwl_error.h" | 13 #include "xfa/fwl/core/fwl_error.h" |
| 13 | 14 |
| 14 enum class CFWL_MessageType { | 15 enum class CFWL_MessageType { |
| 15 None = 0, | 16 None = 0, |
| 16 | 17 |
| 17 Activate, | 18 Activate, |
| 18 Close, | 19 Close, |
| 19 Cursor, | 20 Cursor, |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 FWL_MESSAGE_DEF(CFWL_MsgTaskClicked, | 186 FWL_MESSAGE_DEF(CFWL_MsgTaskClicked, |
| 186 CFWL_MessageType::TaskClicked, | 187 CFWL_MessageType::TaskClicked, |
| 187 FX_FLOAT m_fx; | 188 FX_FLOAT m_fx; |
| 188 FX_FLOAT m_fy;) | 189 FX_FLOAT m_fy;) |
| 189 | 190 |
| 190 FWL_MESSAGE_DEF(CFWL_MsgClose, CFWL_MessageType::Close) | 191 FWL_MESSAGE_DEF(CFWL_MsgClose, CFWL_MessageType::Close) |
| 191 | 192 |
| 192 FWL_MESSAGE_DEF(CFWL_MsgWindowWillMove, CFWL_MessageType::WindowWillMove) | 193 FWL_MESSAGE_DEF(CFWL_MsgWindowWillMove, CFWL_MessageType::WindowWillMove) |
| 193 | 194 |
| 194 #endif // XFA_FWL_CORE_CFWL_MESSAGE_H_ | 195 #endif // XFA_FWL_CORE_CFWL_MESSAGE_H_ |
| OLD | NEW |