zathura/document.h

505 lines
13 KiB
C
Raw Normal View History

2010-11-17 22:51:15 +01:00
/* See LICENSE file for license and copyright information */
#ifndef DOCUMENT_H
#define DOCUMENT_H
2011-09-29 12:07:07 +02:00
#include <cairo.h>
#include <gtk/gtk.h>
2010-11-17 22:51:15 +01:00
#include <stdbool.h>
#include <girara/types.h>
2011-04-18 18:19:41 +02:00
#include "zathura.h"
2011-03-05 21:00:41 +01:00
#define PLUGIN_REGISTER_FUNCTION "plugin_register"
2012-02-07 21:01:54 +01:00
/**
* Error types for plugins
*/
typedef enum zathura_plugin_error_e
{
ZATHURA_PLUGIN_ERROR_OK, /**< No error occured */
ZATHURA_PLUGIN_ERROR_UNKNOWN, /**< An unknown error occured */
ZATHURA_PLUGIN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
ZATHURA_PLUGIN_ERROR_NOT_IMPLEMENTED, /**< The called function has not been implemented */
ZATHURA_PLUGIN_ERROR_INVALID_ARGUMENTS, /**< Invalid arguments have been passed */
ZATHURA_PLUGIN_ERROR_INVALID_PASSWORD /**< The provided password is invalid */
} zathura_plugin_error_t;
/**
* Document open function
*
* @param document The document
* @return true if no error occured otherwise false
*/
typedef zathura_plugin_error_t (*zathura_document_open_t)(zathura_document_t* document);
2010-11-18 02:35:33 +01:00
2011-03-12 11:32:24 +01:00
/**
* Document plugin structure
*/
2010-11-18 02:35:33 +01:00
typedef struct zathura_document_plugin_s
{
2012-01-22 21:57:18 +01:00
girara_list_t* content_types; /**< List of supported content types */
zathura_document_open_t open_function; /**< Document open function */
void* handle; /**< DLL handle */
2010-11-18 02:35:33 +01:00
} zathura_document_plugin_t;
2012-02-07 20:13:39 +01:00
/**
* Plugin mapping
*/
2011-09-29 15:23:13 +02:00
typedef struct zathura_type_plugin_mapping_s
{
2012-02-07 20:13:39 +01:00
const gchar* type; /**< Plugin type */
zathura_document_plugin_t* plugin; /**< Mapped plugin */
2011-09-29 15:23:13 +02:00
} zathura_type_plugin_mapping_t;
2012-02-07 20:13:39 +01:00
/**
* Meta data entries
*/
2011-10-01 23:29:40 +02:00
typedef enum zathura_document_meta_e
{
2012-02-07 20:13:39 +01:00
ZATHURA_DOCUMENT_TITLE, /**< Title of the document */
ZATHURA_DOCUMENT_AUTHOR, /**< Author of the document */
ZATHURA_DOCUMENT_SUBJECT, /**< Subject of the document */
ZATHURA_DOCUMENT_KEYWORDS, /**< Keywords of the document */
ZATHURA_DOCUMENT_CREATOR, /**< Creator of the document */
ZATHURA_DOCUMENT_PRODUCER, /**< Producer of the document */
ZATHURA_DOCUMENT_CREATION_DATE, /**< Creation data */
ZATHURA_DOCUMENT_MODIFICATION_DATE /**< Modification data */
2011-10-01 23:29:40 +02:00
} zathura_document_meta_t;
2011-03-12 11:32:24 +01:00
/**
* Function prototype that is called to register a document plugin
*
* @param The document plugin
*/
typedef void (*zathura_plugin_register_service_t)(zathura_document_plugin_t*);
2011-03-05 21:00:41 +01:00
/**
* Image buffer
*/
typedef struct zathura_image_buffer_s
{
2012-01-22 21:57:18 +01:00
unsigned char* data; /**< Image buffer data */
unsigned int height; /**< Height of the image */
unsigned int width; /**< Width of the image */
unsigned int rowstride; /**< Rowstride of the image */
} zathura_image_buffer_t;
/**
* Creates an image buffer
*
* @param width Width of the image stored in the buffer
* @param height Height of the image stored in the buffer
* @return Image buffer or NULL if an error occured
*/
zathura_image_buffer_t* zathura_image_buffer_create(unsigned int width, unsigned int height);
/**
* Frees the image buffer
*
* @param zathura_image_buffer_t
*/
void zathura_image_buffer_free(zathura_image_buffer_t*);
2011-03-12 11:32:24 +01:00
/**
2012-02-07 21:45:32 +01:00
* Rectangle structure.
* The coordinate system has its origin in the left upper corner. The x axes
* goes to the right, the y access goes down.
2011-03-12 11:32:24 +01:00
*/
2010-11-17 22:51:15 +01:00
typedef struct zathura_rectangle_s
{
2012-01-22 21:57:18 +01:00
double x1; /**< X coordinate of point 1 */
double y1; /**< Y coordinate of point 1 */
double x2; /**< X coordinate of point 2 */
double y2; /**< Y coordinate of point 2 */
2010-11-17 22:51:15 +01:00
} zathura_rectangle_t;
/**
* Image structure
*/
typedef struct zathura_image_s
{
zathura_rectangle_t position; /**< Coordinates of the image */
void* data; /**< Custom data of the plugin */
} zathura_image_t;
2011-03-12 11:32:24 +01:00
/**
* Possible link types
*/
2010-11-17 22:51:15 +01:00
typedef enum zathura_link_type_e
{
2012-01-22 21:57:18 +01:00
ZATHURA_LINK_TO_PAGE, /**< Links to a page */
ZATHURA_LINK_EXTERNAL, /**< Links to an external source */
2010-11-17 22:51:15 +01:00
} zathura_link_type_t;
2011-03-12 11:32:24 +01:00
/**
* Link
*/
2010-11-17 22:51:15 +01:00
typedef struct zathura_link_s
{
2012-01-22 21:57:18 +01:00
zathura_rectangle_t position; /**< Position of the link */
zathura_link_type_t type; /**< Link type */
2010-11-17 22:51:15 +01:00
union
{
2012-01-22 21:57:18 +01:00
unsigned int page_number; /**< Page number */
char* value; /**< Value */
2010-11-17 22:51:15 +01:00
} target;
} zathura_link_t;
2011-03-12 11:32:24 +01:00
/**
* Index element
*/
2010-12-25 00:47:52 +01:00
typedef struct zathura_index_element_s
{
2012-01-22 21:57:18 +01:00
char* title; /**< Title of the element */
zathura_link_type_t type; /**< Type */
2010-12-25 00:47:52 +01:00
union
{
2012-01-22 21:57:18 +01:00
unsigned int page_number; /**< Page number */
char* uri; /**< Uri */
2010-12-25 00:47:52 +01:00
} target;
} zathura_index_element_t;
2011-03-12 11:32:24 +01:00
/**
* Form type
*/
2010-11-17 22:51:15 +01:00
typedef enum zathura_form_type_e
{
2012-01-22 21:57:18 +01:00
ZATHURA_FORM_CHECKBOX, /**< Checkbox */
ZATHURA_FORM_TEXTFIELD /**< Textfield */
2010-11-17 22:51:15 +01:00
} zathura_form_type_t;
2011-03-12 11:32:24 +01:00
/**
* Form element
*/
2010-11-17 22:51:15 +01:00
typedef struct zathura_form_s
{
2012-01-22 21:57:18 +01:00
zathura_rectangle_t position; /**< Position */
zathura_form_type_t type; /**< Type */
2010-11-17 22:51:15 +01:00
} zathura_form_t;
2011-03-12 11:32:24 +01:00
/**
* Page
*/
2011-04-18 18:19:41 +02:00
struct zathura_page_s
2010-11-17 22:51:15 +01:00
{
2012-01-22 21:57:18 +01:00
double height; /**< Page height */
double width; /**< Page width */
unsigned int number; /**< Page number */
zathura_document_t* document; /**< Document */
void* data; /**< Custom data */
bool visible; /**< Page is visible */
GtkWidget* drawing_area; /**< Drawing area */
2011-04-18 18:19:41 +02:00
};
2010-11-17 22:51:15 +01:00
2011-03-12 11:32:24 +01:00
/**
* Document
*/
2010-11-17 22:51:15 +01:00
struct zathura_document_s
{
2012-01-22 21:57:18 +01:00
char* file_path; /**< File path of the document */
const char* password; /**< Password of the document */
unsigned int current_page_number; /**< Current page number */
unsigned int number_of_pages; /**< Number of pages */
double scale; /**< Scale value */
int rotate; /**< Rotation */
void* data; /**< Custom data */
zathura_t* zathura; /** Zathura object */
2010-11-17 22:51:15 +01:00
struct
{
2011-03-12 11:32:24 +01:00
/**
* Frees the document
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t (*document_free)(zathura_document_t* document);
2011-03-12 11:32:24 +01:00
/**
* Generates the document index
*/
2012-02-07 21:01:54 +01:00
girara_tree_node_t* (*document_index_generate)(zathura_document_t* document, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Save the document
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t (*document_save_as)(zathura_document_t* document, const char* path);
2011-03-12 11:32:24 +01:00
/**
* Get list of attachments
*/
2012-02-07 21:01:54 +01:00
girara_list_t* (*document_attachments_get)(zathura_document_t* document, zathura_plugin_error_t* error);
2010-11-18 02:35:33 +01:00
2012-01-13 18:25:17 +01:00
/**
* Save attachment to a file
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t (*document_attachment_save)(zathura_document_t* document, const char* attachment, const char* file);
2012-01-13 18:25:17 +01:00
2011-10-01 23:29:40 +02:00
/**
* Get document information
*/
2012-02-07 21:01:54 +01:00
char* (*document_meta_get)(zathura_document_t* document, zathura_document_meta_t info, zathura_plugin_error_t* error);
2011-10-01 23:29:40 +02:00
2011-03-12 11:32:24 +01:00
/**
* Gets the page object
*/
2012-02-07 21:01:54 +01:00
zathura_page_t* (*page_get)(zathura_document_t* document, unsigned int page_id, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Search text
*/
2012-02-07 21:01:54 +01:00
girara_list_t* (*page_search_text)(zathura_page_t* page, const char* text, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Get links on a page
*/
2012-02-07 21:01:54 +01:00
girara_list_t* (*page_links_get)(zathura_page_t* page, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Get form fields
*/
2012-02-07 21:01:54 +01:00
girara_list_t* (*page_form_fields_get)(zathura_page_t* page, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Get list of images
*/
2012-02-07 21:01:54 +01:00
girara_list_t* (*page_images_get)(zathura_page_t* page, zathura_plugin_error_t* error);
/**
* Save image to a file
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t (*page_image_save)(zathura_page_t* page, zathura_image_t* image, const char* file);
2011-03-12 11:32:24 +01:00
/**
* Renders the page
*/
2012-02-07 21:01:54 +01:00
zathura_image_buffer_t* (*page_render)(zathura_page_t* page, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
2011-09-29 12:07:07 +02:00
/**
* Renders the page
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t (*page_render_cairo)(zathura_page_t* page, cairo_t* cairo, bool printing);
2011-09-29 12:07:07 +02:00
2011-03-12 11:32:24 +01:00
/**
* Free page
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t (*page_free)(zathura_page_t* page);
2010-11-17 22:51:15 +01:00
} functions;
2010-12-28 00:47:41 +01:00
2011-03-12 11:32:24 +01:00
/**
* Document pages
*/
2010-12-28 00:47:41 +01:00
zathura_page_t** pages;
2012-02-07 19:25:47 +01:00
/**
* File monitor
*/
struct {
GFileMonitor* monitor; /**< File monitor */
GFile* file; /**< File for file monitor */
} file_monitor;
2010-11-17 22:51:15 +01:00
};
2011-03-12 11:32:24 +01:00
/**
* Load all document plugins
2011-04-18 18:19:41 +02:00
*
* @param zathura the zathura session
2011-03-12 11:32:24 +01:00
*/
2011-04-18 18:19:41 +02:00
void zathura_document_plugins_load(zathura_t* zathura);
2011-03-12 11:32:24 +01:00
/**
2011-09-29 15:23:13 +02:00
* Free a document plugin
2011-04-18 18:19:41 +02:00
*
2011-09-29 15:23:13 +02:00
* @param plugin The plugin
2011-03-12 11:32:24 +01:00
*/
2011-09-29 15:23:13 +02:00
void zathura_document_plugin_free(zathura_document_plugin_t* plugin);
2011-03-12 11:32:24 +01:00
/**
* Open the document
*
* @param path Path to the document
* @param password Password of the document or NULL
* @return The document object
*/
2012-02-07 21:01:54 +01:00
zathura_document_t* zathura_document_open(zathura_t* zathura, const char* path,
const char* password);
2011-03-12 11:32:24 +01:00
/**
* Free the document
*
* @param document
2012-02-07 21:01:54 +01:00
* @return See \ref zathura_plugin_error_t
2011-03-12 11:32:24 +01:00
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t zathura_document_free(zathura_document_t* document);
2011-03-12 11:32:24 +01:00
/**
* Save the document
*
* @param document The document object
* @param path Path for the saved file
2012-02-07 21:01:54 +01:00
* @return See \ref zathura_plugin_error_t
2011-03-12 11:32:24 +01:00
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_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
* @return Generated index
*/
2012-02-07 21:01:54 +01:00
girara_tree_node_t* zathura_document_index_generate(zathura_document_t* document, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Get list of attachments
*
* @param document The document object
* @return List of attachments
*/
2012-02-07 21:01:54 +01:00
girara_list_t* zathura_document_attachments_get(zathura_document_t* document, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +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
* @return true on success, false otherwise
2011-03-12 11:32:24 +01:00
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_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
* @param meta The information field
* @return String or NULL if information could not be retreived
*/
2012-02-07 21:01:54 +01:00
char* zathura_document_meta_get(zathura_document_t* document, zathura_document_meta_t meta, zathura_plugin_error_t* error);
2011-10-01 23:29:40 +02:00
2011-03-12 11:32:24 +01:00
/**
* Get the page object
*
* @param document The document
* @param page_id Page number
* @return Page object or NULL if an error occured
*/
2012-02-07 21:01:54 +01:00
zathura_page_t* zathura_page_get(zathura_document_t* document, unsigned int page_id, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Frees the page object
*
* @param page The page object
* @return true if no error occured, otherwise false
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t zathura_page_free(zathura_page_t* page);
2011-03-12 11:32:24 +01:00
/**
* Search page
*
* @param page The page object
* @param text Search item
* @return List of results
*/
2012-02-07 21:01:54 +01:00
girara_list_t* zathura_page_search_text(zathura_page_t* page, const char* text, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Get page links
*
* @param page The page object
* @return List of links
*/
2012-02-07 21:01:54 +01:00
girara_list_t* zathura_page_links_get(zathura_page_t* page, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Free page links
*
* @param list List of links
* @return true if no error occured, otherwise false
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t zathura_page_links_free(girara_list_t* list);
2011-03-12 11:32:24 +01:00
/**
* Get list of form fields
*
* @param page The page object
* @return List of form fields
*/
2012-02-07 21:01:54 +01:00
girara_list_t* zathura_page_form_fields_get(zathura_page_t* page, zathura_plugin_error_t* error);
2011-03-12 11:32:24 +01:00
/**
* Free list of form fields
*
* @param list List of form fields
2012-02-07 21:01:54 +01:00
* @param error See \ref zathura_plugin_error_t
2011-03-12 11:32:24 +01:00
* @return true if no error occured, otherwise false
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t zathura_page_form_fields_free(girara_list_t* list);
2011-03-12 11:32:24 +01:00
/**
* Get list of images
*
* @param page Page
2012-02-07 21:01:54 +01:00
* @param error See \ref zathura_plugin_error_t
* @return List of images or NULL if an error occured
*/
2012-02-07 21:01:54 +01:00
girara_list_t* zathura_page_images_get(zathura_page_t* page, zathura_plugin_error_t* error);
/**
* Save image
*
* @param page Page
* @param image The image
* @param file Path to the file
2012-02-07 21:01:54 +01:00
* @return See \ref zathura_plugin_error_t
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t zathura_page_image_save(zathura_page_t* page, zathura_image_t* image, const char* file);
2011-03-12 11:32:24 +01:00
/**
* Render page
*
* @param page The page object
2011-09-29 12:35:52 +02:00
* @param cairo Cairo object
* @param printing render for printing
2012-02-07 21:01:54 +01:00
* @return See \ref zathura_plugin_error_t
2011-03-12 11:32:24 +01:00
*/
2012-02-07 21:01:54 +01:00
zathura_plugin_error_t zathura_page_render(zathura_page_t* page, cairo_t* cairo, bool printing);
2010-11-17 22:51:15 +01:00
2011-03-12 11:32:24 +01:00
/**
* Create new index element
*
* @param title Title of the index element
* @return Index element
*/
2010-12-25 00:47:52 +01:00
zathura_index_element_t* zathura_index_element_new(const char* title);
2011-03-12 11:32:24 +01:00
/**
* Free index element
*
* @param index The index element
*/
2010-12-25 00:47:52 +01:00
void zathura_index_element_free(zathura_index_element_t* index);
2012-02-07 17:44:19 +01:00
/**
* Free link
*
* @param link The link
*/
void zathura_link_free(zathura_link_t* link);
2011-09-29 15:23:13 +02:00
/**
* Add type -> plugin mapping
* @param zathura zathura instance
* @param type content type
* @param plugin plugin instance
* @return true on success, false if another plugin is already registered for
* that type
*/
bool zathura_type_plugin_mapping_new(zathura_t* zathura, const gchar* type, zathura_document_plugin_t* plugin);
/**
* Free type -> plugin mapping
* @param mapping To be freed
*/
void zathura_type_plugin_mapping_free(zathura_type_plugin_mapping_t* mapping);
2010-11-17 22:51:15 +01:00
#endif // DOCUMENT_H