Add pepper-dali
[platform/core/uifw/pepper-dali.git] / pepper-dali / internal / input.h
1 #ifndef __DALI_PEPPER_INPUT_H__
2 #define __DALI_PEPPER_INPUT_H__
3
4 /*
5  * Copyright (c) 2016 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 // INTERNAL INCLUDES
22 #include <pepper-dali/public-api/compositor/compositor.h>
23
24 // EXTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/public-api/object/base-handle.h>
27 #include <pepper.h>
28
29 namespace Dali
30 {
31
32 namespace Pepper
33 {
34
35 namespace Internal DALI_INTERNAL
36 {
37 class Input;
38 }
39
40 /**
41  * @addtogroup dali_pepper_compositor
42  * @{
43  */
44
45 class Input : public BaseHandle
46 {
47 public:
48
49   /**
50    * @brief Create Input.
51    *
52    * @since_tizen 3.0
53    * @return A handle to Input.
54    */
55   static Input New( Pepper::Compositor compositor );
56
57   /**
58    * @brief Downcast a handle to Input handle.
59    *
60    * If the BaseHandle points is a Input the downcast returns a valid handle.
61    * If not the returned handle is left empty.
62    *
63    * @since_tizen 3.0
64    * @param[in] handle Handle to an object
65    * @return handle to a Input or an empty handle
66    */
67   static Input DownCast( BaseHandle handle );
68
69   /**
70    * @brief Creates an empty handle.
71    * @since_tizen 3.0
72    */
73   Input();
74
75   /**
76    * @brief Copy constructor.
77    *
78    * @since_tizen 3.0
79    * @param[in] handle The handle to copy from.
80    */
81   Input( const Input& handle );
82
83   /**
84    * @brief Assignment operator.
85    *
86    * @since_tizen 3.0
87    * @param[in] handle The handle to copy from.
88    * @return A reference to this.
89    */
90   Input& operator=( const Input& handle );
91
92   /**
93    * @brief Destructor
94    *
95    * This is non-virtual since derived Handle types must not contain data or virtual methods.
96    * @since_tizen 3.0
97    */
98   ~Input();
99
100   pepper_pointer_t* GetPointer();
101   pepper_keyboard_t* GetKeyboard();
102   pepper_touch_t* GetTouch();
103
104 public: // Not intended for application developers
105
106   /**
107    * @brief Creates a handle using the Pepper::Internal implementation.
108    *
109    * @since_tizen 3.0
110    * @param[in] implementation The Input implementation.
111    */
112   explicit DALI_INTERNAL Input( Internal::Input* implementation );
113 };
114
115 /**
116  * @}
117  */
118 } // namespace Pepper
119
120 } // namespace Dali
121
122 #endif // __DALI_PEPPER_INPUT_H__