summaryrefslogtreecommitdiff
path: root/libview/ev-view-accessible.h
diff options
context:
space:
mode:
authorAntia Puentes <[email protected]>2013-07-30 19:09:52 +0200
committerraveit65 <[email protected]>2017-11-27 10:13:51 +0100
commitfb1224c38b3c4269fc8ad6591ab258c0d1bad72d (patch)
tree3c58501e641bf3230b8d485346cba800caf7a21c /libview/ev-view-accessible.h
parent2e6280dbe736802fa10378add2134017dc54a66c (diff)
downloadatril-fb1224c38b3c4269fc8ad6591ab258c0d1bad72d.tar.bz2
atril-fb1224c38b3c4269fc8ad6591ab258c0d1bad72d.tar.xz
ev-view-accessible: Clear the cached data when the current page
or document is updated. https://bugzilla.gnome.org/show_bug.cgi?id=704621 https://git.gnome.org/browse/evince/commit/?h=gnome-3-10&id=d71e0d7
Diffstat (limited to 'libview/ev-view-accessible.h')
-rw-r--r--libview/ev-view-accessible.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/libview/ev-view-accessible.h b/libview/ev-view-accessible.h
index 04ef34e8..df3ca317 100644
--- a/libview/ev-view-accessible.h
+++ b/libview/ev-view-accessible.h
@@ -26,6 +26,7 @@
#define __EV_VIEW_ACCESSIBLE_H__
#include <gtk/gtk-a11y.h>
+#include "ev-document-model.h"
#define EV_TYPE_VIEW_ACCESSIBLE (ev_view_accessible_get_type ())
#define EV_VIEW_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_VIEW_ACCESSIBLE, EvViewAccessible))
@@ -47,8 +48,10 @@ struct _EvViewAccessibleClass
GtkContainerAccessibleClass parent_class;
};
-GType ev_view_accessible_get_type (void);
-AtkObject *ev_view_accessible_new (GtkWidget *widget);
+GType ev_view_accessible_get_type (void);
+AtkObject *ev_view_accessible_new (GtkWidget *widget);
+void ev_view_accessible_set_model (EvViewAccessible *accessible,
+ EvDocumentModel *model);
#endif /* __EV_VIEW_ACCESSIBLE_H__ */