| Index: fpdfsdk/include/formfiller/FFL_IFormFiller.h
|
| diff --git a/fpdfsdk/include/formfiller/FFL_IFormFiller.h b/fpdfsdk/include/formfiller/FFL_IFormFiller.h
|
| index cea61bf20e153fce5b83e0e02f38bb8ee3bdf4ce..93e7505f9c75ae36b802663d46c2b4c6e33d3eb7 100644
|
| --- a/fpdfsdk/include/formfiller/FFL_IFormFiller.h
|
| +++ b/fpdfsdk/include/formfiller/FFL_IFormFiller.h
|
| @@ -26,7 +26,7 @@ class CFFL_IFormFiller : public IPWL_Filler_Notify {
|
|
|
| virtual FX_BOOL Annot_HitTest(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| - CFX_FloatPoint point);
|
| + CPDF_Point point);
|
| virtual FX_RECT GetViewBBox(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot);
|
| virtual void OnDraw(CPDFSDK_PageView* pPageView,
|
| @@ -49,32 +49,32 @@ class CFFL_IFormFiller : public IPWL_Filler_Notify {
|
| virtual FX_BOOL OnLButtonDown(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
| virtual FX_BOOL OnLButtonUp(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
| virtual FX_BOOL OnLButtonDblClk(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
| virtual FX_BOOL OnMouseMove(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
| virtual FX_BOOL OnMouseWheel(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| short zDelta,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
| virtual FX_BOOL OnRButtonDown(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
| virtual FX_BOOL OnRButtonUp(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| FX_UINT nFlags,
|
| - const CFX_FloatPoint& point);
|
| + const CPDF_Point& point);
|
|
|
| virtual FX_BOOL OnKeyDown(CPDFSDK_Annot* pAnnot,
|
| FX_UINT nKeyCode,
|
|
|