mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:43:45 +01:00
29 lines
972 B
C
29 lines
972 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef PDF_H
|
|
#define PDF_H
|
|
|
|
#include <stdbool.h>
|
|
#include <poppler.h>
|
|
|
|
#include "../document.h"
|
|
|
|
typedef struct pdf_document_s
|
|
{
|
|
PopplerDocument *document;
|
|
} pdf_document_t;
|
|
|
|
bool pdf_document_open(zathura_document_t* document);
|
|
bool pdf_document_free(zathura_document_t* document);
|
|
girara_tree_node_t* pdf_document_index_generate(zathura_document_t* document);
|
|
bool pdf_document_save_as(zathura_document_t* document, const char* path);
|
|
zathura_list_t* pdf_document_attachments_get(zathura_document_t* document);
|
|
zathura_page_t* pdf_page_get(zathura_document_t* document, unsigned int page);
|
|
zathura_list_t* pdf_page_search_text(zathura_page_t* page, const char* text);
|
|
zathura_list_t* pdf_page_links_get(zathura_page_t* page);
|
|
zathura_list_t* pdf_page_form_fields_get(zathura_page_t* page);
|
|
cairo_surface_t* pdf_page_render(zathura_page_t* page);
|
|
bool pdf_page_free(zathura_page_t* page);
|
|
|
|
#endif // PDF_H
|