tizen 2.3 release
[apps/home/b2-clocksetting.git] / include / setting-privacy.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-privacy.h
13  *
14  *  Created on: Jan 7, 2014
15  *      Author: Sunyeop Hwang
16  */
17
18 #ifndef SETTING_PRIVACY_H_
19 #define SETTING_PRIVACY_H_
20
21 #include <Elementary.h>
22
23 struct _privacy_menu_item {
24         char *name;
25         void (*func)(void *data, Evas_Object *obj, void *event_info);
26 };
27
28 typedef struct Privacy_Item_Data {
29         int index;
30         Elm_Object_Item *item;
31         Evas_Object *check;
32 } Privacy_Item_Data;
33
34 Evas_Object *create_privacy_list(void *data);
35 Eina_Bool clear_privacy_cb(void *data, Elm_Object_Item *it);
36
37 #endif /* SETTING_PRIVACY_H_ */