]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document-fonts.h
6cb07e2e21b66d19476703cfd5c05b7424e23af4
[evince.git] / backend / ev-document-fonts.h
1 /* ev-document-fonts.h
2  *  this file is part of evince, a gnome document 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 #ifndef EV_DOCUMENT_FONTS_H
25 #define EV_DOCUMENT_FONTS_H
26
27 #include <glib-object.h>
28 #include <glib.h>
29 #include <gtk/gtk.h>
30
31 #include "ev-document.h"
32 #include "ev-link.h"
33
34 G_BEGIN_DECLS
35
36
37 #define EV_TYPE_DOCUMENT_FONTS            (ev_document_fonts_get_type ())
38 #define EV_DOCUMENT_FONTS(o)              (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_FONTS, EvDocumentFonts))
39 #define EV_DOCUMENT_FONTS_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_FONTS, EvDocumentFontsIface))
40 #define EV_IS_DOCUMENT_FONTS(o)           (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_FONTS))
41 #define EV_IS_DOCUMENT_FONTS_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_FONTS))
42 #define EV_DOCUMENT_FONTS_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_FONTS, EvDocumentFontsIface))
43
44 typedef struct _EvDocumentFonts      EvDocumentFonts;
45 typedef struct _EvDocumentFontsIface EvDocumentFontsIface;
46
47 enum {
48         EV_DOCUMENT_FONTS_COLUMN_NAME,
49         EV_DOCUMENT_FONTS_COLUMN_NUM_COLUMNS
50 };
51
52 struct _EvDocumentFontsIface
53 {
54         GTypeInterface base_iface;
55
56         /* Methods  */
57         GtkTreeModel *(* get_fonts_model)    (EvDocumentFonts      *document_fonts);
58 };
59
60 GType         ev_document_fonts_get_type           (void);
61 GtkTreeModel *ev_document_fonts_get_fonts_model    (EvDocumentFonts *document_fonts);
62
63 G_END_DECLS
64
65 #endif