From 510fff156db65795cbf211e7910a67fb316cb404 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Sun, 27 Jul 2008 19:13:28 +0200 Subject: Initial commit --- setup.h | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 setup.h (limited to 'setup.h') diff --git a/setup.h b/setup.h new file mode 100644 index 0000000..0cde34c --- /dev/null +++ b/setup.h @@ -0,0 +1,77 @@ +/* Cataract - Static web photo gallery generator + * Copyright (C) 2008 Tomas Bzatek + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#ifndef __SETUP_H__ +#define __SETUP_H__ + + +#include + + +typedef struct { + gboolean verbose; + char *real_templates_dir; + + char *setup_xml_path; + + char *templates_path; + char *template_index; + char *template_album; + char *template_photo; + char *styles; + char *scripts; + + char *footer; + + int thumbnail_quality; + unsigned long thumbnail_landscape_width; + unsigned long thumbnail_landscape_height; + unsigned long thumbnail_portrait_width; + unsigned long thumbnail_portrait_height; + + int preview_quality; + unsigned long preview_landscape_width; + unsigned long preview_landscape_height; + unsigned long preview_portrait_width; + unsigned long preview_portrait_height; +} TGallerySetup; + + + +/* + * find_setup_xml: try to find setup.xml in standard paths + */ +gboolean find_setup_xml (TGallerySetup *setup); + +/* + * parse_setup_xml: XML parser for setup.xml file + */ +gboolean parse_setup_xml (const char *filename, TGallerySetup *setup); + +/* + * free_setup_data: free allocated setup data + */ +void free_setup_data (TGallerySetup *setup); + +/* + * find_templates_directory: absolute/relative path checks, trying to find templates directory + * - returned string should be freed + */ +char *find_templates_directory (TGallerySetup *setup); + + +#endif /* __SETUP_H__ */ -- cgit v1.2.3