Remove unnecessary files
[apps/home/wrt-setting.git] / webapp-detail / mainview.h
1 /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   *
4   * Licensed under the Flora License, Version 1.1 (the "License");
5   * you may not use this file except in compliance with the License.
6   * You may obtain a copy of the License at
7   *
8   *     http://floralicense.org/license/
9   *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16
17 #ifndef WEB_SRC_SETTING_WEBAPP_DETAIL_MAINVIEW_H_
18 #define WEB_SRC_SETTING_WEBAPP_DETAIL_MAINVIEW_H_
19
20 #include <Evas.h>
21 #include <ui-gadget.h>
22 #include <dpl/scoped_ptr.h>
23
24 #include "exceptionsview.h"
25
26 namespace WebAppDetailSetting {
27
28 class MainView
29 {
30     ui_gadget_h m_ug;
31     DPL::String m_appID;
32     DPL::ScopedPtr<ExceptionsView> m_exception;
33
34     static void onBackBtnClicked(void *data,
35                                  Evas_Object *eo,
36                                  void *event_info);
37
38     Evas_Object *createContent(Evas_Object *parent);
39
40   public:
41     MainView(ui_gadget_h ug, DPL::String appId);
42     ~MainView(void);
43
44     Evas_Object *loadView(void);
45     ui_gadget_h getUG(void) { return m_ug; }
46 };
47
48 } /* WebAppDetailSetting */
49
50 #endif /* WEB_SRC_SETTING_WEBAPP_DETAIL_MAINVIEW_H_ */