Go to the source code of this file.
Classes | |
| class | CursorIdent |
| Used in the cursor stack - holds a pointer to a cursor and an identifying ID. More... | |
| class | CursorStack |
| A stack of Cursor objects, which is part of the kernel (NB Cursor objects are part of the OIL). More... | |
Functions | |
| void | BeginBusyCursor () |
| Tells the global cursor stack to display a busy cursor. | |
| void | EndBusyCursor () |
| Tells the global cursor stack to stop displaying the busy cursor. If more than one call has been previously made to beginBusyCursor, the busy cursor isn't removed - a usage count is decremented. | |
| void | SmashBusyCursor () |
| Tells the global cursor stack to stop displaying the busy cursor, regardless of how many calls have been previously made to beginBusyCursor. | |
|
|
Tells the global cursor stack to display a busy cursor.
Definition at line 632 of file csrstack.cpp. 00633 { 00634 //CursorStack::Global->Push(Cursor::Busy); 00635 if (CursorStack::Global) 00636 CursorStack::Global->BeginBusy(); 00637 }
|
|
|
Tells the global cursor stack to stop displaying the busy cursor. If more than one call has been previously made to beginBusyCursor, the busy cursor isn't removed - a usage count is decremented.
Definition at line 658 of file csrstack.cpp. 00659 { 00660 if (CursorStack::Global) 00661 CursorStack::Global->EndBusy(); 00662 }
|
|
|
Tells the global cursor stack to stop displaying the busy cursor, regardless of how many calls have been previously made to beginBusyCursor.
Definition at line 681 of file csrstack.cpp. 00682 { 00683 if (CursorStack::Global) 00684 CursorStack::Global->SmashBusy(); 00685 }
|
1.4.4