Git init
[external/pango1.0.git] / pango-view / viewer.h
1 /* viewer.h: PangoViewer class
2  *
3  * Copyright (C) 1999,2004,2005 Red Hat, Inc.
4  * Copyright (C) 2001 Sun Microsystems
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 #ifndef VIEWER_H
22 #define VIEWER_H
23
24 #include <stdio.h>
25 #include <pango/pango.h>
26
27 typedef struct _PangoViewer PangoViewer;
28
29 struct _PangoViewer {
30
31   const char *name;
32
33   const char *id;
34
35   const char *write_suffix;
36
37   gpointer (*create) (const PangoViewer *klass);
38
39   void (*destroy) (gpointer instance);
40
41   PangoContext * (*get_context) (gpointer instance);
42
43   gpointer (*create_surface) (gpointer instance,
44                               int      width,
45                               int      height);
46
47   void (*destroy_surface) (gpointer instance,
48                            gpointer surface);
49
50   void (*render) (gpointer      instance,
51                   gpointer      surface,
52                   PangoContext *context,
53                   int          *width,
54                   int          *height,
55                   gpointer      state);
56
57   /* The following can be NULL */
58
59   void (*write) (gpointer instance,
60                  gpointer surface,
61                  FILE    *stream,
62                  int      width,
63                  int      height);
64
65   gpointer (*create_window) (gpointer    instance,
66                              const char *title,
67                              int         width,
68                              int         height);
69
70   void (*destroy_window) (gpointer instance,
71                           gpointer window);
72
73   gpointer (*display) (gpointer instance,
74                        gpointer surface,
75                        gpointer window,
76                        int      width,
77                        int      height,
78                        gpointer state);
79
80   void (*load) (gpointer instance,
81                 gpointer surface,
82                 guchar  *buffer,
83                 int      width,
84                 int      height,
85                 int      stride);
86
87   void (*save) (gpointer instance,
88                 gpointer surface,
89                 guchar  *buffer,
90                 int      width,
91                 int      height,
92                 int      stride);
93
94   GOptionGroup * (*get_option_group) (const PangoViewer *klass);
95 };
96
97 extern const PangoViewer *viewers[];
98
99 #endif /* VIEWER_H */