zathura/types.c

110 lines
2.1 KiB
C
Raw Normal View History

2012-03-27 11:19:39 +02:00
/* See LICENSE file for license and copyright information */
2012-03-27 13:30:04 +02:00
#include <stdlib.h>
2012-03-30 18:24:00 +02:00
#include <girara/datastructures.h>
#include <glib.h>
2012-03-27 13:30:04 +02:00
2012-03-27 11:19:39 +02:00
#include "types.h"
2012-05-28 12:43:22 +02:00
#include "links.h"
2012-04-06 13:54:17 +02:00
#include "internal.h"
2012-03-27 11:19:39 +02:00
2012-03-27 13:30:04 +02:00
zathura_index_element_t*
zathura_index_element_new(const char* title)
{
if (title == NULL) {
return NULL;
}
zathura_index_element_t* res = g_malloc0(sizeof(zathura_index_element_t));
res->title = g_strdup(title);
return res;
}
void
zathura_index_element_free(zathura_index_element_t* index)
{
if (index == NULL) {
return;
}
g_free(index->title);
2012-04-22 10:04:46 +02:00
zathura_link_free(index->link);
2012-03-27 13:30:04 +02:00
g_free(index);
}
zathura_image_buffer_t*
zathura_image_buffer_create(unsigned int width, unsigned int height)
{
zathura_image_buffer_t* image_buffer = malloc(sizeof(zathura_image_buffer_t));
if (image_buffer == NULL) {
return NULL;
}
image_buffer->data = calloc(width * height * 3, sizeof(unsigned char));
if (image_buffer->data == NULL) {
free(image_buffer);
return NULL;
}
image_buffer->width = width;
image_buffer->height = height;
image_buffer->rowstride = width * 3;
return image_buffer;
}
void
zathura_image_buffer_free(zathura_image_buffer_t* image_buffer)
{
if (image_buffer == NULL) {
return;
}
free(image_buffer->data);
free(image_buffer);
}
2012-03-30 18:24:00 +02:00
girara_list_t*
zathura_document_information_entry_list_new()
{
girara_list_t* list = girara_list_new2((girara_free_function_t)
2012-10-09 01:12:18 +02:00
zathura_document_information_entry_free);
2012-03-30 18:24:00 +02:00
return list;
}
zathura_document_information_entry_t*
zathura_document_information_entry_new(zathura_document_information_type_t type,
2012-10-09 01:12:18 +02:00
const char* value)
2012-03-30 18:24:00 +02:00
{
if (value == NULL) {
return NULL;
}
zathura_document_information_entry_t* entry =
g_malloc0(sizeof(zathura_document_information_entry_t));
entry->type = type;
entry->value = g_strdup(value);
return entry;
}
void
zathura_document_information_entry_free(zathura_document_information_entry_t* entry)
{
if (entry == NULL) {
return;
}
if (entry->value != NULL) {
g_free(entry->value);
}
g_free(entry);
}