From 33889b3eddebef1251e70a882b72a1710ba20083 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Tue, 11 Jun 2013 14:22:41 +0200 Subject: libview: Add a way to get the text logical attributes from the page cache It returns an array of PangoLogAttr with the logical attributes of the text for the given page. taken from: https://git.gnome.org/browse/evince/commit/?h=gnome-3-10&id=6870279 --- libview/ev-jobs.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libview/ev-jobs.c') diff --git a/libview/ev-jobs.c b/libview/ev-jobs.c index a2ba309a..c82ac6b5 100644 --- a/libview/ev-jobs.c +++ b/libview/ev-jobs.c @@ -760,6 +760,13 @@ ev_job_page_data_run (EvJob *job) ev_page, &(job_pd->text_layout), &(job_pd->text_layout_length)); + if ((job_pd->flags & EV_PAGE_DATA_INCLUDE_TEXT_LOG_ATTRS) && job_pd->text) { + job_pd->text_log_attrs_length = g_utf8_strlen (job_pd->text, -1); + job_pd->text_log_attrs = g_new0 (PangoLogAttr, job_pd->text_log_attrs_length + 1); + + /* FIXME: We need API to get the language of the document */ + pango_get_log_attrs (job_pd->text, -1, -1, NULL, job_pd->text_log_attrs, job_pd->text_log_attrs_length + 1); + } if ((job_pd->flags & EV_PAGE_DATA_INCLUDE_LINKS) && EV_IS_DOCUMENT_LINKS (job->document)) job_pd->link_mapping = ev_document_links_get_links (EV_DOCUMENT_LINKS (job->document), ev_page); -- cgit v1.2.1