diff options
author | Joanmarie Diggs <[email protected]> | 2014-06-23 12:06:46 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-11-27 10:13:51 +0100 |
commit | 6473980b44cbb959c1eadf0ce1549837b645318d (patch) | |
tree | 5a5f4fa4b89c3e30e121719cb695318a1281c854 /libview/ev-form-field-accessible.h | |
parent | fd9b18641b5ddda364aaca2bbba678f644554741 (diff) | |
download | atril-6473980b44cbb959c1eadf0ce1549837b645318d.tar.bz2 atril-6473980b44cbb959c1eadf0ce1549837b645318d.tar.xz |
Expose form fields as AtkObject children of the page
https://bugzilla.gnome.org/show_bug.cgi?id=728475
origin commit:
https://git.gnome.org/browse/evince/commit/?h=gnome-3-14&id=d707486
Diffstat (limited to 'libview/ev-form-field-accessible.h')
-rw-r--r-- | libview/ev-form-field-accessible.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/libview/ev-form-field-accessible.h b/libview/ev-form-field-accessible.h new file mode 100644 index 00000000..e0b56b43 --- /dev/null +++ b/libview/ev-form-field-accessible.h @@ -0,0 +1,55 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */ +/* this file is part of atril, a mate document viewer + * + * Copyright (C) 2014 Igalia + * Author: Joanmarie Diggs <[email protected]> + * + * Atril is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * Atril is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#if !defined (ATRIL_COMPILATION) +#error "This is a private header." +#endif + +#ifndef __EV_FORM_FIELD_ACCESSIBLE_H__ +#define __EV_FORM_FIELD_ACCESSIBLE_H__ + +#include <gtk/gtk-a11y.h> +#include "ev-page-accessible.h" +#include "ev-form-field.h" + +#define EV_TYPE_FORM_FIELD_ACCESSIBLE (ev_form_field_accessible_get_type ()) +#define EV_FORM_FIELD_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_FORM_FIELD_ACCESSIBLE, EvFormFieldAccessible)) +#define EV_IS_FORM_FIELD_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_FORM_FIELD_ACCESSIBLE)) + +typedef struct _EvFormFieldAccessible EvFormFieldAccessible; +typedef struct _EvFormFieldAccessibleClass EvFormFieldAccessibleClass; +typedef struct _EvFormFieldAccessiblePrivate EvFormFieldAccessiblePrivate; + +struct _EvFormFieldAccessible { + AtkObject parent; + EvFormFieldAccessiblePrivate *priv; +}; + +struct _EvFormFieldAccessibleClass { + AtkObjectClass parent_class; +}; + +GType ev_form_field_accessible_get_type (void); +EvFormFieldAccessible *ev_form_field_accessible_new (EvPageAccessible *page, + EvFormField *form_field, + EvRectangle *area); + +#endif /* __EV_FORM_FIELD_ACCESSIBLE_H__ */ |