• Home
  • Raw
  • Download

Lines Matching refs:m_pAnnot

512     : CPDFSDK_Annot(pPageView), m_pAnnot(pAnnot) {  in CPDFSDK_BAAnnot()
516 return m_pAnnot; in GetPDFAnnot()
537 return m_pAnnot->GetAnnotDict(); in GetAnnotDict()
544 m_pAnnot->GetAnnotDict()->SetAtRect("Rect", rect); in SetRect()
549 m_pAnnot->GetRect(rect); in GetRect()
554 return m_pAnnot->GetSubType(); in GetType()
565 m_pAnnot->DrawAppearance(m_pPageView->GetPDFPage(), pDevice, pUser2Device, in DrawAppearance()
570 return m_pAnnot->GetAnnotDict()->GetDict("AP") != NULL; in IsAppearanceValid()
574 CPDF_Dictionary* pAP = m_pAnnot->GetAnnotDict()->GetDict("AP"); in IsAppearanceValid()
595 m_pAnnot->DrawBorder(pDevice, pUser2Device, pOptions); in DrawBorder()
599 m_pAnnot->ClearCachedAP(); in ClearCachedAP()
604 m_pAnnot->GetAnnotDict()->RemoveAt("Contents"); in SetContents()
606 m_pAnnot->GetAnnotDict()->SetAtString("Contents", in SetContents()
611 return m_pAnnot->GetAnnotDict()->GetUnicodeText("Contents"); in GetContents()
616 m_pAnnot->GetAnnotDict()->RemoveAt("NM"); in SetAnnotName()
618 m_pAnnot->GetAnnotDict()->SetAtString("NM", PDF_EncodeText(sName)); in SetAnnotName()
622 return m_pAnnot->GetAnnotDict()->GetUnicodeText("NM"); in GetAnnotName()
630 m_pAnnot->GetAnnotDict()->RemoveAt("M"); in SetModifiedDate()
632 m_pAnnot->GetAnnotDict()->SetAtString("M", str); in SetModifiedDate()
637 CFX_ByteString str = m_pAnnot->GetAnnotDict()->GetString("M"); in GetModifiedDate()
646 m_pAnnot->GetAnnotDict()->SetAtInteger("F", nFlags); in SetFlags()
650 return m_pAnnot->GetAnnotDict()->GetInteger("F"); in GetFlags()
655 m_pAnnot->GetAnnotDict()->RemoveAt("AS"); in SetAppState()
657 m_pAnnot->GetAnnotDict()->SetAtString("AS", str); in SetAppState()
661 return m_pAnnot->GetAnnotDict()->GetString("AS"); in GetAppState()
665 m_pAnnot->GetAnnotDict()->SetAtInteger("StructParent", key); in SetStructParent()
669 return m_pAnnot->GetAnnotDict()->GetInteger("StructParent"); in GetStructParent()
674 CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArray("Border"); in SetBorderWidth()
679 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDict("BS"); in SetBorderWidth()
683 m_pAnnot->GetAnnotDict()->SetAt("BS", pBSDict); in SetBorderWidth()
691 if (CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArray("Border")) { in GetBorderWidth()
694 if (CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDict("BS")) { in GetBorderWidth()
701 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDict("BS"); in SetBorderStyle()
704 m_pAnnot->GetAnnotDict()->SetAt("BS", pBSDict); in SetBorderStyle()
727 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDict("BS"); in GetBorderStyle()
742 CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArray("Border"); in GetBorderStyle()
755 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDict("BS"); in SetBorderDash()
758 m_pAnnot->GetAnnotDict()->SetAt("BS", pBSDict); in SetBorderDash()
772 CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArray("Border"); in GetBorderDash()
776 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDict("BS"); in GetBorderDash()
794 m_pAnnot->GetAnnotDict()->SetAt("C", pArray); in SetColor()
798 m_pAnnot->GetAnnotDict()->RemoveAt("C"); in RemoveColor()
802 if (CPDF_Array* pEntry = m_pAnnot->GetAnnotDict()->GetArray("C")) { in GetColor()
842 CPDF_Dictionary* pAPDict = m_pAnnot->GetAnnotDict()->GetDict("AP"); in WriteAppearance()
846 m_pAnnot->GetAnnotDict()->SetAt("AP", pAPDict); in WriteAppearance()
913 return CPDF_Action(m_pAnnot->GetAnnotDict()->GetDict("A")); in GetAction()
919 CPDF_Action(m_pAnnot->GetAnnotDict()->GetDict("A"))) { in SetAction()
925 m_pAnnot->GetAnnotDict()->SetAtReference("A", pDoc, pDict->GetObjNum()); in SetAction()
930 m_pAnnot->GetAnnotDict()->RemoveAt("A"); in RemoveAction()
934 return m_pAnnot->GetAnnotDict()->GetDict("AA"); in GetAAction()
938 if ((CPDF_AAction&)aa != m_pAnnot->GetAnnotDict()->GetDict("AA")) in SetAAction()
939 m_pAnnot->GetAnnotDict()->SetAt("AA", (CPDF_AAction&)aa); in SetAAction()
943 m_pAnnot->GetAnnotDict()->RemoveAt("AA"); in RemoveAAction()
967 m_pAnnot->GetAPForm(m_pPageView->GetPDFPage(), CPDF_Annot::Normal); in Annot_OnDraw()
968 m_pAnnot->DrawAppearance(m_pPageView->GetPDFPage(), pDevice, pUser2Device, in Annot_OnDraw()