X7ROOT File Manager
Current Path:
/usr/lib/python2.7/site-packages/pyatspi
usr
/
lib
/
python2.7
/
site-packages
/
pyatspi
/
📁
..
📄
Accessibility.py
(11.09 KB)
📄
Accessibility.pyc
(14.53 KB)
📄
Accessibility.pyo
(14.53 KB)
📄
__init__.py
(993 B)
📄
__init__.pyc
(467 B)
📄
__init__.pyo
(467 B)
📄
action.py
(4.85 KB)
📄
action.pyc
(4.91 KB)
📄
action.pyo
(4.91 KB)
📄
appevent.py
(3.66 KB)
📄
appevent.pyc
(3.42 KB)
📄
appevent.pyo
(3.42 KB)
📄
application.py
(2.78 KB)
📄
application.pyc
(2.63 KB)
📄
application.pyo
(2.63 KB)
📄
atspienum.py
(1.39 KB)
📄
atspienum.pyc
(1 KB)
📄
atspienum.pyo
(1 KB)
📄
collection.py
(3.96 KB)
📄
collection.pyc
(4.11 KB)
📄
collection.pyo
(4.11 KB)
📄
component.py
(6.72 KB)
📄
component.pyc
(6.72 KB)
📄
component.pyo
(6.72 KB)
📄
constants.py
(4.7 KB)
📄
constants.pyc
(3.29 KB)
📄
constants.pyo
(3.29 KB)
📄
deviceevent.py
(9.33 KB)
📄
deviceevent.pyc
(11.96 KB)
📄
deviceevent.pyo
(11.96 KB)
📄
document.py
(3.6 KB)
📄
document.pyc
(3.55 KB)
📄
document.pyo
(3.55 KB)
📄
editabletext.py
(5.02 KB)
📄
editabletext.pyc
(5.05 KB)
📄
editabletext.pyo
(5.05 KB)
📄
hypertext.py
(2.76 KB)
📄
hypertext.pyc
(2.48 KB)
📄
hypertext.pyo
(2.48 KB)
📄
image.py
(4.64 KB)
📄
image.pyc
(4.6 KB)
📄
image.pyo
(4.6 KB)
📄
interface.py
(980 B)
📄
interface.pyc
(862 B)
📄
interface.pyo
(862 B)
📄
registry.py
(17.8 KB)
📄
registry.pyc
(15.55 KB)
📄
registry.pyo
(15.55 KB)
📄
role.py
(13.09 KB)
📄
role.pyc
(10.21 KB)
📄
role.pyo
(10.21 KB)
📄
selection.py
(5.62 KB)
📄
selection.pyc
(5.8 KB)
📄
selection.pyo
(5.8 KB)
📄
state.py
(5.34 KB)
📄
state.pyc
(4.37 KB)
📄
state.pyo
(4.37 KB)
📄
table.py
(15.39 KB)
📄
table.pyc
(16.91 KB)
📄
table.pyo
(16.91 KB)
📄
tablecell.py
(3.08 KB)
📄
tablecell.pyc
(3.06 KB)
📄
tablecell.pyo
(3.06 KB)
📄
text.py
(30.98 KB)
📄
text.pyc
(31.63 KB)
📄
text.pyo
(31.63 KB)
📄
utils.py
(13.82 KB)
📄
utils.pyc
(15.21 KB)
📄
utils.pyo
(15.21 KB)
📄
value.py
(2.8 KB)
📄
value.pyc
(2.61 KB)
📄
value.pyo
(2.61 KB)
Editing: value.py
#Copyright (C) 2008 Codethink Ltd #Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. #This library is free software; you can redistribute it and/or #modify it under the terms of the GNU Lesser General Public #License version 2 as published by the Free Software Foundation. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #GNU General Public License for more details. #You should have received a copy of the GNU Lesser General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. from gi.repository import Atspi from pyatspi.utils import * from pyatspi.interface import * __all__ = [ "Value", ] #------------------------------------------------------------------------------ class Value(interface): """ An interface supporting controls which allow a one-dimensional, scalar quantity to be modified or which reflect a scalar quantity. (If STATE_EDITABLE is not present, the valuator is treated as "read only". """ def get_currentValue(self): return Atspi.Value.get_current_value(self.obj) def set_currentValue(self, value): Atspi.Value.set_current_value(self.obj, value) _currentValueDoc = \ """ The current value of the valuator. """ currentValue = property(fget=get_currentValue, fset=set_currentValue, doc=_currentValueDoc) def get_maximumValue(self): return Atspi.Value.get_maximum_value(self.obj) _maximumValueDoc = \ """ The maximum value allowed by this valuator. """ maximumValue = property(fget=get_maximumValue, doc=_maximumValueDoc) def get_minimumIncrement(self): return Atspi.Value.get_minimum_increment(self.obj) _minimumIncrementDoc = \ """ The smallest incremental change which this valuator allows. If 0, the incremental changes to the valuator are limited only by the precision of a double precision value on the platform. """ minimumIncrement = property(fget=get_minimumIncrement, doc=_minimumIncrementDoc) def get_minimumValue(self): return Atspi.Value.get_minimum_value(self.obj) _minimumValueDoc = \ """ The minimum value allowed by this valuator. """ minimumValue = property(fget=get_minimumValue, doc=_minimumValueDoc) #END----------------------------------------------------------------------------
Upload File
Create Folder