modify license, permission and remove ^M char
[platform/framework/native/uifw.git] / src / ui / FUi_OrientationAgent.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FUi_OrientationAgent.h
20  * @brief       This is the header file for the _OrientationAgent class.
21  *
22  * This header file contains the declarations of the %_OrientationAgent class.
23  */
24
25 #ifndef _FUI_INTERNAL_ORIENTATION_AGENT_H_
26 #define _FUI_INTERNAL_ORIENTATION_AGENT_H_
27
28 #include <FUiIOrientationEventListener.h>
29 #include "FUi_Types.h"
30
31 namespace Tizen { namespace Ui
32 {
33
34 class _PublicOrientationEvent;
35
36 #if defined(WINDOW_BASE_ROTATE)
37 class _Window;
38 #endif
39
40 class _OrientationAgent
41 {
42 public:
43         static _OrientationAgent* CreateInstanceN(Control& publicControl);
44         ~_OrientationAgent(void);
45
46         void AddListener(IOrientationEventListener& listener);
47         void RemoveListener(IOrientationEventListener& listener);
48
49         Orientation GetMode(void) const;
50         OrientationStatus GetStatus(void) const;
51         void SetMode(Orientation orientation);
52
53         void Update(bool draw = false);
54 #if defined(WINDOW_BASE_ROTATE)
55         void UpdateOrientation(void);
56         void SetRotation(const _Window& window, Orientation orientation);
57 #endif
58
59         void RequestOrientationEvent(void);
60         void FireOrientationEvent(void);
61
62 private:
63         void FireEvent(OrientationStatus status);
64
65         _OrientationAgent(Control& publicControl);
66
67         _OrientationAgent(const _OrientationAgent& rhs);
68         _OrientationAgent& operator =(const _OrientationAgent& rhs);
69
70 private:
71         Control& __publicControl;
72         _PublicOrientationEvent* __pPublicEvent;
73         Orientation __mode;
74         OrientationStatus __status;
75         OrientationStatus __tempStatus;
76         bool __firePublicEvent;
77         bool __statusChanged;
78         bool __updateStatus;
79 #if defined(WINDOW_BASE_ROTATE)
80         bool __draw;
81 #endif
82 }; // _OrientationAgent
83
84 }} // Tizen::Ui
85
86 #endif // _FUI_INTERNAL_ORIENTATION_AGENT_H_