]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document-fonts.c
Implement fonts list. Defined out for now, since it depends on a not yet
[evince.git] / backend / ev-document-fonts.c
1 /* ev-document-fonts.h
2  *  this file is part of evince, a gnome document_fonts viewer
3  * 
4  * Copyright (C) 2004 Red Hat, Inc.
5  *
6  * Author:
7  *   Marco Pesenti Gritti <mpg@redhat.com>
8  *
9  * Evince is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Evince is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #include "config.h"
25
26 #include "ev-document-fonts.h"
27 #include "ev-job-queue.h"
28
29 GType
30 ev_document_fonts_get_type (void)
31 {
32         static GType type = 0;
33
34         if (G_UNLIKELY (type == 0))
35         {
36                 static const GTypeInfo our_info =
37                 {
38                         sizeof (EvDocumentFontsIface),
39                         NULL,
40                         NULL,
41                 };
42
43                 type = g_type_register_static (G_TYPE_INTERFACE,
44                                                "EvDocumentFonts",
45                                                &our_info, (GTypeFlags)0);
46         }
47
48         return type;
49 }
50
51 GtkTreeModel *
52 ev_document_fonts_get_fonts_model (EvDocumentFonts *document_fonts)
53 {
54         EvDocumentFontsIface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
55         GtkTreeModel *retval;
56
57         retval = iface->get_fonts_model (document_fonts);
58
59         return retval;
60 }