2 * this file is part of evince, a gnome document_fonts viewer
4 * Copyright (C) 2004 Red Hat, Inc.
7 * Marco Pesenti Gritti <mpg@redhat.com>
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.
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.
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.
26 #include "ev-document-fonts.h"
28 EV_DEFINE_INTERFACE (EvDocumentFonts, ev_document_fonts, 0)
31 ev_document_fonts_class_init (EvDocumentFontsIface *klass)
36 ev_document_fonts_get_progress (EvDocumentFonts *document_fonts)
38 EvDocumentFontsIface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
40 return iface->get_progress (document_fonts);
44 ev_document_fonts_scan (EvDocumentFonts *document_fonts,
47 EvDocumentFontsIface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
49 return iface->scan (document_fonts, n_pages);
53 ev_document_fonts_fill_model (EvDocumentFonts *document_fonts,
56 EvDocumentFontsIface *iface = EV_DOCUMENT_FONTS_GET_IFACE (document_fonts);
58 iface->fill_model (document_fonts, model);