xref: /haiku/src/preferences/input/InputConstants.h (revision 8272123ea5548bb75f4bcb990edae313d3843657)
1 /*
2  * Copyright 2019, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Author:
6  *		Preetpal Kaur <preetpalok123@gmail.com>
7  */
8 
9 
10 #ifndef INPUT_MOUSE_CONSTANTS_H
11 #define INPUT_MOUSE_CONSTANTS_H
12 
13 #include <SupportDefs.h>
14 
15 
16 const uint32 kMsgDefaults		= 'BTde';
17 const uint32 kMsgRevert			= 'BTre';
18 const uint32 kMsgUpdate			= 'BTup';
19 const uint32 kMsgDoubleClickSpeed	= 'SLdc';
20 const uint32 kMsgCursorSpeed		= 'SLcs';
21 const uint32 kMsgFollowsMouseMode	= 'PUff';
22 const uint32 kMsgMouseFocusMode		= 'PUmf';
23 const uint32 kMsgAcceptFirstClick	= 'PUaf';
24 const uint32 kMsgMouseType		= 'PUmt';
25 const uint32 kMsgMouseMap		= 'PUmm';
26 const uint32 kMsgMouseSpeed		= 'SLms';
27 const uint32 kMsgAccelerationFactor	= 'SLma';
28 const uint32 kMsgKeyboardButton		= 'BKdr';
29 const uint32 kMsgSliderrepeatrate	= 'SLrr';
30 const uint32 kMsgSliderdelayrate	= 'SLdr';
31 
32 const uint32 kMsgErrordetect		= 'ERor';
33 
34 const uint32 kBorderSpace = 10;
35 const uint32 kItemSpace = 7;
36 
37 #endif	/* INPUT_MOUSE_CONSTANTS_H */
38