tizen 2.3.1 release
[apps/home/b2-clocksetting.git] / include / setting-double.h
1 /*
2  *  Copyright (c) 2014 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 /*
18  * setting-double.h
19  *
20  *  Created on: Jan 8, 2014
21  *      Author: Sunyeop Hwang
22  */
23
24 #ifndef SETTING_DOUBLE_H_
25 #define SETTING_DOUBLE_H_
26
27 #include <Elementary.h>
28
29 struct _double_menu_item {
30         int index;
31         char *appid;
32         char *pkgid;
33         char *name;
34 };
35
36 typedef struct Double_Item_Data {
37         struct _double_menu_item *pitem;
38         Elm_Object_Item *item;
39         Evas_Object *check;
40 } Double_Item_Data;
41
42 void init_double_pressing(void *data);
43 Evas_Object *create_double_app_list(void *data);
44 Evas_Object *create_double_list(void *data);
45 void clear_double_app_cb(void *data , Evas *e, Evas_Object *obj, void *event_info);
46 void clear_double_cb(void *data , Evas *e, Evas_Object *obj, void *event_info);
47
48 #endif /* SETTING_DOUBLE_H_ */