Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: xfa/fxfa/include/cxfa_eventparam.h

Issue 2383593002: Move xfa/fxfa/include to xfa/fxfa (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/include/DEPS ('k') | xfa/fxfa/include/fxfa.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #ifndef XFA_FXFA_INCLUDE_CXFA_EVENTPARAM_H_
8 #define XFA_FXFA_INCLUDE_CXFA_EVENTPARAM_H_
9
10 #include "xfa/fxfa/include/fxfa_basic.h"
11
12 class CXFA_WidgetAcc;
13
14 enum XFA_EVENTTYPE {
15 XFA_EVENT_Click,
16 XFA_EVENT_Change,
17 XFA_EVENT_DocClose,
18 XFA_EVENT_DocReady,
19 XFA_EVENT_Enter,
20 XFA_EVENT_Exit,
21 XFA_EVENT_Full,
22 XFA_EVENT_IndexChange,
23 XFA_EVENT_Initialize,
24 XFA_EVENT_MouseDown,
25 XFA_EVENT_MouseEnter,
26 XFA_EVENT_MouseExit,
27 XFA_EVENT_MouseUp,
28 XFA_EVENT_PostExecute,
29 XFA_EVENT_PostOpen,
30 XFA_EVENT_PostPrint,
31 XFA_EVENT_PostSave,
32 XFA_EVENT_PostSign,
33 XFA_EVENT_PostSubmit,
34 XFA_EVENT_PreExecute,
35 XFA_EVENT_PreOpen,
36 XFA_EVENT_PrePrint,
37 XFA_EVENT_PreSave,
38 XFA_EVENT_PreSign,
39 XFA_EVENT_PreSubmit,
40 XFA_EVENT_Ready,
41 XFA_EVENT_InitCalculate,
42 XFA_EVENT_InitVariables,
43 XFA_EVENT_Calculate,
44 XFA_EVENT_Validate,
45 XFA_EVENT_Unknown,
46 };
47
48 class CXFA_EventParam {
49 public:
50 CXFA_EventParam();
51 ~CXFA_EventParam();
52 CXFA_EventParam(const CXFA_EventParam& other);
53
54 void Reset();
55
56 CXFA_WidgetAcc* m_pTarget;
57 XFA_EVENTTYPE m_eType;
58 CFX_WideString m_wsResult;
59 FX_BOOL m_bCancelAction;
60 int32_t m_iCommitKey;
61 FX_BOOL m_bKeyDown;
62 FX_BOOL m_bModifier;
63 FX_BOOL m_bReenter;
64 int32_t m_iSelEnd;
65 int32_t m_iSelStart;
66 FX_BOOL m_bShift;
67 CFX_WideString m_wsChange;
68 CFX_WideString m_wsFullText;
69 CFX_WideString m_wsNewContentType;
70 CFX_WideString m_wsNewText;
71 CFX_WideString m_wsPrevContentType;
72 CFX_WideString m_wsPrevText;
73 CFX_WideString m_wsSoapFaultCode;
74 CFX_WideString m_wsSoapFaultString;
75 FX_BOOL m_bIsFormReady;
76 int32_t m_iValidateActivities;
77 };
78
79 #endif // XFA_FXFA_INCLUDE_CXFA_EVENTPARAM_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/include/DEPS ('k') | xfa/fxfa/include/fxfa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698