[accerciser] interface_view: highlight selected text
- From: Samuel Thibault <sthibaul src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [accerciser] interface_view: highlight selected text
- Date: Thu, 29 Aug 2019 12:42:49 +0000 (UTC)
commit 31b64bebd624548535a08ec3dc9e1b55912a4b50
Author: Samuel Thibault <samuel thibault ens-lyon org>
Date: Thu Aug 29 14:39:19 2019 +0200
interface_view: highlight selected text
plugins/interface_view.py | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
---
diff --git a/plugins/interface_view.py b/plugins/interface_view.py
index 90409d1..b5484d1 100644
--- a/plugins/interface_view.py
+++ b/plugins/interface_view.py
@@ -23,6 +23,7 @@ import os.path
from accerciser.plugin import ViewportPlugin
from accerciser.icons import getIcon
+from accerciser.node import _HighLight
from accerciser.i18n import _, N_, DOMAIN
from xml.dom import minidom
@@ -1460,8 +1461,24 @@ class _SectionText(_InterfaceSection):
@param param_spec: Some gobject crud
@type param_spec: object
'''
+
self.offset_spin.set_value(text_buffer.get_property('cursor-position'))
+ s = text_buffer.get_selection_bounds()
+ if s != ():
+ # Highlight selected text
+ try:
+ start,end = s
+ startOffset = start.get_offset()
+ endOffset = end.get_offset()
+ text = self.node.acc.queryText()
+ (x, y, width, height) = text.getRangeExtents(startOffset, endOffset, pyatspi.DESKTOP_COORDS)
+ # TODO: make parameters configurable
+ ah = _HighLight(x, y, width, height, '#00ff00', 0.5, '#00ff00', 1.0, 2.0, 0)
+ ah.highlight(500)
+ except:
+ pass
+
def _accEventText(self, event):
'''
Callback for accessible text changes. Updates the text buffer accordingly.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]