Changeset 2117

Show
Ignore:
Timestamp:
06/11/08 23:22:58 (5 months ago)
Author:
jteh
Message:

virtual buffers: Add frame (m) and separator (s) quick navigation keys.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-id:v3-list-QlpoOTFBWSZTWbrL2vUAAB1VgAAQABCAQDrrnqAgAFCgaaGRkxBoTIJ6mmaNRwhndFAoNhZjh_YY4a01fOg1ulgNNC2UrzPdXXEnDpX8XckU4UJC6y9r1A..
      •  

        old new  
        1121121908 jamie@jantrid.net-20080606055429-139hpd9knwjndbc6 
        1131131918 jamie@jantrid.net-20080610071321-o2quns8eds2all65 
         1141921 jamie@jantrid.net-20080611232038-q2vwximl2phf5wba 
    • Property bzr:revision-info
      •  

        old new  
        1 timestamp: 2008-06-10 17:13:21.141000032 +1000 
         1timestamp: 2008-06-12 09:20:38.619999886 +1000 
        22committer: James Teh <jamie@jantrid.net> 
        33properties:  
  • trunk/source/virtualBuffers/__init__.py

    r2095 r2117  
    325325qn("edit", key="e", nextDoc=_("moves to the next edit field"), nextError=_("no next edit field"), 
    326326        prevDoc=_("moves to the previous edit field"), prevError=_("no previous edit field")) 
     327qn("frame", key="m", nextDoc=_("moves to the next frame"), nextError=_("no next frame"), 
     328        prevDoc=_("moves to the previous frame"), prevError=_("no previous frame")) 
     329qn("separator", key="s", nextDoc=_("moves to the next separator"), nextError=_("no next separator"), 
     330        prevDoc=_("moves to the previous separator"), prevError=_("no previous separator")) 
    327331del qn 
  • trunk/source/virtualBuffers/gecko_ia2.py

    r2114 r2117  
    224224                elif nodeType=="edit": 
    225225                        attrs={"IAccessible::role":[IAccessibleHandler.ROLE_SYSTEM_TEXT],"IAccessible::state_%s"%IAccessibleHandler.STATE_SYSTEM_READONLY:[None]} 
     226                elif nodeType=="frame": 
     227                        attrs={"IAccessible::role":[IAccessibleHandler.IA2_ROLE_INTERNAL_FRAME]} 
     228                elif nodeType=="separator": 
     229                        attrs={"IAccessible::role":[IAccessibleHandler.ROLE_SYSTEM_SEPARATOR]} 
    226230                elif nodeType=="focusable": 
    227231                        attrs={"IAccessible::state_%s"%IAccessibleHandler.STATE_SYSTEM_FOCUSABLE:[1]}