]> www.fi.muni.cz Git - evince.git/blob - shell/ev-metadata-manager.h
only call ev_properties_fonts_set_document() if the document implements
[evince.git] / shell / ev-metadata-manager.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * ev-metadata-manager.h
4  *
5  * Copyright (C) 2003  Paolo Maggi 
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, 
20  * Boston, MA 02111-1307, USA. 
21  */
22  
23 #ifndef __EV_METADATA_MANAGER_H__
24 #define __EV_METADATA_MANAGER_H__
25
26 #include <glib.h>
27 #include <glib-object.h>
28
29 G_BEGIN_DECLS
30
31 gboolean        ev_metadata_manager_get         (const gchar  *uri,
32                                                  const gchar  *key,
33                                                  GValue       *value);
34 void            ev_metadata_manager_set         (const gchar  *uri,
35                                                  const gchar  *key,
36                                                  const GValue *value);
37 void            ev_metadata_manager_set_int     (const gchar  *uri,
38                                                  const gchar  *key,
39                                                  int           value);
40 void            ev_metadata_manager_shutdown    (void);
41
42 G_END_DECLS
43
44 #endif /* __EV_METADATA_MANAGER_H__ */