2001-05-13 11:40:29 +00:00
|
|
|
#ifndef MOUSETYPES_H
|
|
|
|
#define MOUSETYPES_H
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "BasicTypes.h"
|
|
|
|
|
2001-05-13 11:40:29 +00:00
|
|
|
// type to hold mouse button identifier
|
|
|
|
typedef UInt8 ButtonID;
|
|
|
|
|
|
|
|
// mouse button identifiers
|
|
|
|
static const ButtonID kButtonNone = 0;
|
|
|
|
static const ButtonID kButtonLeft = 1;
|
2001-05-14 21:14:49 +00:00
|
|
|
static const ButtonID kButtonMiddle = 2;
|
|
|
|
static const ButtonID kButtonRight = 3;
|
2001-05-13 11:40:29 +00:00
|
|
|
|
|
|
|
#endif
|