| 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_FXFA_INCLUDE_CXFA_EVENTPARAM_H_ | 7 #ifndef XFA_FXFA_CXFA_EVENTPARAM_H_ |
| 8 #define XFA_FXFA_INCLUDE_CXFA_EVENTPARAM_H_ | 8 #define XFA_FXFA_CXFA_EVENTPARAM_H_ |
| 9 | 9 |
| 10 #include "xfa/fxfa/include/fxfa_basic.h" | 10 #include "xfa/fxfa/fxfa_basic.h" |
| 11 | 11 |
| 12 class CXFA_WidgetAcc; | 12 class CXFA_WidgetAcc; |
| 13 | 13 |
| 14 enum XFA_EVENTTYPE { | 14 enum XFA_EVENTTYPE { |
| 15 XFA_EVENT_Click, | 15 XFA_EVENT_Click, |
| 16 XFA_EVENT_Change, | 16 XFA_EVENT_Change, |
| 17 XFA_EVENT_DocClose, | 17 XFA_EVENT_DocClose, |
| 18 XFA_EVENT_DocReady, | 18 XFA_EVENT_DocReady, |
| 19 XFA_EVENT_Enter, | 19 XFA_EVENT_Enter, |
| 20 XFA_EVENT_Exit, | 20 XFA_EVENT_Exit, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 CFX_WideString m_wsNewContentType; | 69 CFX_WideString m_wsNewContentType; |
| 70 CFX_WideString m_wsNewText; | 70 CFX_WideString m_wsNewText; |
| 71 CFX_WideString m_wsPrevContentType; | 71 CFX_WideString m_wsPrevContentType; |
| 72 CFX_WideString m_wsPrevText; | 72 CFX_WideString m_wsPrevText; |
| 73 CFX_WideString m_wsSoapFaultCode; | 73 CFX_WideString m_wsSoapFaultCode; |
| 74 CFX_WideString m_wsSoapFaultString; | 74 CFX_WideString m_wsSoapFaultString; |
| 75 FX_BOOL m_bIsFormReady; | 75 FX_BOOL m_bIsFormReady; |
| 76 int32_t m_iValidateActivities; | 76 int32_t m_iValidateActivities; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 #endif // XFA_FXFA_INCLUDE_CXFA_EVENTPARAM_H_ | 79 #endif // XFA_FXFA_CXFA_EVENTPARAM_H_ |
| OLD | NEW |