2010-11-17 22:51:15 +01:00
|
|
|
/* See LICENSE file for license and copyright information */
|
|
|
|
|
|
|
|
#ifndef DOCUMENT_H
|
|
|
|
#define DOCUMENT_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2011-10-23 17:01:15 +02:00
|
|
|
#include <girara/types.h>
|
2012-03-27 13:30:04 +02:00
|
|
|
|
2012-03-27 11:19:39 +02:00
|
|
|
#include "types.h"
|
2010-12-24 16:21:54 +01:00
|
|
|
|
2011-03-12 11:32:24 +01:00
|
|
|
/**
|
|
|
|
* Open the document
|
|
|
|
*
|
2012-04-03 09:02:45 +02:00
|
|
|
* @param plugin_manager The plugin manager
|
2011-03-12 11:32:24 +01:00
|
|
|
* @param path Path to the document
|
|
|
|
* @param password Password of the document or NULL
|
2012-04-03 09:02:45 +02:00
|
|
|
* @param error Optional error parameter
|
2011-03-12 11:32:24 +01:00
|
|
|
* @return The document object
|
|
|
|
*/
|
2012-04-03 09:02:45 +02:00
|
|
|
zathura_document_t* zathura_document_open(zathura_plugin_manager_t*
|
|
|
|
plugin_manager, const char* path, const char* password, zathura_error_t*
|
|
|
|
error);
|
2011-03-12 11:32:24 +01:00
|
|
|
|
2012-03-27 21:59:35 +02:00
|
|
|
/**
|
|
|
|
* Free the document
|
|
|
|
*
|
|
|
|
* @param document
|
|
|
|
* @return ZATHURA_ERROR_OK when no error occured, otherwise see
|
|
|
|
* zathura_error_t
|
|
|
|
*/
|
|
|
|
zathura_error_t zathura_document_free(zathura_document_t* document);
|
|
|
|
|
2012-03-27 14:44:09 +02:00
|
|
|
/**
|
|
|
|
* Returns the path of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return The file path of the document
|
|
|
|
*/
|
|
|
|
const char* zathura_document_get_path(zathura_document_t* document);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the password of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return Returns the password of the document
|
|
|
|
*/
|
|
|
|
const char* zathura_document_get_password(zathura_document_t* document);
|
|
|
|
|
2011-03-12 11:32:24 +01:00
|
|
|
/**
|
2012-03-27 21:59:35 +02:00
|
|
|
* Returns the page at the given index
|
2012-03-27 14:44:09 +02:00
|
|
|
*
|
|
|
|
* @param document The document
|
2012-03-27 21:59:35 +02:00
|
|
|
* @param index The index of the page
|
|
|
|
* @return The page or NULL if an error occured
|
2012-03-27 14:44:09 +02:00
|
|
|
*/
|
2012-03-27 21:59:35 +02:00
|
|
|
zathura_page_t* zathura_document_get_page(zathura_document_t* document, unsigned int index);
|
2012-03-27 14:44:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of pages
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return Number of pages
|
|
|
|
*/
|
|
|
|
unsigned int zathura_document_get_number_of_pages(zathura_document_t* document);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the number of pages
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param number_of_pages Number of pages
|
|
|
|
*/
|
|
|
|
void zathura_document_set_number_of_pages(zathura_document_t* document, unsigned
|
|
|
|
int number_of_pages);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current page number
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return Current page
|
|
|
|
*/
|
2012-03-27 21:59:35 +02:00
|
|
|
unsigned int zathura_document_get_current_page_number(zathura_document_t* document);
|
2012-03-27 14:44:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the number of pages
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param current_page The current page number
|
|
|
|
*/
|
2012-03-27 21:59:35 +02:00
|
|
|
void zathura_document_set_current_page_number(zathura_document_t* document, unsigned
|
2012-03-27 14:44:09 +02:00
|
|
|
int current_page);
|
|
|
|
|
2012-03-27 21:59:35 +02:00
|
|
|
/**
|
|
|
|
* Returns the current scale value of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return The current scale value
|
|
|
|
*/
|
|
|
|
double zathura_document_get_scale(zathura_document_t* document);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the new scale value of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param scale The new scale value
|
|
|
|
*/
|
|
|
|
void zathura_document_set_scale(zathura_document_t* document, double scale);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the rotation value of zathura (0..360)
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return The current rotation value
|
|
|
|
*/
|
|
|
|
unsigned int zathura_document_get_rotation(zathura_document_t* document);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the new rotation value
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param rotation The new rotation value
|
|
|
|
*/
|
|
|
|
void zathura_document_set_rotation(zathura_document_t* document, unsigned int rotation);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the adjust mode of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return The adjust mode
|
|
|
|
*/
|
|
|
|
zathura_adjust_mode_t zathura_document_get_adjust_mode(zathura_document_t* document);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the new adjust mode of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param mode The new adjust mode
|
|
|
|
*/
|
|
|
|
void zathura_document_set_adjust_mode(zathura_document_t* document, zathura_adjust_mode_t mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the page offset of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return The page offset
|
|
|
|
*/
|
|
|
|
unsigned int zathura_document_get_page_offset(zathura_document_t* document);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the new page offset of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param page_offset The new page offset
|
|
|
|
*/
|
|
|
|
void zathura_document_set_page_offset(zathura_document_t* document, unsigned int page_offset);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the private data of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @return The private data or NULL
|
|
|
|
*/
|
|
|
|
void* zathura_document_get_data(zathura_document_t* document);
|
|
|
|
|
2012-03-27 14:44:09 +02:00
|
|
|
/**
|
|
|
|
* Sets the private data of the document
|
|
|
|
*
|
|
|
|
* @param document The document
|
|
|
|
* @param data The new private data
|
|
|
|
*/
|
|
|
|
void zathura_document_set_data(zathura_document_t* document, void* data);
|
|
|
|
|
2011-03-12 11:32:24 +01:00
|
|
|
/**
|
|
|
|
* Save the document
|
|
|
|
*
|
|
|
|
* @param document The document object
|
|
|
|
* @param path Path for the saved file
|
2012-03-27 13:30:04 +02:00
|
|
|
* @return ZATHURA_ERROR_OK when no error occured, otherwise see
|
|
|
|
* zathura_error_t
|
2011-03-12 11:32:24 +01:00
|
|
|
*/
|
2012-03-27 13:30:04 +02:00
|
|
|
zathura_error_t zathura_document_save_as(zathura_document_t* document, const char* path);
|
2011-03-12 11:32:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the document index
|
|
|
|
*
|
|
|
|
* @param document The document object
|
2012-03-27 13:30:04 +02:00
|
|
|
* @param error Set to an error value (see \ref zathura_error_t) if an
|
2012-02-08 15:30:13 +01:00
|
|
|
* error occured
|
2011-03-12 11:32:24 +01:00
|
|
|
* @return Generated index
|
|
|
|
*/
|
|
|
|
|
2012-03-27 13:30:04 +02:00
|
|
|
girara_tree_node_t* zathura_document_index_generate(zathura_document_t* document, zathura_error_t* error);
|
2011-03-12 11:32:24 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get list of attachments
|
|
|
|
*
|
|
|
|
* @param document The document object
|
2012-03-27 13:30:04 +02:00
|
|
|
* @param error Set to an error value (see \ref zathura_error_t) if an
|
2012-02-08 15:30:13 +01:00
|
|
|
* error occured
|
2011-03-12 11:32:24 +01:00
|
|
|
* @return List of attachments
|
|
|
|
*/
|
2012-03-27 13:30:04 +02:00
|
|
|
girara_list_t* zathura_document_attachments_get(zathura_document_t* document, zathura_error_t* error);
|
2011-03-12 11:32:24 +01:00
|
|
|
|
|
|
|
/**
|
2012-01-22 22:00:40 +01:00
|
|
|
* Save document attachment
|
2011-03-12 11:32:24 +01:00
|
|
|
*
|
2012-01-13 18:25:17 +01:00
|
|
|
* @param document The document objects
|
|
|
|
* @param attachment name of the attachment
|
|
|
|
* @param file the target filename
|
2012-03-27 13:30:04 +02:00
|
|
|
* @return ZATHURA_ERROR_OK when no error occured, otherwise see
|
|
|
|
* zathura_error_t
|
2011-03-12 11:32:24 +01:00
|
|
|
*/
|
2012-03-27 13:30:04 +02:00
|
|
|
zathura_error_t zathura_document_attachment_save(zathura_document_t* document, const char* attachment, const char* file);
|
2010-11-17 23:15:08 +01:00
|
|
|
|
2011-10-01 23:29:40 +02:00
|
|
|
/**
|
|
|
|
* Returns a string of the requested information
|
|
|
|
*
|
|
|
|
* @param document The zathura document
|
2012-03-27 13:30:04 +02:00
|
|
|
* @param error Set to an error value (see \ref zathura_error_t) if an
|
2012-02-08 15:30:13 +01:00
|
|
|
* error occured
|
2012-03-30 18:24:00 +02:00
|
|
|
* @return List of document information entries or NULL if information could not be retreived
|
2011-10-01 23:29:40 +02:00
|
|
|
*/
|
2012-03-30 18:24:00 +02:00
|
|
|
girara_list_t* zathura_document_get_information(zathura_document_t* document, zathura_error_t* error);
|
2011-09-29 15:23:13 +02:00
|
|
|
|
2010-11-17 22:51:15 +01:00
|
|
|
#endif // DOCUMENT_H
|