]> www.fi.muni.cz Git - evince.git/blob - backend/ps/ev-spectre.h
Update FSF address everywhere.
[evince.git] / backend / ps / ev-spectre.h
1 /*
2  * Ghostscript widget for GTK/GNOME
3  * 
4  * Copyright 1998 - 2005 The Free Software Foundation
5  * 
6  * Authors: Jaka Mocnik, Federico Mena (Quartic), Szekeres Istvan (Pista)
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 #ifndef __PS_DOCUMENT_H__
25 #define __PS_DOCUMENT_H__
26
27 #include <glib-object.h>
28
29 #include "ev-document.h"
30
31 G_BEGIN_DECLS
32
33 #define PS_TYPE_DOCUMENT           (ps_document_get_type())
34 #define PS_DOCUMENT(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), PS_TYPE_DOCUMENT, PSDocument))
35 #define PS_DOCUMENT_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), PS_TYPE_DOCUMENT, PSDocumentClass))
36 #define PS_IS_DOCUMENT(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PS_TYPE_DOCUMENT))
37 #define PS_DOCUMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PS_TYPE_DOCUMENT, PSDocumentClass))
38
39 typedef struct _PSDocument      PSDocument;
40 typedef struct _PSDocumentClass PSDocumentClass;
41
42 GType                 ps_document_get_type    (void) G_GNUC_CONST;
43
44 G_MODULE_EXPORT GType register_evince_backend (GTypeModule *module);
45
46 G_END_DECLS
47
48 #endif /* __PS_DOCUMENT_H__ */