| OLD | NEW |
| 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> |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 #endif // PDF_ENABLE_XFA | 609 #endif // PDF_ENABLE_XFA |
| 610 | 610 |
| 611 private: | 611 private: |
| 612 int GetPageIndexForStaticPDF() const; | 612 int GetPageIndexForStaticPDF() const; |
| 613 | 613 |
| 614 CFX_Matrix m_curMatrix; | 614 CFX_Matrix m_curMatrix; |
| 615 UnderlyingPageType* const m_page; | 615 UnderlyingPageType* const m_page; |
| 616 std::unique_ptr<CPDF_AnnotList> m_pAnnotList; | 616 std::unique_ptr<CPDF_AnnotList> m_pAnnotList; |
| 617 std::vector<CPDFSDK_Annot*> m_fxAnnotArray; | 617 std::vector<CPDFSDK_Annot*> m_fxAnnotArray; |
| 618 CPDFSDK_Document* const m_pSDKDoc; | 618 CPDFSDK_Document* const m_pSDKDoc; |
| 619 #ifdef PDF_ENABLE_XFA | |
| 620 CPDFSDK_Annot* m_CaptureWidget; | 619 CPDFSDK_Annot* m_CaptureWidget; |
| 621 #else // PDF_ENABLE_XFA | 620 #ifndef PDF_ENABLE_XFA |
| 622 CPDFSDK_Widget* m_CaptureWidget; | |
| 623 FX_BOOL m_bTakeOverPage; | 621 FX_BOOL m_bTakeOverPage; |
| 624 #endif // PDF_ENABLE_XFA | 622 #endif // PDF_ENABLE_XFA |
| 625 FX_BOOL m_bEnterWidget; | 623 FX_BOOL m_bEnterWidget; |
| 626 FX_BOOL m_bExitWidget; | 624 FX_BOOL m_bExitWidget; |
| 627 FX_BOOL m_bOnWidget; | 625 FX_BOOL m_bOnWidget; |
| 628 FX_BOOL m_bValid; | 626 FX_BOOL m_bValid; |
| 629 FX_BOOL m_bLocked; | 627 FX_BOOL m_bLocked; |
| 630 }; | 628 }; |
| 631 | 629 |
| 632 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ | 630 #endif // FPDFSDK_INCLUDE_FSDK_MGR_H_ |
| OLD | NEW |