#include "camtypes.h"#include "csrstack.h"Go to the source code of this file.
Defines | |
| #define | new CAM_DEBUG_NEW |
Functions | |
| DECLARE_SOURCE ("$Revision $") | |
| 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. | |
|
|
Definition at line 117 of file csrstack.cpp. |
|
|
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