]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-layer.h
86fc403e0b6d8681e9b0aaecb863f11029b45640
[evince.git] / libdocument / ev-layer.h
1 /* this file is part of evince, a gnome document viewer
2  *
3  * Copyright (C) 2008 Carlos Garcia Campos <carlosgc@gnome.org>
4  *
5  * Evince is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * Evince is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __EV_LAYER_H__
21 #define __EV_LAYER_H__
22
23 #include <glib-object.h>
24
25 G_BEGIN_DECLS
26
27 typedef struct _EvLayer        EvLayer;
28 typedef struct _EvLayerClass   EvLayerClass;
29 typedef struct _EvLayerPrivate EvLayerPrivate;
30
31 #define EV_TYPE_LAYER              (ev_layer_get_type())
32 #define EV_LAYER(object)           (G_TYPE_CHECK_INSTANCE_CAST((object), EV_TYPE_LAYER, EvLayer))
33 #define EV_LAYER_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST((klass), EV_TYPE_LAYER, EvLayerClass))
34 #define EV_IS_LAYER(object)        (G_TYPE_CHECK_INSTANCE_TYPE((object), EV_TYPE_LAYER))
35 #define EV_IS_LAYER_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE((klass), EV_TYPE_LAYER))
36 #define EV_LAYER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), EV_TYPE_LAYER, EvLayerClass))
37
38 struct _EvLayer {
39         GObject base_instance;
40         
41         EvLayerPrivate *priv;
42 };
43
44 struct _EvLayerClass {
45         GObjectClass base_class;
46 };
47
48 GType     ev_layer_get_type     (void) G_GNUC_CONST;
49 EvLayer  *ev_layer_new          (guint    layer_id,
50                                  gboolean is_parent,
51                                  gint     rb_group);
52 guint     ev_layer_get_id       (EvLayer *layer);
53 gboolean  ev_layer_is_parent    (EvLayer *layer);
54 gint      ev_layer_get_rb_group (EvLayer *layer);
55
56 G_END_DECLS
57
58 #endif /* __EV_LAYER_H__ */