aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/graphics.h
diff options
context:
space:
mode:
authorAlejandro Marzini2010-07-15 01:21:20 +0000
committerAlejandro Marzini2010-07-15 01:21:20 +0000
commitf53028d4a2d53238fb92e56bea6c737c57ffb123 (patch)
tree84f473bce0f643519a0ef7985619c25f731d8421 /backends/graphics/graphics.h
parent84ceae932852fe684ea553daee712b52da83add6 (diff)
downloadscummvm-rg350-f53028d4a2d53238fb92e56bea6c737c57ffb123.tar.gz
scummvm-rg350-f53028d4a2d53238fb92e56bea6c737c57ffb123.tar.bz2
scummvm-rg350-f53028d4a2d53238fb92e56bea6c737c57ffb123.zip
Replaced the extra SDL functions added to GraphicsManager with an EventObserver in SdlGraphicsManager.
svn-id: r50900
Diffstat (limited to 'backends/graphics/graphics.h')
-rw-r--r--backends/graphics/graphics.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/backends/graphics/graphics.h b/backends/graphics/graphics.h
index 9eb354aee4..0a123d2cb4 100644
--- a/backends/graphics/graphics.h
+++ b/backends/graphics/graphics.h
@@ -85,41 +85,6 @@ public:
virtual void disableCursorPalette(bool disable) = 0;
virtual void displayMessageOnOSD(const char *msg) {}
-
- /**
- * Marks the screen for a full redraw
- */
- virtual void forceFullRedraw() {};
-
- /**
- * Handles the scalar hotkeys
- */
- virtual bool handleScalerHotkeys(Common::KeyCode key) { return false; };
-
- /**
- * Returns if the event passed is a hotkey for the graphics scalers
- */
- virtual bool isScalerHotkey(const Common::Event &event) { return false; };
-
- /**
- * Adjusts mouse event coords for the current scaler
- */
- virtual void adjustMouseEvent(Common::Event &event) {};
-
- /**
- * Updates the mouse cursor position
- */
- virtual void setMousePos(int x, int y) {};
-
- /**
- * Toggles fullscreen
- */
- virtual void toggleFullScreen() {};
-
- /**
- * Saves a screenshot to a file
- */
- virtual bool saveScreenshot(const char *filename) { return false; };
};
#endif