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