Lines Matching refs:pAnnot
127 CPDFSDK_Annot* pAnnot = pFFL->GetSDKAnnot(); in OutputSelectedRect() local
128 UnderlyingPageType* pPage = pAnnot->GetUnderlyingPage(); in OutputSelectedRect()
518 CPDFSDK_Annot* pAnnot) { in UpdateAllViews() argument
522 pPageView->UpdateView(pAnnot); in UpdateAllViews()
531 FX_BOOL CPDFSDK_Document::SetFocusAnnot(CPDFSDK_Annot* pAnnot, FX_UINT nFlag) { in SetFocusAnnot() argument
535 if (m_pFocusAnnot == pAnnot) in SetFocusAnnot()
543 if (!pAnnot) in SetFocusAnnot()
549 CPDFSDK_PageView* pPageView = pAnnot->GetPageView(); in SetFocusAnnot()
554 if (!pAnnotHandler->Annot_OnChangeFocus(pAnnot, pLastFocusAnnot)) in SetFocusAnnot()
557 if (!pAnnotHandler->Annot_OnSetFocus(pAnnot, nFlag)) in SetFocusAnnot()
560 m_pFocusAnnot = pAnnot; in SetFocusAnnot()
645 for (CPDFSDK_Annot* pAnnot : m_fxAnnotArray) in ~CPDFSDK_PageView()
646 pAnnotHandlerMgr->ReleaseAnnot(pAnnot); in ~CPDFSDK_PageView()
716 for (const CPDF_Annot* pAnnot : m_pAnnotList->All()) { local
718 pAnnot->GetRect(annotRect);
720 return pAnnot;
727 for (const CPDF_Annot* pAnnot : m_pAnnotList->All()) { local
728 if (pAnnot->GetSubType() == "Widget") {
730 pAnnot->GetRect(annotRect);
732 return pAnnot;
781 FX_BOOL CPDFSDK_PageView::Annot_HasAppearance(CPDF_Annot* pAnnot) { argument
782 CPDF_Dictionary* pAnnotDic = pAnnot->GetAnnotDict();
830 FX_BOOL CPDFSDK_PageView::DeleteAnnot(CPDFSDK_Annot* pAnnot) { argument
832 if (!pAnnot)
834 CPDFXFA_Page* pPage = pAnnot->GetPDFXFAPage();
839 auto it = std::find(m_fxAnnotArray.begin(), m_fxAnnotArray.end(), pAnnot);
842 if (m_CaptureWidget == pAnnot)
880 for (CPDFSDK_Annot* pAnnot : m_fxAnnotArray) {
881 if (pAnnot->GetPDFAnnot()->GetAnnotDict() == pDict)
882 return pAnnot;
892 for (CPDFSDK_Annot* pAnnot : m_fxAnnotArray) {
893 if (pAnnot->GetXFAWidget() == hWidget)
894 return pAnnot;
1009 if (CPDFSDK_Annot* pAnnot = GetFXWidgetAtPoint(point.x, point.y)) { local
1012 return pAnnotHandlerMgr->Annot_OnMouseWheel(this, pAnnot, nFlag,
1019 if (CPDFSDK_Annot* pAnnot = GetFocusAnnot()) { local
1022 return pAnnotHandlerMgr->Annot_OnChar(pAnnot, nChar, nFlag);
1029 if (CPDFSDK_Annot* pAnnot = GetFocusAnnot()) { local
1032 return pAnnotHandlerMgr->Annot_OnKeyDown(pAnnot, nKeyCode, nFlag);
1074 CPDFSDK_Annot* pAnnot = pAnnotHandlerMgr->NewAnnot(pXFAAnnot, this); local
1075 if (!pAnnot)
1078 m_fxAnnotArray.push_back(pAnnot);
1079 pAnnotHandlerMgr->Annot_OnLoad(pAnnot);
1096 CPDFSDK_Annot* pAnnot = pAnnotHandlerMgr->NewAnnot(pPDFAnnot, this); local
1097 if (!pAnnot)
1099 m_fxAnnotArray.push_back(pAnnot);
1100 pAnnotHandlerMgr->Annot_OnLoad(pAnnot);
1110 CPDFSDK_Annot* pAnnot = pAnnotHandlerMgr->NewAnnot(pPDFAnnot, this); local
1111 if (!pAnnot)
1113 m_fxAnnotArray.push_back(pAnnot);
1114 pAnnotHandlerMgr->Annot_OnLoad(pAnnot);
1129 void CPDFSDK_PageView::UpdateView(CPDFSDK_Annot* pAnnot) { argument
1130 CPDF_Rect rcWindow = pAnnot->GetRect();
1164 for (CPDFSDK_Annot* pAnnot : m_fxAnnotArray) {
1165 if (pAnnot == pFocusAnnot)
1166 return pAnnot;