]> git.sur5r.net Git - glabels/blob - glabels1/src/template.h
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels1 / src / template.h
1 /*
2  *  (GLABELS) Label and Business Card Creation program for GNOME
3  *
4  *  template.h:  template module header file
5  *
6  *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21  */
22
23 #ifndef __TEMPLATE_H__
24 #define __TEMPLATE_H__
25
26 #include <gnome.h>
27
28 /* LibXML */
29 #include <tree.h>
30 #include <parser.h>
31
32 typedef enum {
33         GL_TEMPLATE_STYLE_RECT,
34         GL_TEMPLATE_STYLE_ROUND,
35         GL_TEMPLATE_STYLE_CD,
36 } glTemplateStyle;
37
38 typedef struct {
39         GList *name;
40         gchar *description;
41         gchar *page_size;
42         glTemplateStyle style;
43
44         /* Suggested margin */
45         gdouble label_margin;
46
47         /* Simple and rounded rectangles. */
48         gdouble label_width, label_height, label_round;
49
50         /* CD/DVD labels */
51         gdouble label_radius, label_hole;
52
53         /* Layout */
54         gint nx, ny;
55         gdouble x0, y0, dx, dy;
56 } glTemplate;
57
58 extern void gl_template_init (void);
59
60 extern GList *gl_template_get_name_list (const gchar * page_size);
61 extern void gl_template_free_name_list (GList ** names);
62
63 extern glTemplate *gl_template_from_name (const gchar * name);
64
65 extern glTemplate *gl_template_copy(const glTemplate *orig_template);
66 extern void gl_template_free(glTemplate **template);
67
68 extern void gl_template_xml_parse_sheet (glTemplate * template,
69                                          xmlNodePtr sheet_node);
70 extern void gl_template_xml_add_sheet (glTemplate * template,
71                                        xmlNodePtr root, xmlNsPtr ns);
72 #endif