[dali_1.9.25] Merge branch 'devel/master'
[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/public-api/actors/actor.h>
23 #include <dali/internal/event/events/hover-event-impl.h>
24
25 namespace Dali
26 {
27
28 HoverEvent::HoverEvent()
29 : BaseHandle()
30 {
31 }
32
33 HoverEvent::HoverEvent( const HoverEvent& rhs ) = default;
34
35 HoverEvent::HoverEvent( HoverEvent&& rhs ) = default;
36
37 HoverEvent::~HoverEvent()
38 {
39 }
40
41 HoverEvent& HoverEvent::operator=( const HoverEvent& rhs ) = default;
42
43 HoverEvent& HoverEvent::operator=( HoverEvent&& rhs ) = default;
44
45 unsigned long HoverEvent::GetTime() const
46 {
47   return GetImplementation( *this ).GetTime();
48 }
49
50 std::size_t HoverEvent::GetPointCount() const
51 {
52   return GetImplementation( *this ).GetPointCount();
53 }
54
55 int32_t HoverEvent::GetDeviceId( std::size_t point ) const
56 {
57   return GetImplementation( *this ).GetDeviceId( point );
58 }
59
60 PointState::Type HoverEvent::GetState( std::size_t point ) const
61 {
62   return GetImplementation( *this ).GetState( point );
63 }
64
65 Actor HoverEvent::GetHitActor( std::size_t point ) const
66 {
67   return GetImplementation( *this ).GetHitActor( point );
68 }
69
70 const Vector2& HoverEvent::GetLocalPosition( std::size_t point ) const
71 {
72   return GetImplementation( *this ).GetLocalPosition( point );
73 }
74
75 const Vector2& HoverEvent::GetScreenPosition( std::size_t point ) const
76 {
77   return GetImplementation( *this ).GetScreenPosition( point );
78 }
79
80 HoverEvent::HoverEvent( Internal::HoverEvent* internal )
81 : BaseHandle( internal )
82 {
83 }
84
85 } // namespace Dali