Adaptor: Fix Klocwork issues
[platform/core/uifw/dali-adaptor.git] / adaptors / common / orientation-impl.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 "orientation-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <Ecore.h>
23 #include <dali/integration-api/debug.h>
24
25 // INTERNAL INCLUDES
26 #include <window-impl.h>
27 #include <adaptor-impl.h>
28
29 namespace Dali
30 {
31 namespace Internal
32 {
33 namespace Adaptor
34 {
35
36 Orientation* Orientation::New(Window* window)
37 {
38   Orientation* orientation = new Orientation(window);
39
40   return orientation;
41 }
42
43 Orientation::Orientation(Window* window)
44 : mWindow(window),
45   mOrientation(0),
46   mWindowWidth(0),
47   mWindowHeight(0)
48 {
49 }
50
51 Orientation::~Orientation()
52 {
53   // Note, there is only one orientation object that's owned by window,
54   // so it will live longer than adaptor. (hence, no need to remove rotation observer)
55 }
56
57 void Orientation::SetAdaptor(Dali::Adaptor& adaptor)
58 {
59   Adaptor& adaptorImpl = Adaptor::GetImplementation(adaptor);
60   adaptorImpl.SetRotationObserver(this);
61 }
62
63 int Orientation::GetDegrees() const
64 {
65   return mOrientation;
66 }
67
68 float Orientation::GetRadians() const
69 {
70   return Math::PI * (float)mOrientation / 180.0f;
71 }
72
73 Orientation::OrientationSignalV2& Orientation::ChangedSignal()
74 {
75   return mChangedSignal;
76 }
77
78 void Orientation::OnRotationPrepare( const RotationEvent& rotation )
79 {
80   mOrientation  = rotation.angle;
81   mWindowWidth  = rotation.width;
82   mWindowHeight = rotation.height;
83 }
84
85 void Orientation::OnRotationRequest()
86 {
87   // Emit signal
88   if( !mChangedSignal.Empty() )
89   {
90     Dali::Orientation handle( this );
91     mChangedSignal.Emit( handle );
92   }
93
94   if( mWindow != NULL )
95   {
96     mWindow->RotationDone( mOrientation, mWindowWidth, mWindowHeight );
97   }
98 }
99
100 } // namespace Adaptor
101
102 } // namespace Internal
103
104 } // namespace Dali