Inherited from Interface :
supports
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|
|
__init__(self,
min=0,
max=100,
is_relative=True,
may_abort=False,
round_robin=False,
**kwargs)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
begin(self)
intiialize the progress indicator before calling set |
source code
|
|
|
end(self)
indicate that you are done with the progress indicator - this must be your last
call to the interface |
source code
|
|
|
refresh(self,
message=None)
Refresh the progress indicator so that it represents its values on screen. |
source code
|
|
|
set(self,
value,
message=None,
omit_refresh=False)
Set the progress of the progress indicator to the given value |
source code
|
|
|
setRange(self,
min,
max)
set the range within we expect our progress to occour |
source code
|
|
|
|
|
setRelative(self,
state)
enable or disable relative progress computations |
source code
|
|
|
setAbortable(self,
state)
If state is True, the progress may be interrupted, if false it cannot
be interrupted |
source code
|
|
|
setup(self,
range=None,
relative=None,
abortable=None,
begin=True,
round_robin=None)
Multifunctional, all in one convenience method setting all important attributes
at once. |
source code
|
|
|
|
|
value(self)
Returns:
current progress as it is stored internally, without regarding
the range or round-robin options. |
source code
|
|
|
|
|
|
|
prefix(self,
value)
Returns:
a prefix indicating the progress according to the current range
and given value |
source code
|
|
|
|
|
isRelative(self)
Returns:
true if internal progress computations are relative, False if
they are treated as absolute values |
source code
|
|
|
|