2010-11-10 20:31:15 +01:00
|
|
|
/* See LICENSE file for license and copyright information */
|
2010-11-10 20:47:53 +01:00
|
|
|
|
|
|
|
#ifndef UTILS_H
|
|
|
|
#define UTILS_H
|
|
|
|
|
2010-11-18 02:35:33 +01:00
|
|
|
#include <stdbool.h>
|
2010-12-28 09:47:09 +01:00
|
|
|
#include <gtk/gtk.h>
|
2010-11-18 02:35:33 +01:00
|
|
|
|
2011-02-01 15:48:16 +01:00
|
|
|
/**
|
|
|
|
* Checks if the given file exists
|
|
|
|
*
|
|
|
|
* @param path Path to the file
|
|
|
|
* @return true if the file exists, otherwise false
|
|
|
|
*/
|
2010-11-18 02:35:33 +01:00
|
|
|
bool file_exists(const char* path);
|
2011-02-01 15:48:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the file extension of a path
|
|
|
|
*
|
|
|
|
* @param path Path to the file
|
|
|
|
* @return The file extension or NULL
|
|
|
|
*/
|
2010-11-18 02:35:33 +01:00
|
|
|
const char* file_get_extension(const char* path);
|
2011-02-01 15:48:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes a system command and saves its output into output
|
|
|
|
*
|
|
|
|
* @param argv The command
|
|
|
|
* @param output Pointer where the output will be saved
|
|
|
|
* @return true if no error occured, otherwise false
|
|
|
|
*/
|
2010-11-29 14:58:56 +01:00
|
|
|
bool execute_command(char* const argv[], char** output);
|
2011-02-01 15:48:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a blank page
|
|
|
|
*
|
|
|
|
* @param width The width of the page
|
|
|
|
* @param height The height of the page
|
|
|
|
* @return The widget of the page or NULL if an error occured
|
|
|
|
*/
|
2010-12-29 11:46:13 +01:00
|
|
|
GtkWidget* page_blank(unsigned int width, unsigned int height);
|
2010-11-18 02:35:33 +01:00
|
|
|
|
2010-11-10 20:47:53 +01:00
|
|
|
#endif // UTILS_H
|