License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / public-api / events / mouse-wheel-event.cpp
1 /*
2  * Copyright (c) 2014 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/mouse-wheel-event.h>
20
21 namespace Dali
22 {
23
24 namespace
25 {
26 const unsigned int MODIFIER_SHIFT = 0x1;
27 const unsigned int MODIFIER_CTRL  = 0x2;
28 const unsigned int MODIFIER_ALT   = 0x4;
29
30 }
31
32 MouseWheelEvent::MouseWheelEvent()
33 : direction(0),
34   modifiers(0),
35   point(Vector2::ZERO),
36   z(0),
37   timeStamp(0)
38 {
39 }
40
41 MouseWheelEvent::MouseWheelEvent(int direction, unsigned int modifiers, Vector2 point, int z, unsigned int timeStamp)
42 : direction(direction),
43   modifiers(modifiers),
44   point(point),
45   z(z),
46   timeStamp(timeStamp)
47 {
48 }
49
50 MouseWheelEvent::~MouseWheelEvent()
51 {
52 }
53
54 bool MouseWheelEvent::IsShiftModifier() const
55 {
56   if ((MODIFIER_SHIFT & modifiers) == MODIFIER_SHIFT)
57   {
58     return true;
59   }
60
61   return false;
62 }
63
64 bool MouseWheelEvent::IsCtrlModifier() const
65 {
66   if ((MODIFIER_CTRL & modifiers) == MODIFIER_CTRL)
67   {
68     return true;
69   }
70
71   return false;
72 }
73
74 bool MouseWheelEvent::IsAltModifier() const
75 {
76   if ((MODIFIER_ALT & modifiers) == MODIFIER_ALT)
77   {
78     return true;
79   }
80
81   return false;
82 }
83
84 } // namespace Dali