2021-06-18 15:19:43 +02:00
|
|
|
/* CHAPTER 6. Bookmarks */
|
|
|
|
|
|
|
|
/*
|
2022-03-04 18:26:01 +01:00
|
|
|
* cpdf_startGetBookmarkInfo(pdf) starts the bookmark retrieval process for a
|
2021-06-18 15:19:43 +02:00
|
|
|
* given PDF.
|
|
|
|
*/
|
|
|
|
void cpdf_startGetBookmarkInfo(int);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_numberBookmarks gets the number of bookmarks for the PDF given to
|
|
|
|
* cpdf_startGetBookmarkInfo.
|
|
|
|
*/
|
|
|
|
int cpdf_numberBookmarks(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_getBookmarkLevel(serial) get bookmark level for the given bookmark
|
|
|
|
* (0...(n - 1)).
|
|
|
|
*/
|
|
|
|
int cpdf_getBookmarkLevel(int);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_getBookmarkPage gets the bookmark target page for the given PDF
|
|
|
|
* (which must be the same as the PDF passed to cpdf_startSetBookmarkInfo)
|
|
|
|
* and bookmark (0...(n - 1)).
|
|
|
|
*/
|
|
|
|
int cpdf_getBookmarkPage(int, int);
|
|
|
|
|
|
|
|
/* cpdf_getBookmarkText returns the text of bookmark (0...(n - 1)). */
|
|
|
|
char *cpdf_getBookmarkText(int);
|
|
|
|
|
|
|
|
/* cpdf_getBookmarkOpenStatus(pdf) is true if the bookmark is open. */
|
|
|
|
int cpdf_getBookmarkOpenStatus(int);
|
|
|
|
|
|
|
|
/* cpdf_endGetBookmarkInfo ends the bookmark retrieval process, cleaning up. */
|
|
|
|
void cpdf_endGetBookmarkInfo(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_startGetBookmarkInfo(n) start the bookmark setting process for n
|
|
|
|
* bookmarks.
|
|
|
|
*/
|
|
|
|
void cpdf_startSetBookmarkInfo(int);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_setBookmarkLevel(n, level) set bookmark level for the given bookmark
|
|
|
|
* (0...(n - 1)).
|
|
|
|
*/
|
|
|
|
void cpdf_setBookmarkLevel(int, int);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_setBookmarkPage(pdf, bookmark, targetpage) sets the bookmark target
|
|
|
|
* page for the given PDF (which must be the same as the PDF to be passed to
|
|
|
|
* cpdf_endSetBookmarkInfo) and bookmark (0...(n - 1)).
|
|
|
|
*/
|
|
|
|
void cpdf_setBookmarkPage(int, int, int);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_setBookmarkOpenStatus(n, status) set the open status of a bookmark,
|
|
|
|
* true or false.
|
|
|
|
*/
|
|
|
|
void cpdf_setBookmarkOpenStatus(int, int);
|
|
|
|
|
|
|
|
/* cpdf_setBookmarkText(n, text) sets the text of bookmark (0...(n - 1)). */
|
|
|
|
void cpdf_setBookmarkText(int, const char[]);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpdf_endSetBookmarkInfo(pdf) end the bookmark setting process, writing the
|
|
|
|
* bookmarks to the given PDF.
|
|
|
|
*/
|
|
|
|
void cpdf_endSetBookmarkInfo(int);
|
|
|
|
|
2022-01-19 18:09:46 +01:00
|
|
|
/* cpdf_getBookmarksJSON(pdf, length) returns the bookmark data and sets the
|
|
|
|
* length. */
|
|
|
|
void *cpdf_getBookmarksJSON(int, int *);
|
|
|
|
|
|
|
|
/* cpdf_setBookmarksJSON(pdf, data, datalength) sets the bookmarks from JSON
|
|
|
|
* bookmark data. */
|
|
|
|
void cpdf_setBookmarksJSON(int, void *, int);
|
|
|
|
|
|
|
|
/* cpdf_tableOfContents(pdf, font, fontsize, title, bookmark) typesets a table
|
|
|
|
* of contents from existing bookmarks and prepends it to the document. If
|
|
|
|
* bookmark is set, the table of contents gets its own bookmark. */
|
2024-04-16 03:44:25 +02:00
|
|
|
void cpdf_tableOfContents(int, const char[], double, const char[], int);
|
2022-01-19 18:09:46 +01:00
|
|
|
|