| OLD | NEW |
| 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 #include "fpdfsdk/include/cpdfsdk_annothandlermgr.h" | 7 #include "fpdfsdk/cpdfsdk_annothandlermgr.h" |
| 8 | 8 |
| 9 #include "core/fpdfdoc/cpdf_annot.h" | 9 #include "core/fpdfdoc/cpdf_annot.h" |
| 10 #include "fpdfsdk/include/cba_annotiterator.h" | 10 #include "fpdfsdk/cba_annotiterator.h" |
| 11 #include "fpdfsdk/include/cpdfsdk_annot.h" | 11 #include "fpdfsdk/cpdfsdk_annot.h" |
| 12 #include "fpdfsdk/include/cpdfsdk_baannot.h" | 12 #include "fpdfsdk/cpdfsdk_baannot.h" |
| 13 #include "fpdfsdk/include/cpdfsdk_baannothandler.h" | 13 #include "fpdfsdk/cpdfsdk_baannothandler.h" |
| 14 #include "fpdfsdk/include/cpdfsdk_datetime.h" | 14 #include "fpdfsdk/cpdfsdk_datetime.h" |
| 15 #include "fpdfsdk/include/cpdfsdk_document.h" | 15 #include "fpdfsdk/cpdfsdk_document.h" |
| 16 #include "fpdfsdk/include/cpdfsdk_environment.h" | 16 #include "fpdfsdk/cpdfsdk_environment.h" |
| 17 #include "fpdfsdk/include/cpdfsdk_pageview.h" | 17 #include "fpdfsdk/cpdfsdk_pageview.h" |
| 18 #include "fpdfsdk/include/cpdfsdk_widgethandler.h" | 18 #include "fpdfsdk/cpdfsdk_widgethandler.h" |
| 19 | 19 |
| 20 #ifdef PDF_ENABLE_XFA | 20 #ifdef PDF_ENABLE_XFA |
| 21 #include "fpdfsdk/cpdfsdk_xfawidgethandler.h" |
| 21 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h" | 22 #include "fpdfsdk/fpdfxfa/fpdfxfa_page.h" |
| 22 #include "fpdfsdk/include/cpdfsdk_xfawidgethandler.h" | |
| 23 #include "xfa/fxfa/include/xfa_ffpageview.h" | 23 #include "xfa/fxfa/include/xfa_ffpageview.h" |
| 24 #include "xfa/fxfa/include/xfa_ffwidget.h" | 24 #include "xfa/fxfa/include/xfa_ffwidget.h" |
| 25 #endif // PDF_ENABLE_XFA | 25 #endif // PDF_ENABLE_XFA |
| 26 | 26 |
| 27 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFSDK_Environment* pEnv) | 27 CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(CPDFSDK_Environment* pEnv) |
| 28 : m_pBAAnnotHandler(new CPDFSDK_BAAnnotHandler()), | 28 : m_pBAAnnotHandler(new CPDFSDK_BAAnnotHandler()), |
| 29 m_pWidgetHandler(new CPDFSDK_WidgetHandler(pEnv)), | 29 m_pWidgetHandler(new CPDFSDK_WidgetHandler(pEnv)), |
| 30 #ifdef PDF_ENABLE_XFA | 30 #ifdef PDF_ENABLE_XFA |
| 31 m_pXFAWidgetHandler(new CPDFSDK_XFAWidgetHandler(pEnv)), | 31 m_pXFAWidgetHandler(new CPDFSDK_XFAWidgetHandler(pEnv)), |
| 32 #endif // PDF_ENABLE_XFA | 32 #endif // PDF_ENABLE_XFA |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 bNext ? pWidgetIterator->MoveToNext() : pWidgetIterator->MoveToPrevious(); | 302 bNext ? pWidgetIterator->MoveToNext() : pWidgetIterator->MoveToPrevious(); |
| 303 if (!hNextFocus && pSDKAnnot) | 303 if (!hNextFocus && pSDKAnnot) |
| 304 hNextFocus = pWidgetIterator->MoveToFirst(); | 304 hNextFocus = pWidgetIterator->MoveToFirst(); |
| 305 | 305 |
| 306 return pPageView->GetAnnotByXFAWidget(hNextFocus); | 306 return pPageView->GetAnnotByXFAWidget(hNextFocus); |
| 307 #else // PDF_ENABLE_XFA | 307 #else // PDF_ENABLE_XFA |
| 308 CBA_AnnotIterator ai(pSDKAnnot->GetPageView(), CPDF_Annot::Subtype::WIDGET); | 308 CBA_AnnotIterator ai(pSDKAnnot->GetPageView(), CPDF_Annot::Subtype::WIDGET); |
| 309 return bNext ? ai.GetNextAnnot(pSDKAnnot) : ai.GetPrevAnnot(pSDKAnnot); | 309 return bNext ? ai.GetNextAnnot(pSDKAnnot) : ai.GetPrevAnnot(pSDKAnnot); |
| 310 #endif // PDF_ENABLE_XFA | 310 #endif // PDF_ENABLE_XFA |
| 311 } | 311 } |
| OLD | NEW |