]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-file-helpers.h
833eade90ebf74f40432a62f4f3eb311ce8206b9
[evince.git] / libdocument / ev-file-helpers.h
1 /*
2  *  Copyright (C) 2002 Jorn Baayen
3  *
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, or (at your option)
7  *  any later version.
8  *
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.
13  *
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.
17  *
18  *  $Id$
19  */
20
21 #ifndef EV_FILE_HELPERS_H
22 #define EV_FILE_HELPERS_H
23
24 #include <glib.h>
25 #include <gio/gio.h>
26
27 G_BEGIN_DECLS
28
29 typedef enum {
30         EV_COMPRESSION_NONE,
31         EV_COMPRESSION_BZIP2,
32         EV_COMPRESSION_GZIP
33 } EvCompressionType;
34
35 const gchar *ev_dot_dir               (void);
36
37 const gchar *ev_tmp_dir               (void);
38
39 void         ev_file_helpers_init     (void);
40
41 void         ev_file_helpers_shutdown (void);
42
43 GFile       *ev_tmp_file_get          (const gchar       *prefix);
44 gchar       *ev_tmp_filename          (const char        *prefix);
45 void         ev_tmp_filename_unlink   (const gchar       *filename);
46 void         ev_tmp_file_unlink       (GFile             *file);
47 void         ev_tmp_uri_unlink        (const gchar       *uri);
48
49 gboolean     ev_xfer_uri_simple       (const char        *from,
50                                        const char        *to,
51                                        GError           **error);
52
53 gchar       *ev_file_get_mime_type    (const gchar       *uri,
54                                        gboolean           fast,
55                                        GError           **error);
56
57 gchar       *ev_file_uncompress       (const gchar       *uri,
58                                        EvCompressionType  type,
59                                        GError           **error);
60 gchar       *ev_file_compress         (const gchar       *uri,
61                                        EvCompressionType  type,
62                                        GError           **error);
63
64
65 G_END_DECLS
66
67 #endif /* EV_FILE_HELPERS_H */