Searched defs:pAnnot (Results 1 - 18 of 18) sorted by relevance

/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_PushButton.cpp13 CFFL_PushButton::CFFL_PushButton(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot): argument
14 CFFL_Button( pApp, pAnnot)
31 FX_BOOL CFFL_PushButton::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
33 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
36 void CFFL_PushButton::OnDraw(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, argument
40 CFFL_Button::OnDraw(pPageView, pAnnot, pDevice, pUser2Device, dwFlags);
H A DFFL_CheckBox.cpp34 FX_BOOL CFFL_CheckBox::OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags) argument
42 return CFFL_FormFiller::OnKeyDown(pAnnot, nKeyCode, nFlags);
45 FX_BOOL CFFL_CheckBox::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
55 CPDFSDK_PageView* pPageView = pAnnot->GetPageView();
66 CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
75 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
79 FX_BOOL CFFL_CheckBox::OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
81 CFFL_Button::OnLButtonUp(pPageView, pAnnot, nFlags, point);
87 CPDFSDK_Widget* pWidget = (CPDFSDK_Widget*)pAnnot;
H A DFFL_RadioButton.cpp34 FX_BOOL CFFL_RadioButton::OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags) argument
42 return CFFL_FormFiller::OnKeyDown(pAnnot, nKeyCode, nFlags);
46 FX_BOOL CFFL_RadioButton::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
56 CPDFSDK_PageView* pPageView = pAnnot->GetPageView();
67 CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
75 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
79 FX_BOOL CFFL_RadioButton::OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
81 CFFL_Button::OnLButtonUp(pPageView, pAnnot, nFlags, point);
H A DFFL_ListBox.cpp119 FX_BOOL CFFL_ListBox::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
121 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
H A DFFL_CBA_Fontmap.cpp10 CBA_FontMap::CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler) : argument
17 ASSERT(pAnnot != NULL);
19 CPDF_Page* pPage = pAnnot->GetPDFPage();
22 m_pAnnotDict = pAnnot->GetPDFAnnot()->m_pAnnotDict;
H A DFFL_ComboBox.cpp16 CFFL_ComboBox::CFFL_ComboBox(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot) : argument
17 CFFL_FormFiller(pApp, pAnnot), m_pFontMap( NULL )
19 //m_pFontMap = new CBA_FontMap( pAnnot, GetSystemHandler() );
101 FX_BOOL CFFL_ComboBox::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
103 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
H A DFFL_TextField.cpp12 CFFL_TextField::CFFL_TextField(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot) : argument
13 CFFL_FormFiller(pApp, pAnnot),
138 FX_BOOL CFFL_TextField::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
148 CPDF_Rect rcAnnot = pAnnot->GetRect();
149 m_pApp->FFI_Invalidate(pAnnot->GetPDFPage(), rcAnnot.left, rcAnnot.top, rcAnnot.right, rcAnnot.bottom);
179 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
H A DFFL_FormFiller.cpp20 CFFL_FormFiller::CFFL_FormFiller(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot) argument
22 m_pAnnot(pAnnot),
26 m_pWidget = (CPDFSDK_Widget*) pAnnot;
68 FX_RECT CFFL_FormFiller::GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
71 ASSERT(pAnnot != NULL);
93 void CFFL_FormFiller::OnDraw(CPDFSDK_PageView *pPageView, /*HDC hDC,*/ CPDFSDK_Annot* pAnnot, argument
97 ASSERT(pAnnot->GetPDFAnnot()->GetSubType() == "Widget");
107 CPDFSDK_Widget* pWidget = (CPDFSDK_Widget*)pAnnot;
113 void CFFL_FormFiller::OnDrawDeactive(CPDFSDK_PageView *pPageView, /*HDC hDC,*/ CPDFSDK_Annot* pAnnot, argument
117 ASSERT(pAnnot !
125 OnCreate(CPDFSDK_Annot* pAnnot) argument
129 OnLoad(CPDFSDK_Annot* pAnnot) argument
133 OnDelete(CPDFSDK_Annot* pAnnot) argument
137 OnMouseEnter(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
141 OnMouseExit(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
147 OnLButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
164 OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
177 OnLButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
188 OnMouseMove(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
204 OnMouseWheel(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, short zDelta, const CPDF_Point& point) argument
216 OnRButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
227 OnRButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
238 OnRButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
249 OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags) argument
265 OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
281 OnDeSelected(CPDFSDK_Annot* pAnnot) argument
286 OnSelected(CPDFSDK_Annot* pAnnot) argument
291 OnSetFocus(CPDFSDK_Annot* pAnnot, FX_UINT nFlag) argument
320 OnKillFocus(CPDFSDK_Annot* pAnnot, FX_UINT nFlag) argument
823 OnMouseEnter(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
831 OnMouseExit(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
843 OnLButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
857 OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
873 OnMouseMove(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
880 OnDraw(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, FX_DWORD dwFlags) argument
920 OnDrawDeactive(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, FX_DWORD dwFlags) argument
[all...]
H A DFFL_IFormFiller.cpp34 CPDFSDK_Annot * pAnnot = NULL; local
36 m_Maps.GetNextAssoc(pos,pAnnot,pFormFiller);
42 FX_BOOL CFFL_IFormFiller::Annot_HitTest(CPDFSDK_PageView* pPageView,CPDFSDK_Annot* pAnnot, CPDF_Point point) argument
44 CPDF_Rect rc = pAnnot->GetRect();
50 FX_RECT CFFL_IFormFiller::GetViewBBox(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot) argument
52 if (CFFL_FormFiller* pFormFiller = GetFormFiller(pAnnot, FALSE))
54 return pFormFiller->GetViewBBox(pPageView, pAnnot);
59 ASSERT(pAnnot != NULL);
61 CPDF_Annot* pPDFAnnot = pAnnot->GetPDFAnnot();
76 void CFFL_IFormFiller::OnDraw(CPDFSDK_PageView* pPageView, /*HDC hDC,*/ CPDFSDK_Annot* pAnnot, argument
140 OnCreate(CPDFSDK_Annot* pAnnot) argument
148 OnLoad(CPDFSDK_Annot* pAnnot) argument
156 OnDelete(CPDFSDK_Annot* pAnnot) argument
166 OnMouseEnter(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlag) argument
210 OnMouseExit(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlag) argument
254 OnLButtonDown(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
299 OnLButtonUp(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
386 OnLButtonDblClk(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
399 OnMouseMove(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
413 OnMouseWheel(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, short zDelta, const CPDF_Point& point) argument
426 OnRButtonDown(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
439 OnRButtonUp(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
452 OnRButtonDblClk(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point) argument
465 OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags) argument
478 OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
493 OnDeSelected(CPDFSDK_Annot* pAnnot) argument
504 OnSelected(CPDFSDK_Annot* pAnnot) argument
515 OnSetFocus(CPDFSDK_Annot* pAnnot,FX_UINT nFlag) argument
571 OnKillFocus(CPDFSDK_Annot* pAnnot,FX_UINT nFlag) argument
646 GetFormFiller(CPDFSDK_Annot* pAnnot, FX_BOOL bRegister) argument
697 RemoveFormFiller(CPDFSDK_Annot* pAnnot) argument
705 UnRegisterFormFiller(CPDFSDK_Annot* pAnnot) argument
1040 IsValidAnnot(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot) argument
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_link.cpp72 CPDF_Dictionary* pAnnot = pAnnotList->GetDict(i); local
73 if (pAnnot == NULL) {
76 if (pAnnot->GetString("Subtype") != "Link") {
79 pList->Add(pAnnot);
H A Ddoc_annot.cpp42 CPDF_Annot* pAnnot = new CPDF_Annot(pDict); local
43 pAnnot->m_pList = this;
44 m_AnnotList.Add(pAnnot);
66 CPDF_Annot* pAnnot = (CPDF_Annot*)m_AnnotList[i]; local
67 FX_BOOL bWidget = pAnnot->GetSubType() == "Widget";
71 FX_DWORD annot_flags = pAnnot->GetFlags();
83 CPDF_Dictionary* pAnnotDict = pAnnot->m_pAnnotDict;
90 pAnnot->GetRect(annot_rect_f);
102 pAnnot->DrawInContext(pPage, pContext, &matrix, CPDF_Annot::Normal);
103 } else if (!pAnnot
130 GetIndex(CPDF_Annot* pAnnot) argument
232 FPDFDOC_Annot_GetMatrix(const CPDF_Page* pPage, CPDF_Annot* pAnnot, CPDF_Annot::AppearanceMode mode, const CFX_AffineMatrix* pUser2Device, CFX_Matrix &matrix) argument
467 CPDF_Annot* pAnnot = m_pList->GetAt(i); local
483 CPDF_Annot* pAnnot = m_pList->GetAt(i); local
[all...]
H A Ddoc_form.cpp837 CPDF_Dictionary* pAnnot = pAnnotList->GetDict(i); local
838 if (pAnnot == NULL) {
842 if (!m_ControlMap.Lookup(pAnnot, (FX_LPVOID&)pControl)) {
857 CPDF_Dictionary* pAnnot = pAnnotList->GetDict(i); local
858 if (pAnnot == NULL) {
862 if (!m_ControlMap.Lookup(pAnnot, (FX_LPVOID&)pControl)) {
879 CPDF_Dictionary* pAnnot = pAnnotList->GetDict(i - 1); local
880 if (pAnnot == NULL) {
884 if (!m_ControlMap.Lookup(pAnnot, (FX_LPVOID&)pControl)) {
1275 CPDF_Dictionary* pAnnot local
[all...]
/external/pdfium/fpdfsdk/include/
H A Dfsdk_annothandler.h32 virtual FX_BOOL CanAnswer(CPDFSDK_Annot* pAnnot) = 0;
35 virtual CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPage) = 0;
37 virtual void ReleaseAnnot(CPDFSDK_Annot* pAnnot) = 0;
39 virtual void DeleteAnnot(CPDFSDK_Annot* pAnnot) = 0;
42 virtual CPDF_Rect GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) = 0;
44 virtual FX_BOOL HitTest(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, const CPDF_Point& point) = 0;
47 virtual void OnDraw(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot,
51 virtual void OnDrawSleep(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot,
58 virtual void OnCreate(CPDFSDK_Annot* pAnnot) = 0;
60 virtual void OnLoad(CPDFSDK_Annot* pAnnot)
110 DeleteAnnot(CPDFSDK_Annot* pAnnot) argument
122 OnDrawSleep(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, const CPDF_Rect& rcWindow, FX_DWORD dwFlags) argument
131 OnDelete(CPDFSDK_Annot* pAnnot) argument
133 OnRelease(CPDFSDK_Annot* pAnnot) argument
147 OnRButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
154 OnDeSelected(CPDFSDK_Annot* pAnnot) argument
155 OnSelected(CPDFSDK_Annot* pAnnot) argument
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdfeditpage.cpp288 CPDF_Annot* pAnnot = AnnotList.GetAt(i); local
291 pAnnot->GetRect(rect);
295 pRectArray = pAnnot->m_pAnnotDict->GetArray("Rect");
301 pAnnot->m_pAnnotDict->SetAt("Rect",pRectArray);
H A Dfsdk_annothandler.cpp59 CPDFSDK_Annot* CPDFSDK_AnnotHandlerMgr::NewAnnot(CPDF_Annot * pAnnot, CPDFSDK_PageView *pPageView) argument
61 ASSERT(pAnnot != NULL);
64 if (IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot->GetSubType()))
66 return pAnnotHandler->NewAnnot(pAnnot, pPageView);
69 return new CPDFSDK_Annot(pAnnot, pPageView);
72 void CPDFSDK_AnnotHandlerMgr::ReleaseAnnot(CPDFSDK_Annot* pAnnot) argument
74 ASSERT(pAnnot != NULL);
76 pAnnot->GetPDFPage();
78 if (IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot))
80 pAnnotHandler->OnRelease(pAnnot);
89 Annot_OnCreate(CPDFSDK_Annot* pAnnot) argument
107 Annot_OnLoad(CPDFSDK_Annot* pAnnot) argument
134 Annot_OnDraw(CPDFSDK_PageView* pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device,FX_DWORD dwFlags) argument
149 Annot_OnLButtonDown(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
159 Annot_OnLButtonUp(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
169 Annot_OnLButtonDblClk(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
179 Annot_OnMouseMove(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
189 Annot_OnMouseWheel(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, short zDelta, const CPDF_Point& point) argument
199 Annot_OnRButtonDown(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
209 Annot_OnRButtonUp(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
220 Annot_OnMouseEnter(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
231 Annot_OnMouseExit(CPDFSDK_PageView * pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
242 Annot_OnChar(CPDFSDK_Annot* pAnnot, FX_DWORD nChar, FX_DWORD nFlags) argument
253 Annot_OnKeyDown(CPDFSDK_Annot* pAnnot, int nKeyCode, int nFlag) argument
279 Annot_OnKeyUp(CPDFSDK_Annot* pAnnot, int nKeyCode, int nFlag) argument
284 Annot_OnSetFocus(CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
309 Annot_OnKillFocus(CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
326 Annot_OnGetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
336 Annot_OnHitTest(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, const CPDF_Point& point) argument
358 CanAnswer(CPDFSDK_Annot* pAnnot) argument
394 NewAnnot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPage) argument
417 ReleaseAnnot(CPDFSDK_Annot* pAnnot) argument
436 OnDraw(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, FX_DWORD dwFlags) argument
454 OnMouseEnter(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
470 OnMouseExit(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
485 OnLButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
502 OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
519 OnLButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
536 OnMouseMove(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
555 OnMouseWheel(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, short zDelta, const CPDF_Point& point) argument
572 OnRButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
588 OnRButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
605 OnChar(CPDFSDK_Annot* pAnnot, FX_DWORD nChar, FX_DWORD nFlags) argument
622 OnKeyDown(CPDFSDK_Annot* pAnnot, int nKeyCode, int nFlag) argument
639 OnKeyUp(CPDFSDK_Annot* pAnnot, int nKeyCode, int nFlag) argument
644 OnCreate(CPDFSDK_Annot* pAnnot) argument
659 OnLoad(CPDFSDK_Annot* pAnnot) argument
690 OnSetFocus(CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
706 OnKillFocus(CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
723 GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
741 HitTest(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, const CPDF_Point& point) argument
[all...]
H A Dfsdk_baseannot.cpp506 CPDFSDK_Annot::CPDFSDK_Annot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView) : argument
507 m_pAnnot(pAnnot),
H A Dfsdk_mgr.cpp115 CPDFSDK_Annot* pAnnot = pFFL->GetSDKAnnot(); local
116 ASSERT(pAnnot);
117 CPDF_Page* pPage = pAnnot->GetPDFPage();
487 void CPDFSDK_Document::UpdateAllViews(CPDFSDK_PageView* pSender, CPDFSDK_Annot* pAnnot) argument
499 pPageView->UpdateView(pAnnot);
509 FX_BOOL CPDFSDK_Document::SetFocusAnnot(CPDFSDK_Annot* pAnnot,FX_UINT nFlag) argument
512 if(m_pFocusAnnot==pAnnot) return TRUE;
518 CPDFSDK_PageView* pPageView = pAnnot->GetPageView();
519 if(pAnnot && pPageView->IsValid())
525 if (!pAnnotHandler->Annot_OnSetFocus(pAnnot,nFla
639 CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); local
683 CPDF_Annot* pAnnot = m_pAnnotList->GetAt(i); local
698 CPDF_Annot* pAnnot = m_pAnnotList->GetAt(i); local
752 Annot_HasAppearance(CPDF_Annot* pAnnot) argument
798 DeleteAnnot(CPDFSDK_Annot* pAnnot) argument
833 CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); local
1004 CPDFSDK_Annot* pAnnot = pAnnotHandlerMgr->NewAnnot(pPDFAnnot, this); local
1026 UpdateView(CPDFSDK_Annot* pAnnot) argument
1073 CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); local
[all...]
H A Dfsdk_baseform.cpp26 CPDFSDK_Widget::CPDFSDK_Widget(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView, CPDFSDK_InterForm* pInterForm) : argument
27 CPDFSDK_Annot(pAnnot, pPageView),
1668 CPDF_Annot* pAnnot = GetPDFAnnot(); local
1670 pAnnot->GetRect(annotRect);
2719 CPDFSDK_Annot* CBA_AnnotIterator::GetNextAnnot(CPDFSDK_Annot* pAnnot) argument
2723 if (m_Annots[i] == pAnnot)
2735 CPDFSDK_Annot* CBA_AnnotIterator::GetPrevAnnot(CPDFSDK_Annot* pAnnot) argument
2739 if (m_Annots[i] == pAnnot)
2792 CPDFSDK_Annot* pAnnot = m_pPageView->GetAnnot(i); local
2793 ASSERT(pAnnot !
2809 CPDFSDK_Annot* pAnnot = m_pPageView->GetAnnot(i); local
2832 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
2860 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
2899 CPDFSDK_Annot* pAnnot = m_pPageView->GetAnnot(i); local
2922 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
2955 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
2990 GetAnnotRect(CPDFSDK_Annot* pAnnot) argument
[all...]

Completed in 208 milliseconds