Tizen 2.1 base
[framework/osp/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  * @file        FUi_OrientationAgent.h
19  * @brief       This is the header file for the _OrientationAgent class.
20  *
21  * This header file contains the declarations of the %_OrientationAgent class.
22  */
23 #ifndef _FUI_INTERNAL_ORIENTATION_AGENT_H_
24 #define _FUI_INTERNAL_ORIENTATION_AGENT_H_
25
26 #include <FUiIOrientationEventListener.h>
27 #include "FUi_Types.h"
28
29 namespace Tizen { namespace Ui {
30
31 class _PublicOrientationEvent;
32
33 class _OrientationAgent
34 {
35 public:
36         static _OrientationAgent* CreateInstanceN(Control& publicControl);
37         ~_OrientationAgent(void);
38
39         void AddListener(IOrientationEventListener& listener);
40         void RemoveListener(IOrientationEventListener& listener);
41
42         Orientation GetMode(void) const;
43         OrientationStatus GetStatus(void) const;
44
45         void SetMode(Orientation orientation);
46         void Update(bool draw = false);
47
48         void FireOrientationEvent(void);
49
50 private:
51         void FireEvent(OrientationStatus status);
52
53         _OrientationAgent(Control& publicControl);
54
55         _OrientationAgent(const _OrientationAgent& rhs);
56         _OrientationAgent& operator =(const _OrientationAgent& rhs);
57
58 private:
59         Control& __publicControl;
60         _PublicOrientationEvent* __pPublicEvent;
61         Orientation __mode;
62         OrientationStatus __status;
63         bool __firePublicEvent;
64         bool __statusChanged;
65         bool __updateStatus;
66 }; // _OrientationAgent
67
68 }} // Tizen::Ui
69
70 #endif // _FUI_INTERNAL_ORIENTATION_AGENT_H_