Home | History | Annotate | Download | only in include

Lines Matching refs:page

165 	*			nEnd		-   A 0-based index that defines the end of an inclusive page range.

167 * bShrinkToFit - If true, the page is shrunk (if necessary) to fit within the imageable area of the printed page.
194 * Jump to a specified page.
201 * nPageNum - The specified page number, zero for the first page.
297 * page - Handle to the page. Returned by FPDF_LoadPage function.
298 * left - Left position of the client area in PDF page coordinate.
299 * top - Top position of the client area in PDF page coordinate.
300 * right - Right position of the client area in PDF page coordinate.
301 * bottom - Bottom position of the client area in PDF page coordinate.
307 * Implementation should call FPDF_RenderPageBitmap() function for repainting a specified page area.
309 void (*FFI_Invalidate)(struct _FPDF_FORMFILLINFO* pThis,FPDF_PAGE page, double left, double top, double right, double bottom);
322 * page - Handle to the page. Returned by FPDF_LoadPage function.
323 * left - Left position of the client area in PDF page coordinate.
324 * top - Top position of the client area in PDF page coordinate.
325 * right - Right position of the client area in PDF page coordinate.
326 * bottom - Bottom position of the client area in PDF page coordinate.
335 void (*FFI_OutputSelectedRect)(struct _FPDF_FORMFILLINFO* pThis,FPDF_PAGE page, double left, double top, double right, double bottom);
418 * This method receives the page pointer associated with a specified page index.
426 * nPageIndex - Index number of the page. 0 for the first page.
428 * Handle to the page. Returned by FPDF_LoadPage function.
430 * In some cases, the document-level JavaScript action may refer to a page which hadn't been loaded yet.
431 * To successfully run the javascript action, implementation need to load the page for SDK.
437 * This method receives the current page pointer.
446 * Handle to the page. Returned by FPDF_LoadPage function.
452 * This method receives currently rotation of the page view.
459 * pagepage. Returned by FPDF_LoadPage function.
461 * The page rotation. Should be 0(0 degree),1(90 degree),2(180 degree),3(270 degree), in a clockwise direction.
463 int (*FFI_GetRotation)(struct _FPDF_FORMFILLINFO* pThis, FPDF_PAGE page);
522 * nPageIndex - The index of the PDF page.
523 * zoomMode - The zoom mode for viewing page.See Macros "PDFZOOM_XXX" defined in "fpdfdoc.h".
567 * successfully loaded a PDF page, and method FPDFDOC_InitFormFillEnviroument had been invoked.
573 DLLEXPORT void STDCALL FORM_OnAfterLoadPage(FPDF_PAGE page, FPDF_FORMHANDLE hHandle);
578 * close the PDF page.
580 * page - Handle to the page. Returned by FPDF_LoadPage function.
585 DLLEXPORT void STDCALL FORM_OnBeforeClosePage(FPDF_PAGE page, FPDF_FORMHANDLE hHandle);
635 // Additional-action types of page object
636 #define FPDFPAGE_AACTION_OPEN 0 // /O -- An action to be performed when the page is opened
637 #define FPDFPAGE_AACTION_CLOSE 1 // /C -- An action to be performed when the page is closed
641 * This method is required for performing the page object's additional-action when opened or closed.
643 * page - Handle to the page. Returned by FPDF_LoadPage function.
645 * aaType - The type of the page object's additional-actions which defined above.
651 DLLEXPORT void STDCALL FORM_DoPageAAction(FPDF_PAGE page, FPDF_FORMHANDLE hHandle, int aaType);
658 * page - Handle to the page. Returned by FPDF_LoadPage function.
665 DLLEXPORT FPDF_BOOL STDCALL FORM_OnMouseMove(FPDF_FORMHANDLE hHandle,FPDF_PAGE page, int modifier, double page_x, double page_y);
672 * page - Handle to the page. Returned by FPDF_LoadPage function.
679 DLLEXPORT FPDF_BOOL STDCALL FORM_OnLButtonDown(FPDF_FORMHANDLE hHandle,FPDF_PAGE page, int modifier, double page_x, double page_y);
686 * page - Handle to the page. Returned by FPDF_LoadPage function.
693 DLLEXPORT FPDF_BOOL STDCALL FORM_OnLButtonUp(FPDF_FORMHANDLE hHandle,FPDF_PAGE page, int modifier, double page_x, double page_y);
700 * page - Handle to the page. Returned by FPDF_LoadPage function.
706 DLLEXPORT FPDF_BOOL STDCALL FORM_OnKeyDown(FPDF_FORMHANDLE hHandle,FPDF_PAGE page, int nKeyCode, int modifier);
713 * page - Handle to the page. Returned by FPDF_LoadPage function.
719 DLLEXPORT FPDF_BOOL STDCALL FORM_OnKeyUp(FPDF_FORMHANDLE hHandle,FPDF_PAGE page, int nKeyCode, int modifier);
726 * page - Handle to the page. Returned by FPDF_LoadPage function.
732 DLLEXPORT FPDF_BOOL STDCALL FORM_OnChar(FPDF_FORMHANDLE hHandle,FPDF_PAGE page, int nChar, int modifier);
759 * page - Handle to the page. Returned by FPDF_LoadPage function.
765 DLLEXPORT int STDCALL FPDPage_HasFormFieldAtPoint(FPDF_FORMHANDLE hHandle,FPDF_PAGE page,double page_x, double page_y);
811 * Render FormFeilds on a page to a device independent bitmap.
816 * page - Handle to the page. Returned by FPDF_LoadPage function.
819 * size_x - Horizontal size (in pixels) for displaying the page.
820 * size_y - Vertical size (in pixels) for displaying the page.
821 * rotate - Page orientation: 0 (normal), 1 (rotated 90 degrees clockwise),
827 * This method is designed to only render annotations and FormFields on the page.
828 * Without FPDF_ANNOT specified for flags, Rendering functions such as FPDF_RenderPageBitmap or FPDF_RenderPageBitmap_Start will only render page
829 * In order to implement the FormFill functions,Implementation should call this method after rendering functions finish rendering the page contents.
831 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle,FPDF_BITMAP bitmap, FPDF_PAGE page, int start_x, int start_y,