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

Side by Side Diff: fpdfsdk/include/fsdk_mgr.h

Issue 2243623002: Split fpdfsdk/fsdk_annothandler.h into individual classes. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Split fpdfsdk/fsdk_annothandler.h into individual classes. Created 4 years, 4 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 | « fpdfsdk/include/fsdk_annothandler.h ('k') | fpdfsdk/include/ipdfsdk_annothandler.h » ('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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 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 FPDFSDK_INCLUDE_FSDK_MGR_H_ 7 #ifndef FPDFSDK_INCLUDE_FSDK_MGR_H_
8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_ 8 #define FPDFSDK_INCLUDE_FSDK_MGR_H_
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h" 14 #include "core/fpdfapi/fpdf_page/include/cpdf_page.h"
15 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 15 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
16 #include "core/fpdfdoc/include/cpdf_occontext.h" 16 #include "core/fpdfdoc/include/cpdf_occontext.h"
17 #include "fpdfsdk/cfx_systemhandler.h" 17 #include "fpdfsdk/cfx_systemhandler.h"
18 #include "fpdfsdk/include/cpdfsdk_annot.h" 18 #include "fpdfsdk/include/cpdfsdk_annot.h"
19 #include "fpdfsdk/include/fsdk_actionhandler.h" 19 #include "fpdfsdk/include/fsdk_actionhandler.h"
20 #include "fpdfsdk/include/fsdk_annothandler.h"
21 #include "fpdfsdk/include/fsdk_baseform.h" 20 #include "fpdfsdk/include/fsdk_baseform.h"
22 #include "fpdfsdk/include/fsdk_common.h" 21 #include "fpdfsdk/include/fsdk_common.h"
23 #include "fpdfsdk/include/fsdk_define.h" 22 #include "fpdfsdk/include/fsdk_define.h"
24 #include "public/fpdf_formfill.h" 23 #include "public/fpdf_formfill.h"
25 #include "public/fpdf_fwlevent.h" 24 #include "public/fpdf_fwlevent.h"
26 25
27 class CFFL_IFormFiller; 26 class CFFL_IFormFiller;
28 class CFX_SystemHandler; 27 class CFX_SystemHandler;
29 class CPDF_AnnotList; 28 class CPDF_AnnotList;
30 class CPDFSDK_ActionHandler; 29 class CPDFSDK_ActionHandler;
31 class CPDFSDK_Annot; 30 class CPDFSDK_Annot;
31 class CPDFSDK_AnnotHandlerMgr;
32 class CPDFSDK_InterForm; 32 class CPDFSDK_InterForm;
33 class CPDFSDK_PageView; 33 class CPDFSDK_PageView;
34 class CPDFSDK_Widget; 34 class CPDFSDK_Widget;
35 class IJS_Runtime; 35 class IJS_Runtime;
36 36
37 class CPDFDoc_Environment final { 37 class CPDFDoc_Environment final {
38 public: 38 public:
39 CPDFDoc_Environment(UnderlyingDocumentType* pDoc, FPDF_FORMFILLINFO* pFFinfo); 39 CPDFDoc_Environment(UnderlyingDocumentType* pDoc, FPDF_FORMFILLINFO* pFFinfo);
40 ~CPDFDoc_Environment(); 40 ~CPDFDoc_Environment();
41 41
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 FX_BOOL m_bTakeOverPage; 627 FX_BOOL m_bTakeOverPage;
628 #endif // PDF_ENABLE_XFA 628 #endif // PDF_ENABLE_XFA
629 FX_BOOL m_bEnterWidget; 629 FX_BOOL m_bEnterWidget;
630 FX_BOOL m_bExitWidget; 630 FX_BOOL m_bExitWidget;
631 FX_BOOL m_bOnWidget; 631 FX_BOOL m_bOnWidget;
632 FX_BOOL m_bValid; 632 FX_BOOL m_bValid;
633 FX_BOOL m_bLocked; 633 FX_BOOL m_bLocked;
634 }; 634 };
635 635
636 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ 636 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/fsdk_annothandler.h ('k') | fpdfsdk/include/ipdfsdk_annothandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698