Version: 2.9.4
Public Member Functions
wxBusyCursor Class Reference

#include </home/zeitlin/src/wx/github/interface/wx/utils.h>


Detailed Description

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

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

以下に例を示します:

    wxBusyCursor wait;

    for (int i = 0; i < 100000; i++)
        DoACalculation();

It works by calling wxBeginBusyCursor() in the constructor, and wxEndBusyCursor() in the destructor.

Library:  wxCore
Category:  Miscellaneous
参照:
wxBeginBusyCursor(), wxEndBusyCursor(), wxWindowDisabler

Public Member Functions

 wxBusyCursor (const wxCursor *cursor=wxHOURGLASS_CURSOR)
 Constructs a busy cursor object, calling wxBeginBusyCursor().
 ~wxBusyCursor ()
 Destroys the busy cursor object, calling wxEndBusyCursor().

List of all members.


Constructor & Destructor Documentation

wxBusyCursor::wxBusyCursor ( const wxCursor cursor = wxHOURGLASS_CURSOR)

Constructs a busy cursor object, calling wxBeginBusyCursor().

wxBusyCursor::~wxBusyCursor ( )

Destroys the busy cursor object, calling wxEndBusyCursor().

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines