Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: public/fpdf_formfill.h

Issue 1776313002: Add bitmaps and skp output to Skia port (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: address comments and fix gn Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef PUBLIC_FPDF_FORMFILL_H_ 7 #ifndef PUBLIC_FPDF_FORMFILL_H_
8 #define PUBLIC_FPDF_FORMFILL_H_ 8 #define PUBLIC_FPDF_FORMFILL_H_
9 9
10 #include "fpdfview.h" 10 #include "fpdfview.h"
(...skipping 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after
1501 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle, 1501 DLLEXPORT void STDCALL FPDF_FFLDraw(FPDF_FORMHANDLE hHandle,
1502 FPDF_BITMAP bitmap, 1502 FPDF_BITMAP bitmap,
1503 FPDF_PAGE page, 1503 FPDF_PAGE page,
1504 int start_x, 1504 int start_x,
1505 int start_y, 1505 int start_y,
1506 int size_x, 1506 int size_x,
1507 int size_y, 1507 int size_y,
1508 int rotate, 1508 int rotate,
1509 int flags); 1509 int flags);
1510 1510
1511 #ifdef _SKIA_SUPPORT_
1512 DLLEXPORT void STDCALL FPDF_FFLRecord(FPDF_FORMHANDLE hHandle,
1513 FPDF_RECORDER recorder,
1514 FPDF_PAGE page,
1515 int start_x,
1516 int start_y,
1517 int size_x,
1518 int size_y,
1519 int rotate,
1520 int flags);
1521 #endif
1522
1511 #ifdef PDF_ENABLE_XFA 1523 #ifdef PDF_ENABLE_XFA
1512 /** 1524 /**
1513 * Function: FPDF_HasXFAField 1525 * Function: FPDF_HasXFAField
1514 * This method is designed to check whether a pdf document 1526 * This method is designed to check whether a pdf document
1515 *has XFA fields. 1527 *has XFA fields.
1516 * Parameters: 1528 * Parameters:
1517 * document - Handle to document. 1529 * document - Handle to document.
1518 *Returned by FPDF_LoadDocument function. 1530 *Returned by FPDF_LoadDocument function.
1519 * docType - Document type defined as 1531 * docType - Document type defined as
1520 *DOCTYPE_xxx. 1532 *DOCTYPE_xxx.
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 FPDF_StringHandleAddString(FPDF_STRINGHANDLE stringHandle, 1733 FPDF_StringHandleAddString(FPDF_STRINGHANDLE stringHandle,
1722 FPDF_BYTESTRING bsText, 1734 FPDF_BYTESTRING bsText,
1723 FPDF_DWORD size); 1735 FPDF_DWORD size);
1724 #endif // PDF_ENABLE_XFA 1736 #endif // PDF_ENABLE_XFA
1725 1737
1726 #ifdef __cplusplus 1738 #ifdef __cplusplus
1727 } 1739 }
1728 #endif 1740 #endif
1729 1741
1730 #endif // PUBLIC_FPDF_FORMFILL_H_ 1742 #endif // PUBLIC_FPDF_FORMFILL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698