Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ev-image-accessible.h
Go to the documentation of this file.
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /* this file is part of evince, a gnome document viewer
3  *
4  * Copyright (C) 2014 Igalia
5  * Author: Joanmarie Diggs <jdiggs@igalia.com>
6  *
7  * Evince is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * Evince is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  */
21 
22 #if !defined (EVINCE_COMPILATION)
23 #error "This is a private header."
24 #endif
25 
26 #ifndef __EV_IMAGE_ACCESSIBLE_H__
27 #define __EV_IMAGE_ACCESSIBLE_H__
28 
29 #include <gtk/gtk-a11y.h>
30 #include "ev-page-accessible.h"
31 #include "ev-image.h"
32 
33 #define EV_TYPE_IMAGE_ACCESSIBLE (ev_image_accessible_get_type ())
34 #define EV_IMAGE_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_IMAGE_ACCESSIBLE, EvImageAccessible))
35 #define EV_IS_IMAGE_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_IMAGE_ACCESSIBLE))
36 
40 
42  AtkObject parent;
44 };
45 
47  AtkObjectClass parent_class;
48 };
49 
50 GType ev_image_accessible_get_type (void);
52  EvImage *image,
53  EvRectangle *area);
54 
55 #endif /* __EV_IMAGE_ACCESSIBLE_H__ */