2001-04-13 Hans Breuer <hans@breuer.org>
[dia.git] / lib / sheet.h
blobd1c227028d7067566c02e715d5d69965f8d645a3
1 /* Dia -- an diagram creation/manipulation program
2 * Copyright (C) 1998 Alexander Larsson
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #ifndef SHEET_H
19 #define SHEET_H
21 #include <glib.h>
23 typedef struct _Sheet Sheet;
24 typedef struct _SheetObject SheetObject;
26 #include "object.h"
28 struct _SheetObject {
29 char *object_type;
30 char *description;
31 char **pixmap; /* in xpm format */
33 void *user_data;
35 gboolean line_break;
37 char *pixmap_file; /* fallback if pixmap is NULL */
40 struct _Sheet {
41 char *name;
42 char *description;
44 GSList *objects; /* list of SheetObject */
47 Sheet *new_sheet(char *name, char *description);
48 void sheet_prepend_sheet_obj(Sheet *sheet, SheetObject *type);
49 void sheet_append_sheet_obj(Sheet *sheet, SheetObject *type);
50 void register_sheet(Sheet *sheet);
51 GSList *get_sheets_list(void);
53 void load_all_sheets(void);
55 #endif /* SHEET_H */