2 * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 #include "data_wrapper.h"
24 #include "settings_provider.h"
25 #include "view_bottomslider.h"
28 * This function is invoked to create view layout.
30 * @param mgr [in] The setting_mgr data pointer passed by @settingmgr_view_push.
31 * @param view [in] The settingview_data data pointer passed by @settingmgr_view_push.
32 * @param prev [in] The parameter data which passed by prev view or NULL.
33 * @return View layout evas object, NULL on error.
35 static Evas_Object *_create(struct setting_mgr *mgr,
36 struct settingview_data *view, void *prev)
38 /*TODO:Implement this function*/
43 * This function is invoked to show view layout.
45 * @param base [in] The view layout evas object.
48 static void _show(Evas_Object *base)
53 * This function is invoked to destroy view layout.
55 * @param base [in] The view layout evas object.
58 static void _destroy(Evas_Object *base)
63 * This function is invoked to hide view layout.
65 * @param base [in] The view layout evas object.
68 static void _hide(Evas_Object *base)
72 static struct setting_class _vclass = {
73 VCLASS_TITLE_BOTTOM_SLIDER,
89 * This function is invoked to get bottom slider view class object.
91 * @return The setting_class data static pointer, NULL on error.
93 struct setting_class *view_bottomslider_get_vclass(void)