Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-core.git] / dali / internal / event / events / key-event-impl.h
1 #ifndef __DALI_INTERNAL_KEY_EVENT_H__
2 #define __DALI_INTERNAL_KEY_EVENT_H__
3
4 /*
5  * Copyright (c) 2017 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 <dali/public-api/events/key-event.h>
23
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 struct KeyEventImpl
31 {
32 public:
33
34   /**
35    * @brief Constructor.
36    */
37   KeyEventImpl( Dali::KeyEvent* keyEvent );
38
39   /**
40    * @brief Destructor.
41    */
42   ~KeyEventImpl();
43
44   /**
45    * @brief Assignment operator.
46    * @param[in] rhs A reference to the copied handle
47    * @return A reference to this
48    */
49   KeyEventImpl& operator=( const KeyEventImpl& rhs );
50
51   /**
52    * @brief Get the device name the key event originated from
53    *
54    * @return The device name
55    */
56    std::string GetDeviceName() const;
57
58   /**
59    * @brief Set the device name to the KeyEvent
60    *
61    * @param[in] deviceName Device name string to set
62    */
63   void SetDeviceName( const std::string& deviceName );
64
65   /**
66    * @brief Get the device class the key event originated from
67    *
68    * @return The device class
69    */
70   Device::Class::Type GetDeviceClass() const;
71
72   /**
73    * @brief Set the device class to the KeyEvent
74    *
75    * @param[in] deviceClass Device class to set
76    */
77   void SetDeviceClass( Device::Class::Type deviceClass );
78
79   /**
80    * @brief Get the device subclass the key event originated from
81    *
82    * @return The device subclass
83    */
84   Device::Subclass::Type GetDeviceSubclass() const;
85
86   /**
87    * @brief Set the device subclass to the KeyEvent
88    *
89    * @param[in] deviceClass Device subclass to set
90    */
91   void SetDeviceSubclass( Device::Subclass::Type deviceSubclass );
92
93 private:
94
95   // Undefined
96   KeyEventImpl();
97
98   // Undefined
99   KeyEventImpl( const KeyEventImpl& rhs );
100
101 private:
102
103   std::string mDeviceName;
104   Device::Class::Type mDeviceClass;
105   Device::Subclass::Type mDeviceSubclass;
106 };
107
108 } // namespace Internal
109
110 // Helpers for public-api forwarding methods
111
112 Internal::KeyEventImpl* GetImplementation( KeyEvent* keyEvent );
113
114 const Internal::KeyEventImpl* GetImplementation( const KeyEvent* keyEvent );
115
116 } // namespace Dali
117
118 #endif // __DALI_INTERNAL_KEY_EVENT_H__