Show
Ignore:
Timestamp:
09/11/08 11:48:26 (4 months ago)
Author:
pvagner
Message:

* ITextDocumentTextInfo: Fixed a problem where NVDA was unable to move the review cursor to the bottom line. Added ability to detect strikedthrough font property.
* EditTextInfo? and ITextDocumentTextInfo: Introduced ability to identify links inside a richedit controls. Added _getPoint method which retrieves x and y coordinates for the current textInfo ofsset/range.
* script_moveMouseToNavigatorObject now makes use of the features listed above. When navigator object mouse is being moved to implements _getPoint in its textInfo, mouse is moved to the currently reviewed character. Otherwise mouse is moved into the center of the navigator object.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/source/NVDAObjects/__init__.py

    r2356 r2377  
    137137        def _getOffsetAtPoint(self,x,y): 
    138138                raise NotImplementedError 
     139 
     140        def _getPoint(self): 
     141                return None 
    139142 
    140143        def __init__(self,obj,position):