Tizen 2.0 Release
[apps/osp/Internet.git] / src / IntMainFrame.cpp
1 //
2
3 // Copyright (c) 2012 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 //!Internet InternetFrame class
19 /*@file:        IntInternetFrame.cpp
20  *@brief:       Internet Frame
21  */
22
23 #include "IntMainFrame.h"
24 #include "IntSceneRegister.h"
25
26 using namespace Tizen::Base;
27 using namespace Tizen::Ui;
28 using namespace Tizen::Ui::Controls;
29
30 MainFrame::MainFrame(void)
31 {
32 //      SetBackgroundColor(Tizen::Graphics::Color(255,255,255));
33 }
34
35 MainFrame::~MainFrame(void)
36 {
37 }
38
39 result
40 MainFrame::OnInitializing(void)
41 {
42         result r = E_SUCCESS;
43
44         // SceneManagement initializing
45         SceneRegister::RegisterAllScenes();
46
47
48         return r;
49 }
50
51 result
52 MainFrame::OnTerminating(void)
53 {
54         result r = E_SUCCESS;
55
56         return r;
57 }