zathura/document.h

342 lines
9.9 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"
#include "version.h"
2012-03-27 11:19:39 +02:00
#include "types.h"
2011-03-05 21:00:41 +01:00
#define PLUGIN_REGISTER_FUNCTION "plugin_register"
#define PLUGIN_API_VERSION_FUNCTION "plugin_api_version"
2012-03-21 16:23:29 +01:00
#define PLUGIN_ABI_VERSION_FUNCTION "plugin_abi_version"
/**
* Register a plugin.
*
* @param plugin_name the name of the plugin
* @param major the plugin's major version
* @param minor the plugin's minor version
* @param rev the plugin's revision
* @param plugin_open_function the plugin's open function
* @param mimetypes a char array of mime types supported by the plugin
*/
#define PLUGIN_REGISTER(plugin_name, major, minor, rev, plugin_open_function, mimetypes) \
unsigned int plugin_version_major() { return major; } \
unsigned int plugin_version_minor() { return minor; } \
unsigned int plugin_version_revision() { return rev; } \
unsigned int plugin_api_version() { return ZATHURA_API_VERSION; } \
2012-03-21 16:23:29 +01:00
unsigned int plugin_abi_version() { return ZATHURA_ABI_VERSION; } \
\
void plugin_register(zathura_document_plugin_t* plugin) \
{ \
if (plugin == NULL) { \
return; \
} \
plugin->open_function = (plugin_open_function); \
static const char* mime_types[] = mimetypes; \
for (size_t s = 0; s != sizeof(mime_types) / sizeof(const char*); ++s) { \
girara_list_append(plugin->content_types, g_content_type_from_mime_type(mime_types[s])); \
} \
} \
2011-03-05 21:00:41 +01:00
2012-03-09 09:53:03 +01:00
#define PLUGIN_MIMETYPES(...) __VA_ARGS__
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;
2012-02-08 23:21:27 +01:00
typedef struct zathura_password_dialog_info_s
{
char* path; /**< Path to the file */
zathura_t* zathura; /**< Zathura session */
} zathura_password_dialog_info_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
/**
* Function prototype that is called to get the plugin's API version.
*
* @return plugin's API version
*/
typedef unsigned int (*zathura_plugin_api_version_t)();
2012-03-21 16:23:29 +01:00
/**
* Function prototype that is called to get the ABI version the plugin is built
* against.
*
* @return plugin's ABI version
*/
typedef unsigned int (*zathura_plugin_abi_version_t)();
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 */
unsigned int rotate; /**< Rotation */
2012-01-22 21:57:18 +01:00
void* data; /**< Custom data */
zathura_t* zathura; /** Zathura object */
2012-02-09 01:46:51 +01:00
int adjust_mode; /**< Adjust mode (best-fit, width) */
unsigned int page_offset; /**< Page offset */
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-03-26 15:17:01 +02:00
zathura_plugin_error_t (*page_init)(zathura_page_t* page);
/**
* Free page
*/
zathura_plugin_error_t (*page_clear)(zathura_page_t* page);
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);
/**
* Get the image
*/
cairo_surface_t* (*page_image_get_cairo)(zathura_page_t* page, zathura_image_t* image, zathura_plugin_error_t* error);
2012-02-08 23:20:22 +01:00
/**
* Get text for selection
*/
char* (*page_get_text)(zathura_page_t* page, zathura_rectangle_t rectangle, zathura_plugin_error_t* error);
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);
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;
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
*
2012-02-08 15:30:13 +01:00
* @param zathura Zathura object
2011-03-12 11:32:24 +01:00
* @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-08 15:30:13 +01:00
* @return ZATHURA_PLUGIN_ERROR_OK when no error occured, otherwise see
* 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-08 15:30:13 +01:00
* @return ZATHURA_PLUGIN_ERROR_OK when no error occured, otherwise see
* 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
2012-02-08 15:30:13 +01:00
* @param error Set to an error value (see \ref zathura_plugin_error_t) if an
* error occured
2011-03-12 11:32:24 +01:00
* @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
2012-02-08 15:30:13 +01:00
* @param error Set to an error value (see \ref zathura_plugin_error_t) if an
* error occured
2011-03-12 11:32:24 +01:00
* @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
2012-02-08 15:30:13 +01:00
* @return ZATHURA_PLUGIN_ERROR_OK when no error occured, otherwise see
* 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_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
2012-02-08 15:30:13 +01:00
* @param error Set to an error value (see \ref zathura_plugin_error_t) if an
* error occured
2011-10-01 23:29:40 +02:00
* @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-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