~ubuntu-branches/ubuntu/oneiric/gnome-orca/oneiric

« back to all changes in this revision

Viewing changes to src/orca/mag.py

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2011-07-05 09:09:42 UTC
  • mfrom: (0.9.36 upstream)
  • Revision ID: james.westby@ubuntu.com-20110705090942-6cle2wtl1sdq9wr3
Tags: 3.1.3-0ubuntu1
* New upstream release
  - General
    + Fix for bug 653642 - Alt+F4 followed by Escape leaves the Orca window
      closed - but Orca still running
    + Fix for bug 653628 - List shortcuts mode: shortcut is spelled out as
      "shift T A B" instead of saying "shift tab"
    + Fix for bug 653634 - Orca welcome message is cut off
    + Fix for bug 653624 - bash-ism causes error in orca startup script
    + Fix for bug 653514 - The ONLY magnification work Orca should be doing
      is handling caret and focus tracking
    + Fix for bug 652500 - DBusException seen when Orca is running with
      gnome-shell mag
  - New and updated translations (THANKS EVERYONE!!!):
    + de            German               Christian Kirbach
    + es            Spanish              Daniel Mustieles
    + gl            Galician             Fran Diéguez
    + hu            Hungarian            Attila Hammer
    + sl            Slovenian            Matej Urbančič
    + sv            Swedish              Daniel Nylander
    + tr            Turkish              Muhammet Kara

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
# unavailable. And in a GNOME 3 environment, there are no other
31
31
# magnification solutions. Hence the lack of functionality. ;-)
32
32
 
33
 
def applySettings():
34
 
    pass
35
 
 
36
33
def magnifyAccessible(event, obj, extents=None):
37
34
    pass
38
35
 
42
39
def shutdown():
43
40
    return False
44
41
 
45
 
def setupMagnifier(position, left=None, top=None, right=None, bottom=None,
46
 
                   restore=None):
47
 
    pass
48
 
 
49
 
def setMagnifierCursor(enabled, customEnabled, size, updateScreen=True):
50
 
    pass
51
 
 
52
 
def setMagnifierCrossHair(enabled, updateScreen=True):
53
 
    pass
54
 
 
55
 
def setMagnifierCrossHairClip(enabled, updateScreen=True):
56
 
    pass
57
 
 
58
 
def setZoomerColorInversion(enabled, updateScreen=True):
59
 
    pass
60
 
 
61
 
def setZoomerBrightness(red=0, green=0, blue=0, updateScreen=True):
62
 
    pass
63
 
 
64
 
def setZoomerContrast(red=0, green=0, blue=0, updateScreen=True):
65
 
    pass
66
 
 
67
 
def setMagnifierObjectSize(magProperty, size, updateScreen=True):
68
 
    pass
69
 
 
70
 
def setZoomerObjectSize(magProperty, size, updateScreen=True):
71
 
    pass
72
 
 
73
 
def setZoomerObjectColor(magProperty, colorSetting, updateScreen=True):
74
 
    pass
75
 
 
76
 
def setMagnifierObjectColor(magProperty, colorSetting, updateScreen=True):
77
 
    pass
78
 
 
79
 
def setZoomerMagFactor(x, y, updateScreen=True):
80
 
    pass
81
 
 
82
 
def setZoomerSmoothingType(smoothingType, updateScreen=True):
83
 
    pass
84
 
 
85
 
def setZoomerColorFilter(colorFilter, updateScreen=True):
86
 
    pass
87
 
 
88
 
def hideSystemPointer(hidePointer):
89
 
    pass
90
 
 
91
 
def isFullScreenCapable():
92
 
    return False
93
 
 
94
 
def isFilteringCapable():
95
 
    return False
 
42
 
96
43
 
97
44
 
98
45