]> git.sur5r.net Git - glabels/blob - src/file.h
Imported Upstream version 2.2.8
[glabels] / src / file.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3 /*
4  *  (GLABELS) Label and Business Card Creation program for GNOME
5  *
6  *  file.h:  FILE menu dialog module header file
7  *
8  *  Copyright (C) 2000  Jim Evins <evins@snaught.com>.
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23  */
24
25 #ifndef __FILE_H__
26 #define __FILE_H__
27
28 #include <gtk/gtkwindow.h>
29
30 #include "label.h"
31 #include "window.h"
32
33 G_BEGIN_DECLS
34
35 void     gl_file_new         (glWindow        *window);
36
37
38 void     gl_file_properties  (glLabel         *label,
39                               glWindow        *window);
40
41
42 void     gl_file_open        (glWindow        *window);
43
44
45 void     gl_file_open_recent (const gchar     *filename,
46                               glWindow        *window);
47
48 gboolean gl_file_open_real   (const gchar     *filename,
49                               glWindow        *window);
50
51
52 gboolean gl_file_save        (glLabel         *label,
53                               glWindow        *window);
54
55 gboolean gl_file_save_as     (glLabel         *label,
56                               glWindow        *window);
57
58
59 gboolean gl_file_close       (glWindow        *window);
60
61 void     gl_file_exit        (void);
62
63 G_END_DECLS
64
65 #endif /* __FILE_H__ */