Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-document-fonts.c
Go to the documentation of this file.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  */
23 
24 #include "config.h"
25 
26 #include "ev-document-fonts.h"
27 
28 G_DEFINE_INTERFACE (EvDocumentFonts, ev_document_fonts, 0)
29 
30 static void
32 {
33 }
34 
35 double
37 {
38  EvDocumentFontsInterface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
39 
40  return iface->get_progress (document_fonts);
41 }
42 
43 gboolean
45  int n_pages)
46 {
47  EvDocumentFontsInterface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
48 
49  return iface->scan (document_fonts, n_pages);
50 }
51 
52 void
54  GtkTreeModel *model)
55 {
56  EvDocumentFontsInterface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
57 
58  iface->fill_model (document_fonts, model);
59 }
60 
61 const gchar *
63 {
64  EvDocumentFontsInterface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
65 
66  if (!iface->get_fonts_summary)
67  return NULL;
68 
69  return iface->get_fonts_summary (document_fonts);
70 }