blob: 5324c3fef345ca3fbc724f0888196469a3b6d546 [file] [log] [blame]
jaepark98e10192016-08-15 10:51:11 -07001// Copyright 2016 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
dsinclair114e46a2016-09-29 17:18:21 -07007#include "fpdfsdk/cpdfsdk_annothandlermgr.h"
jaepark98e10192016-08-15 10:51:11 -07008
dsinclair1727aee2016-09-29 13:12:56 -07009#include "core/fpdfdoc/cpdf_annot.h"
dsinclair114e46a2016-09-29 17:18:21 -070010#include "fpdfsdk/cba_annotiterator.h"
11#include "fpdfsdk/cpdfsdk_annot.h"
12#include "fpdfsdk/cpdfsdk_baannot.h"
13#include "fpdfsdk/cpdfsdk_baannothandler.h"
14#include "fpdfsdk/cpdfsdk_datetime.h"
dsinclair735606d2016-10-05 15:47:02 -070015#include "fpdfsdk/cpdfsdk_formfillenvironment.h"
dsinclair114e46a2016-09-29 17:18:21 -070016#include "fpdfsdk/cpdfsdk_pageview.h"
17#include "fpdfsdk/cpdfsdk_widgethandler.h"
jaepark98e10192016-08-15 10:51:11 -070018
19#ifdef PDF_ENABLE_XFA
dsinclair114e46a2016-09-29 17:18:21 -070020#include "fpdfsdk/cpdfsdk_xfawidgethandler.h"
dsinclair4d29e782016-10-04 14:02:47 -070021#include "fpdfsdk/fpdfxfa/cpdfxfa_page.h"
dsinclair5b493092016-09-29 20:20:24 -070022#include "xfa/fxfa/xfa_ffpageview.h"
23#include "xfa/fxfa/xfa_ffwidget.h"
jaepark98e10192016-08-15 10:51:11 -070024#endif // PDF_ENABLE_XFA
25
dsinclair735606d2016-10-05 15:47:02 -070026CPDFSDK_AnnotHandlerMgr::CPDFSDK_AnnotHandlerMgr(
27 CPDFSDK_FormFillEnvironment* pEnv)
jaepark35512aa2016-08-29 17:15:08 -070028 : m_pBAAnnotHandler(new CPDFSDK_BAAnnotHandler()),
dsinclair8e0638b2016-09-22 11:06:02 -070029 m_pWidgetHandler(new CPDFSDK_WidgetHandler(pEnv)),
jaepark98e10192016-08-15 10:51:11 -070030#ifdef PDF_ENABLE_XFA
dsinclair8e0638b2016-09-22 11:06:02 -070031 m_pXFAWidgetHandler(new CPDFSDK_XFAWidgetHandler(pEnv)),
jaepark98e10192016-08-15 10:51:11 -070032#endif // PDF_ENABLE_XFA
dsinclair8e0638b2016-09-22 11:06:02 -070033 m_pEnv(pEnv) {
34 m_pWidgetHandler->SetFormFiller(m_pEnv->GetInteractiveFormFiller());
jaepark98e10192016-08-15 10:51:11 -070035}
36
37CPDFSDK_AnnotHandlerMgr::~CPDFSDK_AnnotHandlerMgr() {}
38
jaepark98e10192016-08-15 10:51:11 -070039CPDFSDK_Annot* CPDFSDK_AnnotHandlerMgr::NewAnnot(CPDF_Annot* pAnnot,
40 CPDFSDK_PageView* pPageView) {
41 ASSERT(pPageView);
jaepark35512aa2016-08-29 17:15:08 -070042 return GetAnnotHandler(pAnnot->GetSubtype())->NewAnnot(pAnnot, pPageView);
jaepark98e10192016-08-15 10:51:11 -070043}
44
45#ifdef PDF_ENABLE_XFA
46CPDFSDK_Annot* CPDFSDK_AnnotHandlerMgr::NewAnnot(CXFA_FFWidget* pAnnot,
47 CPDFSDK_PageView* pPageView) {
48 ASSERT(pAnnot);
49 ASSERT(pPageView);
50
jaepark956553e2016-08-31 06:49:27 -070051 return GetAnnotHandler(CPDF_Annot::Subtype::XFAWIDGET)
52 ->NewAnnot(pAnnot, pPageView);
jaepark98e10192016-08-15 10:51:11 -070053}
54#endif // PDF_ENABLE_XFA
55
56void CPDFSDK_AnnotHandlerMgr::ReleaseAnnot(CPDFSDK_Annot* pAnnot) {
jaepark35512aa2016-08-29 17:15:08 -070057 IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot);
jaepark35512aa2016-08-29 17:15:08 -070058 pAnnotHandler->ReleaseAnnot(pAnnot);
jaepark98e10192016-08-15 10:51:11 -070059}
60
61void CPDFSDK_AnnotHandlerMgr::Annot_OnCreate(CPDFSDK_Annot* pAnnot) {
62 CPDF_Annot* pPDFAnnot = pAnnot->GetPDFAnnot();
63
64 CPDFSDK_DateTime curTime;
dsinclair38fd8442016-09-15 10:15:32 -070065 pPDFAnnot->GetAnnotDict()->SetStringFor("M", curTime.ToPDFDateTimeString());
66 pPDFAnnot->GetAnnotDict()->SetNumberFor("F", 0);
jaepark98e10192016-08-15 10:51:11 -070067}
68
69void CPDFSDK_AnnotHandlerMgr::Annot_OnLoad(CPDFSDK_Annot* pAnnot) {
70 ASSERT(pAnnot);
jaepark35512aa2016-08-29 17:15:08 -070071 GetAnnotHandler(pAnnot)->OnLoad(pAnnot);
jaepark98e10192016-08-15 10:51:11 -070072}
73
74IPDFSDK_AnnotHandler* CPDFSDK_AnnotHandlerMgr::GetAnnotHandler(
75 CPDFSDK_Annot* pAnnot) const {
jaepark35512aa2016-08-29 17:15:08 -070076 return GetAnnotHandler(pAnnot->GetAnnotSubtype());
jaepark98e10192016-08-15 10:51:11 -070077}
78
79IPDFSDK_AnnotHandler* CPDFSDK_AnnotHandlerMgr::GetAnnotHandler(
jaepark956553e2016-08-31 06:49:27 -070080 CPDF_Annot::Subtype nAnnotSubtype) const {
81 if (nAnnotSubtype == CPDF_Annot::Subtype::WIDGET)
jaepark8c541822016-08-30 13:43:05 -070082 return m_pWidgetHandler.get();
jaepark35512aa2016-08-29 17:15:08 -070083
84#ifdef PDF_ENABLE_XFA
jaepark956553e2016-08-31 06:49:27 -070085 if (nAnnotSubtype == CPDF_Annot::Subtype::XFAWIDGET)
jaepark8c541822016-08-30 13:43:05 -070086 return m_pXFAWidgetHandler.get();
jaepark35512aa2016-08-29 17:15:08 -070087#endif // PDF_ENABLE_XFA
88
89 return m_pBAAnnotHandler.get();
jaepark98e10192016-08-15 10:51:11 -070090}
91
92void CPDFSDK_AnnotHandlerMgr::Annot_OnDraw(CPDFSDK_PageView* pPageView,
93 CPDFSDK_Annot* pAnnot,
94 CFX_RenderDevice* pDevice,
jaepark75f84a52016-09-09 15:39:09 -070095 CFX_Matrix* pUser2Device,
96 bool bDrawAnnots) {
jaepark98e10192016-08-15 10:51:11 -070097 ASSERT(pAnnot);
jaepark75f84a52016-09-09 15:39:09 -070098 GetAnnotHandler(pAnnot)->OnDraw(pPageView, pAnnot, pDevice, pUser2Device,
99 bDrawAnnots);
jaepark98e10192016-08-15 10:51:11 -0700100}
101
102FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnLButtonDown(
103 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700104 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700105 uint32_t nFlags,
106 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700107 ASSERT(*pAnnot);
108 return GetAnnotHandler(pAnnot->Get())
109 ->OnLButtonDown(pPageView, pAnnot, nFlags, point);
jaepark98e10192016-08-15 10:51:11 -0700110}
111
112FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnLButtonUp(
113 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700114 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700115 uint32_t nFlags,
116 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700117 ASSERT(*pAnnot);
118 return GetAnnotHandler(pAnnot->Get())
119 ->OnLButtonUp(pPageView, pAnnot, nFlags, point);
jaepark98e10192016-08-15 10:51:11 -0700120}
121
122FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnLButtonDblClk(
123 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700124 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700125 uint32_t nFlags,
126 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700127 ASSERT(*pAnnot);
128 return GetAnnotHandler(pAnnot->Get())
129 ->OnLButtonDblClk(pPageView, pAnnot, nFlags, point);
jaepark98e10192016-08-15 10:51:11 -0700130}
131
132FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnMouseMove(
133 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700134 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700135 uint32_t nFlags,
136 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700137 ASSERT(*pAnnot);
138 return GetAnnotHandler(pAnnot->Get())
139 ->OnMouseMove(pPageView, pAnnot, nFlags, point);
jaepark98e10192016-08-15 10:51:11 -0700140}
141
142FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnMouseWheel(
143 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700144 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700145 uint32_t nFlags,
146 short zDelta,
147 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700148 ASSERT(*pAnnot);
149 return GetAnnotHandler(pAnnot->Get())
150 ->OnMouseWheel(pPageView, pAnnot, nFlags, zDelta, point);
jaepark98e10192016-08-15 10:51:11 -0700151}
152
153FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnRButtonDown(
154 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700155 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700156 uint32_t nFlags,
157 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700158 ASSERT(*pAnnot);
159 return GetAnnotHandler(pAnnot->Get())
160 ->OnRButtonDown(pPageView, pAnnot, nFlags, point);
jaepark98e10192016-08-15 10:51:11 -0700161}
162
163FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnRButtonUp(
164 CPDFSDK_PageView* pPageView,
tsepezf8074ce2016-09-27 14:29:57 -0700165 CPDFSDK_Annot::ObservedPtr* pAnnot,
jaepark98e10192016-08-15 10:51:11 -0700166 uint32_t nFlags,
167 const CFX_FloatPoint& point) {
tsepezf8074ce2016-09-27 14:29:57 -0700168 ASSERT(*pAnnot);
169 return GetAnnotHandler(pAnnot->Get())
170 ->OnRButtonUp(pPageView, pAnnot, nFlags, point);
jaepark98e10192016-08-15 10:51:11 -0700171}
172
tsepezf8074ce2016-09-27 14:29:57 -0700173void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseEnter(
174 CPDFSDK_PageView* pPageView,
175 CPDFSDK_Annot::ObservedPtr* pAnnot,
176 uint32_t nFlag) {
177 ASSERT(*pAnnot);
178 GetAnnotHandler(pAnnot->Get())->OnMouseEnter(pPageView, pAnnot, nFlag);
jaepark98e10192016-08-15 10:51:11 -0700179}
180
tsepezf8074ce2016-09-27 14:29:57 -0700181void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseExit(
182 CPDFSDK_PageView* pPageView,
183 CPDFSDK_Annot::ObservedPtr* pAnnot,
184 uint32_t nFlag) {
185 ASSERT(*pAnnot);
186 GetAnnotHandler(pAnnot->Get())->OnMouseExit(pPageView, pAnnot, nFlag);
jaepark98e10192016-08-15 10:51:11 -0700187}
188
189FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnChar(CPDFSDK_Annot* pAnnot,
190 uint32_t nChar,
191 uint32_t nFlags) {
jaepark35512aa2016-08-29 17:15:08 -0700192 return GetAnnotHandler(pAnnot)->OnChar(pAnnot, nChar, nFlags);
jaepark98e10192016-08-15 10:51:11 -0700193}
194
195FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnKeyDown(CPDFSDK_Annot* pAnnot,
196 int nKeyCode,
197 int nFlag) {
dsinclair8e0638b2016-09-22 11:06:02 -0700198 if (m_pEnv->IsCTRLKeyDown(nFlag) || m_pEnv->IsALTKeyDown(nFlag))
jaepark35512aa2016-08-29 17:15:08 -0700199 return GetAnnotHandler(pAnnot)->OnKeyDown(pAnnot, nKeyCode, nFlag);
jaepark98e10192016-08-15 10:51:11 -0700200
jaepark35512aa2016-08-29 17:15:08 -0700201 CPDFSDK_PageView* pPage = pAnnot->GetPageView();
202 CPDFSDK_Annot* pFocusAnnot = pPage->GetFocusAnnot();
203 if (pFocusAnnot && (nKeyCode == FWL_VKEY_Tab)) {
tsepezf8074ce2016-09-27 14:29:57 -0700204 CPDFSDK_Annot::ObservedPtr pNext(
205 GetNextAnnot(pFocusAnnot, !m_pEnv->IsSHIFTKeyDown(nFlag)));
206 if (pNext && pNext.Get() != pFocusAnnot) {
dsinclair7cbe68e2016-10-12 11:56:23 -0700207 pPage->GetFormFillEnv()->SetFocusAnnot(&pNext);
jaepark35512aa2016-08-29 17:15:08 -0700208 return TRUE;
jaepark98e10192016-08-15 10:51:11 -0700209 }
210 }
211
jaepark98e10192016-08-15 10:51:11 -0700212 return FALSE;
213}
214
215FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnKeyUp(CPDFSDK_Annot* pAnnot,
216 int nKeyCode,
217 int nFlag) {
218 return FALSE;
219}
220
tsepezf8074ce2016-09-27 14:29:57 -0700221FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnSetFocus(
222 CPDFSDK_Annot::ObservedPtr* pAnnot,
223 uint32_t nFlag) {
224 ASSERT(*pAnnot);
dsinclairb402b172016-10-11 09:26:32 -0700225 return GetAnnotHandler(pAnnot->Get())->OnSetFocus(pAnnot, nFlag);
jaepark98e10192016-08-15 10:51:11 -0700226}
227
tsepezf8074ce2016-09-27 14:29:57 -0700228FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnKillFocus(
229 CPDFSDK_Annot::ObservedPtr* pAnnot,
230 uint32_t nFlag) {
231 ASSERT(*pAnnot);
232 return GetAnnotHandler(pAnnot->Get())->OnKillFocus(pAnnot, nFlag);
jaepark98e10192016-08-15 10:51:11 -0700233}
234
235#ifdef PDF_ENABLE_XFA
236FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnChangeFocus(
tsepezf8074ce2016-09-27 14:29:57 -0700237 CPDFSDK_Annot::ObservedPtr* pSetAnnot,
238 CPDFSDK_Annot::ObservedPtr* pKillAnnot) {
239 FX_BOOL bXFA = (*pSetAnnot && (*pSetAnnot)->GetXFAWidget()) ||
240 (*pKillAnnot && (*pKillAnnot)->GetXFAWidget());
jaepark98e10192016-08-15 10:51:11 -0700241
242 if (bXFA) {
243 if (IPDFSDK_AnnotHandler* pXFAAnnotHandler =
jaepark956553e2016-08-31 06:49:27 -0700244 GetAnnotHandler(CPDF_Annot::Subtype::XFAWIDGET))
jaepark98e10192016-08-15 10:51:11 -0700245 return pXFAAnnotHandler->OnXFAChangedFocus(pKillAnnot, pSetAnnot);
246 }
247
248 return TRUE;
249}
250#endif // PDF_ENABLE_XFA
251
252CFX_FloatRect CPDFSDK_AnnotHandlerMgr::Annot_OnGetViewBBox(
253 CPDFSDK_PageView* pPageView,
254 CPDFSDK_Annot* pAnnot) {
255 ASSERT(pAnnot);
jaepark35512aa2016-08-29 17:15:08 -0700256 return GetAnnotHandler(pAnnot)->GetViewBBox(pPageView, pAnnot);
jaepark98e10192016-08-15 10:51:11 -0700257}
258
259FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnHitTest(CPDFSDK_PageView* pPageView,
260 CPDFSDK_Annot* pAnnot,
261 const CFX_FloatPoint& point) {
262 ASSERT(pAnnot);
jaepark35512aa2016-08-29 17:15:08 -0700263 IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot);
264 if (pAnnotHandler->CanAnswer(pAnnot))
265 return pAnnotHandler->HitTest(pPageView, pAnnot, point);
266
jaepark98e10192016-08-15 10:51:11 -0700267 return FALSE;
268}
269
270CPDFSDK_Annot* CPDFSDK_AnnotHandlerMgr::GetNextAnnot(CPDFSDK_Annot* pSDKAnnot,
271 FX_BOOL bNext) {
272#ifdef PDF_ENABLE_XFA
273 CPDFSDK_PageView* pPageView = pSDKAnnot->GetPageView();
274 CPDFXFA_Page* pPage = pPageView->GetPDFXFAPage();
275 if (!pPage)
276 return nullptr;
277 if (pPage->GetPDFPage()) { // for pdf annots.
jaepark9ed91372016-08-26 16:16:10 -0700278 CBA_AnnotIterator ai(pSDKAnnot->GetPageView(),
279 pSDKAnnot->GetAnnotSubtype());
jaepark98e10192016-08-15 10:51:11 -0700280 CPDFSDK_Annot* pNext =
281 bNext ? ai.GetNextAnnot(pSDKAnnot) : ai.GetPrevAnnot(pSDKAnnot);
282 return pNext;
283 }
284 // for xfa annots
285 std::unique_ptr<IXFA_WidgetIterator> pWidgetIterator(
286 pPage->GetXFAPageView()->CreateWidgetIterator(
287 XFA_TRAVERSEWAY_Tranvalse, XFA_WidgetStatus_Visible |
288 XFA_WidgetStatus_Viewable |
289 XFA_WidgetStatus_Focused));
290 if (!pWidgetIterator)
291 return nullptr;
292 if (pWidgetIterator->GetCurrentWidget() != pSDKAnnot->GetXFAWidget())
293 pWidgetIterator->SetCurrentWidget(pSDKAnnot->GetXFAWidget());
294 CXFA_FFWidget* hNextFocus =
295 bNext ? pWidgetIterator->MoveToNext() : pWidgetIterator->MoveToPrevious();
296 if (!hNextFocus && pSDKAnnot)
297 hNextFocus = pWidgetIterator->MoveToFirst();
298
299 return pPageView->GetAnnotByXFAWidget(hNextFocus);
300#else // PDF_ENABLE_XFA
jaepark956553e2016-08-31 06:49:27 -0700301 CBA_AnnotIterator ai(pSDKAnnot->GetPageView(), CPDF_Annot::Subtype::WIDGET);
jaepark98e10192016-08-15 10:51:11 -0700302 return bNext ? ai.GetNextAnnot(pSDKAnnot) : ai.GetPrevAnnot(pSDKAnnot);
303#endif // PDF_ENABLE_XFA
304}