• Home
  • Raw
  • Download

Lines Matching refs:m_pAnnot

25     : CPDFSDK_Annot(pPageView), m_pAnnot(pAnnot) {}  in CPDFSDK_BAAnnot()
30 return m_pAnnot; in GetPDFAnnot()
34 return m_pAnnot->GetPopupAnnot(); in GetPDFPopupAnnot()
38 return m_pAnnot->GetAnnotDict(); in GetAnnotDict()
45 m_pAnnot->GetAnnotDict()->SetRectFor("Rect", rect); in SetRect()
49 return m_pAnnot->GetRect(); in GetRect()
53 return m_pAnnot->GetSubtype(); in GetAnnotSubtype()
60 m_pAnnot->DrawAppearance(m_pPageView->GetPDFPage(), pDevice, pUser2Device, in DrawAppearance()
65 return !!m_pAnnot->GetAnnotDict()->GetDictFor("AP"); in IsAppearanceValid()
69 CPDF_Dictionary* pAP = m_pAnnot->GetAnnotDict()->GetDictFor("AP"); in IsAppearanceValid()
90 m_pAnnot->DrawBorder(pDevice, pUser2Device, pOptions); in DrawBorder()
94 m_pAnnot->ClearCachedAP(); in ClearCachedAP()
99 m_pAnnot->GetAnnotDict()->RemoveFor("Contents"); in SetContents()
101 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_String>( in SetContents()
107 return m_pAnnot->GetAnnotDict()->GetUnicodeTextFor("Contents"); in GetContents()
112 m_pAnnot->GetAnnotDict()->RemoveFor("NM"); in SetAnnotName()
114 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_String>( in SetAnnotName()
120 return m_pAnnot->GetAnnotDict()->GetUnicodeTextFor("NM"); in GetAnnotName()
127 m_pAnnot->GetAnnotDict()->RemoveFor("M"); in SetModifiedDate()
129 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_String>("M", str, false); in SetModifiedDate()
134 CFX_ByteString str = m_pAnnot->GetAnnotDict()->GetStringFor("M"); in GetModifiedDate()
141 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Number>("F", in SetFlags()
146 return m_pAnnot->GetAnnotDict()->GetIntegerFor("F"); in GetFlags()
151 m_pAnnot->GetAnnotDict()->RemoveFor("AS"); in SetAppState()
153 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_String>("AS", str, false); in SetAppState()
157 return m_pAnnot->GetAnnotDict()->GetStringFor("AS"); in GetAppState()
161 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Number>("StructParent", key); in SetStructParent()
165 return m_pAnnot->GetAnnotDict()->GetIntegerFor("StructParent"); in GetStructParent()
170 CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArrayFor("Border"); in SetBorderWidth()
174 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDictFor("BS"); in SetBorderWidth()
176 pBSDict = m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Dictionary>("BS"); in SetBorderWidth()
183 if (CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArrayFor("Border")) in GetBorderWidth()
186 if (CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDictFor("BS")) in GetBorderWidth()
193 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDictFor("BS"); in SetBorderStyle()
195 pBSDict = m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Dictionary>("BS"); in SetBorderStyle()
219 CPDF_Dictionary* pBSDict = m_pAnnot->GetAnnotDict()->GetDictFor("BS"); in GetBorderStyle()
234 CPDF_Array* pBorder = m_pAnnot->GetAnnotDict()->GetArrayFor("Border"); in GetBorderStyle()
247 CPDF_Array* pArray = m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Array>("C"); in SetColor()
257 m_pAnnot->GetAnnotDict()->RemoveFor("C"); in RemoveColor()
261 if (CPDF_Array* pEntry = m_pAnnot->GetAnnotDict()->GetArrayFor("C")) { in GetColor()
301 CPDF_Dictionary* pAPDict = m_pAnnot->GetAnnotDict()->GetDictFor("AP"); in WriteAppearance()
303 pAPDict = m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Dictionary>("AP"); in WriteAppearance()
328 m_pAnnot->GetDocument()->GetByteStringPool()); in WriteAppearance()
347 return CPDF_Action(m_pAnnot->GetAnnotDict()->GetDictFor("A")); in GetAction()
352 if (pDict != m_pAnnot->GetAnnotDict()->GetDictFor("A")) { in SetAction()
356 m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Reference>("A", pDoc, in SetAction()
362 m_pAnnot->GetAnnotDict()->RemoveFor("A"); in RemoveAction()
366 return CPDF_AAction(m_pAnnot->GetAnnotDict()->GetDictFor("AA")); in GetAAction()
370 if (aa.GetDict() != m_pAnnot->GetAnnotDict()->GetDictFor("AA")) in SetAAction()
371 m_pAnnot->GetAnnotDict()->SetFor("AA", pdfium::WrapUnique(aa.GetDict())); in SetAAction()
375 m_pAnnot->GetAnnotDict()->RemoveFor("AA"); in RemoveAAction()
392 m_pAnnot->GetAPForm(m_pPageView->GetPDFPage(), CPDF_Annot::Normal); in Annot_OnDraw()
393 m_pAnnot->DrawAppearance(m_pPageView->GetPDFPage(), pDevice, pUser2Device, in Annot_OnDraw()
398 if (CPDF_Annot* pAnnot = m_pAnnot->GetPopupAnnot()) in SetOpenState()