modify license, permission and remove ^M char
[platform/framework/native/uifw.git] / src / ui / FUi_EflWindow.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.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://www.apache.org/licenses/LICENSE-2.0/
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_EflWindow.h
20  * @brief               This is the header file for the _EflWindow class.
21  *
22  * This header file contains the declarations of the %_EflWindow class.
23  */
24
25 #ifndef _FUI_INTERNAL_EFL_WINDOW_H_
26 #define _FUI_INTERNAL_EFL_WINDOW_H_
27
28 #include <FBaseDataType.h>
29 #include "FUi_IWindow.h"
30
31 namespace Tizen { namespace Ui { namespace Animations
32 {
33 class _RootVisualElement;
34 }}}
35
36 namespace Tizen { namespace Ui
37 {
38 class _EcoreEvas;
39 class _Control;
40
41 class _EflWindow
42         : public _IWindow
43 {
44 public:
45         static _EflWindow* CreateInstanceN(void);
46
47         virtual ~_EflWindow(void);
48
49         virtual void SetFrame(const _Control& control);
50
51         Tizen::Ui::Animations::_RootVisualElement* GetRootVisualElement(void);
52
53 private:
54         _EflWindow(void);
55
56         _EflWindow(const _EflWindow& rhs);
57         _EflWindow& operator =(const _EflWindow& rhs);
58
59 private:
60         _EcoreEvas* __pEcoreEvas;
61 }; // _EflWindow
62
63 }} // Tizen::Ui
64
65 #endif // _FUI_INTERNAL_EFL_WINDOW_H_