Searched refs:pAnnot (Results 1 - 25 of 30) sorted by relevance

12

/external/pdfium/fpdfsdk/include/
H A Dfsdk_annothandler.h24 virtual FX_BOOL CanAnswer(CPDFSDK_Annot* pAnnot) = 0;
27 virtual CPDFSDK_Annot* NewAnnot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPage) = 0;
29 virtual void ReleaseAnnot(CPDFSDK_Annot* pAnnot) = 0;
31 virtual void DeleteAnnot(CPDFSDK_Annot* pAnnot) = 0;
34 virtual CPDF_Rect GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) = 0;
36 virtual FX_BOOL HitTest(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, const CPDF_Point& point) = 0;
39 virtual void OnDraw(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot,
43 virtual void OnDrawSleep(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot,
50 virtual void OnCreate(CPDFSDK_Annot* pAnnot) = 0;
52 virtual void OnLoad(CPDFSDK_Annot* pAnnot)
102 DeleteAnnot(CPDFSDK_Annot* pAnnot) argument
114 OnDrawSleep(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, const CPDF_Rect& rcWindow, FX_DWORD dwFlags) argument
123 OnDelete(CPDFSDK_Annot* pAnnot) argument
125 OnRelease(CPDFSDK_Annot* pAnnot) argument
139 OnRButtonDblClk(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_DWORD nFlags, const CPDF_Point& point) argument
146 OnDeSelected(CPDFSDK_Annot* pAnnot) argument
147 OnSelected(CPDFSDK_Annot* pAnnot) argument
[all...]
H A Dfsdk_baseform.h54 CPDFSDK_Widget(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView, CPDFSDK_InterForm* pInterForm);
270 virtual CPDFSDK_Annot* GetNextAnnot(CPDFSDK_Annot* pAnnot);
271 virtual CPDFSDK_Annot* GetPrevAnnot(CPDFSDK_Annot* pAnnot);
280 static CPDF_Rect GetAnnotRect(CPDFSDK_Annot* pAnnot);
/external/pdfium/fpdfsdk/src/
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
695 OnSetFocus(CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
711 OnKillFocus(CPDFSDK_Annot* pAnnot, FX_DWORD nFlag) argument
728 GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot) argument
746 HitTest(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, const CPDF_Point& point) argument
[all...]
H A Dfsdk_mgr.cpp115 CPDFSDK_Annot* pAnnot = pFFL->GetSDKAnnot(); local
116 ASSERT(pAnnot);
117 CPDF_Page* pPage = pAnnot->GetPDFPage();
473 void CPDFSDK_Document::UpdateAllViews(CPDFSDK_PageView* pSender, CPDFSDK_Annot* pAnnot) argument
485 pPageView->UpdateView(pAnnot);
495 FX_BOOL CPDFSDK_Document::SetFocusAnnot(CPDFSDK_Annot* pAnnot,FX_UINT nFlag) argument
498 if(m_pFocusAnnot==pAnnot) return TRUE;
504 CPDFSDK_PageView* pPageView = pAnnot->GetPageView();
505 if(pAnnot && pPageView->IsValid())
511 if (!pAnnotHandler->Annot_OnSetFocus(pAnnot,nFla
622 CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); local
662 CPDF_Annot* pAnnot = m_pAnnotList->GetAt(i); local
677 CPDF_Annot* pAnnot = m_pAnnotList->GetAt(i); local
731 Annot_HasAppearance(CPDF_Annot* pAnnot) argument
777 DeleteAnnot(CPDFSDK_Annot* pAnnot) argument
812 CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); local
981 CPDFSDK_Annot* pAnnot = pAnnotHandlerMgr->NewAnnot(pPDFAnnot, this); local
1002 UpdateView(CPDFSDK_Annot* pAnnot) argument
1049 CPDFSDK_Annot* pAnnot = (CPDFSDK_Annot*)m_fxAnnotArray.GetAt(i); local
[all...]
H A Dfpdfeditpage.cpp296 CPDF_Annot* pAnnot = AnnotList.GetAt(i); local
299 pAnnot->GetRect(rect);
303 pRectArray = pAnnot->m_pAnnotDict->GetArray("Rect");
309 pAnnot->m_pAnnotDict->SetAt("Rect",pRectArray);
H A Dfsdk_baseform.cpp25 CPDFSDK_Widget::CPDFSDK_Widget(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView, CPDFSDK_InterForm* pInterForm) : argument
26 CPDFSDK_Annot(pAnnot, pPageView),
1668 CPDF_Annot* pAnnot = GetPDFAnnot(); local
1670 pAnnot->GetRect(annotRect);
2828 CPDFSDK_Annot* CBA_AnnotIterator::GetNextAnnot(CPDFSDK_Annot* pAnnot) argument
2832 if (m_Annots[i] == pAnnot)
2844 CPDFSDK_Annot* CBA_AnnotIterator::GetPrevAnnot(CPDFSDK_Annot* pAnnot) argument
2848 if (m_Annots[i] == pAnnot)
2901 CPDFSDK_Annot* pAnnot = m_pPageView->GetAnnot(i); local
2902 ASSERT(pAnnot !
2918 CPDFSDK_Annot* pAnnot = m_pPageView->GetAnnot(i); local
2941 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
2969 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
3008 CPDFSDK_Annot* pAnnot = m_pPageView->GetAnnot(i); local
3031 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
3064 CPDFSDK_Annot* pAnnot = sa.GetAt(i); local
3099 GetAnnotRect(CPDFSDK_Annot* pAnnot) argument
[all...]
/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_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...]
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_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_TextField.cpp41 CFFL_TextField::CFFL_TextField(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot) : argument
42 CFFL_FormFiller(pApp, pAnnot),
168 FX_BOOL CFFL_TextField::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
178 CPDF_Rect rcAnnot = pAnnot->GetRect();
179 m_pApp->FFI_Invalidate(pAnnot->GetPDFPage(), rcAnnot.left, rcAnnot.top, rcAnnot.right, rcAnnot.bottom);
209 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() );
106 FX_BOOL CFFL_ComboBox::OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags) argument
108 return CFFL_FormFiller::OnChar(pAnnot, nChar, nFlags);
/external/pdfium/fpdfsdk/include/formfiller/
H A DFFL_PushButton.h13 CFFL_PushButton(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot);
18 virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags);
19 virtual void OnDraw(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot,
H A DFFL_IFormFiller.h36 virtual FX_BOOL Annot_HitTest(CPDFSDK_PageView* pPageView,CPDFSDK_Annot* pAnnot, CPDF_Point point);
37 virtual FX_RECT GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot);
38 virtual void OnDraw(CPDFSDK_PageView *pPageView, /*HDC hDC,*/ CPDFSDK_Annot* pAnnot,
43 virtual void OnCreate(CPDFSDK_Annot* pAnnot);
44 virtual void OnLoad(CPDFSDK_Annot* pAnnot);
45 virtual void OnDelete(CPDFSDK_Annot* pAnnot);
47 virtual void OnMouseEnter(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlag);
48 virtual void OnMouseExit(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlag);
50 virtual FX_BOOL OnLButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
51 virtual FX_BOOL OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UIN
[all...]
H A DFFL_RadioButton.h13 CFFL_RadioButton(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot);
17 virtual FX_BOOL OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags);
18 virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags);
19 virtual FX_BOOL OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
H A DFFL_FormFiller.h37 CFFL_FormFiller(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot);
40 virtual FX_RECT GetViewBBox(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot);
41 virtual void OnDraw(CPDFSDK_PageView *pPageView, /*HDC hDC,*/ CPDFSDK_Annot* pAnnot,
44 virtual void OnDrawDeactive(CPDFSDK_PageView *pPageView, /*HDC hDC,*/ CPDFSDK_Annot* pAnnot,
48 virtual void OnCreate(CPDFSDK_Annot* pAnnot);
49 virtual void OnLoad(CPDFSDK_Annot* pAnnot);
50 virtual void OnDelete(CPDFSDK_Annot* pAnnot);
52 virtual void OnMouseEnter(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot);
53 virtual void OnMouseExit(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot);
55 virtual FX_BOOL OnLButtonDown(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UIN
[all...]
H A DFFL_CheckBox.h18 virtual FX_BOOL OnKeyDown(CPDFSDK_Annot* pAnnot, FX_UINT nKeyCode, FX_UINT nFlags);
19 virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags);
20 virtual FX_BOOL OnLButtonUp(CPDFSDK_PageView *pPageView, CPDFSDK_Annot* pAnnot, FX_UINT nFlags, const CPDF_Point& point);
H A DFFL_TextField.h43 CFFL_TextField(CPDFDoc_Environment* pApp, CPDFSDK_Annot* pAnnot);
50 virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags);
H A DFFL_CBA_Fontmap.h19 CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler);
H A DFFL_ListBox.h20 virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags);
H A DFFL_ComboBox.h29 virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags);
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_annot.cpp40 CPDF_Annot* pAnnot = FX_NEW CPDF_Annot(pDict); local
41 if (pAnnot == NULL) {
44 pAnnot->m_pList = this;
45 m_AnnotList.Add(pAnnot);
67 CPDF_Annot* pAnnot = (CPDF_Annot*)m_AnnotList[i]; local
68 FX_BOOL bWidget = pAnnot->GetSubType() == "Widget";
72 FX_DWORD annot_flags = pAnnot->GetFlags();
84 CPDF_Dictionary* pAnnotDict = pAnnot->m_pAnnotDict;
91 pAnnot->GetRect(annot_rect_f);
103 pAnnot
131 GetIndex(CPDF_Annot* pAnnot) argument
235 FPDFDOC_Annot_GetMatrix(const CPDF_Page* pPage, CPDF_Annot* pAnnot, CPDF_Annot::AppearanceMode mode, const CFX_AffineMatrix* pUser2Device, CFX_Matrix &matrix) argument
489 CPDF_Annot* pAnnot = m_pList->GetAt(i); local
505 CPDF_Annot* pAnnot = m_pList->GetAt(i); local
[all...]
H A Ddoc_link.cpp73 CPDF_Dictionary* pAnnot = pAnnotList->GetDict(i); local
74 if (pAnnot == NULL) {
77 if (pAnnot->GetString("Subtype") != "Link") {
80 pList->Add(pAnnot);

Completed in 402 milliseconds

12