I hope I found most of them. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32832 a95241bf-73f2-0310-859d-f6bbb57e9c96
32 lines
756 B
C
32 lines
756 B
C
/*
|
|
* Copyright 2003-2009 Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Jérôme Duval,
|
|
* Axel Dörfler ([email protected])
|
|
* Andrew McCall ([email protected])
|
|
*/
|
|
|
|
|
|
#ifndef MOUSE_CONSTANTS_H
|
|
#define MOUSE_CONSTANTS_H
|
|
|
|
// interface messages
|
|
const uint32 kMsgDefaults = 'BTde';
|
|
const uint32 kMsgRevert = 'BTre';
|
|
|
|
const uint32 kMsgMouseType = 'PUmt';
|
|
const uint32 kMsgMouseFocusMode = 'PUmf';
|
|
const uint32 kMsgMouseMap = 'PUmm';
|
|
|
|
const uint32 kMsgDoubleClickSpeed = 'SLdc';
|
|
const uint32 kMsgMouseSpeed = 'SLms';
|
|
const uint32 kMsgAccelerationFactor = 'SLma';
|
|
|
|
// user interface
|
|
const uint32 kBorderSpace = 10;
|
|
const uint32 kItemSpace = 7;
|
|
|
|
#endif /* MOUSE_CONSTANTS_H */
|