Clean up the code to build successfully on macOS
[platform/core/uifw/dali-core.git] / dali / public-api / events / hover-event.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/public-api/events/hover-event.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/events/hover-event-impl.h>
23 #include <dali/public-api/actors/actor.h>
24
25 namespace Dali
26 {
27 HoverEvent::HoverEvent()
28 : BaseHandle()
29 {
30 }
31
32 HoverEvent::HoverEvent(const HoverEvent& rhs) = default;
33
34 HoverEvent::HoverEvent(HoverEvent&& rhs) = default;
35
36 HoverEvent::~HoverEvent()
37 {
38 }
39
40 HoverEvent& HoverEvent::operator=(const HoverEvent& rhs) = default;
41
42 HoverEvent& HoverEvent::operator=(HoverEvent&& rhs) = default;
43
44 unsigned long HoverEvent::GetTime() const
45 {
46   return GetImplementation(*this).GetTime();
47 }
48
49 std::size_t HoverEvent::GetPointCount() const
50 {
51   return GetImplementation(*this).GetPointCount();
52 }
53
54 int32_t HoverEvent::GetDeviceId(std::size_t point) const
55 {
56   return GetImplementation(*this).GetDeviceId(point);
57 }
58
59 PointState::Type HoverEvent::GetState(std::size_t point) const
60 {
61   return GetImplementation(*this).GetState(point);
62 }
63
64 Actor HoverEvent::GetHitActor(std::size_t point) const
65 {
66   return GetImplementation(*this).GetHitActor(point);
67 }
68
69 const Vector2& HoverEvent::GetLocalPosition(std::size_t point) const
70 {
71   return GetImplementation(*this).GetLocalPosition(point);
72 }
73
74 const Vector2& HoverEvent::GetScreenPosition(std::size_t point) const
75 {
76   return GetImplementation(*this).GetScreenPosition(point);
77 }
78
79 HoverEvent::HoverEvent(Internal::HoverEvent* internal)
80 : BaseHandle(internal)
81 {
82 }
83
84 } // namespace Dali