| 24 | #include "windowManager/platformCursorController.h" |
| 25 | |
| 26 | void PlatformCursorController::pushCursor( S32 cursorID ) |
| 27 | { |
| 28 | // Place the new cursor shape onto the stack |
| 29 | mCursors.increment(); |
| 30 | |
| 31 | Cursor_Shape &shape = mCursors.last(); |
| 32 | shape.mCursorType = Cursor_Shape::TYPE_RESOURCE; |
| 33 | shape.mCursorID = cursorID; |
| 34 | |
| 35 | // Now Change the Cursor Shape. |
| 36 | setCursorShape( shape.mCursorID ); |
| 37 | } |
| 38 | |
| 39 | void PlatformCursorController::pushCursor( const UTF8 *fileName ) |
| 40 | { |