zathura/utils.c

231 lines
6.3 KiB
C
Raw Normal View History

2010-11-18 02:35:33 +01:00
/* See LICENSE file for license and copyright information */
#include <stdlib.h>
2011-03-05 21:00:41 +01:00
#include <stdarg.h>
2010-11-18 03:15:32 +01:00
#include <string.h>
#include <stdio.h>
2010-11-18 02:35:33 +01:00
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
2012-02-09 12:31:39 +01:00
#include <math.h>
2012-04-21 04:59:58 +02:00
#include <gtk/gtk.h>
#include <girara/datastructures.h>
2012-04-21 04:59:58 +02:00
#include <girara/session.h>
#include <girara/settings.h>
#include <girara/utils.h>
2010-11-18 02:35:33 +01:00
2012-05-28 12:43:22 +02:00
#include "links.h"
2010-11-18 02:35:33 +01:00
#include "utils.h"
2011-02-10 04:33:28 +01:00
#include "zathura.h"
#include "internal.h"
#include "document.h"
2012-03-26 14:44:56 +02:00
#include "page.h"
2012-03-27 13:30:04 +02:00
#include "plugin.h"
#include "content-type.h"
2010-11-18 02:35:33 +01:00
bool
file_valid_extension(zathura_t* zathura, const char* path)
{
if (zathura == NULL || path == NULL || zathura->plugins.manager == NULL) {
return false;
}
const gchar* content_type = guess_content_type(path);
2011-09-29 15:23:13 +02:00
if (content_type == NULL) {
return false;
}
zathura_plugin_t* plugin = zathura_plugin_manager_get_plugin(zathura->plugins.manager, content_type);
2011-09-29 18:08:37 +02:00
g_free((void*)content_type);
2012-04-01 18:32:16 +02:00
return (plugin == NULL) ? false : true;
}
2011-02-10 04:33:28 +01:00
void
2011-09-29 16:50:52 +02:00
document_index_build(GtkTreeModel* model, GtkTreeIter* parent,
2012-10-09 01:12:18 +02:00
girara_tree_node_t* tree)
2011-02-10 04:33:28 +01:00
{
2011-09-29 16:50:52 +02:00
girara_list_t* list = girara_node_get_children(tree);
GIRARA_LIST_FOREACH(list, girara_tree_node_t*, iter, node)
2012-10-09 01:12:18 +02:00
zathura_index_element_t* index_element = (zathura_index_element_t*)girara_node_get_data(node);
2011-02-10 04:33:28 +01:00
2012-10-09 01:12:18 +02:00
zathura_link_type_t type = zathura_link_get_type(index_element->link);
zathura_link_target_t target = zathura_link_get_target(index_element->link);
2012-04-22 10:04:46 +02:00
2012-10-09 01:12:18 +02:00
gchar* description = NULL;
if (type == ZATHURA_LINK_GOTO_DEST) {
description = g_strdup_printf("Page %d", target.page_number + 1);
} else {
description = g_strdup(target.value);
}
2011-09-29 17:28:09 +02:00
2012-10-09 01:12:18 +02:00
GtkTreeIter tree_iter;
gtk_tree_store_append(GTK_TREE_STORE(model), &tree_iter, parent);
gtk_tree_store_set(GTK_TREE_STORE(model), &tree_iter, 0, index_element->title, 1, description, 2, index_element, -1);
g_object_weak_ref(G_OBJECT(model), (GWeakNotify) zathura_index_element_free, index_element);
g_free(description);
2011-09-29 16:50:52 +02:00
2012-10-09 01:12:18 +02:00
if (girara_node_get_num_children(node) > 0) {
document_index_build(model, &tree_iter, node);
}
2011-09-29 16:50:52 +02:00
2011-10-17 11:16:14 +02:00
GIRARA_LIST_FOREACH_END(list, gchar*, iter, name);
2011-02-10 04:33:28 +01:00
}
2011-03-05 21:00:41 +01:00
zathura_rectangle_t
rotate_rectangle(zathura_rectangle_t rectangle, unsigned int degree, double height, double width)
2012-02-08 22:23:45 +01:00
{
zathura_rectangle_t tmp;
switch (degree) {
case 90:
tmp.x1 = height - rectangle.y2;
tmp.x2 = height - rectangle.y1;
tmp.y1 = rectangle.x1;
tmp.y2 = rectangle.x2;
break;
case 180:
tmp.x1 = width - rectangle.x2;
tmp.x2 = width - rectangle.x1;
tmp.y1 = height - rectangle.y2;
tmp.y2 = height - rectangle.y1;
break;
case 270:
tmp.x1 = rectangle.y1;
tmp.x2 = rectangle.y2;
tmp.y1 = width - rectangle.x2;
tmp.y2 = width - rectangle.x1;
break;
default:
tmp.x1 = rectangle.x1;
tmp.x2 = rectangle.x2;
tmp.y1 = rectangle.y1;
tmp.y2 = rectangle.y2;
}
return tmp;
}
zathura_rectangle_t
recalc_rectangle(zathura_page_t* page, zathura_rectangle_t rectangle)
{
2012-03-26 14:44:56 +02:00
if (page == NULL) {
goto error_ret;
}
2012-03-26 14:44:56 +02:00
zathura_document_t* document = zathura_page_get_document(page);
if (document == NULL) {
goto error_ret;
}
double page_height = zathura_page_get_height(page);
double page_width = zathura_page_get_width(page);
double scale = zathura_document_get_scale(document);
2012-03-26 14:44:56 +02:00
zathura_rectangle_t tmp = rotate_rectangle(rectangle, zathura_document_get_rotation(document), page_height, page_width);
tmp.x1 *= scale;
tmp.x2 *= scale;
tmp.y1 *= scale;
tmp.y2 *= scale;
return tmp;
2012-03-26 14:44:56 +02:00
error_ret:
return rectangle;
}
2012-02-08 21:34:53 +01:00
GtkWidget*
zathura_page_get_widget(zathura_t* zathura, zathura_page_t* page)
{
if (zathura == NULL || page == NULL || zathura->pages == NULL) {
return NULL;
}
unsigned int page_number = zathura_page_get_index(page);
return zathura->pages[page_number];
}
2012-04-21 04:59:58 +02:00
2012-04-22 19:12:45 +02:00
void
document_draw_search_results(zathura_t* zathura, bool value)
{
if (zathura == NULL || zathura->document == NULL || zathura->pages == NULL) {
return;
}
unsigned int number_of_pages = zathura_document_get_number_of_pages(zathura->document);
for (unsigned int page_id = 0; page_id < number_of_pages; page_id++) {
g_object_set(zathura->pages[page_id], "draw-search-results", (value == true) ? TRUE : FALSE, NULL);
}
}
2012-07-12 10:37:58 +02:00
char*
zathura_get_version_string(zathura_t* zathura, bool markup)
{
2012-10-09 01:12:18 +02:00
if (zathura == NULL) {
return NULL;
}
2012-07-12 10:37:58 +02:00
GString* string = g_string_new(NULL);
/* zathura version */
char* zathura_version = g_strdup_printf("zathura %d.%d.%d", ZATHURA_VERSION_MAJOR, ZATHURA_VERSION_MINOR, ZATHURA_VERSION_REV);
g_string_append(string, zathura_version);
g_free(zathura_version);
2012-10-09 01:12:18 +02:00
char* format = (markup == true) ? "\n<i>(plugin)</i> %s (%d.%d.%d) <i>(%s)</i>" : "\n(plugin) %s (%d.%d.%d) (%s)";
2012-07-12 10:37:58 +02:00
/* plugin information */
girara_list_t* plugins = zathura_plugin_manager_get_plugins(zathura->plugins.manager);
if (plugins != NULL) {
GIRARA_LIST_FOREACH(plugins, zathura_plugin_t*, iter, plugin)
2012-10-09 01:12:18 +02:00
char* name = zathura_plugin_get_name(plugin);
zathura_plugin_version_t version = zathura_plugin_get_version(plugin);
char* text = g_strdup_printf(format,
(name == NULL) ? "-" : name,
version.major,
version.minor,
version.rev,
zathura_plugin_get_path(plugin)
);
g_string_append(string, text);
g_free(text);
2012-07-12 10:37:58 +02:00
GIRARA_LIST_FOREACH_END(plugins, zathura_plugin_t*, iter, plugin);
}
2012-10-09 01:12:18 +02:00
char* version = string->str;
g_string_free(string, FALSE);
2012-07-12 10:37:58 +02:00
2012-10-09 01:12:18 +02:00
return version;
2012-07-12 10:37:58 +02:00
}
2012-08-14 11:45:11 +02:00
GdkAtom* get_selection(zathura_t* zathura)
{
g_return_val_if_fail(zathura != NULL, NULL);
char* value;
girara_setting_get(zathura->ui.session, "selection-clipboard", &value);
GdkAtom* selection = g_try_malloc(sizeof(GdkAtom));
if (selection == NULL) {
return NULL;
}
if (strcmp(value, "primary") == 0) {
*selection = GDK_SELECTION_PRIMARY;
} else if (strcmp(value, "clipboard") == 0) {
*selection = GDK_SELECTION_CLIPBOARD;
} else {
girara_error("Invalid value for the selection-clipboard setting");
g_free(value);
g_free(selection);
return NULL;
}
g_free(value);
return selection;
}