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"
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Mouse button ID
|
|
|
|
/*!
|
|
|
|
Type to hold a mouse button identifier.
|
|
|
|
*/
|
2001-05-13 11:40:29 +00:00
|
|
|
typedef UInt8 ButtonID;
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! @name Mouse button identifiers
|
|
|
|
//@{
|
2001-05-13 11:40:29 +00:00
|
|
|
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;
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
2001-05-13 11:40:29 +00:00
|
|
|
|
|
|
|
#endif
|