2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
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;
|
2003-05-04 21:40:42 +00:00
|
|
|
static const ButtonID kButtonExtra0 = 4;
|
2002-07-29 16:07:26 +00:00
|
|
|
//@}
|
2001-05-13 11:40:29 +00:00
|
|
|
|
|
|
|
#endif
|