0a4c59a68ae4429506f227b91b98f7c3cdff67a9
[apps/home/wrt-setting.git] / webapp-common / mainview.h
1 /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   *
4   * Licensed under the Flora License, Version 1.0 (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_COMMON_MAINVIEW_H_
18 #define WEB_SRC_SETTING_WEBAPP_COMMON_MAINVIEW_H_
19
20 #include <ui-gadget.h>
21 #include <Evas.h>
22
23 #include <dpl/scoped_ptr.h>
24
25 #include "listview.h"
26 #include "view.h"
27
28 namespace WebAppCommonSetting {
29
30 class MainView : public View
31 {
32     ui_gadget_h m_ug;
33     DPL::ScopedPtr<ListView> m_list;
34
35     static void onListViewUnload(void *data);
36     Evas_Object *createContent(Evas_Object *parent);
37
38   public:
39     MainView(ui_gadget_h ug);
40     ~MainView(void);
41
42     bool loadView(void);
43     ui_gadget_h getUG(void) { return m_ug; }
44 };
45
46 } /* WebAppCommonSetting */
47
48 #endif /* WEB_SRC_SETTING_WEBAPP_COMMON_MAINVIEW_H_ */