Changed indicator bg color.
[platform/framework/native/uifw.git] / src / ui / FUi_EflWindow.cpp
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.cpp
20  * @brief               This is the implementation file for the _EflWindow class.
21  */
22
23 #include <FBaseErrors.h>
24 #include <FBaseSysLog.h>
25 #include "FUi_EflWindow.h"
26 #include "FUiAnim_RootVisualElement.h"
27 #include "FUi_EcoreEvas.h"
28 #include "FUi_Control.h"
29
30 using namespace Tizen::Ui::Animations;
31
32 namespace Tizen { namespace Ui
33 {
34
35 _EflWindow*
36 _EflWindow::CreateInstanceN(void)
37 {
38         _EflWindow* pEflWindow = new (std::nothrow) _EflWindow;
39         SysTryReturn(NID_UI, pEflWindow, null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Memory is insufficient.");
40
41         result r = GetLastResult();
42         SysTryCatch(NID_UI, r == E_SUCCESS, , r, "[%s] Propagating.", GetErrorMessage(r));
43
44         SetLastResult(E_SUCCESS);
45
46         return pEflWindow;
47
48 CATCH:
49         delete pEflWindow;
50         return null;
51 }
52
53 _EflWindow::~_EflWindow(void)
54 {
55         if (__pEcoreEvas)
56         {
57                 delete __pEcoreEvas;
58                 __pEcoreEvas = null;
59         }
60 }
61
62 void
63 _EflWindow::SetFrame(const _Control& control)
64 {
65         __pEcoreEvas->SetFrame(control);
66 }
67
68 _EflWindow::_EflWindow(void)
69         : __pEcoreEvas(null)
70 {
71         __pEcoreEvas = _EcoreEvas::CreateInstanceN();
72
73         result r = GetLastResult();
74         SysTryReturnVoidResult(NID_UI, __pEcoreEvas, r, "[%s] Propagating.", GetErrorMessage(r));
75
76         SetLastResult(E_SUCCESS);
77 }
78 _RootVisualElement*
79 _EflWindow::GetRootVisualElement(void)
80 {
81         if(__pEcoreEvas)
82         {
83                 return __pEcoreEvas->GetRootVisualElement();
84         }
85         return null;
86
87 }
88
89 }} // Tizen::Ui