tizen 2.3 release
[apps/home/b2-clocksetting.git] / include / setting_view_toast.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 #ifndef _SETTING_VIEW_TOAST_H_
12 #define _SETTING_VIEW_TOAST_H_
13
14 #include <Elementary.h>
15
16 typedef struct _toast_data {
17         char * str;
18         int is_show;
19
20         Evas_Object * toast_popup;
21 } Toast_Data;
22
23 Toast_Data * _create_toast( void * data, char * msg );
24 void _destroy_toast( struct _toast_data * toast );
25 void _dismiss_toast(void *data, Evas_Object *obj, void *event_info);
26 //void _dismiss_toast( struct _toast_data * toast );
27 void _show_toast( void * data, struct _toast_data * toast );
28
29 #endif