Changed indicator bg color.
[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.1 (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 class _Window;
36
37 class _OrientationAgent
38 {
39 public:
40         static _OrientationAgent* CreateInstanceN(Control& publicControl);
41         ~_OrientationAgent(void);
42
43         void AddListener(IOrientationEventListener& listener);
44         void RemoveListener(IOrientationEventListener& listener);
45
46         Orientation GetMode(void) const;
47         OrientationStatus GetStatus(void) const;
48         void SetMode(Orientation orientation);
49
50         void Update(bool draw = false);
51         void UpdateOrientation(void);
52         void SetRotation(const _Window& window, Orientation orientation);
53
54         void RequestOrientationEvent(void);
55         void FireOrientationEvent(void);
56
57 private:
58         void FireEvent(OrientationStatus status, bool callback = false);
59
60         _OrientationAgent(Control& publicControl);
61
62         _OrientationAgent(const _OrientationAgent& rhs);
63         _OrientationAgent& operator =(const _OrientationAgent& rhs);
64
65 private:
66         Control& __publicControl;
67         _PublicOrientationEvent* __pPublicEvent;
68         Orientation __mode;
69         OrientationStatus __status;
70         OrientationStatus __tempStatus;
71         bool __firePublicEvent;
72         bool __statusChanged;
73         bool __updateStatus;
74         bool __draw;
75 }; // _OrientationAgent
76
77 }} // Tizen::Ui
78
79 #endif // _FUI_INTERNAL_ORIENTATION_AGENT_H_