Merge "Add GetBrightness()" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / common / orientation-impl.cpp
1 /*
2  * Copyright (c) 2021 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/adaptor/common/adaptor-impl.h>
26 #include <dali/internal/window-system/common/window-impl.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 Orientation* Orientation::New(Window* window)
35 {
36   Orientation* orientation = new Orientation(window);
37
38   return orientation;
39 }
40
41 Orientation::Orientation(Window* window)
42 : mWindow(window),
43   mOrientation(0),
44   mWindowWidth(0),
45   mWindowHeight(0)
46 {
47 }
48
49 Orientation::~Orientation()
50 {
51   // Note, there is only one orientation object that's owned by window,
52   // so it will live longer than adaptor. (hence, no need to remove rotation observer)
53 }
54
55 int Orientation::GetDegrees() const
56 {
57   return mOrientation;
58 }
59
60 float Orientation::GetRadians() const
61 {
62   return Math::PI * float(mOrientation) / 180.0f;
63 }
64
65 Orientation::OrientationSignalType& Orientation::ChangedSignal()
66 {
67   return mChangedSignal;
68 }
69
70 void Orientation::OnOrientationChange(const RotationEvent& rotation)
71 {
72   mOrientation  = rotation.angle;
73   mWindowWidth  = rotation.width;
74   mWindowHeight = rotation.height;
75
76   // Emit signal
77   if(!mChangedSignal.Empty())
78   {
79     Dali::Orientation handle(this);
80     mChangedSignal.Emit(handle);
81   }
82 }
83
84 } // namespace Adaptor
85
86 } // namespace Internal
87
88 } // namespace Dali