xref: /aosp_15_r20/external/pdfium/fpdfsdk/formfiller/cffl_fieldaction.h (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1*3ac0a46fSAndroid Build Coastguard Worker // Copyright 2016 The PDFium Authors
2*3ac0a46fSAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be
3*3ac0a46fSAndroid Build Coastguard Worker // found in the LICENSE file.
4*3ac0a46fSAndroid Build Coastguard Worker 
5*3ac0a46fSAndroid Build Coastguard Worker // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6*3ac0a46fSAndroid Build Coastguard Worker 
7*3ac0a46fSAndroid Build Coastguard Worker #ifndef FPDFSDK_FORMFILLER_CFFL_FIELDACTION_H_
8*3ac0a46fSAndroid Build Coastguard Worker #define FPDFSDK_FORMFILLER_CFFL_FIELDACTION_H_
9*3ac0a46fSAndroid Build Coastguard Worker 
10*3ac0a46fSAndroid Build Coastguard Worker #include "core/fxcrt/widestring.h"
11*3ac0a46fSAndroid Build Coastguard Worker 
12*3ac0a46fSAndroid Build Coastguard Worker struct CFFL_FieldAction {
13*3ac0a46fSAndroid Build Coastguard Worker   CFFL_FieldAction();
14*3ac0a46fSAndroid Build Coastguard Worker   CFFL_FieldAction(const CFFL_FieldAction& other) = delete;
15*3ac0a46fSAndroid Build Coastguard Worker   ~CFFL_FieldAction();
16*3ac0a46fSAndroid Build Coastguard Worker 
17*3ac0a46fSAndroid Build Coastguard Worker   bool bModifier = false;
18*3ac0a46fSAndroid Build Coastguard Worker   bool bShift = false;
19*3ac0a46fSAndroid Build Coastguard Worker   bool bKeyDown = false;
20*3ac0a46fSAndroid Build Coastguard Worker   bool bWillCommit = false;
21*3ac0a46fSAndroid Build Coastguard Worker   bool bFieldFull = false;
22*3ac0a46fSAndroid Build Coastguard Worker   bool bRC = true;
23*3ac0a46fSAndroid Build Coastguard Worker   int nSelEnd = 0;
24*3ac0a46fSAndroid Build Coastguard Worker   int nSelStart = 0;
25*3ac0a46fSAndroid Build Coastguard Worker   WideString sChange;
26*3ac0a46fSAndroid Build Coastguard Worker   WideString sChangeEx;
27*3ac0a46fSAndroid Build Coastguard Worker   WideString sValue;
28*3ac0a46fSAndroid Build Coastguard Worker };
29*3ac0a46fSAndroid Build Coastguard Worker 
30*3ac0a46fSAndroid Build Coastguard Worker #endif  // FPDFSDK_FORMFILLER_CFFL_FIELDACTION_H_
31