Table Of Contents

Previous topic

BufferedPaintDC

Next topic

Button

This Page

phoenix_title BusyCursor

This class makes it easy to tell your user that the program is temporarily busy.

Just create a BusyCursor object on the stack, and within the current scope, the hourglass will be shown.

For example:

wait = wx.BusyCursor()

for i in xrange(10000):
    DoACalculation()

del wait

It works by calling BeginBusyCursor in the constructor, and EndBusyCursor in the destructor.


class_hierarchy Inheritance Diagram

Inheritance diagram for class BusyCursor

Inheritance diagram of BusyCursor


method_summary Methods Summary

__init__ Constructs a busy cursor object, calling BeginBusyCursor.

api Class API



class BusyCursor(object)

This class makes it easy to tell your user that the program is temporarily busy.

Possible constructors:

BusyCursor(cursor=HOURGLASS_CURSOR)

Methods



__init__(self, cursor=HOURGLASS_CURSOR)

Constructs a busy cursor object, calling BeginBusyCursor.

Parameters:cursor (Cursor) –