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

Side by Side Diff: core/fpdfdoc/cpdf_formfield.h

Issue 2374383003: Move core/fpdfdoc/include to core/fpdfdoc (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 | « core/fpdfdoc/cpdf_formcontrol.cpp ('k') | core/fpdfdoc/cpdf_formfield.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 CORE_FPDFDOC_INCLUDE_CPDF_FORMFIELD_H_ 7 #ifndef CORE_FPDFDOC_CPDF_FORMFIELD_H_
8 #define CORE_FPDFDOC_INCLUDE_CPDF_FORMFIELD_H_ 8 #define CORE_FPDFDOC_CPDF_FORMFIELD_H_
9 9
10 #include "core/fpdfdoc/include/cpdf_aaction.h" 10 #include "core/fpdfdoc/cpdf_aaction.h"
11 #include "core/fpdfdoc/include/cpdf_formfield.h" 11 #include "core/fpdfdoc/cpdf_formfield.h"
12 #include "core/fxcrt/include/fx_basic.h" 12 #include "core/fxcrt/include/fx_basic.h"
13 #include "core/fxcrt/include/fx_string.h" 13 #include "core/fxcrt/include/fx_string.h"
14 #include "core/fxcrt/include/fx_system.h" 14 #include "core/fxcrt/include/fx_system.h"
15 15
16 #define FIELDTYPE_UNKNOWN 0 16 #define FIELDTYPE_UNKNOWN 0
17 #define FIELDTYPE_PUSHBUTTON 1 17 #define FIELDTYPE_PUSHBUTTON 1
18 #define FIELDTYPE_CHECKBOX 2 18 #define FIELDTYPE_CHECKBOX 2
19 #define FIELDTYPE_RADIOBUTTON 3 19 #define FIELDTYPE_RADIOBUTTON 3
20 #define FIELDTYPE_COMBOBOX 4 20 #define FIELDTYPE_COMBOBOX 4
21 #define FIELDTYPE_LISTBOX 5 21 #define FIELDTYPE_LISTBOX 5
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 158
159 CPDF_FormField::Type m_Type; 159 CPDF_FormField::Type m_Type;
160 uint32_t m_Flags; 160 uint32_t m_Flags;
161 CPDF_InterForm* m_pForm; 161 CPDF_InterForm* m_pForm;
162 CPDF_Dictionary* m_pDict; 162 CPDF_Dictionary* m_pDict;
163 CFX_ArrayTemplate<CPDF_FormControl*> m_ControlList; 163 CFX_ArrayTemplate<CPDF_FormControl*> m_ControlList;
164 FX_FLOAT m_FontSize; 164 FX_FLOAT m_FontSize;
165 CPDF_Font* m_pFont; 165 CPDF_Font* m_pFont;
166 }; 166 };
167 167
168 #endif // CORE_FPDFDOC_INCLUDE_CPDF_FORMFIELD_H_ 168 #endif // CORE_FPDFDOC_CPDF_FORMFIELD_H_
OLDNEW
« no previous file with comments | « core/fpdfdoc/cpdf_formcontrol.cpp ('k') | core/fpdfdoc/cpdf_formfield.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698