Updated changelog
[profile/ivi/lemolo.git] / utils / simple-popup.h
1 #ifndef _EFL_OFONO_SIMPLE_POPUP_H__
2 #define _EFL_OFONO_SIMPLE_POPUP_H__ 1
3
4 Evas_Object *simple_popup_add(Evas_Object *win,
5                                 const char *title, const char *message);
6
7 void simple_popup_title_set(Evas_Object *p, const char *title);
8 void simple_popup_message_set(Evas_Object *p, const char *msg);
9
10 void simple_popup_button_dismiss_set(Evas_Object *p);
11 void simple_popup_buttons_set(Evas_Object *p,
12                                 const char *b1_label,
13                                 const char *b1_class,
14                                 Evas_Smart_Cb b1_cb,
15                                 const char *b2_label,
16                                 const char *b2_class,
17                                 Evas_Smart_Cb b2_cb,
18                                 const void *data);
19
20 void simple_popup_entry_enable(Evas_Object *p);
21 void simple_popup_entry_disable(Evas_Object *p);
22 const char *simple_popup_entry_get(const Evas_Object *p);
23
24 #endif