aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/gui32.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-05 14:48:51 +0000
committerMartin Kiewitz2010-02-05 14:48:51 +0000
commitf8f490c565809c93ca35928210a740b6579fba19 (patch)
tree94c07530aa26dc845eb7d1731a18f8f8c0aeaa0d /engines/sci/graphics/gui32.cpp
parent6c204cc890ed769f4d9268e80c6814c2eb95eb02 (diff)
downloadscummvm-rg350-f8f490c565809c93ca35928210a740b6579fba19.tar.gz
scummvm-rg350-f8f490c565809c93ca35928210a740b6579fba19.tar.bz2
scummvm-rg350-f8f490c565809c93ca35928210a740b6579fba19.zip
SCI: calling most of the cursor functions directly via _gfxCursor instead of SciGui/32
svn-id: r47903
Diffstat (limited to 'engines/sci/graphics/gui32.cpp')
-rw-r--r--engines/sci/graphics/gui32.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/engines/sci/graphics/gui32.cpp b/engines/sci/graphics/gui32.cpp
index 170acd07d5..0191504b55 100644
--- a/engines/sci/graphics/gui32.cpp
+++ b/engines/sci/graphics/gui32.cpp
@@ -176,36 +176,12 @@ void SciGui32::baseSetter(reg_t object) {
}
}
-void SciGui32::hideCursor() {
- _cursor->hide();
-}
-
-void SciGui32::showCursor() {
- _cursor->show();
-}
-
-bool SciGui32::isCursorVisible() {
- return _cursor->isVisible();
-}
-
-void SciGui32::setCursorShape(GuiResourceId cursorId) {
- _cursor->setShape(cursorId);
-}
-
-void SciGui32::setCursorView(GuiResourceId viewNum, int loopNum, int cellNum, Common::Point *hotspot) {
- _cursor->setView(viewNum, loopNum, cellNum, hotspot);
-}
-
void SciGui32::setCursorPos(Common::Point pos) {
//pos.y += _gfx->GetPort()->top;
//pos.x += _gfx->GetPort()->left;
moveCursor(pos);
}
-Common::Point SciGui32::getCursorPos() {
- return _cursor->getPosition();
-}
-
void SciGui32::moveCursor(Common::Point pos) {
// pos.y += _windowMgr->_picWind->rect.top;
// pos.x += _windowMgr->_picWind->rect.left;