summaryrefslogtreecommitdiff
path: root/public/fpdf_formfill.h
diff options
context:
space:
mode:
Diffstat (limited to 'public/fpdf_formfill.h')
-rw-r--r--public/fpdf_formfill.h93
1 files changed, 0 insertions, 93 deletions
diff --git a/public/fpdf_formfill.h b/public/fpdf_formfill.h
index 33701ef9c1..6cf2fcea0c 100644
--- a/public/fpdf_formfill.h
+++ b/public/fpdf_formfill.h
@@ -1663,99 +1663,6 @@ FPDF_EXPORT int FPDF_CALLCONV FPDF_GetFormType(FPDF_DOCUMENT document);
* TRUE indicates success,otherwise FALSE.
**/
FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDF_LoadXFA(FPDF_DOCUMENT document);
-
-/**
- * Function: FPDF_Widget_Undo
- * This method will implement the undo feature for the specified xfa
- *field.
- * Parameters:
- * document - Handle to document. Returned by
- *FPDF_LoadDocument function.
- * hWidget - Handle to the xfa field.
- * Return Value:
- * None.
- **/
-FPDF_EXPORT void FPDF_CALLCONV FPDF_Widget_Undo(FPDF_DOCUMENT document,
- FPDF_WIDGET hWidget);
-/**
- * Function: FPDF_Widget_Redo
- * This method will implement the redo feature for the specified xfa
- *field.
- * Parameters:
- * document - Handle to document. Returned by
- *FPDF_LoadDocument function.
- * hWidget - Handle to the xfa field.
- * Return Value:
- * None.
- **/
-FPDF_EXPORT void FPDF_CALLCONV FPDF_Widget_Redo(FPDF_DOCUMENT document,
- FPDF_WIDGET hWidget);
-/**
- * Function: FPDF_Widget_SelectAll
- * This method will implement the select all feature for the specified
- *xfa field.
- * Parameters:
- * document - Handle to document. Returned by
- *FPDF_LoadDocument function.
- * hWidget - Handle to the xfa field.
- * Return Value:
- * None.
- **/
-FPDF_EXPORT void FPDF_CALLCONV FPDF_Widget_SelectAll(FPDF_DOCUMENT document,
- FPDF_WIDGET hWidget);
-/**
- * Function: FPDF_Widget_Copy
- * This method will implement the copy feature for the specified xfa
- *field.
- * Parameters:
- * document - Handle to document. Returned by
- *FPDF_LoadDocument function.
- * hWidget - Handle to the xfa field.
- * wsText - Pointer to data buffer to receive the copied
- *data, in UTF-16LE format.
- * size - The data buffer size.
- * Return Value:
- * None.
- **/
-FPDF_EXPORT void FPDF_CALLCONV FPDF_Widget_Copy(FPDF_DOCUMENT document,
- FPDF_WIDGET hWidget,
- FPDF_WIDESTRING wsText,
- FPDF_DWORD* size);
-/**
- * Function: FPDF_Widget_Cut
- * This method will implement the cut feature for the specified xfa
- *field.
- * Parameters:
- * document - Handle to document. Returned by
- *FPDF_LoadDocument function.
- * hWidget - Handle to the xfa field.
- * wsText - Pointer to data buffer to receive the cut
- *data,in UTF-16LE format.
- * size - The data buffer size,not the byte number.
- * Return Value:
- * None.
- **/
-FPDF_EXPORT void FPDF_CALLCONV FPDF_Widget_Cut(FPDF_DOCUMENT document,
- FPDF_WIDGET hWidget,
- FPDF_WIDESTRING wsText,
- FPDF_DWORD* size);
-/**
- * Function: FPDF_Widget_Paste
- * This method will implement the paste feature for the specified xfa
- *field.
- * Parameters:
- * document - Handle to document. Returned by
- *FPDF_LoadDocument function.
- * hWidget - Handle to the xfa field.
- * wsText - The paste text buffer, in UTF-16LE format.
- * size - The data buffer size,not the byte number.
- * Return Value:
- * None.
- **/
-FPDF_EXPORT void FPDF_CALLCONV FPDF_Widget_Paste(FPDF_DOCUMENT document,
- FPDF_WIDGET hWidget,
- FPDF_WIDESTRING wsText,
- FPDF_DWORD size);
#endif // PDF_ENABLE_XFA
#ifdef __cplusplus