aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/graphics.h
diff options
context:
space:
mode:
authorNicola Mettifogo2007-08-11 20:44:22 +0000
committerNicola Mettifogo2007-08-11 20:44:22 +0000
commit9167422ce3b479671419784c6b26bb2c8ee799f5 (patch)
treea66fc092f18ceec17098a764e20a9e61dcf25e96 /engines/parallaction/graphics.h
parentceaeba852e89065c1a33e0eb92a05ae55560a451 (diff)
downloadscummvm-rg350-9167422ce3b479671419784c6b26bb2c8ee799f5.tar.gz
scummvm-rg350-9167422ce3b479671419784c6b26bb2c8ee799f5.tar.bz2
scummvm-rg350-9167422ce3b479671419784c6b26bb2c8ee799f5.zip
Moved cursor handling from Gfx to engine subclasses.
svn-id: r28534
Diffstat (limited to 'engines/parallaction/graphics.h')
-rw-r--r--engines/parallaction/graphics.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/parallaction/graphics.h b/engines/parallaction/graphics.h
index 2134a17e4e..a830b9b2c9 100644
--- a/engines/parallaction/graphics.h
+++ b/engines/parallaction/graphics.h
@@ -37,12 +37,6 @@
namespace Parallaction {
-#define MOUSEARROW_WIDTH 16
-#define MOUSEARROW_HEIGHT 16
-
-#define MOUSECOMBO_WIDTH 32 // sizes for cursor + selected inventory item
-#define MOUSECOMBO_HEIGHT 32
-
#include "common/pack-start.h" // START STRUCT PACKING
struct PaletteFxRange {
@@ -230,7 +224,6 @@ public:
// misc
int16 queryMask(int16 v);
- void setMousePointer(int16 index);
void setFont(Font* font);
void swapBuffers();
void updateScreen();
@@ -252,8 +245,6 @@ protected:
Parallaction* _vm;
Graphics::Surface *_buffers[NUM_BUFFERS];
MaskBuffer *_depthMask;
- static byte _mouseArrow[256];
- Graphics::Surface *_mouseComposedArrow;
Font *_font;
bool _halfbrite;
@@ -261,7 +252,6 @@ protected:
void copyRect(uint width, uint height, byte *dst, uint dstPitch, byte *src, uint srcPitch);
void flatBlit(const Common::Rect& r, byte *data, Gfx::Buffers buffer, byte transparentColor);
void blit(const Common::Rect& r, uint16 z, byte *data, Gfx::Buffers buffer);
- void initMouse(uint16 arg_0);
void screenClip(Common::Rect& r, Common::Point& p);
};