Small control showing an animation indicating that the program is currently busy performing some background task.
Added in version 4.1/wxWidgets-3.1.0.
Default constructor. |
|
Create the control initialized using the default constructor. |
|
Returns |
|
Starts animation of the indicator. |
|
Stops the animation of the indicator. |
Possible constructors:
ActivityIndicator() -> None
ActivityIndicator(parent : Window, winid: int=ID_ANY, pos:
Point=DefaultPosition, size: Size=DefaultSize, style: int=0, name:
str="activityindicator") -> None
Small control showing an animation indicating that the program is currently busy performing some background task.
__init__ (self)
Default constructor.
Use Create
to really create the control after using this constructor.
None
__init__ (self, parent : Window, winid: int=ID_ANY, pos: Point=DefaultPosition, size: Size=DefaultSize, style: int=0, name: str=”activityindicator”)
Constructor fully creating the control.
The arguments have the usual meanings and only parent is typically required.
None
Create the control initialized using the default constructor.
This method can be used to finish the control creation if it hadn’t been done already by using the non-default constructor.
variant (WindowVariant)
Returns True
if the control is currently showing activity.
Returns False
initially, True
once Start
is called and False
again after calling Stop
.
bool
Starts animation of the indicator.
Does nothing if the indicator is already running.
None