Merge branch 'devel/master(1.1.39)' into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / x-events / x-input2-device.h
1 #ifndef __DALI_INTERNAL_X_INPUT2_DEVICE_H__
2 #define __DALI_INTERNAL_X_INPUT2_DEVICE_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <X11/extensions/XInput2.h>
23
24 namespace Dali
25 {
26 namespace Internal
27 {
28 namespace Adaptor
29 {
30
31 /**
32  * @brief struct used to encpasulate XIDeviceInfo information.
33  * Kept as a POD so it can be used in a Dali::Vector
34  */
35 struct XInput2Device
36 {
37   /**
38    * @brief constructor
39    */
40   XInput2Device()
41   : deviceId(0),
42   attachment(0),
43   use(0),
44   keyClass(false),
45   touchClass(false),
46   buttonClass(false),
47   valuatorClass(false),
48   scrollClass(false)
49   {}
50
51   /**
52    * Assign device information to the object
53    */
54   void AssignDeviceInfo( const XIDeviceInfo* device );
55
56   int deviceId;           ///< X device ID
57   int attachment;         ///< see XI2 DEVICEINFO struct for details
58   int use;                ///< see XI2 DEVICEINFO struct for details
59   bool keyClass:1;        ///< device supports key input
60   bool touchClass:1;      ///< device supports touch input
61   bool buttonClass:1;     ///< device supports button input
62   bool valuatorClass:1;   ///< device supports an axis, e.g. mouse axis, tablet pen tilt angle..
63   bool scrollClass:1;     ///< device supports scroll
64
65 };
66
67 } // namespace Adaptor
68 } // namespace Internal
69 } // namespace Dali
70
71 #endif