tizen 2.3 release
[apps/home/b2-clocksetting.git] / include / setting-double.h
1 /*
2  * Copyright (c) 2010 Samsung Electronics, Inc.
3  * All rights reserved.
4  *
5  * This software is a confidential and proprietary information
6  * of Samsung Electronics, Inc. ("Confidential Information").  You
7  * shall not disclose such Confidential Information and shall use
8  * it only in accordance with the terms of the license agreement
9  * you entered into with Samsung Electronics.
10  */
11 /*
12  * setting-double.h
13  *
14  *  Created on: Jan 8, 2014
15  *      Author: Sunyeop Hwang
16  */
17
18 #ifndef SETTING_DOUBLE_H_
19 #define SETTING_DOUBLE_H_
20
21 #include <Elementary.h>
22
23 struct _double_menu_item {
24         int index;
25         char *appid;
26         char *pkgid;
27         char *name;
28 };
29
30 typedef struct Double_Item_Data {
31         struct _double_menu_item *pitem;
32         Elm_Object_Item *item;
33         Evas_Object *check;
34 } Double_Item_Data;
35
36 void init_double_pressing(void *data);
37 Evas_Object *create_double_app_list(void *data);
38 Evas_Object *create_double_list(void *data);
39 void clear_double_app_cb(void *data , Evas *e, Evas_Object *obj, void *event_info);
40 void clear_double_cb(void *data , Evas *e, Evas_Object *obj, void *event_info);
41
42 #endif /* SETTING_DOUBLE_H_ */